eveapi 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +8 -8
  2. data/.rubocop.yml +1 -6
  3. data/README.md +59 -16
  4. data/Rakefile +10 -1
  5. data/eveapi.gemspec +4 -4
  6. data/gemspec.yml +2 -0
  7. data/lib/eveapi.rb +2 -0
  8. data/lib/eveapi/alliance.rb +50 -0
  9. data/lib/eveapi/character.rb +60 -0
  10. data/lib/eveapi/client.rb +28 -2
  11. data/lib/eveapi/crest.rb +8 -3
  12. data/lib/eveapi/util.rb +4 -0
  13. data/lib/eveapi/version.rb +1 -1
  14. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_corporations_to_be_an_Array.yml +7017 -0
  15. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_find_to_fill_short_name_and_name_values.yml +2263 -0
  16. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_info_to_be_a_Hash.yml +7017 -0
  17. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_new_with_id_argument_to_create_an_Alliance.yml +131 -0
  18. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_to_h_to_be_a_Hash.yml +6925 -0
  19. data/spec/cassettes/EVEApi/EVEApi_Character/expect_Character_new_args_to_create_a_Character.yml +193 -0
  20. data/spec/cassettes/EVEApi/EVEApi_Character/expect_a_Character_account_balance_to_return_a_Hash.yml +222 -0
  21. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_account_account_status.yml +161 -0
  22. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_account_api_key_info.yml +163 -0
  23. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_account_characters.yml +162 -0
  24. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_account_balance.yml +160 -0
  25. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_asset_list.yml +207 -0
  26. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_character_sheet.yml +207 -0
  27. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_list.yml +175 -0
  28. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_notifications.yml +159 -0
  29. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contracts.yml +159 -0
  30. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_industry_jobs.yml +159 -0
  31. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mail_messages.yml +159 -0
  32. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mailing_lists.yml +159 -0
  33. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_market_orders.yml +159 -0
  34. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_medals.yml +160 -0
  35. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_notifications.yml +159 -0
  36. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_research.yml +159 -0
  37. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_in_training.yml +159 -0
  38. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_queue.yml +159 -0
  39. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_standings.yml +173 -0
  40. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_upcoming_calendar_events.yml +169 -0
  41. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_wallet_journal.yml +159 -0
  42. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_wallet_transactions.yml +159 -0
  43. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_server_server_status.yml +159 -0
  44. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_characters_to_handle_mutiple_characters_differently.yml +131 -0
  45. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_charcaters_to_succeed.yml +131 -0
  46. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_connection_to_be_an_Excon_Connection.yml +131 -0
  47. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_new_to_succeed.yml +131 -0
  48. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_params_to_return_an_empty_hash_when_on_no_param.yml +131 -0
  49. data/spec/cassettes/EVEApi/{calling_api_methods_should_return_an_Array_of_method_symobls.yml → EVEApi_Client/expect_api_methods_to_return_an_Array_of_method_symobls.yml} +134 -6
  50. data/spec/cassettes/EVEApi/{calling_a_method_not_present_in_the_EVEApi_should_fail.yml → EVEApi_Client/expect_calling_a_non-existing_API_method_to_fail.yml} +132 -4
  51. data/spec/cassettes/EVEApi/EVEApi_Client/expect_calling_an_existing_API_method_to_succeed.yml +159 -0
  52. data/spec/cassettes/EVEApi/EVEApi_Client/expect_check_path_to_return_a_non-empty_String_for_a_muti-part_name.yml +131 -0
  53. data/spec/cassettes/EVEApi/EVEApi_Client/expect_check_path_to_return_an_empty_String_for_a_one_part_name.yml +131 -0
  54. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_alliances_to_be_an_Array.yml +6925 -0
  55. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_new_to_succeed.yml +131 -0
  56. data/spec/cassettes/EVEApi/EVEApi_Request/expect_there_to_be_a_EVEApi_Request_class.yml +131 -0
  57. data/spec/eve_api_spec.rb +117 -0
  58. metadata +76 -30
  59. data/spec/cassettes/EVEApi/calling_a_method_present_in_the_EVEApi_should_success.yml +0 -31
  60. data/spec/cassettes/EVEApi/calling_api_method_account_account_status.yml +0 -33
  61. data/spec/cassettes/EVEApi/calling_api_method_account_api_key_info.yml +0 -35
  62. data/spec/cassettes/EVEApi/calling_api_method_account_characters.yml +0 -34
  63. data/spec/cassettes/EVEApi/calling_api_method_char_account_balance.yml +0 -32
  64. data/spec/cassettes/EVEApi/calling_api_method_char_asset_list.yml +0 -79
  65. data/spec/cassettes/EVEApi/calling_api_method_char_character_sheet.yml +0 -79
  66. data/spec/cassettes/EVEApi/calling_api_method_char_contact_list.yml +0 -47
  67. data/spec/cassettes/EVEApi/calling_api_method_char_contact_notifications.yml +0 -31
  68. data/spec/cassettes/EVEApi/calling_api_method_char_contracts.yml +0 -31
  69. data/spec/cassettes/EVEApi/calling_api_method_char_industry_jobs.yml +0 -31
  70. data/spec/cassettes/EVEApi/calling_api_method_char_mail_messages.yml +0 -31
  71. data/spec/cassettes/EVEApi/calling_api_method_char_mailing_lists.yml +0 -31
  72. data/spec/cassettes/EVEApi/calling_api_method_char_market_orders.yml +0 -31
  73. data/spec/cassettes/EVEApi/calling_api_method_char_medals.yml +0 -32
  74. data/spec/cassettes/EVEApi/calling_api_method_char_notifications.yml +0 -31
  75. data/spec/cassettes/EVEApi/calling_api_method_char_research.yml +0 -31
  76. data/spec/cassettes/EVEApi/calling_api_method_char_skill_in_training.yml +0 -31
  77. data/spec/cassettes/EVEApi/calling_api_method_char_skill_queue.yml +0 -31
  78. data/spec/cassettes/EVEApi/calling_api_method_char_standings.yml +0 -45
  79. data/spec/cassettes/EVEApi/calling_api_method_char_upcoming_calendar_events.yml +0 -37
  80. data/spec/cassettes/EVEApi/calling_api_method_char_wallet_journal.yml +0 -31
  81. data/spec/cassettes/EVEApi/calling_api_method_char_wallet_transactions.yml +0 -31
  82. data/spec/cassettes/EVEApi/calling_api_method_server_server_status.yml +0 -31
  83. data/spec/cassettes/EVEApi_Crest/alliances_crest_methods_should_return_an_Array_of_alliances.yml +0 -13577
  84. data/spec/eveapi_spec.rb +0 -73
@@ -0,0 +1,2263 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - excon/0.45.4
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: ''
16
+ headers:
17
+ Content-Type:
18
+ - application/xml; charset=utf-8
19
+ Access-Control-Allow-Origin:
20
+ - "*"
21
+ Date:
22
+ - Sat, 12 Sep 2015 08:52:52 GMT
23
+ body:
24
+ encoding: UTF-8
25
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
26
+ \ <currentTime>2015-09-12 08:52:53</currentTime>\r\n <result>\r\n <rowset
27
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
28
+ \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
29
+ Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
30
+ factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
31
+ corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
32
+ allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
33
+ \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
34
+ http_version:
35
+ recorded_at: Sat, 12 Sep 2015 08:52:53 GMT
36
+ - request:
37
+ method: get
38
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ''
42
+ headers:
43
+ User-Agent:
44
+ - excon/0.45.4
45
+ response:
46
+ status:
47
+ code: 200
48
+ message: ''
49
+ headers:
50
+ Content-Type:
51
+ - application/xml; charset=utf-8
52
+ Access-Control-Allow-Origin:
53
+ - "*"
54
+ Date:
55
+ - Sat, 12 Sep 2015 08:52:52 GMT
56
+ body:
57
+ encoding: UTF-8
58
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
59
+ \ <currentTime>2015-09-12 08:52:53</currentTime>\r\n <result>\r\n <rowset
60
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
61
+ \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
62
+ Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
63
+ factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
64
+ corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
65
+ allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
66
+ \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
67
+ http_version:
68
+ recorded_at: Sat, 12 Sep 2015 08:52:53 GMT
69
+ - request:
70
+ method: get
71
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
72
+ body:
73
+ encoding: US-ASCII
74
+ string: ''
75
+ headers:
76
+ User-Agent:
77
+ - excon/0.45.4
78
+ response:
79
+ status:
80
+ code: 200
81
+ message: ''
82
+ headers:
83
+ Content-Type:
84
+ - application/xml; charset=utf-8
85
+ Access-Control-Allow-Origin:
86
+ - "*"
87
+ Date:
88
+ - Sat, 12 Sep 2015 08:52:53 GMT
89
+ body:
90
+ encoding: UTF-8
91
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
92
+ \ <currentTime>2015-09-12 08:52:53</currentTime>\r\n <result>\r\n <rowset
93
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
94
+ \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
95
+ Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
96
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
97
+ 09:48:16</cachedUntil>\r\n</eveapi>"
98
+ http_version:
99
+ recorded_at: Sat, 12 Sep 2015 08:52:53 GMT
100
+ - request:
101
+ method: get
102
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
103
+ body:
104
+ encoding: US-ASCII
105
+ string: ''
106
+ headers:
107
+ User-Agent:
108
+ - excon/0.45.4
109
+ response:
110
+ status:
111
+ code: 200
112
+ message: ''
113
+ headers:
114
+ Content-Type:
115
+ - application/xml; charset=utf-8
116
+ Access-Control-Allow-Origin:
117
+ - "*"
118
+ Date:
119
+ - Sat, 12 Sep 2015 08:52:53 GMT
120
+ body:
121
+ encoding: UTF-8
122
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
123
+ \ <currentTime>2015-09-12 08:52:54</currentTime>\r\n <result>\r\n <rowset
124
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
125
+ \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
126
+ Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
127
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
128
+ 09:48:16</cachedUntil>\r\n</eveapi>"
129
+ http_version:
130
+ recorded_at: Sat, 12 Sep 2015 08:52:54 GMT
131
+ - request:
132
+ method: get
133
+ uri: https://public-crest.eveonline.com/alliances/1354830081/
134
+ body:
135
+ encoding: US-ASCII
136
+ string: ''
137
+ headers:
138
+ User-Agent:
139
+ - excon/0.45.4
140
+ response:
141
+ status:
142
+ code: 200
143
+ message: ''
144
+ headers:
145
+ Server:
146
+ - nginx
147
+ Date:
148
+ - Sat, 12 Sep 2015 08:55:41 GMT
149
+ Content-Type:
150
+ - application/vnd.ccp.eve.Alliance-v1+json; charset=utf-8
151
+ Connection:
152
+ - keep-alive
153
+ X-Cache-Status:
154
+ - EXPIRED
155
+ Access-Control-Max-Age:
156
+ - '1728000'
157
+ Access-Control-Expose-Header:
158
+ - CONTENT-TYPE
159
+ Cache-Control:
160
+ - private, max-age=1800
161
+ Access-Control-Allow-Origin:
162
+ - "*"
163
+ Content-Length:
164
+ - '193684'
165
+ Content-Language:
166
+ - en-US
167
+ Vary:
168
+ - Accept, Accept-Encoding, Accept-Language, User-Agent
169
+ Access-Control-Allow-Methods:
170
+ - GET, PUT, POST, DELETE, HEAD, OPTIONS
171
+ Access-Control:
172
+ - allow <*>
173
+ Access-Control-Allow-Headers:
174
+ - AUTHORIZATION, X-REQUESTED-WITH, CONTENT-TYPE, ACCEPT
175
+ body:
176
+ encoding: UTF-8
177
+ string: '{"startDate": "2010-06-01T05:36:00", "corporationsCount": 373, "description":
178
+ "<font size=\"12\" color=\"#bfffffff\">NULLSEC SPACE FOR RENT: <br><br>https://forums.eveonline.com/default.aspx?g=posts&amp;t=435240<br><br>Mandatory
179
+ Zizek:<br><br>At the same time, there is the much more unsettling opposite
180
+ idea of the domination of my screen persona over my \"real\" self. Our social
181
+ identity, the person we assume to be in our social intercourse, is already
182
+ a \"mask\" that involves the repression of our inadmissible impulses. But
183
+ it is precisely in the conditions of \"just playing\" - when the rules regulating
184
+ our \"real life\" exchanges are temporarily suspended - that we can permit
185
+ ourselves to display these repressed attitudes. Take the proverbial impotent
186
+ shy person who, while participating in a cyberspace interactive game, adopts
187
+ the identity of an irresistible seducer or sadistic murderer. It is all too
188
+ simple to say that this identity is just an imaginary escape from real-life
189
+ impotence. The point is rather that, since he knows that the cyberspace interactive
190
+ game is \"just a game,\" he can \"show his true self\" and do things he would
191
+ never have done in real-life interactions. In the guise of a fiction, the
192
+ truth about himself is articulated. The fact that I perceive my virtual self-image
193
+ as mere play thus allows me to suspend the usual hindrances which prevent
194
+ me from realising my \"dark half\" in real life. My electronic id is given
195
+ wing.<br><br>Diplomatic contacts:<br><br></font><font size=\"12\" color=\"#ffffa600\"><loc><a
196
+ href=\"showinfo:1379//722369372\">Draghka</loc>r</a><br><loc><a href=\"showinfo:1383//1045513061\">Cindare</a></loc><br><a
197
+ href=\"showinfo:1376//1190578956\">H<loc>SG Bomber</a><br><a href=\"showinfo:1375//731151422\">Viktor
198
+ Raybach</a><br><a href=\"showinfo:1375//91517808\">Samahiel sotken</a><br><a
199
+ href=\"showinfo:1375//1080740644\">Ektony</a><br><a href=\"showinfo:1376//1234938555\">Kesper
200
+ North</a><br><a href=\"showinfo:1377//91709320\">Mirana Bal''ari</a><br><a
201
+ href=\"showinfo:1386//1243902442\">Rothana Haldane</a><br><a href=\"showinfo:1374//93624351\">Macgillicutty
202
+ Smash</a><br><a href=\"showinfo:1379//91469732\">La Nidalee</a><br><a href=\"showinfo:1375//687246884\">Nina
203
+ Blaze</a><br><a href=\"showinfo:1385//1687616923\">Merkelchen</a><br><a href=\"showinfo:1376//93784777\">Twizzlespark
204
+ Celes</a><br><a href=\"showinfo:1379//185553036\">Rust Martialis</a><br><a
205
+ href=\"showinfo:1378//862901395\">Sadus</a></loc><br><br></font><font size=\"12\"
206
+ color=\"#bfffffff\">Head Diplomat: <br><br></font><font size=\"12\" color=\"#ffffa600\"><loc><a
207
+ href=\"showinfo:1384//720191856\">Sion Kumitomo</a></loc></font>", "executorCorporation":
208
+ {"name": "DJ''s Retirement Fund", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1344654522/",
209
+ "id_str": "1344654522", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_32.png"},
210
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_64.png"},
211
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_128.png"},
212
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_256.png"}},
213
+ "id": 1344654522}, "primeHour_str": "2", "primeHour": 2, "deleted": false,
214
+ "corporationsCount_str": "373", "creatorCorporation": {"name": "Effervescent
215
+ Blue", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/459299583/",
216
+ "id_str": "459299583", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/459299583_32.png"},
217
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/459299583_64.png"},
218
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/459299583_128.png"},
219
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/459299583_256.png"}},
220
+ "id": 459299583}, "url": "http://www.goonfleet.com", "id_str": "1354830081",
221
+ "creatorCharacter": {"name": "La Sinistra", "isNPC": false, "href": "https://public-crest.eveonline.com/characters/240070320/",
222
+ "capsuleer": {"href": "https://public-crest.eveonline.com/characters/240070320/capsuleer/"},
223
+ "portrait": {"32x32": {"href": "http://imageserver.eveonline.com/Character/240070320_32.jpg"},
224
+ "64x64": {"href": "http://imageserver.eveonline.com/Character/240070320_64.jpg"},
225
+ "128x128": {"href": "http://imageserver.eveonline.com/Character/240070320_128.jpg"},
226
+ "256x256": {"href": "http://imageserver.eveonline.com/Character/240070320_256.jpg"}},
227
+ "id": 240070320, "id_str": "240070320"}, "capitalSystem": {"id_str": "30002902",
228
+ "href": "https://public-crest.eveonline.com/solarsystems/30002902/", "id":
229
+ 30002902, "name": "YA0-XJ"}, "corporations": [{"name": "Interstellar Haulage
230
+ n Waste Removal", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98002506/",
231
+ "id_str": "98002506", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98002506_32.png"},
232
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98002506_64.png"},
233
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98002506_128.png"},
234
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98002506_256.png"}},
235
+ "id": 98002506}, {"name": "Darkwing Investments", "isNPC": false, "href":
236
+ "https://public-crest.eveonline.com/corporations/98003788/", "id_str": "98003788",
237
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98003788_32.png"},
238
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98003788_64.png"},
239
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98003788_128.png"},
240
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98003788_256.png"}},
241
+ "id": 98003788}, {"name": "Bear''s World", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98007214/",
242
+ "id_str": "98007214", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98007214_32.png"},
243
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98007214_64.png"},
244
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98007214_128.png"},
245
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98007214_256.png"}},
246
+ "id": 98007214}, {"name": "Thunderwaffe", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98008630/",
247
+ "id_str": "98008630", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98008630_32.png"},
248
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98008630_64.png"},
249
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98008630_128.png"},
250
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98008630_256.png"}},
251
+ "id": 98008630}, {"name": "Thunderwaffles", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98011372/",
252
+ "id_str": "98011372", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98011372_32.png"},
253
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98011372_64.png"},
254
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98011372_128.png"},
255
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98011372_256.png"}},
256
+ "id": 98011372}, {"name": "Little Monsters", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98011575/",
257
+ "id_str": "98011575", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98011575_32.png"},
258
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98011575_64.png"},
259
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98011575_128.png"},
260
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98011575_256.png"}},
261
+ "id": 98011575}, {"name": "Yai Yai Logistics", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98013741/",
262
+ "id_str": "98013741", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98013741_32.png"},
263
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98013741_64.png"},
264
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98013741_128.png"},
265
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98013741_256.png"}},
266
+ "id": 98013741}, {"name": "Eternal Sunshine.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98013841/",
267
+ "id_str": "98013841", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98013841_32.png"},
268
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98013841_64.png"},
269
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98013841_128.png"},
270
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98013841_256.png"}},
271
+ "id": 98013841}, {"name": "Enlightened Industries", "isNPC": false, "href":
272
+ "https://public-crest.eveonline.com/corporations/98014018/", "id_str": "98014018",
273
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98014018_32.png"},
274
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98014018_64.png"},
275
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98014018_128.png"},
276
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98014018_256.png"}},
277
+ "id": 98014018}, {"name": "Jarhead Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98014536/",
278
+ "id_str": "98014536", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98014536_32.png"},
279
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98014536_64.png"},
280
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98014536_128.png"},
281
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98014536_256.png"}},
282
+ "id": 98014536}, {"name": "Asha'' Man Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98016922/",
283
+ "id_str": "98016922", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98016922_32.png"},
284
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98016922_64.png"},
285
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98016922_128.png"},
286
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98016922_256.png"}},
287
+ "id": 98016922}, {"name": "Thetan Operations", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98020350/",
288
+ "id_str": "98020350", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98020350_32.png"},
289
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98020350_64.png"},
290
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98020350_128.png"},
291
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98020350_256.png"}},
292
+ "id": 98020350}, {"name": "Sigma Caprine Myotonia Research Center", "isNPC":
293
+ false, "href": "https://public-crest.eveonline.com/corporations/98024809/",
294
+ "id_str": "98024809", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98024809_32.png"},
295
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98024809_64.png"},
296
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98024809_128.png"},
297
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98024809_256.png"}},
298
+ "id": 98024809}, {"name": "Terrible Pubbie Holding Corpdot", "isNPC": false,
299
+ "href": "https://public-crest.eveonline.com/corporations/98035416/", "id_str":
300
+ "98035416", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98035416_32.png"},
301
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98035416_64.png"},
302
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98035416_128.png"},
303
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98035416_256.png"}},
304
+ "id": 98035416}, {"name": "Almost Miners", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98043317/",
305
+ "id_str": "98043317", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98043317_32.png"},
306
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98043317_64.png"},
307
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98043317_128.png"},
308
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98043317_256.png"}},
309
+ "id": 98043317}, {"name": "Fatt Hogs Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98046988/",
310
+ "id_str": "98046988", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98046988_32.png"},
311
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98046988_64.png"},
312
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98046988_128.png"},
313
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98046988_256.png"}},
314
+ "id": 98046988}, {"name": "Moongoo Mining and Mixing", "isNPC": false, "href":
315
+ "https://public-crest.eveonline.com/corporations/98047536/", "id_str": "98047536",
316
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98047536_32.png"},
317
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98047536_64.png"},
318
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98047536_128.png"},
319
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98047536_256.png"}},
320
+ "id": 98047536}, {"name": "Akrami", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98047935/",
321
+ "id_str": "98047935", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98047935_32.png"},
322
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98047935_64.png"},
323
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98047935_128.png"},
324
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98047935_256.png"}},
325
+ "id": 98047935}, {"name": "Heroes of the Past", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98052247/",
326
+ "id_str": "98052247", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98052247_32.png"},
327
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98052247_64.png"},
328
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98052247_128.png"},
329
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98052247_256.png"}},
330
+ "id": 98052247}, {"name": "GBS Logistics and Fives Support", "isNPC": false,
331
+ "href": "https://public-crest.eveonline.com/corporations/98057873/", "id_str":
332
+ "98057873", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98057873_32.png"},
333
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98057873_64.png"},
334
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98057873_128.png"},
335
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98057873_256.png"}},
336
+ "id": 98057873}, {"name": "Little Bees", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98058465/",
337
+ "id_str": "98058465", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98058465_32.png"},
338
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98058465_64.png"},
339
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98058465_128.png"},
340
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98058465_256.png"}},
341
+ "id": 98058465}, {"name": "Repercussus", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98064765/",
342
+ "id_str": "98064765", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98064765_32.png"},
343
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98064765_64.png"},
344
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98064765_128.png"},
345
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98064765_256.png"}},
346
+ "id": 98064765}, {"name": "Goonswarm Security Deposit Processing", "isNPC":
347
+ false, "href": "https://public-crest.eveonline.com/corporations/98071211/",
348
+ "id_str": "98071211", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98071211_32.png"},
349
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98071211_64.png"},
350
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98071211_128.png"},
351
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98071211_256.png"}},
352
+ "id": 98071211}, {"name": "Terrulian Exo Arcologies", "isNPC": false, "href":
353
+ "https://public-crest.eveonline.com/corporations/98074557/", "id_str": "98074557",
354
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98074557_32.png"},
355
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98074557_64.png"},
356
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98074557_128.png"},
357
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98074557_256.png"}},
358
+ "id": 98074557}, {"name": "220 AU Warp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98076146/",
359
+ "id_str": "98076146", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98076146_32.png"},
360
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98076146_64.png"},
361
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98076146_128.png"},
362
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98076146_256.png"}},
363
+ "id": 98076146}, {"name": "Tinbox Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98081890/",
364
+ "id_str": "98081890", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98081890_32.png"},
365
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98081890_64.png"},
366
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98081890_128.png"},
367
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98081890_256.png"}},
368
+ "id": 98081890}, {"name": "Phobos Research and Technologies", "isNPC": false,
369
+ "href": "https://public-crest.eveonline.com/corporations/98085681/", "id_str":
370
+ "98085681", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98085681_32.png"},
371
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98085681_64.png"},
372
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98085681_128.png"},
373
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98085681_256.png"}},
374
+ "id": 98085681}, {"name": "I.Net Academy", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98086210/",
375
+ "id_str": "98086210", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98086210_32.png"},
376
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98086210_64.png"},
377
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98086210_128.png"},
378
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98086210_256.png"}},
379
+ "id": 98086210}, {"name": "CAJUN BAYOU INC.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98087125/",
380
+ "id_str": "98087125", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98087125_32.png"},
381
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98087125_64.png"},
382
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98087125_128.png"},
383
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98087125_256.png"}},
384
+ "id": 98087125}, {"name": "Mare Tranquillitatis Industries", "isNPC": false,
385
+ "href": "https://public-crest.eveonline.com/corporations/98089514/", "id_str":
386
+ "98089514", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98089514_32.png"},
387
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98089514_64.png"},
388
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98089514_128.png"},
389
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98089514_256.png"}},
390
+ "id": 98089514}, {"name": "Hasidic Diamond Merchants of Jita", "isNPC": false,
391
+ "href": "https://public-crest.eveonline.com/corporations/98091658/", "id_str":
392
+ "98091658", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98091658_32.png"},
393
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98091658_64.png"},
394
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98091658_128.png"},
395
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98091658_256.png"}},
396
+ "id": 98091658}, {"name": "Mitsubishi Clandestine Pharmaceuticals", "isNPC":
397
+ false, "href": "https://public-crest.eveonline.com/corporations/98093421/",
398
+ "id_str": "98093421", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98093421_32.png"},
399
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98093421_64.png"},
400
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98093421_128.png"},
401
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98093421_256.png"}},
402
+ "id": 98093421}, {"name": "AlpacaWaffe", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98093468/",
403
+ "id_str": "98093468", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98093468_32.png"},
404
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98093468_64.png"},
405
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98093468_128.png"},
406
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98093468_256.png"}},
407
+ "id": 98093468}, {"name": "Hole Exploitation Inc.", "isNPC": false, "href":
408
+ "https://public-crest.eveonline.com/corporations/98106977/", "id_str": "98106977",
409
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98106977_32.png"},
410
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98106977_64.png"},
411
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98106977_128.png"},
412
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98106977_256.png"}},
413
+ "id": 98106977}, {"name": "Bunny Exploded", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98111592/",
414
+ "id_str": "98111592", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98111592_32.png"},
415
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98111592_64.png"},
416
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98111592_128.png"},
417
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98111592_256.png"}},
418
+ "id": 98111592}, {"name": "TeamWin", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98112024/",
419
+ "id_str": "98112024", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98112024_32.png"},
420
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98112024_64.png"},
421
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98112024_128.png"},
422
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98112024_256.png"}},
423
+ "id": 98112024}, {"name": "Elora Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98112039/",
424
+ "id_str": "98112039", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98112039_32.png"},
425
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98112039_64.png"},
426
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98112039_128.png"},
427
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98112039_256.png"}},
428
+ "id": 98112039}, {"name": "Schrodinger''s Profitability", "isNPC": false,
429
+ "href": "https://public-crest.eveonline.com/corporations/98112998/", "id_str":
430
+ "98112998", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98112998_32.png"},
431
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98112998_64.png"},
432
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98112998_128.png"},
433
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98112998_256.png"}},
434
+ "id": 98112998}, {"name": "Deep Space Production Group", "isNPC": false, "href":
435
+ "https://public-crest.eveonline.com/corporations/98113224/", "id_str": "98113224",
436
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98113224_32.png"},
437
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98113224_64.png"},
438
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98113224_128.png"},
439
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98113224_256.png"}},
440
+ "id": 98113224}, {"name": "CFC Fleet Supply Inc.", "isNPC": false, "href":
441
+ "https://public-crest.eveonline.com/corporations/98113915/", "id_str": "98113915",
442
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98113915_32.png"},
443
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98113915_64.png"},
444
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98113915_128.png"},
445
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98113915_256.png"}},
446
+ "id": 98113915}, {"name": "Extreme Parcel Interstellar Couriers", "isNPC":
447
+ false, "href": "https://public-crest.eveonline.com/corporations/98119023/",
448
+ "id_str": "98119023", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98119023_32.png"},
449
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98119023_64.png"},
450
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98119023_128.png"},
451
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98119023_256.png"}},
452
+ "id": 98119023}, {"name": "Twisp and Catsby''s Moonvestments", "isNPC": false,
453
+ "href": "https://public-crest.eveonline.com/corporations/98121292/", "id_str":
454
+ "98121292", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98121292_32.png"},
455
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98121292_64.png"},
456
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98121292_128.png"},
457
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98121292_256.png"}},
458
+ "id": 98121292}, {"name": "Merkin Fitterz", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98122785/",
459
+ "id_str": "98122785", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98122785_32.png"},
460
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98122785_64.png"},
461
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98122785_128.png"},
462
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98122785_256.png"}},
463
+ "id": 98122785}, {"name": "Alt Corp 72", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98123807/",
464
+ "id_str": "98123807", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98123807_32.png"},
465
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98123807_64.png"},
466
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98123807_128.png"},
467
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98123807_256.png"}},
468
+ "id": 98123807}, {"name": "Digger Nick LLC", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98125374/",
469
+ "id_str": "98125374", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98125374_32.png"},
470
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98125374_64.png"},
471
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98125374_128.png"},
472
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98125374_256.png"}},
473
+ "id": 98125374}, {"name": "McKenna Shipyards", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98125431/",
474
+ "id_str": "98125431", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98125431_32.png"},
475
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98125431_64.png"},
476
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98125431_128.png"},
477
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98125431_256.png"}},
478
+ "id": 98125431}, {"name": "Union of Federated Planets", "isNPC": false, "href":
479
+ "https://public-crest.eveonline.com/corporations/98126040/", "id_str": "98126040",
480
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98126040_32.png"},
481
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98126040_64.png"},
482
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98126040_128.png"},
483
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98126040_256.png"}},
484
+ "id": 98126040}, {"name": "Pan-Pan Corporation", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98127651/",
485
+ "id_str": "98127651", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98127651_32.png"},
486
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98127651_64.png"},
487
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98127651_128.png"},
488
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98127651_256.png"}},
489
+ "id": 98127651}, {"name": "Cadelanne Mining Corporation", "isNPC": false,
490
+ "href": "https://public-crest.eveonline.com/corporations/98127805/", "id_str":
491
+ "98127805", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98127805_32.png"},
492
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98127805_64.png"},
493
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98127805_128.png"},
494
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98127805_256.png"}},
495
+ "id": 98127805}, {"name": "Hold My Beer and Watch This.", "isNPC": false,
496
+ "href": "https://public-crest.eveonline.com/corporations/98128487/", "id_str":
497
+ "98128487", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98128487_32.png"},
498
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98128487_64.png"},
499
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98128487_128.png"},
500
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98128487_256.png"}},
501
+ "id": 98128487}, {"name": "Drasnia Trade Consortium", "isNPC": false, "href":
502
+ "https://public-crest.eveonline.com/corporations/98130794/", "id_str": "98130794",
503
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98130794_32.png"},
504
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98130794_64.png"},
505
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98130794_128.png"},
506
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98130794_256.png"}},
507
+ "id": 98130794}, {"name": "HARD KNOCKS CORP", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98135011/",
508
+ "id_str": "98135011", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98135011_32.png"},
509
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98135011_64.png"},
510
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98135011_128.png"},
511
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98135011_256.png"}},
512
+ "id": 98135011}, {"name": "The Wheel of EvE Services", "isNPC": false, "href":
513
+ "https://public-crest.eveonline.com/corporations/98137297/", "id_str": "98137297",
514
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98137297_32.png"},
515
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98137297_64.png"},
516
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98137297_128.png"},
517
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98137297_256.png"}},
518
+ "id": 98137297}, {"name": "Aztec Industry", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98139814/",
519
+ "id_str": "98139814", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98139814_32.png"},
520
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98139814_64.png"},
521
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98139814_128.png"},
522
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98139814_256.png"}},
523
+ "id": 98139814}, {"name": "GoomWaffe", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98140415/",
524
+ "id_str": "98140415", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98140415_32.png"},
525
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98140415_64.png"},
526
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98140415_128.png"},
527
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98140415_256.png"}},
528
+ "id": 98140415}, {"name": "Les bourses ou la vie", "isNPC": false, "href":
529
+ "https://public-crest.eveonline.com/corporations/98141088/", "id_str": "98141088",
530
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98141088_32.png"},
531
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98141088_64.png"},
532
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98141088_128.png"},
533
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98141088_256.png"}},
534
+ "id": 98141088}, {"name": "Vagisil Unlimited", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98146050/",
535
+ "id_str": "98146050", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98146050_32.png"},
536
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98146050_64.png"},
537
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98146050_128.png"},
538
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98146050_256.png"}},
539
+ "id": 98146050}, {"name": "Neckbeards Unite", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98146385/",
540
+ "id_str": "98146385", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98146385_32.png"},
541
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98146385_64.png"},
542
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98146385_128.png"},
543
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98146385_256.png"}},
544
+ "id": 98146385}, {"name": "La Nuestra Familia", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98152899/",
545
+ "id_str": "98152899", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98152899_32.png"},
546
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98152899_64.png"},
547
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98152899_128.png"},
548
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98152899_256.png"}},
549
+ "id": 98152899}, {"name": "Dead Man Ops", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98154230/",
550
+ "id_str": "98154230", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98154230_32.png"},
551
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98154230_64.png"},
552
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98154230_128.png"},
553
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98154230_256.png"}},
554
+ "id": 98154230}, {"name": "Commando - Refuse Disposal", "isNPC": false, "href":
555
+ "https://public-crest.eveonline.com/corporations/98155807/", "id_str": "98155807",
556
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98155807_32.png"},
557
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98155807_64.png"},
558
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98155807_128.png"},
559
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98155807_256.png"}},
560
+ "id": 98155807}, {"name": "Festivus Miracles", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98156924/",
561
+ "id_str": "98156924", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98156924_32.png"},
562
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98156924_64.png"},
563
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98156924_128.png"},
564
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98156924_256.png"}},
565
+ "id": 98156924}, {"name": "Space Priests", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98160087/",
566
+ "id_str": "98160087", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98160087_32.png"},
567
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98160087_64.png"},
568
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98160087_128.png"},
569
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98160087_256.png"}},
570
+ "id": 98160087}, {"name": "Scorpio Rising Club", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98160616/",
571
+ "id_str": "98160616", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98160616_32.png"},
572
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98160616_64.png"},
573
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98160616_128.png"},
574
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98160616_256.png"}},
575
+ "id": 98160616}, {"name": "Norfolk and Good Freight", "isNPC": false, "href":
576
+ "https://public-crest.eveonline.com/corporations/98164094/", "id_str": "98164094",
577
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98164094_32.png"},
578
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98164094_64.png"},
579
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98164094_128.png"},
580
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98164094_256.png"}},
581
+ "id": 98164094}, {"name": "NED-Clan Reshipping Services", "isNPC": false,
582
+ "href": "https://public-crest.eveonline.com/corporations/98170655/", "id_str":
583
+ "98170655", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98170655_32.png"},
584
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98170655_64.png"},
585
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98170655_128.png"},
586
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98170655_256.png"}},
587
+ "id": 98170655}, {"name": "The Rainbow Industries", "isNPC": false, "href":
588
+ "https://public-crest.eveonline.com/corporations/98171496/", "id_str": "98171496",
589
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98171496_32.png"},
590
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98171496_64.png"},
591
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98171496_128.png"},
592
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98171496_256.png"}},
593
+ "id": 98171496}, {"name": "HSL Ltd.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98171570/",
594
+ "id_str": "98171570", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98171570_32.png"},
595
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98171570_64.png"},
596
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98171570_128.png"},
597
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98171570_256.png"}},
598
+ "id": 98171570}, {"name": "Cult of Slack", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98173135/",
599
+ "id_str": "98173135", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98173135_32.png"},
600
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98173135_64.png"},
601
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98173135_128.png"},
602
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98173135_256.png"}},
603
+ "id": 98173135}, {"name": "Seminal Vessels", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98174629/",
604
+ "id_str": "98174629", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98174629_32.png"},
605
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98174629_64.png"},
606
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98174629_128.png"},
607
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98174629_256.png"}},
608
+ "id": 98174629}, {"name": "Phuking bowl chit", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98175189/",
609
+ "id_str": "98175189", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98175189_32.png"},
610
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98175189_64.png"},
611
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98175189_128.png"},
612
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98175189_256.png"}},
613
+ "id": 98175189}, {"name": "Vamonos Pest Control", "isNPC": false, "href":
614
+ "https://public-crest.eveonline.com/corporations/98178183/", "id_str": "98178183",
615
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98178183_32.png"},
616
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98178183_64.png"},
617
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98178183_128.png"},
618
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98178183_256.png"}},
619
+ "id": 98178183}, {"name": "Sagan Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98178481/",
620
+ "id_str": "98178481", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98178481_32.png"},
621
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98178481_64.png"},
622
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98178481_128.png"},
623
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98178481_256.png"}},
624
+ "id": 98178481}, {"name": "Directorate Tech Moon Holding Corp", "isNPC": false,
625
+ "href": "https://public-crest.eveonline.com/corporations/98178640/", "id_str":
626
+ "98178640", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98178640_32.png"},
627
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98178640_64.png"},
628
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98178640_128.png"},
629
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98178640_256.png"}},
630
+ "id": 98178640}, {"name": "NexGalactic", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98180811/",
631
+ "id_str": "98180811", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98180811_32.png"},
632
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98180811_64.png"},
633
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98180811_128.png"},
634
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98180811_256.png"}},
635
+ "id": 98180811}, {"name": "APOBEC3G", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98184700/",
636
+ "id_str": "98184700", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98184700_32.png"},
637
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98184700_64.png"},
638
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98184700_128.png"},
639
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98184700_256.png"}},
640
+ "id": 98184700}, {"name": "KNIGHT Sweats", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98186877/",
641
+ "id_str": "98186877", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98186877_32.png"},
642
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98186877_64.png"},
643
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98186877_128.png"},
644
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98186877_256.png"}},
645
+ "id": 98186877}, {"name": "DNIWE Inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98187438/",
646
+ "id_str": "98187438", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98187438_32.png"},
647
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98187438_64.png"},
648
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98187438_128.png"},
649
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98187438_256.png"}},
650
+ "id": 98187438}, {"name": "Orti industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98189456/",
651
+ "id_str": "98189456", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98189456_32.png"},
652
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98189456_64.png"},
653
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98189456_128.png"},
654
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98189456_256.png"}},
655
+ "id": 98189456}, {"name": "TG Holding", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98193320/",
656
+ "id_str": "98193320", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98193320_32.png"},
657
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98193320_64.png"},
658
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98193320_128.png"},
659
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98193320_256.png"}},
660
+ "id": 98193320}, {"name": "Soros Crew", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98193627/",
661
+ "id_str": "98193627", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98193627_32.png"},
662
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98193627_64.png"},
663
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98193627_128.png"},
664
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98193627_256.png"}},
665
+ "id": 98193627}, {"name": "Krautfleet", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98195010/",
666
+ "id_str": "98195010", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98195010_32.png"},
667
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98195010_64.png"},
668
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98195010_128.png"},
669
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98195010_256.png"}},
670
+ "id": 98195010}, {"name": "Indecisive Industries", "isNPC": false, "href":
671
+ "https://public-crest.eveonline.com/corporations/98196131/", "id_str": "98196131",
672
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98196131_32.png"},
673
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98196131_64.png"},
674
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98196131_128.png"},
675
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98196131_256.png"}},
676
+ "id": 98196131}, {"name": "Mufa Thukker Industries", "isNPC": false, "href":
677
+ "https://public-crest.eveonline.com/corporations/98197765/", "id_str": "98197765",
678
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98197765_32.png"},
679
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98197765_64.png"},
680
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98197765_128.png"},
681
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98197765_256.png"}},
682
+ "id": 98197765}, {"name": "Today Was A Good Day", "isNPC": false, "href":
683
+ "https://public-crest.eveonline.com/corporations/98209935/", "id_str": "98209935",
684
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98209935_32.png"},
685
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98209935_64.png"},
686
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98209935_128.png"},
687
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98209935_256.png"}},
688
+ "id": 98209935}, {"name": "Walder Frey Wedding Planning LLC", "isNPC": false,
689
+ "href": "https://public-crest.eveonline.com/corporations/98212311/", "id_str":
690
+ "98212311", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98212311_32.png"},
691
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98212311_64.png"},
692
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98212311_128.png"},
693
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98212311_256.png"}},
694
+ "id": 98212311}, {"name": "Intergalatic Union of Mineworkers", "isNPC": false,
695
+ "href": "https://public-crest.eveonline.com/corporations/98212434/", "id_str":
696
+ "98212434", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98212434_32.png"},
697
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98212434_64.png"},
698
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98212434_128.png"},
699
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98212434_256.png"}},
700
+ "id": 98212434}, {"name": "Lazy Mode ISK", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98213864/",
701
+ "id_str": "98213864", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98213864_32.png"},
702
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98213864_64.png"},
703
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98213864_128.png"},
704
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98213864_256.png"}},
705
+ "id": 98213864}, {"name": "Draco Inc LLC", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98215689/",
706
+ "id_str": "98215689", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98215689_32.png"},
707
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98215689_64.png"},
708
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98215689_128.png"},
709
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98215689_256.png"}},
710
+ "id": 98215689}, {"name": "Novae exe", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98218760/",
711
+ "id_str": "98218760", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98218760_32.png"},
712
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98218760_64.png"},
713
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98218760_128.png"},
714
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98218760_256.png"}},
715
+ "id": 98218760}, {"name": "RGSU-Alt''s", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98219195/",
716
+ "id_str": "98219195", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98219195_32.png"},
717
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98219195_64.png"},
718
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98219195_128.png"},
719
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98219195_256.png"}},
720
+ "id": 98219195}, {"name": "Reclamation And Research", "isNPC": false, "href":
721
+ "https://public-crest.eveonline.com/corporations/98226683/", "id_str": "98226683",
722
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98226683_32.png"},
723
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98226683_64.png"},
724
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98226683_128.png"},
725
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98226683_256.png"}},
726
+ "id": 98226683}, {"name": "One Too Many", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98228909/",
727
+ "id_str": "98228909", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98228909_32.png"},
728
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98228909_64.png"},
729
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98228909_128.png"},
730
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98228909_256.png"}},
731
+ "id": 98228909}, {"name": "Starfsckers Inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98229193/",
732
+ "id_str": "98229193", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98229193_32.png"},
733
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98229193_64.png"},
734
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98229193_128.png"},
735
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98229193_256.png"}},
736
+ "id": 98229193}, {"name": "Petro-Goon Corporation", "isNPC": false, "href":
737
+ "https://public-crest.eveonline.com/corporations/98230715/", "id_str": "98230715",
738
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98230715_32.png"},
739
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98230715_64.png"},
740
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98230715_128.png"},
741
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98230715_256.png"}},
742
+ "id": 98230715}, {"name": "Eselwaffe", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98235026/",
743
+ "id_str": "98235026", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98235026_32.png"},
744
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98235026_64.png"},
745
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98235026_128.png"},
746
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98235026_256.png"}},
747
+ "id": 98235026}, {"name": "Internationale Ploiesti", "isNPC": false, "href":
748
+ "https://public-crest.eveonline.com/corporations/98236566/", "id_str": "98236566",
749
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98236566_32.png"},
750
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98236566_64.png"},
751
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98236566_128.png"},
752
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98236566_256.png"}},
753
+ "id": 98236566}, {"name": "Another Carebear''s Vanity Corporation DOT", "isNPC":
754
+ false, "href": "https://public-crest.eveonline.com/corporations/98237288/",
755
+ "id_str": "98237288", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98237288_32.png"},
756
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98237288_64.png"},
757
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98237288_128.png"},
758
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98237288_256.png"}},
759
+ "id": 98237288}, {"name": "ooailia", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98238052/",
760
+ "id_str": "98238052", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98238052_32.png"},
761
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98238052_64.png"},
762
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98238052_128.png"},
763
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98238052_256.png"}},
764
+ "id": 98238052}, {"name": "Bad Posting University", "isNPC": false, "href":
765
+ "https://public-crest.eveonline.com/corporations/98238763/", "id_str": "98238763",
766
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98238763_32.png"},
767
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98238763_64.png"},
768
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98238763_128.png"},
769
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98238763_256.png"}},
770
+ "id": 98238763}, {"name": "GoonWaffe Bootcamp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98242107/",
771
+ "id_str": "98242107", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98242107_32.png"},
772
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98242107_64.png"},
773
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98242107_128.png"},
774
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98242107_256.png"}},
775
+ "id": 98242107}, {"name": "The Not So Jolly Rogers Academy", "isNPC": false,
776
+ "href": "https://public-crest.eveonline.com/corporations/98245158/", "id_str":
777
+ "98245158", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98245158_32.png"},
778
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98245158_64.png"},
779
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98245158_128.png"},
780
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98245158_256.png"}},
781
+ "id": 98245158}, {"name": "Jaysh Al Mahdi", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98245364/",
782
+ "id_str": "98245364", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98245364_32.png"},
783
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98245364_64.png"},
784
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98245364_128.png"},
785
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98245364_256.png"}},
786
+ "id": 98245364}, {"name": "DTG Capitals", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98247694/",
787
+ "id_str": "98247694", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98247694_32.png"},
788
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98247694_64.png"},
789
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98247694_128.png"},
790
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98247694_256.png"}},
791
+ "id": 98247694}, {"name": "KS Logistics AG", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98248862/",
792
+ "id_str": "98248862", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98248862_32.png"},
793
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98248862_64.png"},
794
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98248862_128.png"},
795
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98248862_256.png"}},
796
+ "id": 98248862}, {"name": "No Mercy For Percy", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98249348/",
797
+ "id_str": "98249348", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98249348_32.png"},
798
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98249348_64.png"},
799
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98249348_128.png"},
800
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98249348_256.png"}},
801
+ "id": 98249348}, {"name": "TABFLEET", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98249552/",
802
+ "id_str": "98249552", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98249552_32.png"},
803
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98249552_64.png"},
804
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98249552_128.png"},
805
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98249552_256.png"}},
806
+ "id": 98249552}, {"name": "My little pony and Teddy bear factory.", "isNPC":
807
+ false, "href": "https://public-crest.eveonline.com/corporations/98251736/",
808
+ "id_str": "98251736", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98251736_32.png"},
809
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98251736_64.png"},
810
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98251736_128.png"},
811
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98251736_256.png"}},
812
+ "id": 98251736}, {"name": "Lord of Pubs Corporation", "isNPC": false, "href":
813
+ "https://public-crest.eveonline.com/corporations/98251960/", "id_str": "98251960",
814
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98251960_32.png"},
815
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98251960_64.png"},
816
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98251960_128.png"},
817
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98251960_256.png"}},
818
+ "id": 98251960}, {"name": "The BlueBalls Express", "isNPC": false, "href":
819
+ "https://public-crest.eveonline.com/corporations/98252736/", "id_str": "98252736",
820
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98252736_32.png"},
821
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98252736_64.png"},
822
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98252736_128.png"},
823
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98252736_256.png"}},
824
+ "id": 98252736}, {"name": "Kugami Enterprise", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98254495/",
825
+ "id_str": "98254495", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98254495_32.png"},
826
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98254495_64.png"},
827
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98254495_128.png"},
828
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98254495_256.png"}},
829
+ "id": 98254495}, {"name": "Idiot Bad Stupidcorp", "isNPC": false, "href":
830
+ "https://public-crest.eveonline.com/corporations/98255976/", "id_str": "98255976",
831
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98255976_32.png"},
832
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98255976_64.png"},
833
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98255976_128.png"},
834
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98255976_256.png"}},
835
+ "id": 98255976}, {"name": "Games of Drones", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98257496/",
836
+ "id_str": "98257496", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98257496_32.png"},
837
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98257496_64.png"},
838
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98257496_128.png"},
839
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98257496_256.png"}},
840
+ "id": 98257496}, {"name": "Go get a whisky", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98257627/",
841
+ "id_str": "98257627", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98257627_32.png"},
842
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98257627_64.png"},
843
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98257627_128.png"},
844
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98257627_256.png"}},
845
+ "id": 98257627}, {"name": "Courtesans Imports", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98260149/",
846
+ "id_str": "98260149", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98260149_32.png"},
847
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98260149_64.png"},
848
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98260149_128.png"},
849
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98260149_256.png"}},
850
+ "id": 98260149}, {"name": "Cassandras Corps", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98261209/",
851
+ "id_str": "98261209", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98261209_32.png"},
852
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98261209_64.png"},
853
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98261209_128.png"},
854
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98261209_256.png"}},
855
+ "id": 98261209}, {"name": "Dark Force Industry", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98261279/",
856
+ "id_str": "98261279", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98261279_32.png"},
857
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98261279_64.png"},
858
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98261279_128.png"},
859
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98261279_256.png"}},
860
+ "id": 98261279}, {"name": "Forsaken Reavers", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98265161/",
861
+ "id_str": "98265161", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98265161_32.png"},
862
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98265161_64.png"},
863
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98265161_128.png"},
864
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98265161_256.png"}},
865
+ "id": 98265161}, {"name": "Secret Dark Circle", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98267239/",
866
+ "id_str": "98267239", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98267239_32.png"},
867
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98267239_64.png"},
868
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98267239_128.png"},
869
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98267239_256.png"}},
870
+ "id": 98267239}, {"name": "Industrial Cleaning and Waxing", "isNPC": false,
871
+ "href": "https://public-crest.eveonline.com/corporations/98269009/", "id_str":
872
+ "98269009", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98269009_32.png"},
873
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98269009_64.png"},
874
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98269009_128.png"},
875
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98269009_256.png"}},
876
+ "id": 98269009}, {"name": "Nod Industry.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98270906/",
877
+ "id_str": "98270906", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98270906_32.png"},
878
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98270906_64.png"},
879
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98270906_128.png"},
880
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98270906_256.png"}},
881
+ "id": 98270906}, {"name": "Pump Up The Volume", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98271080/",
882
+ "id_str": "98271080", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98271080_32.png"},
883
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98271080_64.png"},
884
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98271080_128.png"},
885
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98271080_256.png"}},
886
+ "id": 98271080}, {"name": "Continuous Improvement Limited", "isNPC": false,
887
+ "href": "https://public-crest.eveonline.com/corporations/98273830/", "id_str":
888
+ "98273830", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98273830_32.png"},
889
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98273830_64.png"},
890
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98273830_128.png"},
891
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98273830_256.png"}},
892
+ "id": 98273830}, {"name": "Magios Inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98281331/",
893
+ "id_str": "98281331", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98281331_32.png"},
894
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98281331_64.png"},
895
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98281331_128.png"},
896
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98281331_256.png"}},
897
+ "id": 98281331}, {"name": "Round Square Hexagonal Triangles", "isNPC": false,
898
+ "href": "https://public-crest.eveonline.com/corporations/98283173/", "id_str":
899
+ "98283173", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98283173_32.png"},
900
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98283173_64.png"},
901
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98283173_128.png"},
902
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98283173_256.png"}},
903
+ "id": 98283173}, {"name": "Smuggler''s Cove", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98285116/",
904
+ "id_str": "98285116", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98285116_32.png"},
905
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98285116_64.png"},
906
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98285116_128.png"},
907
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98285116_256.png"}},
908
+ "id": 98285116}, {"name": "Jewish Esoteric Tradition", "isNPC": false, "href":
909
+ "https://public-crest.eveonline.com/corporations/98285436/", "id_str": "98285436",
910
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98285436_32.png"},
911
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98285436_64.png"},
912
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98285436_128.png"},
913
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98285436_256.png"}},
914
+ "id": 98285436}, {"name": "Breadsticks Not Included", "isNPC": false, "href":
915
+ "https://public-crest.eveonline.com/corporations/98285681/", "id_str": "98285681",
916
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98285681_32.png"},
917
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98285681_64.png"},
918
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98285681_128.png"},
919
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98285681_256.png"}},
920
+ "id": 98285681}, {"name": "Slight Mechanical Destruction", "isNPC": false,
921
+ "href": "https://public-crest.eveonline.com/corporations/98286023/", "id_str":
922
+ "98286023", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98286023_32.png"},
923
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98286023_64.png"},
924
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98286023_128.png"},
925
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98286023_256.png"}},
926
+ "id": 98286023}, {"name": "Tu''ka Transit and Logistics", "isNPC": false,
927
+ "href": "https://public-crest.eveonline.com/corporations/98286893/", "id_str":
928
+ "98286893", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98286893_32.png"},
929
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98286893_64.png"},
930
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98286893_128.png"},
931
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98286893_256.png"}},
932
+ "id": 98286893}, {"name": "James Carl Logistics", "isNPC": false, "href":
933
+ "https://public-crest.eveonline.com/corporations/98287435/", "id_str": "98287435",
934
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98287435_32.png"},
935
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98287435_64.png"},
936
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98287435_128.png"},
937
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98287435_256.png"}},
938
+ "id": 98287435}, {"name": "Effort Inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98287823/",
939
+ "id_str": "98287823", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98287823_32.png"},
940
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98287823_64.png"},
941
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98287823_128.png"},
942
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98287823_256.png"}},
943
+ "id": 98287823}, {"name": "In One Ear And Out Your Mother", "isNPC": false,
944
+ "href": "https://public-crest.eveonline.com/corporations/98288412/", "id_str":
945
+ "98288412", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98288412_32.png"},
946
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98288412_64.png"},
947
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98288412_128.png"},
948
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98288412_256.png"}},
949
+ "id": 98288412}, {"name": "Kraken Spectacles", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98289345/",
950
+ "id_str": "98289345", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98289345_32.png"},
951
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98289345_64.png"},
952
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98289345_128.png"},
953
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98289345_256.png"}},
954
+ "id": 98289345}, {"name": "magic stuff", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98289465/",
955
+ "id_str": "98289465", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98289465_32.png"},
956
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98289465_64.png"},
957
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98289465_128.png"},
958
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98289465_256.png"}},
959
+ "id": 98289465}, {"name": "Hebrew Procurement Vanguard", "isNPC": false, "href":
960
+ "https://public-crest.eveonline.com/corporations/98290437/", "id_str": "98290437",
961
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98290437_32.png"},
962
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98290437_64.png"},
963
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98290437_128.png"},
964
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98290437_256.png"}},
965
+ "id": 98290437}, {"name": "Bloodline Industries", "isNPC": false, "href":
966
+ "https://public-crest.eveonline.com/corporations/98290614/", "id_str": "98290614",
967
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98290614_32.png"},
968
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98290614_64.png"},
969
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98290614_128.png"},
970
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98290614_256.png"}},
971
+ "id": 98290614}, {"name": "Gay Sex Heavy Industries", "isNPC": false, "href":
972
+ "https://public-crest.eveonline.com/corporations/98290756/", "id_str": "98290756",
973
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98290756_32.png"},
974
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98290756_64.png"},
975
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98290756_128.png"},
976
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98290756_256.png"}},
977
+ "id": 98290756}, {"name": "Goonswarm Office of General Counsel", "isNPC":
978
+ false, "href": "https://public-crest.eveonline.com/corporations/98291471/",
979
+ "id_str": "98291471", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98291471_32.png"},
980
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98291471_64.png"},
981
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98291471_128.png"},
982
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98291471_256.png"}},
983
+ "id": 98291471}, {"name": "Planetary Engineering Null Industry and Service",
984
+ "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98292261/",
985
+ "id_str": "98292261", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98292261_32.png"},
986
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98292261_64.png"},
987
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98292261_128.png"},
988
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98292261_256.png"}},
989
+ "id": 98292261}, {"name": "Goontanamo Bay", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98292837/",
990
+ "id_str": "98292837", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98292837_32.png"},
991
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98292837_64.png"},
992
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98292837_128.png"},
993
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98292837_256.png"}},
994
+ "id": 98292837}, {"name": "Down Syndrome Proletariat", "isNPC": false, "href":
995
+ "https://public-crest.eveonline.com/corporations/98292934/", "id_str": "98292934",
996
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98292934_32.png"},
997
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98292934_64.png"},
998
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98292934_128.png"},
999
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98292934_256.png"}},
1000
+ "id": 98292934}, {"name": "Dead Panther Society", "isNPC": false, "href":
1001
+ "https://public-crest.eveonline.com/corporations/98293007/", "id_str": "98293007",
1002
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98293007_32.png"},
1003
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98293007_64.png"},
1004
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98293007_128.png"},
1005
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98293007_256.png"}},
1006
+ "id": 98293007}, {"name": "Fatbee Swaggers", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98293748/",
1007
+ "id_str": "98293748", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98293748_32.png"},
1008
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98293748_64.png"},
1009
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98293748_128.png"},
1010
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98293748_256.png"}},
1011
+ "id": 98293748}, {"name": "Effort LLC", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98294108/",
1012
+ "id_str": "98294108", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98294108_32.png"},
1013
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98294108_64.png"},
1014
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98294108_128.png"},
1015
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98294108_256.png"}},
1016
+ "id": 98294108}, {"name": "Madoff Investment Securities", "isNPC": false,
1017
+ "href": "https://public-crest.eveonline.com/corporations/98294899/", "id_str":
1018
+ "98294899", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98294899_32.png"},
1019
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98294899_64.png"},
1020
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98294899_128.png"},
1021
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98294899_256.png"}},
1022
+ "id": 98294899}, {"name": "Assegai-Feisar", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98295633/",
1023
+ "id_str": "98295633", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98295633_32.png"},
1024
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98295633_64.png"},
1025
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98295633_128.png"},
1026
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98295633_256.png"}},
1027
+ "id": 98295633}, {"name": "Defunct Enterprise", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98296252/",
1028
+ "id_str": "98296252", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98296252_32.png"},
1029
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98296252_64.png"},
1030
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98296252_128.png"},
1031
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98296252_256.png"}},
1032
+ "id": 98296252}, {"name": "Sandia National Laboratories", "isNPC": false,
1033
+ "href": "https://public-crest.eveonline.com/corporations/98297038/", "id_str":
1034
+ "98297038", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98297038_32.png"},
1035
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98297038_64.png"},
1036
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98297038_128.png"},
1037
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98297038_256.png"}},
1038
+ "id": 98297038}, {"name": "My Smooth Little Empire", "isNPC": false, "href":
1039
+ "https://public-crest.eveonline.com/corporations/98298048/", "id_str": "98298048",
1040
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98298048_32.png"},
1041
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98298048_64.png"},
1042
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98298048_128.png"},
1043
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98298048_256.png"}},
1044
+ "id": 98298048}, {"name": "Camarus Inventions LLC.", "isNPC": false, "href":
1045
+ "https://public-crest.eveonline.com/corporations/98301710/", "id_str": "98301710",
1046
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98301710_32.png"},
1047
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98301710_64.png"},
1048
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98301710_128.png"},
1049
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98301710_256.png"}},
1050
+ "id": 98301710}, {"name": "Man Juice Industrial Zone", "isNPC": false, "href":
1051
+ "https://public-crest.eveonline.com/corporations/98301914/", "id_str": "98301914",
1052
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98301914_32.png"},
1053
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98301914_64.png"},
1054
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98301914_128.png"},
1055
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98301914_256.png"}},
1056
+ "id": 98301914}, {"name": "Dreidel Droppers", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98303750/",
1057
+ "id_str": "98303750", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98303750_32.png"},
1058
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98303750_64.png"},
1059
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98303750_128.png"},
1060
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98303750_256.png"}},
1061
+ "id": 98303750}, {"name": "Pod Fluid Deficiency", "isNPC": false, "href":
1062
+ "https://public-crest.eveonline.com/corporations/98303982/", "id_str": "98303982",
1063
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98303982_32.png"},
1064
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98303982_64.png"},
1065
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98303982_128.png"},
1066
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98303982_256.png"}},
1067
+ "id": 98303982}, {"name": "Dead Space Investments.", "isNPC": false, "href":
1068
+ "https://public-crest.eveonline.com/corporations/98305319/", "id_str": "98305319",
1069
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98305319_32.png"},
1070
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98305319_64.png"},
1071
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98305319_128.png"},
1072
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98305319_256.png"}},
1073
+ "id": 98305319}, {"name": "The Farting Unicorns", "isNPC": false, "href":
1074
+ "https://public-crest.eveonline.com/corporations/98305857/", "id_str": "98305857",
1075
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98305857_32.png"},
1076
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98305857_64.png"},
1077
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98305857_128.png"},
1078
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98305857_256.png"}},
1079
+ "id": 98305857}, {"name": "Niarja. Auga. Deltole and Schmaeel LLP", "isNPC":
1080
+ false, "href": "https://public-crest.eveonline.com/corporations/98307201/",
1081
+ "id_str": "98307201", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98307201_32.png"},
1082
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98307201_64.png"},
1083
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98307201_128.png"},
1084
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98307201_256.png"}},
1085
+ "id": 98307201}, {"name": "Shux Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98308465/",
1086
+ "id_str": "98308465", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98308465_32.png"},
1087
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98308465_64.png"},
1088
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98308465_128.png"},
1089
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98308465_256.png"}},
1090
+ "id": 98308465}, {"name": "ZC Omega", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98309874/",
1091
+ "id_str": "98309874", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98309874_32.png"},
1092
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98309874_64.png"},
1093
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98309874_128.png"},
1094
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98309874_256.png"}},
1095
+ "id": 98309874}, {"name": "THE BCBUDDHA EXPERIENCE", "isNPC": false, "href":
1096
+ "https://public-crest.eveonline.com/corporations/98309967/", "id_str": "98309967",
1097
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98309967_32.png"},
1098
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98309967_64.png"},
1099
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98309967_128.png"},
1100
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98309967_256.png"}},
1101
+ "id": 98309967}, {"name": "Rapidix Extremix", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98313189/",
1102
+ "id_str": "98313189", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98313189_32.png"},
1103
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98313189_64.png"},
1104
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98313189_128.png"},
1105
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98313189_256.png"}},
1106
+ "id": 98313189}, {"name": "ZM Global", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98313554/",
1107
+ "id_str": "98313554", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98313554_32.png"},
1108
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98313554_64.png"},
1109
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98313554_128.png"},
1110
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98313554_256.png"}},
1111
+ "id": 98313554}, {"name": "Dynamic Holdings", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98313996/",
1112
+ "id_str": "98313996", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98313996_32.png"},
1113
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98313996_64.png"},
1114
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98313996_128.png"},
1115
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98313996_256.png"}},
1116
+ "id": 98313996}, {"name": "Tuoni Cruise Lines", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98314331/",
1117
+ "id_str": "98314331", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98314331_32.png"},
1118
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98314331_64.png"},
1119
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98314331_128.png"},
1120
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98314331_256.png"}},
1121
+ "id": 98314331}, {"name": "Carl''s Pandemic", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98316052/",
1122
+ "id_str": "98316052", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98316052_32.png"},
1123
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98316052_64.png"},
1124
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98316052_128.png"},
1125
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98316052_256.png"}},
1126
+ "id": 98316052}, {"name": "I''m Fine and You", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98316516/",
1127
+ "id_str": "98316516", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98316516_32.png"},
1128
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98316516_64.png"},
1129
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98316516_128.png"},
1130
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98316516_256.png"}},
1131
+ "id": 98316516}, {"name": "Corellian Engineering Corp LLC", "isNPC": false,
1132
+ "href": "https://public-crest.eveonline.com/corporations/98316528/", "id_str":
1133
+ "98316528", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98316528_32.png"},
1134
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98316528_64.png"},
1135
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98316528_128.png"},
1136
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98316528_256.png"}},
1137
+ "id": 98316528}, {"name": "Hotpie Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98318286/",
1138
+ "id_str": "98318286", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98318286_32.png"},
1139
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98318286_64.png"},
1140
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98318286_128.png"},
1141
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98318286_256.png"}},
1142
+ "id": 98318286}, {"name": "Coalition of Doctors Against Lawyers", "isNPC":
1143
+ false, "href": "https://public-crest.eveonline.com/corporations/98319147/",
1144
+ "id_str": "98319147", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98319147_32.png"},
1145
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98319147_64.png"},
1146
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98319147_128.png"},
1147
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98319147_256.png"}},
1148
+ "id": 98319147}, {"name": "Niflheim Trust", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98320135/",
1149
+ "id_str": "98320135", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98320135_32.png"},
1150
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98320135_64.png"},
1151
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98320135_128.png"},
1152
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98320135_256.png"}},
1153
+ "id": 98320135}, {"name": "Nixon Memorial Trust Factory", "isNPC": false,
1154
+ "href": "https://public-crest.eveonline.com/corporations/98320426/", "id_str":
1155
+ "98320426", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98320426_32.png"},
1156
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98320426_64.png"},
1157
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98320426_128.png"},
1158
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98320426_256.png"}},
1159
+ "id": 98320426}, {"name": "The Black Dynasty", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98322089/",
1160
+ "id_str": "98322089", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98322089_32.png"},
1161
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98322089_64.png"},
1162
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98322089_128.png"},
1163
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98322089_256.png"}},
1164
+ "id": 98322089}, {"name": "Harite Productions", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98322649/",
1165
+ "id_str": "98322649", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98322649_32.png"},
1166
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98322649_64.png"},
1167
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98322649_128.png"},
1168
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98322649_256.png"}},
1169
+ "id": 98322649}, {"name": "Logistic incorporated", "isNPC": false, "href":
1170
+ "https://public-crest.eveonline.com/corporations/98322756/", "id_str": "98322756",
1171
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98322756_32.png"},
1172
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98322756_64.png"},
1173
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98322756_128.png"},
1174
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98322756_256.png"}},
1175
+ "id": 98322756}, {"name": "VEB Kombinat Mondgruetze Mansfeld", "isNPC": false,
1176
+ "href": "https://public-crest.eveonline.com/corporations/98324091/", "id_str":
1177
+ "98324091", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98324091_32.png"},
1178
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98324091_64.png"},
1179
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98324091_128.png"},
1180
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98324091_256.png"}},
1181
+ "id": 98324091}, {"name": "Advanced Agricultural Lubricants", "isNPC": false,
1182
+ "href": "https://public-crest.eveonline.com/corporations/98324565/", "id_str":
1183
+ "98324565", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98324565_32.png"},
1184
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98324565_64.png"},
1185
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98324565_128.png"},
1186
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98324565_256.png"}},
1187
+ "id": 98324565}, {"name": "Jewing and Jewing some more", "isNPC": false, "href":
1188
+ "https://public-crest.eveonline.com/corporations/98324918/", "id_str": "98324918",
1189
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98324918_32.png"},
1190
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98324918_64.png"},
1191
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98324918_128.png"},
1192
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98324918_256.png"}},
1193
+ "id": 98324918}, {"name": "Astrosemite Heavy Industries", "isNPC": false,
1194
+ "href": "https://public-crest.eveonline.com/corporations/98325973/", "id_str":
1195
+ "98325973", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98325973_32.png"},
1196
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98325973_64.png"},
1197
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98325973_128.png"},
1198
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98325973_256.png"}},
1199
+ "id": 98325973}, {"name": "The Strange Theory of Light and Matter", "isNPC":
1200
+ false, "href": "https://public-crest.eveonline.com/corporations/98327787/",
1201
+ "id_str": "98327787", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98327787_32.png"},
1202
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98327787_64.png"},
1203
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98327787_128.png"},
1204
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98327787_256.png"}},
1205
+ "id": 98327787}, {"name": "Free My People", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98328933/",
1206
+ "id_str": "98328933", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98328933_32.png"},
1207
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98328933_64.png"},
1208
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98328933_128.png"},
1209
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98328933_256.png"}},
1210
+ "id": 98328933}, {"name": "The Koevoet", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98329535/",
1211
+ "id_str": "98329535", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98329535_32.png"},
1212
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98329535_64.png"},
1213
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98329535_128.png"},
1214
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98329535_256.png"}},
1215
+ "id": 98329535}, {"name": "Forsaken Pubbies", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98329553/",
1216
+ "id_str": "98329553", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98329553_32.png"},
1217
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98329553_64.png"},
1218
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98329553_128.png"},
1219
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98329553_256.png"}},
1220
+ "id": 98329553}, {"name": "Leet Like Beck Hansen", "isNPC": false, "href":
1221
+ "https://public-crest.eveonline.com/corporations/98330140/", "id_str": "98330140",
1222
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98330140_32.png"},
1223
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98330140_64.png"},
1224
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98330140_128.png"},
1225
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98330140_256.png"}},
1226
+ "id": 98330140}, {"name": "Brown Tattoo Inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98330579/",
1227
+ "id_str": "98330579", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98330579_32.png"},
1228
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98330579_64.png"},
1229
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98330579_128.png"},
1230
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98330579_256.png"}},
1231
+ "id": 98330579}, {"name": "Presidential Office of Transparency", "isNPC":
1232
+ false, "href": "https://public-crest.eveonline.com/corporations/98332002/",
1233
+ "id_str": "98332002", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98332002_32.png"},
1234
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98332002_64.png"},
1235
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98332002_128.png"},
1236
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98332002_256.png"}},
1237
+ "id": 98332002}, {"name": "Hisec Refugee Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98334480/",
1238
+ "id_str": "98334480", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98334480_32.png"},
1239
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98334480_64.png"},
1240
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98334480_128.png"},
1241
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98334480_256.png"}},
1242
+ "id": 98334480}, {"name": "I See Dead Pixels", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98334481/",
1243
+ "id_str": "98334481", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98334481_32.png"},
1244
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98334481_64.png"},
1245
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98334481_128.png"},
1246
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98334481_256.png"}},
1247
+ "id": 98334481}, {"name": "Careless Whispers in the Dark", "isNPC": false,
1248
+ "href": "https://public-crest.eveonline.com/corporations/98334657/", "id_str":
1249
+ "98334657", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98334657_32.png"},
1250
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98334657_64.png"},
1251
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98334657_128.png"},
1252
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98334657_256.png"}},
1253
+ "id": 98334657}, {"name": "Progenitor Enterprises", "isNPC": false, "href":
1254
+ "https://public-crest.eveonline.com/corporations/98335608/", "id_str": "98335608",
1255
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98335608_32.png"},
1256
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98335608_64.png"},
1257
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98335608_128.png"},
1258
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98335608_256.png"}},
1259
+ "id": 98335608}, {"name": "ProxyBuilders", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98336146/",
1260
+ "id_str": "98336146", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98336146_32.png"},
1261
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98336146_64.png"},
1262
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98336146_128.png"},
1263
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98336146_256.png"}},
1264
+ "id": 98336146}, {"name": "ONE Team", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98337934/",
1265
+ "id_str": "98337934", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98337934_32.png"},
1266
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98337934_64.png"},
1267
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98337934_128.png"},
1268
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98337934_256.png"}},
1269
+ "id": 98337934}, {"name": "B Supply", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98337946/",
1270
+ "id_str": "98337946", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98337946_32.png"},
1271
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98337946_64.png"},
1272
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98337946_128.png"},
1273
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98337946_256.png"}},
1274
+ "id": 98337946}, {"name": "PubSwarm Federation", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98338553/",
1275
+ "id_str": "98338553", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98338553_32.png"},
1276
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98338553_64.png"},
1277
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98338553_128.png"},
1278
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98338553_256.png"}},
1279
+ "id": 98338553}, {"name": "Zenlightened Industries", "isNPC": false, "href":
1280
+ "https://public-crest.eveonline.com/corporations/98338777/", "id_str": "98338777",
1281
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98338777_32.png"},
1282
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98338777_64.png"},
1283
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98338777_128.png"},
1284
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98338777_256.png"}},
1285
+ "id": 98338777}, {"name": "Friendly Fire Club", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98339425/",
1286
+ "id_str": "98339425", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98339425_32.png"},
1287
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98339425_64.png"},
1288
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98339425_128.png"},
1289
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98339425_256.png"}},
1290
+ "id": 98339425}, {"name": "Naranek Industries LLC", "isNPC": false, "href":
1291
+ "https://public-crest.eveonline.com/corporations/98341545/", "id_str": "98341545",
1292
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98341545_32.png"},
1293
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98341545_64.png"},
1294
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98341545_128.png"},
1295
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98341545_256.png"}},
1296
+ "id": 98341545}, {"name": "harlyq syrokos investment station", "isNPC": false,
1297
+ "href": "https://public-crest.eveonline.com/corporations/98342563/", "id_str":
1298
+ "98342563", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98342563_32.png"},
1299
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98342563_64.png"},
1300
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98342563_128.png"},
1301
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98342563_256.png"}},
1302
+ "id": 98342563}, {"name": "1337 FIeet", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98343552/",
1303
+ "id_str": "98343552", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98343552_32.png"},
1304
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98343552_64.png"},
1305
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98343552_128.png"},
1306
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98343552_256.png"}},
1307
+ "id": 98343552}, {"name": "Rogue Error", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98344006/",
1308
+ "id_str": "98344006", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98344006_32.png"},
1309
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98344006_64.png"},
1310
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98344006_128.png"},
1311
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98344006_256.png"}},
1312
+ "id": 98344006}, {"name": "Shadar Logoth.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98344462/",
1313
+ "id_str": "98344462", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98344462_32.png"},
1314
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98344462_64.png"},
1315
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98344462_128.png"},
1316
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98344462_256.png"}},
1317
+ "id": 98344462}, {"name": "LokiCorp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98347873/",
1318
+ "id_str": "98347873", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98347873_32.png"},
1319
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98347873_64.png"},
1320
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98347873_128.png"},
1321
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98347873_256.png"}},
1322
+ "id": 98347873}, {"name": "Stardust Fraktion", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98349229/",
1323
+ "id_str": "98349229", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98349229_32.png"},
1324
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98349229_64.png"},
1325
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98349229_128.png"},
1326
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98349229_256.png"}},
1327
+ "id": 98349229}, {"name": "0scope", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98349688/",
1328
+ "id_str": "98349688", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98349688_32.png"},
1329
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98349688_64.png"},
1330
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98349688_128.png"},
1331
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98349688_256.png"}},
1332
+ "id": 98349688}, {"name": "Arrowhead Industries", "isNPC": false, "href":
1333
+ "https://public-crest.eveonline.com/corporations/98350111/", "id_str": "98350111",
1334
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98350111_32.png"},
1335
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98350111_64.png"},
1336
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98350111_128.png"},
1337
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98350111_256.png"}},
1338
+ "id": 98350111}, {"name": "Raven Trust", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98350641/",
1339
+ "id_str": "98350641", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98350641_32.png"},
1340
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98350641_64.png"},
1341
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98350641_128.png"},
1342
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98350641_256.png"}},
1343
+ "id": 98350641}, {"name": "Esparto Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98353047/",
1344
+ "id_str": "98353047", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98353047_32.png"},
1345
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98353047_64.png"},
1346
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98353047_128.png"},
1347
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98353047_256.png"}},
1348
+ "id": 98353047}, {"name": "Lonestar Escalations", "isNPC": false, "href":
1349
+ "https://public-crest.eveonline.com/corporations/98355857/", "id_str": "98355857",
1350
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98355857_32.png"},
1351
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98355857_64.png"},
1352
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98355857_128.png"},
1353
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98355857_256.png"}},
1354
+ "id": 98355857}, {"name": "Drunken Bee Brewery", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98357349/",
1355
+ "id_str": "98357349", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98357349_32.png"},
1356
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98357349_64.png"},
1357
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98357349_128.png"},
1358
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98357349_256.png"}},
1359
+ "id": 98357349}, {"name": "This is not an Alt Corp", "isNPC": false, "href":
1360
+ "https://public-crest.eveonline.com/corporations/98357905/", "id_str": "98357905",
1361
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98357905_32.png"},
1362
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98357905_64.png"},
1363
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98357905_128.png"},
1364
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98357905_256.png"}},
1365
+ "id": 98357905}, {"name": "Wildly Appropriate", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98357919/",
1366
+ "id_str": "98357919", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98357919_32.png"},
1367
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98357919_64.png"},
1368
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98357919_128.png"},
1369
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98357919_256.png"}},
1370
+ "id": 98357919}, {"name": "Seawolf Industrial", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98358627/",
1371
+ "id_str": "98358627", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98358627_32.png"},
1372
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98358627_64.png"},
1373
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98358627_128.png"},
1374
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98358627_256.png"}},
1375
+ "id": 98358627}, {"name": "Princess Twilight''s Royal Academy of Magic", "isNPC":
1376
+ false, "href": "https://public-crest.eveonline.com/corporations/98358978/",
1377
+ "id_str": "98358978", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98358978_32.png"},
1378
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98358978_64.png"},
1379
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98358978_128.png"},
1380
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98358978_256.png"}},
1381
+ "id": 98358978}, {"name": "Piggy Wiggy Straw and Hay Inc.", "isNPC": false,
1382
+ "href": "https://public-crest.eveonline.com/corporations/98359309/", "id_str":
1383
+ "98359309", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98359309_32.png"},
1384
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98359309_64.png"},
1385
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98359309_128.png"},
1386
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98359309_256.png"}},
1387
+ "id": 98359309}, {"name": "Minerals In Null Equals Revenue", "isNPC": false,
1388
+ "href": "https://public-crest.eveonline.com/corporations/98360448/", "id_str":
1389
+ "98360448", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98360448_32.png"},
1390
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98360448_64.png"},
1391
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98360448_128.png"},
1392
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98360448_256.png"}},
1393
+ "id": 98360448}, {"name": "Interstellar Economics", "isNPC": false, "href":
1394
+ "https://public-crest.eveonline.com/corporations/98361700/", "id_str": "98361700",
1395
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98361700_32.png"},
1396
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98361700_64.png"},
1397
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98361700_128.png"},
1398
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98361700_256.png"}},
1399
+ "id": 98361700}, {"name": "Love Incorporated", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98362532/",
1400
+ "id_str": "98362532", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98362532_32.png"},
1401
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98362532_64.png"},
1402
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98362532_128.png"},
1403
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98362532_256.png"}},
1404
+ "id": 98362532}, {"name": "Hirschberg Steinman and Associates", "isNPC": false,
1405
+ "href": "https://public-crest.eveonline.com/corporations/98362768/", "id_str":
1406
+ "98362768", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98362768_32.png"},
1407
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98362768_64.png"},
1408
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98362768_128.png"},
1409
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98362768_256.png"}},
1410
+ "id": 98362768}, {"name": "Foxconn Technology Group", "isNPC": false, "href":
1411
+ "https://public-crest.eveonline.com/corporations/98363338/", "id_str": "98363338",
1412
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98363338_32.png"},
1413
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98363338_64.png"},
1414
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98363338_128.png"},
1415
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98363338_256.png"}},
1416
+ "id": 98363338}, {"name": "Altcorp Inc.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98366173/",
1417
+ "id_str": "98366173", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98366173_32.png"},
1418
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98366173_64.png"},
1419
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98366173_128.png"},
1420
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98366173_256.png"}},
1421
+ "id": 98366173}, {"name": "Mistakes were maid", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98366663/",
1422
+ "id_str": "98366663", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98366663_32.png"},
1423
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98366663_64.png"},
1424
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98366663_128.png"},
1425
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98366663_256.png"}},
1426
+ "id": 98366663}, {"name": "My Little Pony Club", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98366674/",
1427
+ "id_str": "98366674", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98366674_32.png"},
1428
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98366674_64.png"},
1429
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98366674_128.png"},
1430
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98366674_256.png"}},
1431
+ "id": 98366674}, {"name": "Jacqui Lambie Fan Club", "isNPC": false, "href":
1432
+ "https://public-crest.eveonline.com/corporations/98367097/", "id_str": "98367097",
1433
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98367097_32.png"},
1434
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98367097_64.png"},
1435
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98367097_128.png"},
1436
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98367097_256.png"}},
1437
+ "id": 98367097}, {"name": "Immersed", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98369668/",
1438
+ "id_str": "98369668", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98369668_32.png"},
1439
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98369668_64.png"},
1440
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98369668_128.png"},
1441
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98369668_256.png"}},
1442
+ "id": 98369668}, {"name": "KarmaFleet", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98370861/",
1443
+ "id_str": "98370861", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98370861_32.png"},
1444
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98370861_64.png"},
1445
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98370861_128.png"},
1446
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98370861_256.png"}},
1447
+ "id": 98370861}, {"name": "Cookie Embezzlement Industries", "isNPC": false,
1448
+ "href": "https://public-crest.eveonline.com/corporations/98371607/", "id_str":
1449
+ "98371607", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98371607_32.png"},
1450
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98371607_64.png"},
1451
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98371607_128.png"},
1452
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98371607_256.png"}},
1453
+ "id": 98371607}, {"name": "Slurm Bottling Co.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98372850/",
1454
+ "id_str": "98372850", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98372850_32.png"},
1455
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98372850_64.png"},
1456
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98372850_128.png"},
1457
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98372850_256.png"}},
1458
+ "id": 98372850}, {"name": "Advanced Enlightenment Enforcers", "isNPC": false,
1459
+ "href": "https://public-crest.eveonline.com/corporations/98372954/", "id_str":
1460
+ "98372954", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98372954_32.png"},
1461
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98372954_64.png"},
1462
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98372954_128.png"},
1463
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98372954_256.png"}},
1464
+ "id": 98372954}, {"name": "Little Bees Nullsec Reformatory School", "isNPC":
1465
+ false, "href": "https://public-crest.eveonline.com/corporations/98373302/",
1466
+ "id_str": "98373302", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98373302_32.png"},
1467
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98373302_64.png"},
1468
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98373302_128.png"},
1469
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98373302_256.png"}},
1470
+ "id": 98373302}, {"name": "Superlemon Krakatoa", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98374015/",
1471
+ "id_str": "98374015", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98374015_32.png"},
1472
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98374015_64.png"},
1473
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98374015_128.png"},
1474
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98374015_256.png"}},
1475
+ "id": 98374015}, {"name": "The HEIDI Project", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98375217/",
1476
+ "id_str": "98375217", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98375217_32.png"},
1477
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98375217_64.png"},
1478
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98375217_128.png"},
1479
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98375217_256.png"}},
1480
+ "id": 98375217}, {"name": "Gobuk Industries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98375735/",
1481
+ "id_str": "98375735", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98375735_32.png"},
1482
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98375735_64.png"},
1483
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98375735_128.png"},
1484
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98375735_256.png"}},
1485
+ "id": 98375735}, {"name": "Frontier Suppliers", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98376402/",
1486
+ "id_str": "98376402", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98376402_32.png"},
1487
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98376402_64.png"},
1488
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98376402_128.png"},
1489
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98376402_256.png"}},
1490
+ "id": 98376402}, {"name": "Offensive Dynamics", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98376435/",
1491
+ "id_str": "98376435", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98376435_32.png"},
1492
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98376435_64.png"},
1493
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98376435_128.png"},
1494
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98376435_256.png"}},
1495
+ "id": 98376435}, {"name": "Tangible Investments", "isNPC": false, "href":
1496
+ "https://public-crest.eveonline.com/corporations/98376895/", "id_str": "98376895",
1497
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98376895_32.png"},
1498
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98376895_64.png"},
1499
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98376895_128.png"},
1500
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98376895_256.png"}},
1501
+ "id": 98376895}, {"name": "Sleeper Community College", "isNPC": false, "href":
1502
+ "https://public-crest.eveonline.com/corporations/98377572/", "id_str": "98377572",
1503
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98377572_32.png"},
1504
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98377572_64.png"},
1505
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98377572_128.png"},
1506
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98377572_256.png"}},
1507
+ "id": 98377572}, {"name": "Missclick", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98377936/",
1508
+ "id_str": "98377936", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98377936_32.png"},
1509
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98377936_64.png"},
1510
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98377936_128.png"},
1511
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98377936_256.png"}},
1512
+ "id": 98377936}, {"name": "Time for Cuddles", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98379386/",
1513
+ "id_str": "98379386", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98379386_32.png"},
1514
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98379386_64.png"},
1515
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98379386_128.png"},
1516
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98379386_256.png"}},
1517
+ "id": 98379386}, {"name": "CounterDrop", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98379742/",
1518
+ "id_str": "98379742", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98379742_32.png"},
1519
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98379742_64.png"},
1520
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98379742_128.png"},
1521
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98379742_256.png"}},
1522
+ "id": 98379742}, {"name": "ThetaCorp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98380212/",
1523
+ "id_str": "98380212", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98380212_32.png"},
1524
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98380212_64.png"},
1525
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98380212_128.png"},
1526
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98380212_256.png"}},
1527
+ "id": 98380212}, {"name": "No One Better", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98381503/",
1528
+ "id_str": "98381503", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98381503_32.png"},
1529
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98381503_64.png"},
1530
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98381503_128.png"},
1531
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98381503_256.png"}},
1532
+ "id": 98381503}, {"name": "Only Fools or Horses", "isNPC": false, "href":
1533
+ "https://public-crest.eveonline.com/corporations/98381536/", "id_str": "98381536",
1534
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98381536_32.png"},
1535
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98381536_64.png"},
1536
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98381536_128.png"},
1537
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98381536_256.png"}},
1538
+ "id": 98381536}, {"name": "Negative Pressure Union", "isNPC": false, "href":
1539
+ "https://public-crest.eveonline.com/corporations/98382892/", "id_str": "98382892",
1540
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98382892_32.png"},
1541
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98382892_64.png"},
1542
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98382892_128.png"},
1543
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98382892_256.png"}},
1544
+ "id": 98382892}, {"name": "BusyBee inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98385379/",
1545
+ "id_str": "98385379", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98385379_32.png"},
1546
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98385379_64.png"},
1547
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98385379_128.png"},
1548
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98385379_256.png"}},
1549
+ "id": 98385379}, {"name": "Infared shadows", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98387334/",
1550
+ "id_str": "98387334", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98387334_32.png"},
1551
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98387334_64.png"},
1552
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98387334_128.png"},
1553
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98387334_256.png"}},
1554
+ "id": 98387334}, {"name": "Shortbuss Personnel Logistics", "isNPC": false,
1555
+ "href": "https://public-crest.eveonline.com/corporations/98387414/", "id_str":
1556
+ "98387414", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98387414_32.png"},
1557
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98387414_64.png"},
1558
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98387414_128.png"},
1559
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98387414_256.png"}},
1560
+ "id": 98387414}, {"name": "The Autistocrats", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98387732/",
1561
+ "id_str": "98387732", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98387732_32.png"},
1562
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98387732_64.png"},
1563
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98387732_128.png"},
1564
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98387732_256.png"}},
1565
+ "id": 98387732}, {"name": "Gaara''s sniper did nothing wrong", "isNPC": false,
1566
+ "href": "https://public-crest.eveonline.com/corporations/98388652/", "id_str":
1567
+ "98388652", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98388652_32.png"},
1568
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98388652_64.png"},
1569
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98388652_128.png"},
1570
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98388652_256.png"}},
1571
+ "id": 98388652}, {"name": "Flagrant Health and Safety Violations", "isNPC":
1572
+ false, "href": "https://public-crest.eveonline.com/corporations/98389352/",
1573
+ "id_str": "98389352", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98389352_32.png"},
1574
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98389352_64.png"},
1575
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98389352_128.png"},
1576
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98389352_256.png"}},
1577
+ "id": 98389352}, {"name": "Rockso Industries Limited", "isNPC": false, "href":
1578
+ "https://public-crest.eveonline.com/corporations/98390530/", "id_str": "98390530",
1579
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98390530_32.png"},
1580
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98390530_64.png"},
1581
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98390530_128.png"},
1582
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98390530_256.png"}},
1583
+ "id": 98390530}, {"name": "Goonswarm Finance and Escrow", "isNPC": false,
1584
+ "href": "https://public-crest.eveonline.com/corporations/98390677/", "id_str":
1585
+ "98390677", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98390677_32.png"},
1586
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98390677_64.png"},
1587
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98390677_128.png"},
1588
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98390677_256.png"}},
1589
+ "id": 98390677}, {"name": "Hogyoku", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98390683/",
1590
+ "id_str": "98390683", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98390683_32.png"},
1591
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98390683_64.png"},
1592
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98390683_128.png"},
1593
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98390683_256.png"}},
1594
+ "id": 98390683}, {"name": "Black Star Peripherals", "isNPC": false, "href":
1595
+ "https://public-crest.eveonline.com/corporations/98392347/", "id_str": "98392347",
1596
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98392347_32.png"},
1597
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98392347_64.png"},
1598
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98392347_128.png"},
1599
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98392347_256.png"}},
1600
+ "id": 98392347}, {"name": "Omega Tax Evasion Industries", "isNPC": false,
1601
+ "href": "https://public-crest.eveonline.com/corporations/98392483/", "id_str":
1602
+ "98392483", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98392483_32.png"},
1603
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98392483_64.png"},
1604
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98392483_128.png"},
1605
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98392483_256.png"}},
1606
+ "id": 98392483}, {"name": "Ratting Haven", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98393723/",
1607
+ "id_str": "98393723", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98393723_32.png"},
1608
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98393723_64.png"},
1609
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98393723_128.png"},
1610
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98393723_256.png"}},
1611
+ "id": 98393723}, {"name": "Toxic Waste Incorporated", "isNPC": false, "href":
1612
+ "https://public-crest.eveonline.com/corporations/98396278/", "id_str": "98396278",
1613
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98396278_32.png"},
1614
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98396278_64.png"},
1615
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98396278_128.png"},
1616
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98396278_256.png"}},
1617
+ "id": 98396278}, {"name": "Imperium Renting Finance", "isNPC": false, "href":
1618
+ "https://public-crest.eveonline.com/corporations/98397138/", "id_str": "98397138",
1619
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98397138_32.png"},
1620
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98397138_64.png"},
1621
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98397138_128.png"},
1622
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98397138_256.png"}},
1623
+ "id": 98397138}, {"name": "Just Post", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98397150/",
1624
+ "id_str": "98397150", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98397150_32.png"},
1625
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98397150_64.png"},
1626
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98397150_128.png"},
1627
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98397150_256.png"}},
1628
+ "id": 98397150}, {"name": "Imperial Transcontinental Logistics", "isNPC":
1629
+ false, "href": "https://public-crest.eveonline.com/corporations/98397309/",
1630
+ "id_str": "98397309", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98397309_32.png"},
1631
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98397309_64.png"},
1632
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98397309_128.png"},
1633
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98397309_256.png"}},
1634
+ "id": 98397309}, {"name": "Millbarge and Fitz-Hume Holdings Inc.", "isNPC":
1635
+ false, "href": "https://public-crest.eveonline.com/corporations/98400130/",
1636
+ "id_str": "98400130", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98400130_32.png"},
1637
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98400130_64.png"},
1638
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98400130_128.png"},
1639
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98400130_256.png"}},
1640
+ "id": 98400130}, {"name": "Read The Forums", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98400310/",
1641
+ "id_str": "98400310", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98400310_32.png"},
1642
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98400310_64.png"},
1643
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98400310_128.png"},
1644
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98400310_256.png"}},
1645
+ "id": 98400310}, {"name": "Rexustries", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98400768/",
1646
+ "id_str": "98400768", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98400768_32.png"},
1647
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98400768_64.png"},
1648
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98400768_128.png"},
1649
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98400768_256.png"}},
1650
+ "id": 98400768}, {"name": "eXecute", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98400937/",
1651
+ "id_str": "98400937", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98400937_32.png"},
1652
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98400937_64.png"},
1653
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98400937_128.png"},
1654
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98400937_256.png"}},
1655
+ "id": 98400937}, {"name": "Rumbling Rowdy Renegades", "isNPC": false, "href":
1656
+ "https://public-crest.eveonline.com/corporations/98401325/", "id_str": "98401325",
1657
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98401325_32.png"},
1658
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98401325_64.png"},
1659
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98401325_128.png"},
1660
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98401325_256.png"}},
1661
+ "id": 98401325}, {"name": "Team Towels Private Bank", "isNPC": false, "href":
1662
+ "https://public-crest.eveonline.com/corporations/98401380/", "id_str": "98401380",
1663
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98401380_32.png"},
1664
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98401380_64.png"},
1665
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98401380_128.png"},
1666
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98401380_256.png"}},
1667
+ "id": 98401380}, {"name": "Post Prandium", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98401390/",
1668
+ "id_str": "98401390", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98401390_32.png"},
1669
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98401390_64.png"},
1670
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98401390_128.png"},
1671
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98401390_256.png"}},
1672
+ "id": 98401390}, {"name": "Various Eggs", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98401557/",
1673
+ "id_str": "98401557", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98401557_32.png"},
1674
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98401557_64.png"},
1675
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98401557_128.png"},
1676
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98401557_256.png"}},
1677
+ "id": 98401557}, {"name": "Semper Fidelis Rangers", "isNPC": false, "href":
1678
+ "https://public-crest.eveonline.com/corporations/98402170/", "id_str": "98402170",
1679
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98402170_32.png"},
1680
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98402170_64.png"},
1681
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98402170_128.png"},
1682
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98402170_256.png"}},
1683
+ "id": 98402170}, {"name": "Southern Style.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98402271/",
1684
+ "id_str": "98402271", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98402271_32.png"},
1685
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98402271_64.png"},
1686
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98402271_128.png"},
1687
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98402271_256.png"}},
1688
+ "id": 98402271}, {"name": "Very Good Building And Development Co.", "isNPC":
1689
+ false, "href": "https://public-crest.eveonline.com/corporations/98402410/",
1690
+ "id_str": "98402410", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98402410_32.png"},
1691
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98402410_64.png"},
1692
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98402410_128.png"},
1693
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98402410_256.png"}},
1694
+ "id": 98402410}, {"name": "Strong Independent Black Woman", "isNPC": false,
1695
+ "href": "https://public-crest.eveonline.com/corporations/98402959/", "id_str":
1696
+ "98402959", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98402959_32.png"},
1697
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98402959_64.png"},
1698
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98402959_128.png"},
1699
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98402959_256.png"}},
1700
+ "id": 98402959}, {"name": "Gooniversity", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98404513/",
1701
+ "id_str": "98404513", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98404513_32.png"},
1702
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98404513_64.png"},
1703
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98404513_128.png"},
1704
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98404513_256.png"}},
1705
+ "id": 98404513}, {"name": "Big Daddy Dan''s Drug Den", "isNPC": false, "href":
1706
+ "https://public-crest.eveonline.com/corporations/98405416/", "id_str": "98405416",
1707
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98405416_32.png"},
1708
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98405416_64.png"},
1709
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98405416_128.png"},
1710
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98405416_256.png"}},
1711
+ "id": 98405416}, {"name": "Transient Services", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98405516/",
1712
+ "id_str": "98405516", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98405516_32.png"},
1713
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98405516_64.png"},
1714
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98405516_128.png"},
1715
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98405516_256.png"}},
1716
+ "id": 98405516}, {"name": "Dank Shekels", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98406539/",
1717
+ "id_str": "98406539", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98406539_32.png"},
1718
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98406539_64.png"},
1719
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98406539_128.png"},
1720
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98406539_256.png"}},
1721
+ "id": 98406539}, {"name": "Cow lvl inc.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98407095/",
1722
+ "id_str": "98407095", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98407095_32.png"},
1723
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98407095_64.png"},
1724
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98407095_128.png"},
1725
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98407095_256.png"}},
1726
+ "id": 98407095}, {"name": "KMW Business Holding", "isNPC": false, "href":
1727
+ "https://public-crest.eveonline.com/corporations/98407466/", "id_str": "98407466",
1728
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98407466_32.png"},
1729
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98407466_64.png"},
1730
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98407466_128.png"},
1731
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98407466_256.png"}},
1732
+ "id": 98407466}, {"name": "Grimm Creations", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98407569/",
1733
+ "id_str": "98407569", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98407569_32.png"},
1734
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98407569_64.png"},
1735
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98407569_128.png"},
1736
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98407569_256.png"}},
1737
+ "id": 98407569}, {"name": "Can I Bring A Drake", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98408018/",
1738
+ "id_str": "98408018", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98408018_32.png"},
1739
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98408018_64.png"},
1740
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98408018_128.png"},
1741
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98408018_256.png"}},
1742
+ "id": 98408018}, {"name": "SL Technologies Inc", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98408616/",
1743
+ "id_str": "98408616", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98408616_32.png"},
1744
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98408616_64.png"},
1745
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98408616_128.png"},
1746
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98408616_256.png"}},
1747
+ "id": 98408616}, {"name": "Am0k dotte", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98409053/",
1748
+ "id_str": "98409053", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98409053_32.png"},
1749
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98409053_64.png"},
1750
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98409053_128.png"},
1751
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98409053_256.png"}},
1752
+ "id": 98409053}, {"name": "Swarm Society", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98409253/",
1753
+ "id_str": "98409253", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98409253_32.png"},
1754
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98409253_64.png"},
1755
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98409253_128.png"},
1756
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98409253_256.png"}},
1757
+ "id": 98409253}, {"name": "Dark Altar of Horus", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98409339/",
1758
+ "id_str": "98409339", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98409339_32.png"},
1759
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98409339_64.png"},
1760
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98409339_128.png"},
1761
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98409339_256.png"}},
1762
+ "id": 98409339}, {"name": "Nysterica Holdings", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98409451/",
1763
+ "id_str": "98409451", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98409451_32.png"},
1764
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98409451_64.png"},
1765
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98409451_128.png"},
1766
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98409451_256.png"}},
1767
+ "id": 98409451}, {"name": "Red Cross Destroyers", "isNPC": false, "href":
1768
+ "https://public-crest.eveonline.com/corporations/98410037/", "id_str": "98410037",
1769
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98410037_32.png"},
1770
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98410037_64.png"},
1771
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98410037_128.png"},
1772
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98410037_256.png"}},
1773
+ "id": 98410037}, {"name": "Industrial at it''s finest", "isNPC": false, "href":
1774
+ "https://public-crest.eveonline.com/corporations/98410276/", "id_str": "98410276",
1775
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98410276_32.png"},
1776
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98410276_64.png"},
1777
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98410276_128.png"},
1778
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98410276_256.png"}},
1779
+ "id": 98410276}, {"name": "HG Holding", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98410708/",
1780
+ "id_str": "98410708", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98410708_32.png"},
1781
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98410708_64.png"},
1782
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98410708_128.png"},
1783
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98410708_256.png"}},
1784
+ "id": 98410708}, {"name": "The Time-Space Administrative Bureau", "isNPC":
1785
+ false, "href": "https://public-crest.eveonline.com/corporations/98410780/",
1786
+ "id_str": "98410780", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98410780_32.png"},
1787
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98410780_64.png"},
1788
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98410780_128.png"},
1789
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98410780_256.png"}},
1790
+ "id": 98410780}, {"name": "Imperium Fleet Doctrines", "isNPC": false, "href":
1791
+ "https://public-crest.eveonline.com/corporations/98411366/", "id_str": "98411366",
1792
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98411366_32.png"},
1793
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98411366_64.png"},
1794
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98411366_128.png"},
1795
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98411366_256.png"}},
1796
+ "id": 98411366}, {"name": "Lockhead Inc.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98412173/",
1797
+ "id_str": "98412173", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98412173_32.png"},
1798
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98412173_64.png"},
1799
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98412173_128.png"},
1800
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98412173_256.png"}},
1801
+ "id": 98412173}, {"name": "Cohen Brother''s Investments", "isNPC": false,
1802
+ "href": "https://public-crest.eveonline.com/corporations/98412280/", "id_str":
1803
+ "98412280", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98412280_32.png"},
1804
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98412280_64.png"},
1805
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98412280_128.png"},
1806
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98412280_256.png"}},
1807
+ "id": 98412280}, {"name": "Muhomory", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98412414/",
1808
+ "id_str": "98412414", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98412414_32.png"},
1809
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98412414_64.png"},
1810
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98412414_128.png"},
1811
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98412414_256.png"}},
1812
+ "id": 98412414}, {"name": "Dissolution of Solitude", "isNPC": false, "href":
1813
+ "https://public-crest.eveonline.com/corporations/98413117/", "id_str": "98413117",
1814
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98413117_32.png"},
1815
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98413117_64.png"},
1816
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98413117_128.png"},
1817
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98413117_256.png"}},
1818
+ "id": 98413117}, {"name": "Fundamentally Oral Bill Enterprises", "isNPC":
1819
+ false, "href": "https://public-crest.eveonline.com/corporations/98414073/",
1820
+ "id_str": "98414073", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98414073_32.png"},
1821
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98414073_64.png"},
1822
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98414073_128.png"},
1823
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98414073_256.png"}},
1824
+ "id": 98414073}, {"name": "Rift Solutions", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98415096/",
1825
+ "id_str": "98415096", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98415096_32.png"},
1826
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98415096_64.png"},
1827
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98415096_128.png"},
1828
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98415096_256.png"}},
1829
+ "id": 98415096}, {"name": "Tortured Pixels", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98415244/",
1830
+ "id_str": "98415244", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98415244_32.png"},
1831
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98415244_64.png"},
1832
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98415244_128.png"},
1833
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98415244_256.png"}},
1834
+ "id": 98415244}, {"name": "Imperial Omega Contracts", "isNPC": false, "href":
1835
+ "https://public-crest.eveonline.com/corporations/98416148/", "id_str": "98416148",
1836
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98416148_32.png"},
1837
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98416148_64.png"},
1838
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98416148_128.png"},
1839
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98416148_256.png"}},
1840
+ "id": 98416148}, {"name": "Cap''s Hostile Alliance Supercap Sales", "isNPC":
1841
+ false, "href": "https://public-crest.eveonline.com/corporations/98416314/",
1842
+ "id_str": "98416314", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98416314_32.png"},
1843
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98416314_64.png"},
1844
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98416314_128.png"},
1845
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98416314_256.png"}},
1846
+ "id": 98416314}, {"name": "Black Flame Enterprises", "isNPC": false, "href":
1847
+ "https://public-crest.eveonline.com/corporations/98416675/", "id_str": "98416675",
1848
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98416675_32.png"},
1849
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98416675_64.png"},
1850
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98416675_128.png"},
1851
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98416675_256.png"}},
1852
+ "id": 98416675}, {"name": "Goat Appreciation Super Station", "isNPC": false,
1853
+ "href": "https://public-crest.eveonline.com/corporations/98417206/", "id_str":
1854
+ "98417206", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98417206_32.png"},
1855
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98417206_64.png"},
1856
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98417206_128.png"},
1857
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98417206_256.png"}},
1858
+ "id": 98417206}, {"name": "The Windowlickers", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98417486/",
1859
+ "id_str": "98417486", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98417486_32.png"},
1860
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98417486_64.png"},
1861
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98417486_128.png"},
1862
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98417486_256.png"}},
1863
+ "id": 98417486}, {"name": "Gentlepersons Traders and Industry Collective",
1864
+ "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/101047360/",
1865
+ "id_str": "101047360", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/101047360_32.png"},
1866
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/101047360_64.png"},
1867
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/101047360_128.png"},
1868
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/101047360_256.png"}},
1869
+ "id": 101047360}, {"name": "Merch Industrial", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/109788662/",
1870
+ "id_str": "109788662", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/109788662_32.png"},
1871
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/109788662_64.png"},
1872
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/109788662_128.png"},
1873
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/109788662_256.png"}},
1874
+ "id": 109788662}, {"name": "Cake Pony Cargo", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/111373660/",
1875
+ "id_str": "111373660", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/111373660_32.png"},
1876
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/111373660_64.png"},
1877
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/111373660_128.png"},
1878
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/111373660_256.png"}},
1879
+ "id": 111373660}, {"name": "GoonTech", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/137270880/",
1880
+ "id_str": "137270880", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/137270880_32.png"},
1881
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/137270880_64.png"},
1882
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/137270880_128.png"},
1883
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/137270880_256.png"}},
1884
+ "id": 137270880}, {"name": "Sinister Corporation", "isNPC": false, "href":
1885
+ "https://public-crest.eveonline.com/corporations/149984277/", "id_str": "149984277",
1886
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/149984277_32.png"},
1887
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/149984277_64.png"},
1888
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/149984277_128.png"},
1889
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/149984277_256.png"}},
1890
+ "id": 149984277}, {"name": "Tycoon Innovations", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/176466779/",
1891
+ "id_str": "176466779", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/176466779_32.png"},
1892
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/176466779_64.png"},
1893
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/176466779_128.png"},
1894
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/176466779_256.png"}},
1895
+ "id": 176466779}, {"name": "4S Corporation", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/197097487/",
1896
+ "id_str": "197097487", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/197097487_32.png"},
1897
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/197097487_64.png"},
1898
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/197097487_128.png"},
1899
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/197097487_256.png"}},
1900
+ "id": 197097487}, {"name": "Eternity INC.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/211551078/",
1901
+ "id_str": "211551078", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/211551078_32.png"},
1902
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/211551078_64.png"},
1903
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/211551078_128.png"},
1904
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/211551078_256.png"}},
1905
+ "id": 211551078}, {"name": "County Dispatch Heroes", "isNPC": false, "href":
1906
+ "https://public-crest.eveonline.com/corporations/221118774/", "id_str": "221118774",
1907
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/221118774_32.png"},
1908
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/221118774_64.png"},
1909
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/221118774_128.png"},
1910
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/221118774_256.png"}},
1911
+ "id": 221118774}, {"name": "Bat Country", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/238510404/",
1912
+ "id_str": "238510404", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/238510404_32.png"},
1913
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/238510404_64.png"},
1914
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/238510404_128.png"},
1915
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/238510404_256.png"}},
1916
+ "id": 238510404}, {"name": "Monkey Attack Squad", "isNPC": false, "href":
1917
+ "https://public-crest.eveonline.com/corporations/272675225/", "id_str": "272675225",
1918
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/272675225_32.png"},
1919
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/272675225_64.png"},
1920
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/272675225_128.png"},
1921
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/272675225_256.png"}},
1922
+ "id": 272675225}, {"name": "Office of Securities Collection and Management",
1923
+ "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/305801693/",
1924
+ "id_str": "305801693", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/305801693_32.png"},
1925
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/305801693_64.png"},
1926
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/305801693_128.png"},
1927
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/305801693_256.png"}},
1928
+ "id": 305801693}, {"name": "Men Who Stare At Goats", "isNPC": false, "href":
1929
+ "https://public-crest.eveonline.com/corporations/324850590/", "id_str": "324850590",
1930
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/324850590_32.png"},
1931
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/324850590_64.png"},
1932
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/324850590_128.png"},
1933
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/324850590_256.png"}},
1934
+ "id": 324850590}, {"name": "Advanced Logistics Empire", "isNPC": false, "href":
1935
+ "https://public-crest.eveonline.com/corporations/331353653/", "id_str": "331353653",
1936
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/331353653_32.png"},
1937
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/331353653_64.png"},
1938
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/331353653_128.png"},
1939
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/331353653_256.png"}},
1940
+ "id": 331353653}, {"name": "Eighty Joule Brewery", "isNPC": false, "href":
1941
+ "https://public-crest.eveonline.com/corporations/363368013/", "id_str": "363368013",
1942
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/363368013_32.png"},
1943
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/363368013_64.png"},
1944
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/363368013_128.png"},
1945
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/363368013_256.png"}},
1946
+ "id": 363368013}, {"name": "Top Hat Collective", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/402113774/",
1947
+ "id_str": "402113774", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/402113774_32.png"},
1948
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/402113774_64.png"},
1949
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/402113774_128.png"},
1950
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/402113774_256.png"}},
1951
+ "id": 402113774}, {"name": "WONKY TM", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/431020329/",
1952
+ "id_str": "431020329", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/431020329_32.png"},
1953
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/431020329_64.png"},
1954
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/431020329_128.png"},
1955
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/431020329_256.png"}},
1956
+ "id": 431020329}, {"name": "Legitimate Nigerian Banking Conglomerate", "isNPC":
1957
+ false, "href": "https://public-crest.eveonline.com/corporations/476373821/",
1958
+ "id_str": "476373821", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/476373821_32.png"},
1959
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/476373821_64.png"},
1960
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/476373821_128.png"},
1961
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/476373821_256.png"}},
1962
+ "id": 476373821}, {"name": "Paladin Order", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/481407468/",
1963
+ "id_str": "481407468", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/481407468_32.png"},
1964
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/481407468_64.png"},
1965
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/481407468_128.png"},
1966
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/481407468_256.png"}},
1967
+ "id": 481407468}, {"name": "Rho Holding Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/491428498/",
1968
+ "id_str": "491428498", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/491428498_32.png"},
1969
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/491428498_64.png"},
1970
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/491428498_128.png"},
1971
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/491428498_256.png"}},
1972
+ "id": 491428498}, {"name": "Goonfleet 2.0", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/547759385/",
1973
+ "id_str": "547759385", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/547759385_32.png"},
1974
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/547759385_64.png"},
1975
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/547759385_128.png"},
1976
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/547759385_256.png"}},
1977
+ "id": 547759385}, {"name": "Shadow Moon Celestial Order", "isNPC": false,
1978
+ "href": "https://public-crest.eveonline.com/corporations/557905293/", "id_str":
1979
+ "557905293", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/557905293_32.png"},
1980
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/557905293_64.png"},
1981
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/557905293_128.png"},
1982
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/557905293_256.png"}},
1983
+ "id": 557905293}, {"name": "Joy of Villainy", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/610305857/",
1984
+ "id_str": "610305857", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/610305857_32.png"},
1985
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/610305857_64.png"},
1986
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/610305857_128.png"},
1987
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/610305857_256.png"}},
1988
+ "id": 610305857}, {"name": "Les chevaliers de l''ordre", "isNPC": false, "href":
1989
+ "https://public-crest.eveonline.com/corporations/624410653/", "id_str": "624410653",
1990
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/624410653_32.png"},
1991
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/624410653_64.png"},
1992
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/624410653_128.png"},
1993
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/624410653_256.png"}},
1994
+ "id": 624410653}, {"name": "Duragon Pioneer Group", "isNPC": false, "href":
1995
+ "https://public-crest.eveonline.com/corporations/639241770/", "id_str": "639241770",
1996
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/639241770_32.png"},
1997
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/639241770_64.png"},
1998
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/639241770_128.png"},
1999
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/639241770_256.png"}},
2000
+ "id": 639241770}, {"name": "ICE is Coming to EVE", "isNPC": false, "href":
2001
+ "https://public-crest.eveonline.com/corporations/649254410/", "id_str": "649254410",
2002
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/649254410_32.png"},
2003
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/649254410_64.png"},
2004
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/649254410_128.png"},
2005
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/649254410_256.png"}},
2006
+ "id": 649254410}, {"name": "Wasse Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/658028702/",
2007
+ "id_str": "658028702", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/658028702_32.png"},
2008
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/658028702_64.png"},
2009
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/658028702_128.png"},
2010
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/658028702_256.png"}},
2011
+ "id": 658028702}, {"name": "GoonWaffe", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/667531913/",
2012
+ "id_str": "667531913", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/667531913_32.png"},
2013
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/667531913_64.png"},
2014
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/667531913_128.png"},
2015
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/667531913_256.png"}},
2016
+ "id": 667531913}, {"name": "Lockheed Martin Inc.", "isNPC": false, "href":
2017
+ "https://public-crest.eveonline.com/corporations/671183163/", "id_str": "671183163",
2018
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/671183163_32.png"},
2019
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/671183163_64.png"},
2020
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/671183163_128.png"},
2021
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/671183163_256.png"}},
2022
+ "id": 671183163}, {"name": "Kriegsmarinewerft", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/679900455/",
2023
+ "id_str": "679900455", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/679900455_32.png"},
2024
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/679900455_64.png"},
2025
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/679900455_128.png"},
2026
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/679900455_256.png"}},
2027
+ "id": 679900455}, {"name": "Pale People in Black", "isNPC": false, "href":
2028
+ "https://public-crest.eveonline.com/corporations/694424130/", "id_str": "694424130",
2029
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/694424130_32.png"},
2030
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/694424130_64.png"},
2031
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/694424130_128.png"},
2032
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/694424130_256.png"}},
2033
+ "id": 694424130}, {"name": "Incorporated Incorporated", "isNPC": false, "href":
2034
+ "https://public-crest.eveonline.com/corporations/703449907/", "id_str": "703449907",
2035
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/703449907_32.png"},
2036
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/703449907_64.png"},
2037
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/703449907_128.png"},
2038
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/703449907_256.png"}},
2039
+ "id": 703449907}, {"name": "LEGITIMATE SCIENTIFIC CORPORATION", "isNPC": false,
2040
+ "href": "https://public-crest.eveonline.com/corporations/710295434/", "id_str":
2041
+ "710295434", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/710295434_32.png"},
2042
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/710295434_64.png"},
2043
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/710295434_128.png"},
2044
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/710295434_256.png"}},
2045
+ "id": 710295434}, {"name": "ONTAP", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/715200791/",
2046
+ "id_str": "715200791", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/715200791_32.png"},
2047
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/715200791_64.png"},
2048
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/715200791_128.png"},
2049
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/715200791_256.png"}},
2050
+ "id": 715200791}, {"name": "Magellanic Itg", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/725842137/",
2051
+ "id_str": "725842137", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/725842137_32.png"},
2052
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/725842137_64.png"},
2053
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/725842137_128.png"},
2054
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/725842137_256.png"}},
2055
+ "id": 725842137}, {"name": "Wildly Inappropriate", "isNPC": false, "href":
2056
+ "https://public-crest.eveonline.com/corporations/888001549/", "id_str": "888001549",
2057
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/888001549_32.png"},
2058
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/888001549_64.png"},
2059
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/888001549_128.png"},
2060
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/888001549_256.png"}},
2061
+ "id": 888001549}, {"name": "Crap Metal Ants", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/909242399/",
2062
+ "id_str": "909242399", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/909242399_32.png"},
2063
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/909242399_64.png"},
2064
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/909242399_128.png"},
2065
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/909242399_256.png"}},
2066
+ "id": 909242399}, {"name": "BUTTECORP INC", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/911536135/",
2067
+ "id_str": "911536135", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/911536135_32.png"},
2068
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/911536135_64.png"},
2069
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/911536135_128.png"},
2070
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/911536135_256.png"}},
2071
+ "id": 911536135}, {"name": "West Indian Dope Smoking Team", "isNPC": false,
2072
+ "href": "https://public-crest.eveonline.com/corporations/948329639/", "id_str":
2073
+ "948329639", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/948329639_32.png"},
2074
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/948329639_64.png"},
2075
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/948329639_128.png"},
2076
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/948329639_256.png"}},
2077
+ "id": 948329639}, {"name": "Pwnstars INC", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/955094454/",
2078
+ "id_str": "955094454", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/955094454_32.png"},
2079
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/955094454_64.png"},
2080
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/955094454_128.png"},
2081
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/955094454_256.png"}},
2082
+ "id": 955094454}, {"name": "Liberty Impulse", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1015896998/",
2083
+ "id_str": "1015896998", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1015896998_32.png"},
2084
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1015896998_64.png"},
2085
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1015896998_128.png"},
2086
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1015896998_256.png"}},
2087
+ "id": 1015896998}, {"name": "GoonState Insurance Company", "isNPC": false,
2088
+ "href": "https://public-crest.eveonline.com/corporations/1021304320/", "id_str":
2089
+ "1021304320", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1021304320_32.png"},
2090
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1021304320_64.png"},
2091
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1021304320_128.png"},
2092
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1021304320_256.png"}},
2093
+ "id": 1021304320}, {"name": "Pulsar Inc.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1048624882/",
2094
+ "id_str": "1048624882", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1048624882_32.png"},
2095
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1048624882_64.png"},
2096
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1048624882_128.png"},
2097
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1048624882_256.png"}},
2098
+ "id": 1048624882}, {"name": "SUNDERING", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1063360566/",
2099
+ "id_str": "1063360566", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1063360566_32.png"},
2100
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1063360566_64.png"},
2101
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1063360566_128.png"},
2102
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1063360566_256.png"}},
2103
+ "id": 1063360566}, {"name": "Kernel of War", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1132466394/",
2104
+ "id_str": "1132466394", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1132466394_32.png"},
2105
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1132466394_64.png"},
2106
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1132466394_128.png"},
2107
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1132466394_256.png"}},
2108
+ "id": 1132466394}, {"name": "Isk Factory", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1151276638/",
2109
+ "id_str": "1151276638", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1151276638_32.png"},
2110
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1151276638_64.png"},
2111
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1151276638_128.png"},
2112
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1151276638_256.png"}},
2113
+ "id": 1151276638}, {"name": "Zebra Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1167014990/",
2114
+ "id_str": "1167014990", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1167014990_32.png"},
2115
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1167014990_64.png"},
2116
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1167014990_128.png"},
2117
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1167014990_256.png"}},
2118
+ "id": 1167014990}, {"name": "Amok.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1184675423/",
2119
+ "id_str": "1184675423", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1184675423_32.png"},
2120
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1184675423_64.png"},
2121
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1184675423_128.png"},
2122
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1184675423_256.png"}},
2123
+ "id": 1184675423}, {"name": "Touch My Totem", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1245527783/",
2124
+ "id_str": "1245527783", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1245527783_32.png"},
2125
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1245527783_64.png"},
2126
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1245527783_128.png"},
2127
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1245527783_256.png"}},
2128
+ "id": 1245527783}, {"name": "NED-Clan", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1324429368/",
2129
+ "id_str": "1324429368", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1324429368_32.png"},
2130
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1324429368_64.png"},
2131
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1324429368_128.png"},
2132
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1324429368_256.png"}},
2133
+ "id": 1324429368}, {"name": "DJ''s Retirement Fund", "isNPC": false, "href":
2134
+ "https://public-crest.eveonline.com/corporations/1344654522/", "id_str": "1344654522",
2135
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_32.png"},
2136
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_64.png"},
2137
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_128.png"},
2138
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_256.png"}},
2139
+ "id": 1344654522}, {"name": "Tynnu Heavy Construction And Haulage", "isNPC":
2140
+ false, "href": "https://public-crest.eveonline.com/corporations/1391642045/",
2141
+ "id_str": "1391642045", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1391642045_32.png"},
2142
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1391642045_64.png"},
2143
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1391642045_128.png"},
2144
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1391642045_256.png"}},
2145
+ "id": 1391642045}, {"name": "Tangiers Incorporated", "isNPC": false, "href":
2146
+ "https://public-crest.eveonline.com/corporations/1397959531/", "id_str": "1397959531",
2147
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1397959531_32.png"},
2148
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1397959531_64.png"},
2149
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1397959531_128.png"},
2150
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1397959531_256.png"}},
2151
+ "id": 1397959531}, {"name": "Hyber Nation", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1416880899/",
2152
+ "id_str": "1416880899", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1416880899_32.png"},
2153
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1416880899_64.png"},
2154
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1416880899_128.png"},
2155
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1416880899_256.png"}},
2156
+ "id": 1416880899}, {"name": "Plus Ten To Your Mom", "isNPC": false, "href":
2157
+ "https://public-crest.eveonline.com/corporations/1487541273/", "id_str": "1487541273",
2158
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1487541273_32.png"},
2159
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1487541273_64.png"},
2160
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1487541273_128.png"},
2161
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1487541273_256.png"}},
2162
+ "id": 1487541273}, {"name": "Goonfleet Investment Banking", "isNPC": false,
2163
+ "href": "https://public-crest.eveonline.com/corporations/1536916394/", "id_str":
2164
+ "1536916394", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1536916394_32.png"},
2165
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1536916394_64.png"},
2166
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1536916394_128.png"},
2167
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1536916394_256.png"}},
2168
+ "id": 1536916394}, {"name": "Federal Institute Service", "isNPC": false, "href":
2169
+ "https://public-crest.eveonline.com/corporations/1583229881/", "id_str": "1583229881",
2170
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1583229881_32.png"},
2171
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1583229881_64.png"},
2172
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1583229881_128.png"},
2173
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1583229881_256.png"}},
2174
+ "id": 1583229881}, {"name": "Disgruntled Bees Industries", "isNPC": false,
2175
+ "href": "https://public-crest.eveonline.com/corporations/1627077595/", "id_str":
2176
+ "1627077595", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1627077595_32.png"},
2177
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1627077595_64.png"},
2178
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1627077595_128.png"},
2179
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1627077595_256.png"}},
2180
+ "id": 1627077595}, {"name": "Tradewars2002", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1631244642/",
2181
+ "id_str": "1631244642", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1631244642_32.png"},
2182
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1631244642_64.png"},
2183
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1631244642_128.png"},
2184
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1631244642_256.png"}},
2185
+ "id": 1631244642}, {"name": "Space Bosoms", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1631926435/",
2186
+ "id_str": "1631926435", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1631926435_32.png"},
2187
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1631926435_64.png"},
2188
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1631926435_128.png"},
2189
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1631926435_256.png"}},
2190
+ "id": 1631926435}, {"name": "UK Corp", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1634775132/",
2191
+ "id_str": "1634775132", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1634775132_32.png"},
2192
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1634775132_64.png"},
2193
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1634775132_128.png"},
2194
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1634775132_256.png"}},
2195
+ "id": 1634775132}, {"name": "Outer Rim Jobs", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1655440170/",
2196
+ "id_str": "1655440170", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1655440170_32.png"},
2197
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1655440170_64.png"},
2198
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1655440170_128.png"},
2199
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1655440170_256.png"}},
2200
+ "id": 1655440170}, {"name": "Universal Metal Heads", "isNPC": false, "href":
2201
+ "https://public-crest.eveonline.com/corporations/1670144848/", "id_str": "1670144848",
2202
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1670144848_32.png"},
2203
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1670144848_64.png"},
2204
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1670144848_128.png"},
2205
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1670144848_256.png"}},
2206
+ "id": 1670144848}, {"name": "Parsec Planetary Engineering Inc.", "isNPC":
2207
+ false, "href": "https://public-crest.eveonline.com/corporations/1721149083/",
2208
+ "id_str": "1721149083", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1721149083_32.png"},
2209
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1721149083_64.png"},
2210
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1721149083_128.png"},
2211
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1721149083_256.png"}},
2212
+ "id": 1721149083}, {"name": "Chanuur", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1739363893/",
2213
+ "id_str": "1739363893", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1739363893_32.png"},
2214
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1739363893_64.png"},
2215
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1739363893_128.png"},
2216
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1739363893_256.png"}},
2217
+ "id": 1739363893}, {"name": "Deadspace Innovations", "isNPC": false, "href":
2218
+ "https://public-crest.eveonline.com/corporations/1746290514/", "id_str": "1746290514",
2219
+ "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1746290514_32.png"},
2220
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1746290514_64.png"},
2221
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1746290514_128.png"},
2222
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1746290514_256.png"}},
2223
+ "id": 1746290514}, {"name": "RGSU", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1795177903/",
2224
+ "id_str": "1795177903", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1795177903_32.png"},
2225
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1795177903_64.png"},
2226
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1795177903_128.png"},
2227
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1795177903_256.png"}},
2228
+ "id": 1795177903}, {"name": "House Aratus", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1817710684/",
2229
+ "id_str": "1817710684", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1817710684_32.png"},
2230
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1817710684_64.png"},
2231
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1817710684_128.png"},
2232
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1817710684_256.png"}},
2233
+ "id": 1817710684}, {"name": "Thirsty Beaver", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1907867028/",
2234
+ "id_str": "1907867028", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1907867028_32.png"},
2235
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1907867028_64.png"},
2236
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1907867028_128.png"},
2237
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1907867028_256.png"}},
2238
+ "id": 1907867028}, {"name": "Secret Squirrel Readiness Group", "isNPC": false,
2239
+ "href": "https://public-crest.eveonline.com/corporations/1953602912/", "id_str":
2240
+ "1953602912", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1953602912_32.png"},
2241
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1953602912_64.png"},
2242
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1953602912_128.png"},
2243
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1953602912_256.png"}},
2244
+ "id": 1953602912}, {"name": "Tung industri", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/1969897487/",
2245
+ "id_str": "1969897487", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/1969897487_32.png"},
2246
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/1969897487_64.png"},
2247
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1969897487_128.png"},
2248
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1969897487_256.png"}},
2249
+ "id": 1969897487}, {"name": "Club 1621", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/2003205261/",
2250
+ "id_str": "2003205261", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/2003205261_32.png"},
2251
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/2003205261_64.png"},
2252
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/2003205261_128.png"},
2253
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/2003205261_256.png"}},
2254
+ "id": 2003205261}, {"name": "Valar Morghulis.", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/2052404106/",
2255
+ "id_str": "2052404106", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/2052404106_32.png"},
2256
+ "64x64": {"href": "http://imageserver.eveonline.com/Corporation/2052404106_64.png"},
2257
+ "128x128": {"href": "http://imageserver.eveonline.com/Corporation/2052404106_128.png"},
2258
+ "256x256": {"href": "http://imageserver.eveonline.com/Corporation/2052404106_256.png"}},
2259
+ "id": 2052404106}], "shortName": "CONDI", "id": 1354830081, "name": "Goonswarm
2260
+ Federation"}'
2261
+ http_version:
2262
+ recorded_at: Sat, 12 Sep 2015 08:52:54 GMT
2263
+ recorded_with: VCR 2.9.3