WARFRAME Wiki
Advertisement
WARFRAME Wiki
Photo-4
“It's taking longer than I calculated.”
This page is actively being worked on and may not be completely correct. Please assist in making this page accurate. See WARFRAME Wiki:Research on ways to perform research on this game. Click here to add more info.
Update 33.0 (2023-04-26) and Duviri

Manually updated fork of the public Drop Tables provided by DE:

See Module:DropTables to see what various things this is being used for right now.

Last updated: Mon, 03 Jul 2017 16:12:24 +0000 (UTC) by User:Falterfire

How To Update Drop Tables

  1. Login to your wiki account and click "Edit Source" at the top right corner of the page. These pages are usually protected from anonymous editors.
    • If you are an anon and don't want to make an account, you can contribute by writing exactly what you want changed in reference to the official drop tables on the talk page (Module talk:DropTables/data) to streamline the update process for editors.
  2. CTRL+F the name of the relevant drop table, usually typing the mission type/enemy name should suffice.
    • If you still can't find the relevant drop table then you can reference the "Locations" section on any mission type article in the navigation box below to see what drop table alias a particular mission node uses. These drop table aliases are editor-defined for ease of reference since DE doesn't publicly name their drop tables.
      • Alternatively, you can go directly to the mission data stored on the wiki Module:Missions/data and see exactly what drop table alias a particular node is mapped to.
    • For bounties, search by the name of the hub that a particular bounty is associated with (e.g. Cetus, Fortuna, Necralisk) and its enemy level range. Zariman Ten Zero bounties are called "Zariman".
  3. Change drop names or drop chances in accordance to the below schemas. Use EN localization for item names.
  4. Updated data should proliferate across relevant pages across the wiki. If something isn't changed on an article then you can purge the page's cache by adding the query parameter ?action=purge at the end of the URL.

Mod Drop Table Schema

{
	{ "Endo", "Resource", 75.88, 15 },
	{ "Hawk Eye", "Mod", 7.37 },
	{ "Shotgun Barrage", "Mod", 7.37 },
	{ "Endo", "Resource", 7.37, 50 },
	{ "Shock Absorbers", "Mod", 1.01 },
	{ "Endo", "Resource", 1.01, 80 } 
}
  1. First element in each table element will be the mod's name as a string (required)
  2. Second element in each table element will be the item's type as a string (required)
  3. Third element in each table element will be the individual drop chance of said mod as a float (required)
  4. Forth element in each table element will represent drop count of Endo as an integer (required if first element is "Endo")

General Drop Table Schema

{
	{ "Morphic Transformer", "Mod", 5.64 },
	{ "Automatic Trigger", "Mod", 38.72 },
	{ "Phaedra Receiver", "Item", 5.64 },
	{ "Extend", "Mod", 38.72 },
	{ "Shell Rush", "Mod", 5.64 },
	{ "Shell Rush", "Mod", 5.64 } 
}
  1. First element in each table element will be the item's name as a string (required)
  2. Second element in each table element will represent item type as a string (required)
    • Possible values include "Mod", "Blueprint", "Relic", "Resource", "Arcane", "Item", "Scene"
  3. Third element in each table element will be the individual drop chance of said item as a float (required)
  4. Fourth element in each table element will represent drop count of said item as an integer (optional)

Enemies Entry Schema

		["Enemy Name"] = {
			ModChance = 3,
			Mods = {
				{ "Mod 1 Name", "Mod", 25 },
				{ "Mod 2 Name", "Mod", 25 },
				{ "Endo", "Resource", 25, 15 },
				{ "Endo", "Resource", 25, 80 }
			},
			Name = "Enemy Name",
		},
Key/Column Name Data Type Required? Explanation/Description Example(s)
_IgnoreEntry Boolean Denotes drop tables that are in the official repository but should be ignored when parsing tables for the wiki since its contents cannot be dropped in-game true
BlueprintChance Number (float) Blueprint/Item drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 5
Blueprints Table (of tables) Blueprint/Item drop table contents as seen in the official drop table repo, each table element is a table that contains the name of blueprint/item and the percentage chance of that blueprint/item dropping. Required if BlueprintChance is a non-nil value. { { "War Blade", 50 }, { "War Hilt", 50 } }
ItemChance Number (float) Additional Items drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 100
Items Table (of tables) Additional Items drop table contents as seen in the official drop table repo, each table element is a table that contains the name of item and the percentage chance of that item dropping. Required if ItemChance is a non-nil value. { { "Powercell", 100 } }
ModChance Number (float) Mod drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 3
Mods Table (of tables) Mod drop table contents as seen in the official drop table repo, each table element is a table that contains the name of mod and the percentage chance of that mod dropping; if reward is Endo, also add a third element containing the amount of Endo rewarded. Required if ModChance is a non-nil value.
{
	{ "Regen", "Mod", 18.97 },
	{ "Calculated Redirection", "Mod", 18.97 },
	{ "Rupture", "Mod", 18.97 },
	{ "Endo", "Resource", 18.97, 15 },
	{ "Convulsion", "Mod", 7.37 },
	{ "Speed Trigger", "Mod", 7.37 },
	{ "Fracturing Wind", "Mod", 7.37 },
	{ "Endo", "Resource", 2.01, 80 } 
}
Name String ✔️ Name of enemy "Elite Lancer"
PigmentChance Number (float) Pigment drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive. Note that in-game, this chance only applies if the Clan that player is in is actively researching the pigment in question 100
Pigments Table (of tables) Pigment drop table contents. Note that in-game, this chance only applies if the Clan that player is in is actively researching the pigment in question. Required if PigmentChance is a non-nil value.
{
	{ "Boiler Red Pigment", "Resource", 100, 2 }
}
RelicChance Number (float) Resource drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 20
Relics Table (of tables) Relic drop table contents as seen in the official drop table repo, each table element is a table that contains the name of relic and the percentage chance of that relic dropping. Required if RelicChance is a non-nil value.
{
	{ "Lith T7", "Relic", 15.49 },
	{ "Lith N7", "Relic", 15.49 },
	{ "Meso B5", "Relic", 15.49 },
	{ "Meso S10", "Relic", 15.49 },
	{ "Meso B6", "Relic", 15.49 },
	{ "Neo N16", "Relic", 3.76 },
	{ "Neo T5", "Relic", 3.76 },
	{ "Neo N17", "Relic", 3.76 },
	{ "Axi A14", "Relic", 3.76 },
	{ "Axi I2", "Relic", 3.76 },
	{ "Axi M2", "Relic", 3.76 } 
}
ResourceChance Number (float) Resource drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 7
Resources Table (of tables) Resource drop table contents as seen in the official drop table repo, each table element is a table that contains the name of resource and the percentage chance of that resource dropping. Required if ResourceChance is a non-nil value. { { "Region Resource", 77.44 }, { "Nav Coordinate", 22.56 } }
SigilChance Number (float) Sigil drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 100
Sigils Table (of tables) Sigil drop table contents as seen in the official drop table repo, each table element is a table that contains the name of sigil and the percentage chance of that sigil dropping. Required if SigilChance is a non-nil value. { { "Alad V Sigil", 100 } }

Missions Entry Schema

		Spy1 = {
			Alias = "Spy1",
			Link = "Spy",
			Name = "Tier 1",
			Rewards = {
				A = {
					{ "Credits Cache", "Credits", 14.29, 1500 },
					{ "Credits Cache", "Credits", 14.29, 1500 },
					{ "Endo", "Resource", 14.29, 100 },
					{ "Endo", "Resource", 14.29, 100 },
					{ "Reflection", "Mod", 14.29 },
					{ "Reflex Guard", "Mod", 14.29 },
					{ "Parry", "Mod", 14.29 } 
				},
				B = {
					{ "Lith G4", "Relic", 14.29 },
					{ "Lith T7", "Relic", 14.29 },
					{ "Lith K7", "Relic", 14.29 },
					{ "Lith N7", "Relic", 14.29 },
					{ "Lith G4", "Relic", 14.29 },
					{ "Lith I1", "Relic", 14.29 },
					{ "Lith N8", "Relic", 14.29 } 
				},
				C = {
					{ "Master Key", "Mod", 10 },
					{ "Reflection", "Mod", 10 },
					{ "Parry", "Mod", 10 },
					{ "Heavy Impact", "Mod", 10 },
					{ "Serration", "Mod", 10 },
					{ "Hornet Strike", "Mod", 10 },
					{ "Metal Auger", "Mod", 10 },
					{ "Volcanic Edge", "Mod", 10 },
					{ "Vicious Frost", "Mod", 10 },
					{ "Ivara Systems Blueprint", "Blueprint", 10 } 
				} 
			},
			Type = "Spy" 
		},
Key/Column Name Data Type Required? Explanation/Description Example(s)
Alias String ✔️ User-defined name for the drop table group. Many missions share the same drop tables so this is how we refer to a specific drop table group. "Survival1"
InternalName String The full unique name of a drop table formatted as a file path "/Lotus/Types/Game/MissionDecks/InvasionRewards"
Link String ✔️ Name of page on the wiki of the mission associated with drop table "Spy"
Name String ✔️ User-defined name of drop table to be displayed to readers "Tier 1 Spy"
Rewards Table (of key-value pairs) ✔️ Contains at least three drop tables (named A, B, and C) associated with a specific drop table group.
Tier String ✔️ Name of tier associated with mission type for the drop table "All" or "Tier 2"
Type String ✔️ Name of mission type associated with drop table "Survival"

Rewards Subtable Collection

Any reward entries added to the Enemies and Missions collections are automatically populated into the Rewards collection, indexed by item name and with the following schema:

Key/Column Name Data Type Required? Explanation/Description Example(s)
Number index Table (of table entries) ✔️ Each item name is mapped to an array-like table containing table entries about their drop source.
["Ambassador Blueprint"] = {
		{
			[1] = "Missions",
			[2] = "VeilProximaSurvival",
			[3] = "C"
			[4] = 2,
			Entry = { "Ambassador Blueprint", "Blueprint", 16.67 },
			Probability: 0.1667,
			Source = reference to original table entry,
		},
		{
			[1] = "Missions",
			[2] = "NeptuneProximaSurvival",
			[3] = "C",
			[4] = 5,
			Entry = { "Ambassador Blueprint", "Blueprint", 8.33 },
			Probability = 0.0833,
			Source = reference to original table entry,
		},
			[1] = "Missions",
			[2] = "PlutoProximaSurvival",
			[3] = "C",
			[4] = 5,
			Entry = { "Ambassador Blueprint", "Blueprint", 8.33 },
			Probability = 0.0833,
			Source = reference to original table entry,
		},
		{
			[1] = "Missions",
			[2] = "VenusProximaSurvival",
			[3] = "C",
			[4] = 5,
			Entry = { "Ambassador Blueprint", "Blueprint", 8.33 },
			Probability = 0.0833,
			Source = reference to original table entry,
		},
}

Viewing Contents via API Call

CephalonSimaris
“Hunter, I have temporarily disabled that ability.”
This article contains JavaScript scripts that users can run locally in their browser's console or machine. As a warning, which goes for any scripts you copy/run from the Internet, MAKE SURE YOU UNDERSTAND THE CODE BEFORE RUNNING IT LOCALLY FOR YOUR OWN SECURITY! Contact an admin if you have any concerns or questions about a script.

For debugging purposes in browser console:

let origin = "https://warframe.fandom.com";
// MediaWiki's Action API endpoint
let path = "/api.php";
// Passing Lua code to Action API to convert Lua tables containing drop table data into JSON
let params = {
	action: "scribunto-console",
	format: "json",
	title: "Module:DropTables/data",
	content: "",
	question: `
local DropData = require('Module:DropTables/data').Rewards
local json = require('Module:JSON')
print(json.stringify(DropData))`,
	clear: 1
};

// [ ["action", "scribunto-console"], ["format","json"], ... ] to "action=scribunto-console&format=json&..."
let queryString = new URLSearchParams([ ...Object.entries(params) ]).toString();

let url = new URL(`${origin}${path}?${queryString}`);

fetch(url)
	.then((data) => data.json())
	.then((json) => {
		if (json.print !== undefined) {
			console.log(JSON.parse(json.print));
		} else {
			throw json.html;	// Lua script error has occurred
		}
	})
	.catch((error) => console.log(error));

Differences Between Official Repo And Wiki's Drop Tables

The official drop table repository and the wiki's repo are not one-to-one, just as the official repo is not one-to-one with actual in-game drop tables. Entries are manually edited and audited for the purposes of rendering content properly on the wiki. DO NOT ASSUME THIS IS THE SAME AS THE OFFICIAL REPO OR IN-GAME DROP TABLES.

Wiki's repo
  • Chassis components for gun weapons are named "<Weapon_Name> Gun Chassis" instead of "<Weapon_Name> Chassis" to differentiate between Warframe chassis and weapon chassis
  • Includes the chances that a new Invasion node will roll a specific reward for both sides. This data was sourced from a datamined resource which may or may not be outdated.
  • Includes Orokin Tower Containers
  • Includes Requiem Relic drop chances of Kuva Thralls and Hounds
  • Enemy names will be formatted to their in-game representation (like "Raptor Mt" to "Raptor MT")
    • "Nechramech" is renamed to "Necramech" to match in-game presentation
    • Duplicate "Vomvalyst" entry is not included in wiki's repo. Use "Eidolon Vomvalyst" instead.
    • Exception would be "MOA" as in the Corpus enemy. Game is inconsistent with capitalization, using both "MOA" and "Moa". "MOA" is the original spelling.
  • Drop chances may be rounded to more decimal places than two
  • Void Relic drop tables are stored in Module:Void/data and we only store the items in relic drop tables since drop chances at different relic refinements are the same across all relics (i.e. drop chances can be derived, no need to store additional data)
  • Since some mission types of the same tier/difficulty share drop tables, we will not store duplicate drop tables in the wiki's repo to save space
  • Contains Pigment drop chance data
  • For items that appear more than once in the same drop table, we consolidate these drop chances into one entry for simplicity and for sorting by highest/lowest drop chances in wikitables, even if that is not that actual internal implementation
    • For example, as of 2022-12-14, we see duplicate Void Relic entries for Void/Taranis (Defense) Rotation A drop table[1]
Official repo
  • Contains drop tables of outdated event/Star Chart nodes like Camenae, Sedna (Defense) and Viver, Eris (Caches)
  • Contains drop tables of enemies that cannot be normally spawned like "Terra Cestra Manker" or "Kuva Lich Agor Rok (Level 0 - 69)"
  • Contains entries that share the name as others like Common Corpus Storage Container. In the wiki's repo, the second instance of these drop tables will have " (2)" appended to the name so that keys stay unique.
  • Labels all Railjack mission nodes as the "Skirmish" mission type. The wiki uses the mission type as shown in menus in-game.
  • May contain unreleased content[2]

Updating Relic Drop Locations Notes

Every Prime Access (once every ~3 months or financial quarter), DE will release new Void Relics that will contain at least one component/blueprint of the new Primes released. In addition, the oldest available Primes' relics will be removed from the game's Drop Tables to make room for the new relics and to not dilute the drop tables further. In some cases, newer/recent Prime items' parts would be unavailable to farm when DE removes these old relics, so they will add additional relics (separate from the newly released Primes) to make these items farmable.

It takes about 1-3 hours of manually editing to fully update Module:Void/data and Module:DropTables/data with the latest Prime content.

Updating the vaulted status of relics here will automatically tag the appropriate item articles with Template:ItemVault.

Creating New Void Relic Pages

Use Template:VoidRelicArticle as reference for creating new Void Relic articles. See WARFRAME Wiki:Creating New Pages#Create New Void Relic Article for a sample text input to article wizard.

Module:DropTables/data

A simple find & replace should be enough to keep relic drops in Module:DropTables/data up-to-date with the latest Prime Access/Prime Resurgence. This is especially true if the number of relics introduced is equal to the number of relics removed from drop tables. However, there had been times where there is an unequal number of removed/added relics (mainly because some Prime weapons have varying numbers of parts associated with its crafting recipe; Prime parts are distributed across relics so that only one part from a unique weapon may be present in any given relic) which requires editors to manually go through each relevant mission drop table to audit for accuracy.

Good drop tables to check for what has changed:

  • Tier 1 Survival for Lith relics like Mercury/Apollodorus (Survival)
  • Tier 1 Defense (rotation B and C) for Meso relics like Mercury/Lares (Defense)
  • Tier 3 Excavation (rotation B) for Neo relics like Pluto/Hieracon (Excavation)
  • Tier 3 Excavation (rotation C) for Axi relics like Pluto/Hieracon (Excavation)

Notable patterns in relic drop distribution:

  • Relics that are replaced are usually the same tier as the relic that replaces them (Lith, Meso, Neo, Axi)
  • Bounties usually only drop relics that have been recently unvaulted with the latest Prime Vault With Prime Resurgence being a permanent feature in the game since Hotfix 32.0.3 (2022-09-14), editors will most likely won't need to update bounty drop tables on a frequent basis. Vaulted relics that once existed in bounty drop tables are now replaced by an intermediary currency Aya Aya.

Examples

U31.7 - Khora Prime

Update 31.7 (2022-07-16) relic drop locations update for KhoraPrimeIcon272 Khora Prime/HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime relics (InarosPrimeIcon272 Inaros Prime/PantheraPrime Panthera Prime/KarystPrime Karyst Prime vaulted):

  • Old -> New
InarosPrimeIcon272 Inaros Prime -> KhoraPrimeIcon272 Khora Prime/HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime
PantheraPrime Panthera Prime -> KhoraPrimeIcon272 Khora Prime/HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime
KarystPrime Karyst Prime -> HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime
U31.3 - Garuda Prime

Update 31.3 (2022-03-28) relic drop locations update for GarudaPrimeIcon Garuda Prime/NagantakaPrime Nagantaka Prime/CorvasPrime Corvas Prime relics (TitaniaPrimeIcon272 Titania Prime/CorinthPrime Corinth Prime/PangolinPrime Pangolin Prime vaulted):

U31.0 - Harrow Prime

Update 31.0 (2021-12-15) relic drop locations update for HarrowPrimeIcon Harrow Prime/ScourgePrime Scourge Prime/KnellPrime Knell Prime relics (Ivara PrimeIcon272 Ivara Prime/BazaPrime Baza Prime/AksomatiPrime Aksomati Prime vaulted):

References

  1. (2022, December 14). Official Drop Table Repo. Digital Extremes. Accessed 2022-12-22. Archived from the original on 2022-12-17.
  2. (2022, December 14). Official Drop Table Repo. Digital Extremes. Accessed 2022-12-26. Archived from the original on 2022-12-17. Lith A5, Lith V9, Meso T6, Meso V8, Neo A7, Neo D6, and Axi F1 are included in 2022-12-14 update of drop table repo, representing a future Atlas/Vauban Prime rerun.

Drop Table Data


--GOOD NEWS EVERYBODY!
--DE is now making drop tables publicly available
--So I was able to pull this
--...nothing uses it yet tho
--Hopefully soon - User:Falterfire

--Sourced from DE at... https://n8k6e2y6.ssl.hwcdn.net/repos/hnfvc0o3jnfvc873njb03enrf56.html
--Last updated 6/30/2017

--Guide to which Mission Type/Difficulties match which actual missions
local DropData = 
{
    ["Missions"] = {
        {"Survival","Easy","Apollodorus","Mercury"},
        {"Survival","Easy","V Prime","Venus"},
        {"Survival","Easy","Arcadia","Event: Mars"},
        {"Survival","Easy","Stickney","Phobos"},
        {"Defense","Easy","Lares","Mercury"},
        {"Defense","Easy","Tessera","Venus"},
        {"Defense","Easy","Lith","Earth"},
        {"Defense","Easy","Spear","Mars"},
        {"Defense","Easy","Varro","Event: Ceres"},
        {"Defense","Easy","Casta","Ceres"},
        {"Defense","Easy","Egeria","Event: Ceres"},
        {"Defense","Easy","Taranis","Void"},
        {"Defense","Easy","Drunlo","Event: Phobos"},
        {"Defense","Easy","Gulliver","Phobos"},
        {"Rescue","Easy","Caloris","Mercury"},
        {"Rescue","Easy","Linea","Venus"},
        {"Rescue","Easy","Pacific","Earth"},
        {"Rescue","Easy","Martialis","Mars"},
        {"Rescue","Easy","Olla","Event: Ceres"},
        {"Rescue","Easy","Nuovo","Ceres"},
        {"Rescue","Easy","Jengu","Event: Sedna"},
        {"Rescue","Easy","Monolith","Phobos"},
        {"Capture","All","Elion","Mercury"},
        {"Capture","All","Venera","Venus"},
        {"Capture","All","Mantle","Earth"},
        {"Capture","All","Ara","Mars"},
        {"Capture","All","Quirinus","Event: Mars"},
        {"Capture","All","Ananke","Jupiter"},
        {"Capture","All","Phoebe","Event: Saturn"},
        {"Capture","All","Cassini","Saturn"},
        {"Capture","All","Ariel","Uranus"},
        {"Capture","All","Trinculo","Event: Uranus"},
        {"Capture","All","Galatea","Neptune"},
        {"Capture","All","Hydra","Pluto"},
        {"Capture","All","Corb","Event: Pluto"},
        {"Capture","All","Lex","Ceres"},
        {"Capture","All","Cosis","Event: Eris"},
        {"Capture","All","Isos","Eris"},
        {"Capture","All","Rusalka","Sedna"},
        {"Capture","All","Abaddon","Europa"},
        {"Capture","All","Cryotic Front","Event: Europa"},
        {"Capture","All","Beleth","Event: Europa"},
        {"Capture","All","Cryotic Front","Event: Europa"},
        {"Capture","All","Cryotic Front","Event: Europa"},
        {"Capture","All","Hepit","Void"},
        {"Capture","All","Ukko","Void"},
        {"Capture","All","Limtoc","Event: Phobos"},
        {"Capture","All","Skyresh","Phobos"},
        {"Capture","All","Todd","Event: Phobos"},
        {"Capture","All","Copernicus","Lua"},
        {"Capture","All","Nabuk","Kuva Fortress"},
        {"Sabotage","Easy","Terminus","Mercury"},
        {"Sabotage","Easy","Neruda","Event: Mercury"},
        {"Sabotage","Easy","Ishtar","Venus"},
        {"Sabotage","Easy","Gradivus","Mars"},
        {"Assassinate","Vor","Tolstoj","Mercury"},
        {"Exterminate","Archwing","Caduceus","Event: Mercury"},
        {"Exterminate","Archwing","Montes","Venus"},
        {"Exterminate","Archwing","Syrtis","Mars"},
        {"Interception","Easy","Odin","Mercury"},
        {"Interception","Easy","Cytherean","Venus"},
        {"Interception","Easy","Gaia","Earth"},
        {"Interception","Easy","Alator","Mars"},
        {"Interception","Easy","Cinxia","Ceres"},
        {"Spy","Easy","Suisei","Mercury"},
        {"Spy","Easy","Vesper","Event: Venus"},
        {"Spy","Easy","Unda","Venus"},
        {"Spy","Easy","Cambria","Earth"},
        {"Spy","Easy","Arval","Mars"},
        {"Spy","Easy","Hapke","Event: Ceres"},
        {"Spy","Easy","Grildrig","Event: Phobos"},
        {"Spy","Easy","Shklovsky","Phobos"},
        {"Assassinate","Jackal","Fossa","Venus"},
        {"Survival","Easy2","Malva","Venus"},
        {"Survival","Easy2","Gabii","Ceres"},
        {"Excavation","Easy","Kiliken","Venus"},
        {"Excavation","Easy","Everest","Earth"},
        {"Excavation","Easy","Tikal","Earth"},
        {"Excavation","Easy","Augustus","Mars"},
        {"Excavation","Easy","Wendell","Event: Phobos"},
        {"Defense","Easy2","Romula","Venus"},
        {"Defense","Easy2","Coba","Earth"},
        {"Defense","Easy2","Kadesh","Mars"},
        {"Defense","Easy2","Sinai","Jupiter"},
        {"Defense","Easy2","Ur","Uranus"},
        {"Defense","Easy2","Sechura","Pluto"},
        {"Defense","Easy2","Seimeni","Ceres"},
        {"Defense","Easy2","Akkad","Eris"},
        {"Defense","Easy2","Sangeru","Sedna"},
        {"Defense","Easy2","Larzac","Europa"},
        {"Sabotage","Earth","Cervantes","Earth"},
        {"Assassinate","Vay Hek","Oro","Earth"},
        {"Mobile Defense","Archwing","Erpo","Earth"},
        {"Mobile Defense","Archwing","Salacia","Neptune"},
        {"Mobile Defense","Archwing","Gamygyn","Event: Europa"},
        {"Assassinate","Lech Kril","War","Mars"},
        {"Survival","Medium2","Wahiba","Mars"},
        {"Survival","Medium2","Cameria","Jupiter"},
        {"Survival","Medium2","Piscinas","Saturn"},
        {"Survival","Medium2","Zeugma","Phobos"},
        {"Sabotage","Medium","Adrastea","Jupiter"},
        {"Sabotage","Medium","Pallene","Event: Saturn"},
        {"Sabotage","Medium","Calypso","Saturn"},
        {"Sabotage","Medium","Thon","Ceres"},
        {"Spy","Medium","Amalthea","Jupiter"},
        {"Spy","Medium","Dione","Saturn"},
        {"Spy","Medium","Aegaeon","Event: Saturn"},
        {"Spy","Medium","Bode","Ceres"},
        {"Spy","Medium","Valac","Europa"},
        {"Rescue","Medium","Metis","Jupiter"},
        {"Rescue","Medium","Mimas","Event: Saturn"},
        {"Rescue","Medium","Numa","Saturn"},
        {"Rescue","Medium","Veles","Event: Sedna"},
        {"Rescue","Medium","Eligor","Event: Europa"},
        {"Rescue","Medium","Shax","Event: Europa"},
        {"Rescue","Medium","Orias","Europa"},
        {"Defense","Medium","Io","Jupiter"},
        {"Defense","Medium","Helene","Saturn"},
        {"Defense","Medium","Camenae","Event: Sedna"},
        {"Defense","Medium","Paimon","Europa"},
        {"Survival","Medium","Elara","Jupiter"},
        {"Survival","Medium","Titan","Saturn"},
        {"Survival","Medium","Draco","Ceres"},
        {"Survival","Medium","Lillith","Event: Europa"},
        {"Survival","Medium","Valefor","Europa"},
        {"Survival","Medium","Zagan","Event: Europa"},
        {"Survival","Medium","Ani","Void"},
        {"Interception","Medium","Callisto","Jupiter"},
        {"Interception","Medium","Iapetus","Event: Saturn"},
        {"Interception","Medium","Rhea","Saturn"},
        {"Interception","Medium","Umbriel","Uranus"},
        {"Interception","Medium","Ose","Europa"},
        {"Assassinate","Alad V","Themisto","Jupiter"},
        {"Sabotage","Archwing","Galilea","Jupiter"},
        {"Assassinate","Sargas Ruk","Tethys","Saturn"},
        {"Rescue","Hard","Anthe","Saturn"},
        {"Rescue","Hard","Mab","Event: Uranus"},
        {"Rescue","Hard","Caliban","Uranus"},
        {"Rescue","Hard","Triton","Neptune"},
        {"Rescue","Hard","Regna","Pluto"},
        {"Rescue","Hard","Brugia","Eris"},
        {"Rescue","Hard","Ranova","Event: Eris"},
        {"Rescue","Hard","Sparga","Event: Eris"},
        {"Rescue","Hard","Naga","Sedna"},
        {"Rescue","Hard","Zeipel","Lua"},
        {"Rescue","Hard","Garus","Kuva Fortress"},
        {"Pursuit","Archwing","Pandora","Saturn"},
        {"Cephalon Capture","All","Cephalon Capture","Saturn"},
        {"Cephalon Capture","All","Cephalon Capture","Saturn"},
        {"Cephalon Capture","All","Team Annihilation","Saturn"},
        {"Cephalon Capture","All","Team Annihilation","Saturn"},
        {"Cephalon Capture","All","Annihilation","Saturn"},
        {"Cephalon Capture","All","Annihilation","Saturn"},
        {"Cephalon Capture","All","Lunaro Arena","Saturn"},
        {"Cephalon Capture","All","Lunaro Arena","Saturn"},
        {"Cephalon Capture","All","(Variant Cephalon Capture","Saturn"},
        {"Cephalon Capture","All","(Variant Cephalon Capture","Saturn"},
        {"Cephalon Capture","All","(Variant Team Annihilation","Saturn"},
        {"Cephalon Capture","All","(Variant Team Annihilation","Saturn"},
        {"Cephalon Capture","All","(Variant Annihilation","Saturn"},
        {"Cephalon Capture","All","(Variant Annihilation","Saturn"},
        {"Cephalon Capture","All","Cephalon Capture","Neptune"},
        {"Defection","Saturn","Caracol","Saturn"},
        {"Assassinate","Tyl Regor","Titania","Uranus"},
        {"Defense","Hard","Miranda","Event: Uranus"},
        {"Defense","Hard","Bianca","Event: Uranus"},
        {"Defense","Hard","Stephano","Uranus"},
        {"Defense","Hard","Proteus","Neptune"},
        {"Defense","Hard","Outer Terminus","Pluto"},
        {"Defense","Hard","Kala-Azar","Eris"},
        {"Defense","Hard","Ixodes","Event: Eris"},
        {"Defense","Hard","Hydron","Sedna"},
        {"Defense","Hard","Belenus","Void"},
        {"Defense","Hard","StöFler","Lua"},
        {"Defense","Hard","Tamu","Kuva Fortress"},
        {"Survival","Hard","Ophelia","Uranus"},
        {"Survival","Hard","Cupid","Event: Uranus"},
        {"Survival","Hard","Despina","Neptune"},
        {"Survival","Hard","Palus","Pluto"},
        {"Survival","Hard","Hieracon","Pluto"},
        {"Survival","Hard","Hymeno","Event: Eris"},
        {"Survival","Hard","Nimus","Eris"},
        {"Survival","Hard","Selkie","Sedna"},
        {"Survival","Hard","Scylla","Event: Sedna"},
        {"Survival","Hard","Yemaja","Event: Sedna"},
        {"Survival","Hard","Cryotic Front","Event: Europa"},
        {"Survival","Hard","Cholistan","Europa"},
        {"Survival","Hard","Tycho","Lua"},
        {"Survival","Hard","Taveuni","Kuva Fortress"},
        {"Sabotage","Hard","Portia","Event: Uranus"},
        {"Sabotage","Hard","Thalassa","Event: Neptune"},
        {"Sabotage","Hard","Halimede","Event: Neptune"},
        {"Sabotage","Hard","Charon","Event: Pluto"},
        {"Sabotage","Hard","Cypress","Pluto"},
        {"Sabotage","Hard","Phithale","Event: Sedna"},
        {"Sabotage","Hard","Kelpie","Sedna"},
        {"Sabotage","Hard","Dakata","Kuva Fortress"},
        {"Sabotage","Uranus","Desdemona","Uranus"},
        {"Sabotage","Uranus","Prospero","Event: Uranus"},
        {"Sabotage","Uranus","Setebos","Event: Uranus"},
        {"Spy","Hard","Rosalind","Uranus"},
        {"Spy","Hard","Laomedeia","Neptune"},
        {"Spy","Hard","Oceanum","Pluto"},
        {"Spy","Hard","Cyath","Event: Eris"},
        {"Spy","Hard","Gnathos","Event: Eris"},
        {"Spy","Hard","Kappa","Sedna"},
        {"Spy","Hard","Tikoloshe","Event: Sedna"},
        {"Interception","Archwing","Caelus","Uranus"},
        {"Survival","Hard2","Assur","Uranus"},
        {"Survival","Hard2","Kelashin","Neptune"},
        {"Survival","Hard2","Amarna","Sedna"},
        {"Assassinate","Hyena Pack","Psamathe","Neptune"},
        {"Defection","Neptune","Yursa","Neptune"},
        {"Index","All","The Index: Endurance","Event: Neptune"},
        {"Index","All","The Index: Endurance","Event: Neptune"},
        {"Index","All","The Index: Endurance","Event: Neptune"},
        {"Index","All","The Index: Endurance","Neptune"},
        {"Assassinate","Ambulas","Hades","Pluto"},
        {"Interception","Hard","Cerberus","Pluto"},
        {"Interception","Hard","Sporid","Event: Eris"},
        {"Interception","Hard","Phalan","Event: Eris"},
        {"Interception","Hard","Xini","Eris"},
        {"Interception","Hard","Berehynia","Sedna"},
        {"Interception","Hard","Mithra","Void"},
        {"Assassinate","Kril and Vor 1","Exta","Ceres"},
        {"Assassinate","Kril and Vor 2","Exta","Ceres"},
        {"Sabotage","Hive","Candiru","Event: Eris"},
        {"Sabotage","Hive","Lepis","Event: Eris"},
        {"Sabotage","Hive","Psoro","Event: Eris"},
        {"Sabotage","Hive","Viver","Event: Eris"},
        {"Sabotage","Hive","Naeglar","Eris"},
        {"Salvage","All","Oestrus","Eris"},
        {"Survival","Eris","Zabala","Eris"},
        {"Arena","Hard","Vodyanoi","Sedna"},
        {"Arena","Hard","Yam","Sedna"},
        {"Arena","Undine","Undine","Event: Sedna"},
        {"Arena","Easy","Nakki","Sedna"},
        {"Assassinate","Kela De Thaym","Merrow","Sedna"},
        {"Assassinate","Raptor","Naamah","Europa"},
        {"Sabotage","Void Easy","Stribog","Void"},
        {"Survival","Mot","Mot","Void"},
        {"Sabotage","Void Hard","Marduk","Void"},
        {"Rush","Archwing","Kepler","Phobos"},
        {"Defection","Phobos","Memphis","Phobos"},
        {"Assassinate","Sergeant","Iliad","Phobos"},
        {"Rush","Phobos Event","Opik","Event: Phobos"},
        {"Defense","Derelict","Orokin Derelict Defense","Derelict"},
        {"Sabotage","Derelict","Orokin Derelict Sabotage","Derelict"},
        {"Survival","Derelict","Orokin Derelict Survival","Derelict"},
        {"Assassinate","Lephantis","Orokin Derelict Assassinate","Derelict"},
        {"Sabotage","Lua","Plato","Lua"},
        {"Spy","Lua","Pavlov","Lua"},
        {"Spy","Kuva Fortress","Pago","Kuva Fortress"}
    },
    
    
    --Format is...
    --Mission Type,Difficulty,Rotation,Item,Rarity,Exact Chance
    
    ["Drops"] = {
        {"Survival","Easy","A",1,"Synthula","Resource","Uncommon",14.29},
        {"Survival","Easy","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy","A",15,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy","A",50,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy","A",80,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy","B",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith S4 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith S6 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Parry","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Serration","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Incendiary Coat","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Intensify","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Lith B1 Relic","Relic","Rare",7.14},
        {"Survival","Easy","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith S4 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith S6 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Cleanse Grineer","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Lith B1 Relic","Relic","Rare",9.68},
        {"Defense","Easy","A",1,"Synthula","Resource","Rare",6.67},
        {"Defense","Easy","A",1,"Magazine Warp","Mod","Rare",6.67},
        {"Defense","Easy","A",1,"Trick Mag","Mod","Rare",6.67},
        {"Defense","Easy","A",1,"Pressure Point","Mod","Rare",6.67},
        {"Defense","Easy","A",1,"Ammo Drum","Mod","Rare",6.67},
        {"Defense","Easy","A",1,"Lith V3 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith S4 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith V2 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith N3 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith S6 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith V4 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith A2 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith S4 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Meso S2 Relic","Relic","Rare",6.67},
        {"Defense","Easy","A",1,"Lith B1 Relic","Relic","Rare",6.67},
        {"Defense","Easy","B",1,"Meso D1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso F1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso S2 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso S4 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso O1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso S5 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Reflex Coil","Mod","Rare",7.14},
        {"Defense","Easy","B",1,"Cryo Rounds","Mod","Rare",7.14},
        {"Defense","Easy","B",1,"Hell's Chamber","Mod","Rare",7.14},
        {"Defense","Easy","B",1,"Shocking Touch","Mod","Rare",7.14},
        {"Defense","Easy","B",50,"Endo","Endo","Rare",7.14},
        {"Defense","Easy","B",1,"Meso N4 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso V5 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso M1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Metal Auger","Mod","Rare",6.67},
        {"Defense","Easy","C",1,"Ravage","Mod","Rare",6.67},
        {"Defense","Easy","C",1,"Meso S4 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso S2 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso F1 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso D1 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Continuity","Mod","Rare",6.67},
        {"Defense","Easy","C",1,"Master Thief","Mod","Rare",6.67},
        {"Defense","Easy","C",80,"Endo","Endo","Rare",6.67},
        {"Defense","Easy","C",1,"Meso O1 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso S5 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso N4 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso V5 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso S6 Relic","Relic","Rare",6.67},
        {"Defense","Easy","C",1,"Meso M1 Relic","Relic","Rare",6.67},
        {"Rescue","Easy","B",1,"Vapor Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Easy","C",1,"Phase Specter Blueprint","Blueprint","Very Common",100},
        {"Capture","All","A",1,"Vitality","Mod","Rare",6.32},
        {"Capture","All","A",1,"Fast Deflection","Mod","Rare",6.32},
        {"Capture","All","A",1,"Rush","Mod","Uncommon",11.06},
        {"Capture","All","A",1,"Magazine Warp","Mod","Rare",6.32},
        {"Capture","All","A",1,"Trick Mag","Mod","Rare",6.32},
        {"Capture","All","A",1,"Pressure Point","Mod","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Ammo Drum","Mod","Uncommon",11.06},
        {"Capture","All","A",1,"Fast Hands","Mod","Rare",6.32},
        {"Capture","All","A",1,"Quickdraw","Mod","Rare",6.32},
        {"Capture","All","A",1,"Health Restore (Large)","Gear","Rare",6.32},
        {"Capture","All","A",1,"Omni Ammo Box","Gear","Beyond Legendary",0.09},
        {"Capture","All","A",1,"North Wind","Mod","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Shocking Touch","Mod","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Molten Impact","Mod","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Stretch","Mod","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Lith S4 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Lith N3 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Meso S2 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Meso S4 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Neo T1 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Meso O1 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Meso S5 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Meso N4 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Neo V5 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Neo S6 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Lith S6 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Lith V4 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Lith A2 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Meso V5 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Neo B2 Relic","Relic","Rare",6.32},
        {"Capture","All","A",1,"Neo N6 Relic","Relic","Rare",6.32},
        {"Capture","All","A",1,"Neo N7 Relic","Relic","Rare",6.32},
        {"Capture","All","A",1,"Meso S6 Relic","Relic","Beyond Legendary",0.09},
        {"Capture","All","A",1,"Lith B1 Relic","Relic","Rare",6.32},
        {"Capture","All","A",1,"Meso M1 Relic","Relic","Rare",6.32},
        {"Capture","All","A",1,"Neo B3 Relic","Relic","Beyond Legendary",0.09},
        {"Sabotage","Easy","A",1000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","A",1500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","B",45,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Easy","B",75,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Easy","B",150,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Easy","B",240,"Polymer Bundle","Resource","Uncommon",12.65},
        {"Sabotage","Easy","B",750,"Circuits","Resource","Uncommon",12.65},
        {"Sabotage","Easy","B",750,"Alloy Plate","Resource","Uncommon",12.65},
        {"Sabotage","Easy","B",250,"Endo","Endo","Uncommon",22.11},
        {"Sabotage","Easy","B",240,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Easy","B",400,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Easy","C",80,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Easy","C",150,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Easy","C",1,"Morphics","Resource","Uncommon",15.1},
        {"Sabotage","Easy","C",1,"Gallium","Resource","Uncommon",15.1},
        {"Sabotage","Easy","C",1,"Neurodes","Resource","Uncommon",15.1},
        {"Sabotage","Easy","C",2,"Morphics","Resource","Rare",5.5},
        {"Sabotage","Easy","C",2,"Gallium","Resource","Rare",5.5},
        {"Sabotage","Easy","C",2,"Neurodes","Resource","Rare",5.5},
        {"Sabotage","Easy","C",160,"Endo","Endo","Rare",5.5},
        {"Sabotage","Easy","C",1,"Argon Crystal","Resource","Legendary",0.67},
        {"Sabotage","Easy","C",1,"Tellurium","Resource","Legendary",0.67},
        {"Sabotage","Easy","C",1,"Nitain Extract","Resource","Legendary",0.67},
        {"Sabotage","Easy","C",1,"Xiphos Fuselage Blueprint","Blueprint","Legendary",0.5},
        {"Assassinate","Vor","A",1,"Seer Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Vor","A",1,"Seer Barrel","Blueprint","Common",38.72},
        {"Assassinate","Vor","A",1,"Seer Receiver","Blueprint","Uncommon",22.56},
        {"Exterminate","Archwing","A",1,"Morphic Transformer","Mod","Rare",5.64},
        {"Exterminate","Archwing","A",1,"Automatic Trigger","Mod","Common",38.72},
        {"Exterminate","Archwing","A",1,"Phaedra Receiver","Blueprint","Rare",5.64},
        {"Exterminate","Archwing","A",1,"Extend","Mod","Common",38.72},
        {"Exterminate","Archwing","A",1,"Shell Rush","Mod","Rare",5.64},
        {"Exterminate","Archwing","A",1,"Shell Rush","Mod","Rare",5.64},
        {"Interception","Easy","A",1,"Vitality","Mod","Rare",8.33},
        {"Interception","Easy","A",1,"Magazine Warp","Mod","Rare",8.33},
        {"Interception","Easy","A",1,"Trick Mag","Mod","Rare",8.33},
        {"Interception","Easy","A",1,"Synthula","Resource","Rare",8.33},
        {"Interception","Easy","A",1,"Lith S4 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith N3 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith S6 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith V4 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith A2 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith V2 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith V3 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith B1 Relic","Relic","Rare",8.33},
        {"Interception","Easy","B",1,"Speed Trigger","Mod","Rare",5},
        {"Interception","Easy","B",1,"Fast Deflection","Mod","Rare",5},
        {"Interception","Easy","B",1,"Rush","Mod","Rare",5},
        {"Interception","Easy","B",1,"Target Cracker","Mod","Rare",5},
        {"Interception","Easy","B",1,"No Return","Mod","Rare",5},
        {"Interception","Easy","B",1,"Serration","Mod","Rare",5},
        {"Interception","Easy","B",1,"Hornet Strike","Mod","Rare",5},
        {"Interception","Easy","B",1,"Reflex Coil","Mod","Rare",5},
        {"Interception","Easy","B",1,"Deep Freeze","Mod","Rare",5},
        {"Interception","Easy","B",1,"North Wind","Mod","Rare",5},
        {"Interception","Easy","B",1,"Meso O1 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso D1 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso S4 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso S2 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso F1 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso S5 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso N4 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso V5 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso S6 Relic","Relic","Rare",5},
        {"Interception","Easy","B",1,"Meso M1 Relic","Relic","Rare",5},
        {"Interception","Easy","C",1,"Meso O1 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso D1 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso S4 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso S2 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso F1 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso S5 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Natural Talent","Mod","Rare",2.58},
        {"Interception","Easy","C",1,"Meso N4 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso V5 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso S6 Relic","Relic","Rare",9.74},
        {"Interception","Easy","C",1,"Meso M1 Relic","Relic","Rare",9.74},
        {"Spy","Easy","A",1,"Synthula","Resource","Uncommon",14.29},
        {"Spy","Easy","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Easy","A",50,"Endo","Endo","Uncommon",14.29},
        {"Spy","Easy","A",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Easy","A",1,"Reflection","Mod","Uncommon",14.29},
        {"Spy","Easy","A",1,"Reflex Guard","Mod","Uncommon",14.29},
        {"Spy","Easy","A",1,"Parry","Mod","Uncommon",14.29},
        {"Spy","Easy","B",1,"Lith V2 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith S4 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith N3 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith S6 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith V4 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith A2 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith V3 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith B1 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","C",2000,"Credits Cache","Credits","Rare",9.09},
        {"Spy","Easy","C",3000,"Credits Cache","Credits","Rare",9.09},
        {"Spy","Easy","C",1,"Reflection","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Parry","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Heavy Impact","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Serration","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Hornet Strike","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Metal Auger","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Volcanic Edge","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Vicious Frost","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Ivara Systems Blueprint","Blueprint","Rare",9.09},
        {"Assassinate","Jackal","A",1,"Rhino Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Jackal","A",1,"Rhino Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Jackal","A",1,"Rhino Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Survival","Easy2","A",500,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",15,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy2","A",50,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy2","A",80,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy2","B",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith S4 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith S6 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Parry","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Serration","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Incendiary Coat","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Intensify","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith B1 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith S4 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith S6 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"True Punishment","Mod","Uncommon",11.28},
        {"Survival","Easy2","C",1,"Quickening","Mod","Uncommon",11.28},
        {"Survival","Easy2","C",1,"Lith B1 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","A",500,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",15,"Endo","Endo","Uncommon",14.29},
        {"Excavation","Easy","A",50,"Endo","Endo","Uncommon",14.29},
        {"Excavation","Easy","A",80,"Endo","Endo","Uncommon",14.29},
        {"Excavation","Easy","B",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith S4 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith S6 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Parry","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Serration","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Incendiary Coat","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Intensify","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith B1 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith S4 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith S6 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Cleanse Grineer","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Lith B1 Relic","Relic","Rare",9.68},
        {"Defense","Easy2","A",1,"Vitality","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Fast Deflection","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Fast Deflection","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Rush","Mod","Rare",3.16},
        {"Defense","Easy2","A",1,"Magazine Warp","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Trick Mag","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Pressure Point","Mod","Ultra Rare",1.01},
        {"Defense","Easy2","A",1,"Ammo Drum","Mod","Rare",3.16},
        {"Defense","Easy2","A",1,"Fast Hands","Mod","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith S4 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith N3 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith V2 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith S6 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"True Punishment","Mod","Ultra Rare",1.01},
        {"Defense","Easy2","A",1,"Lith V4 Relic","Relic","Rare",9.48},
        {"Defense","Easy2","A",1,"Lith A2 Relic","Relic","Rare",9.48},
        {"Defense","Easy2","A",1,"Lith B1 Relic","Relic","Rare",9.48},
        {"Defense","Easy2","B",1,"Speed Trigger","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Fast Hands","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Point Strike","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Vital Sense","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Piercing Hit","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Metal Auger","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Pistol Gambit","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Target Cracker","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"No Return","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Ravage","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Blunderbuss","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Point Blank","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Serration","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Hornet Strike","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Fury","Mod","Legendary",0.67},
        {"Defense","Easy2","B",1,"Reflex Coil","Mod","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Pressure Point","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Meso S2 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso S4 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso D1 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso F1 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso O1 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"True Punishment","Mod","Legendary",0.67},
        {"Defense","Easy2","B",1,"Quickening","Mod","Legendary",0.67},
        {"Defense","Easy2","B",1,"Meso S5 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso N4 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso V5 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso V5 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","B",1,"Meso M1 Relic","Relic","Ultra Rare",1.3},
        {"Defense","Easy2","C",1,"Hellfire","Mod","Rare",7.59},
        {"Defense","Easy2","C",1,"Heated Charge","Mod","Rare",7.59},
        {"Defense","Easy2","C",1,"Molten Impact","Mod","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Barrel Diffusion","Mod","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Streamline","Mod","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Intensify","Mod","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Neo T1 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Thunderbolt","Mod","Legendary",0.4},
        {"Defense","Easy2","C",50,"Endo","Endo","Rare",7.59},
        {"Defense","Easy2","C",80,"Endo","Endo","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Meso S2 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Meso S4 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Neo V5 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Neo V2 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Neo S6 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Neo B2 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"True Punishment","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Quickening","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Enduring Strike","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Life Strike","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Meso O1 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Neo N6 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Meso S5 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Meso N4 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Meso V5 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Neo N7 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Easy2","C",1,"Meso M1 Relic","Relic","Rare",7.59},
        {"Defense","Easy2","C",1,"Neo B3 Relic","Relic","Ultra Rare",1.7},
        {"Sabotage","Earth","A",1000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","A",1500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","B",300,"Ferrite","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",150,"Rubedo","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",1,"Detonite Ampule","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",45,"Endo","Endo","Uncommon",12.18},
        {"Sabotage","Earth","B",75,"Endo","Endo","Uncommon",12.18},
        {"Sabotage","Earth","B",2500,"Credits Cache","Credits","Uncommon",12.18},
        {"Sabotage","Earth","B",3000,"Credits Cache","Credits","Uncommon",12.18},
        {"Sabotage","Earth","B",1,"Neurodes","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",1,"Kubrow Egg","Egg","Rare",2.58},
        {"Sabotage","Earth","C",1,"Health Restore (Large)","Gear","Uncommon",30.02},
        {"Sabotage","Earth","C",80,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Earth","C",100,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Earth","C",1,"Neurodes","Resource","Uncommon",15.1},
        {"Sabotage","Earth","C",1,"Bite","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Link Armor","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Link Health","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Link Shields","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Maul","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Hastened Deflection","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Forma Blueprint","Blueprint","Rare",2},
        {"Sabotage","Earth","C",1,"Forma","Mod","Legendary",0.5},
        {"Assassinate","Vay Hek","A",1,"Hydroid Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Vay Hek","A",1,"Hydroid Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Vay Hek","A",1,"Hydroid Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Mobile Defense","Archwing","A",1,"Polar Magazine","Mod","Common",38.72},
        {"Mobile Defense","Archwing","A",1,"Superior Defenses","Mod","Common",38.72},
        {"Mobile Defense","Archwing","A",1,"Meteor Crash","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Nebula Bore","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Astral Slash","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Comet Blast","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Quasar Drill","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Zodiac Shred","Mod","Rare",3.76},
        {"Assassinate","Lech Kril","A",1,"Frost Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Lech Kril","A",1,"Frost Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Lech Kril","A",1,"Frost Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Survival","Medium2","A",1500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium2","A",2000,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium2","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium2","A",15,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium2","A",50,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium2","A",80,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium2","B",1,"Meso D1 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso O1 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso S2 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso S4 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso F1 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso S5 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Provoked","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Steel Fiber","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Serration","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Hornet Strike","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Fast Deflection","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Charged Shell","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Vital Sense","Mod","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso N4 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso V5 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso S6 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","B",1,"Meso M1 Relic","Relic","Rare",5.88},
        {"Survival","Medium2","C",1,"Neo V5 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Neo S6 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Neo T1 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Neo B2 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Neo V2 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Neo N6 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Quickening","Mod","Uncommon",11.28},
        {"Survival","Medium2","C",1,"Enduring Strike","Mod","Uncommon",11.28},
        {"Survival","Medium2","C",1,"Neo N7 Relic","Relic","Rare",9.68},
        {"Survival","Medium2","C",1,"Neo B3 Relic","Relic","Rare",9.68},
        {"Sabotage","Medium","A",2500,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Medium","A",3000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Medium","A",4000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Medium","B",75,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Medium","B",150,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Medium","B",80,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Medium","B",300,"Polymer Bundle","Resource","Uncommon",12.65},
        {"Sabotage","Medium","B",350,"Rubedo","Resource","Uncommon",12.65},
        {"Sabotage","Medium","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Sabotage","Medium","B",250,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Medium","B",240,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Medium","B",400,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Medium","B",640,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Medium","C",80,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Medium","C",150,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Medium","C",1,"Orokin Cell","Resource","Uncommon",15.1},
        {"Sabotage","Medium","C",1,"Gallium","Resource","Uncommon",15.1},
        {"Sabotage","Medium","C",1,"Neurodes","Resource","Uncommon",15.1},
        {"Sabotage","Medium","C",240,"Endo","Endo","Rare",4.4},
        {"Sabotage","Medium","C",2,"Orokin Cell","Resource","Rare",4.4},
        {"Sabotage","Medium","C",2,"Gallium","Resource","Rare",4.4},
        {"Sabotage","Medium","C",2,"Neurodes","Resource","Rare",4.4},
        {"Sabotage","Medium","C",1,"Tellurium","Resource","Rare",4.4},
        {"Sabotage","Medium","C",1,"Argon Crystal","Resource","Ultra Rare",1},
        {"Sabotage","Medium","C",1,"Nitain Extract","Resource","Ultra Rare",1},
        {"Sabotage","Medium","C",1,"Xiphos Engines Blueprint","Blueprint","Legendary",0.5},
        {"Spy","Medium","A",1,"Vitality","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Magazine Warp","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Trick Mag","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Pressure Point","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Ammo Drum","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Fast Hands","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Point Strike","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Piercing Hit","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Pistol Gambit","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Blunderbuss","Mod","Rare",9.09},
        {"Spy","Medium","A",15,"Endo","Endo","Rare",9.09},
        {"Spy","Medium","B",1,"Speed Trigger","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Fast Deflection","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Rush","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Target Cracker","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"No Return","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Serration","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Hornet Strike","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Reflex Coil","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Deep Freeze","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"North Wind","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Cryo Rounds","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Hell's Chamber","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Streamline","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Shocking Touch","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Stormbringer","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Point Blank","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Fury","Mod","Rare",5.56},
        {"Spy","Medium","B",50,"Endo","Endo","Rare",5.56},
        {"Spy","Medium","C",1,"Metal Auger","Mod","Rare",5.64},
        {"Spy","Medium","C",1,"Rime Rounds","Mod","Rare",5.64},
        {"Spy","Medium","C",1,"Scattering Inferno","Mod","Rare",5.64},
        {"Spy","Medium","C",80,"Endo","Endo","Rare",7.04},
        {"Spy","Medium","C",1,"Meso D1 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso F1 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso S2 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso S4 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso O1 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Ivara Chassis Blueprint","Blueprint","Rare",5.64},
        {"Spy","Medium","C",1,"Meso S5 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso N4 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso V5 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso S6 Relic","Relic","Rare",7.04},
        {"Spy","Medium","C",1,"Meso M1 Relic","Relic","Rare",7.04},
        {"Rescue","Medium","A",1,"Vapor Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Medium","B",1,"Phase Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Medium","C",1,"Force Specter Blueprint","Blueprint","Very Common",100},
        {"Defense","Medium","A",1,"Meso D1 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso F1 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso S2 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso S4 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso O1 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso S5 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",15,"Endo","Endo","Rare",9.09},
        {"Defense","Medium","A",1,"Meso N4 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso V5 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso S6 Relic","Relic","Rare",9.09},
        {"Defense","Medium","A",1,"Meso M1 Relic","Relic","Rare",9.09},
        {"Defense","Medium","B",1,"Neo V5 Relic","Relic","Rare",6.25},
        {"Defense","Medium","B",1,"Neo V2 Relic","Relic","Rare",6.25},
        {"Defense","Medium","B",1,"Neo T1 Relic","Relic","Rare",6.25},
        {"Defense","Medium","B",1,"Neo S6 Relic","Relic","Rare",6.25},
        {"Defense","Medium","B",1,"Neo B2 Relic","Relic","Rare",6.25},
        {"Defense","Medium","B",1,"Neo N6 Relic","Relic","Rare",6.25},
        {"Defense","Medium","B",1,"Reflex Coil","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"Deep Freeze","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"North Wind","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"Cryo Rounds","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"Hell's Chamber","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"Stormbringer","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"Point Blank","Mod","Rare",6.25},
        {"Defense","Medium","B",1,"Fury","Mod","Rare",6.25},
        {"Defense","Medium","B",50,"Endo","Endo","Rare",6.25},
        {"Defense","Medium","B",1,"Neo B3 Relic","Relic","Rare",6.25},
        {"Defense","Medium","C",1,"Vital Sense","Mod","Rare",4.51},
        {"Defense","Medium","C",1,"Metal Auger","Mod","Rare",4.51},
        {"Defense","Medium","C",1,"Ravage","Mod","Rare",4.51},
        {"Defense","Medium","C",1,"Stretch","Mod","Rare",4.51},
        {"Defense","Medium","C",80,"Endo","Endo","Rare",4.51},
        {"Defense","Medium","C",1,"Neo V5 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo V2 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo S6 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo T1 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo B2 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo N6 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo N7 Relic","Relic","Rare",9.68},
        {"Defense","Medium","C",1,"Neo B3 Relic","Relic","Rare",9.68},
        {"Survival","Medium","A",1500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium","A",2000,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium","A",15,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium","A",50,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium","A",80,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium","B",1,"Meso D1 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso O1 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso S2 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso S4 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso F1 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso S5 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Provoked","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Steel Fiber","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Serration","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Hornet Strike","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Fast Deflection","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Charged Shell","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Vital Sense","Mod","Rare",5.88},
        {"Survival","Medium","B",1,"Meso N4 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso V5 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso S6 Relic","Relic","Rare",5.88},
        {"Survival","Medium","B",1,"Meso M1 Relic","Relic","Rare",5.88},
        {"Survival","Medium","C",1,"Neo V5 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Neo S6 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Neo T1 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Neo B2 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Neo V2 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Neo N6 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Cleanse Corpus","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Neo N7 Relic","Relic","Rare",9.68},
        {"Survival","Medium","C",1,"Neo B3 Relic","Relic","Rare",9.68},
        {"Interception","Medium","A",1,"Vitality","Mod","Rare",7.14},
        {"Interception","Medium","A",1,"Magazine Warp","Mod","Rare",7.14},
        {"Interception","Medium","A",1,"Trick Mag","Mod","Rare",7.14},
        {"Interception","Medium","A",1,"Meso O1 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso D1 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso S4 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso S2 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso F1 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso S5 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",15,"Endo","Endo","Rare",7.14},
        {"Interception","Medium","A",1,"Meso N4 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso V5 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso S6 Relic","Relic","Rare",7.14},
        {"Interception","Medium","A",1,"Meso M1 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",1,"Target Cracker","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"No Return","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"Serration","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"Hornet Strike","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"Reflex Coil","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"North Wind","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"Hell's Chamber","Mod","Rare",6.25},
        {"Interception","Medium","B",1,"Neo V5 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",1,"Neo S6 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",1,"Neo B2 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",1,"Neo T1 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",1,"Neo V2 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",1,"Neo N6 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",50,"Endo","Endo","Rare",6.25},
        {"Interception","Medium","B",1,"Neo N7 Relic","Relic","Rare",6.25},
        {"Interception","Medium","B",1,"Neo B3 Relic","Relic","Rare",6.25},
        {"Interception","Medium","C",1,"Neo V5 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo S6 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo B2 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo T1 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo V2 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo N6 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo N7 Relic","Relic","Uncommon",12.5},
        {"Interception","Medium","C",1,"Neo B3 Relic","Relic","Uncommon",12.5},
        {"Assassinate","Alad V","A",1,"Valkyr Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Alad V","A",1,"Valkyr Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Alad V","A",1,"Valkyr Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Sabotage","Archwing","A",1,"Glacial Edge","Mod","Uncommon",25.81},
        {"Sabotage","Archwing","A",1,"Galvanized Blade","Mod","Uncommon",25.81},
        {"Sabotage","Archwing","A",1,"Tempered Blade","Mod","Uncommon",25.81},
        {"Sabotage","Archwing","A",1,"Meteor Crash","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Nebula Bore","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Astral Slash","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Comet Blast","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Quasar Drill","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Zodiac Shred","Mod","Rare",3.76},
        {"Assassinate","Sargas Ruk","A",1,"Ember Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sargas Ruk","A",1,"Ember Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sargas Ruk","A",1,"Ember Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Rescue","Hard","A",1,"Phase Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Hard","B",1,"Force Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Hard","C",1,"Cosmic Specter Blueprint","Blueprint","Very Common",100},
        {"Pursuit","Archwing","A",1,"Tempered Blade","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Sudden Impact","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Poisonous Sting","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Glacial Edge","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Galvanized Blade","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",150,"Endo","Endo","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Furor","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",50,"Endo","Endo","Uncommon",22.11},
        {"Pursuit","Archwing","A",80,"Endo","Endo","Rare",2.01},
        {"Pursuit","Archwing","B",1,"Extend","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Superior Defenses","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"System Reroute","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Efficient Transferral","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Blazing Steel","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",150,"Endo","Endo","Very Common",77.44},
        {"Pursuit","Archwing","C",400,"Endo","Endo","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso D1 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso F1 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso S2 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso O1 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso S4 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso S5 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso N4 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso V5 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso S6 Relic","Relic","Rare",9.09},
        {"Pursuit","Archwing","C",1,"Meso M1 Relic","Relic","Rare",9.09},
        {"Cephalon Capture","All","A",400,"Endo","Endo","Rare",8.33},
        {"Cephalon Capture","All","A",1,"Blind Shot","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hydraulic Barrel","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Lucky Shot","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hydraulic Gauge","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hydraulic Chamber","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Feathered Arrows","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Heightened Reflexes","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hastened Steps","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Adrenaline Boost","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Vital Systems Bypass","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Secondary Wind","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Deft Tempo","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Plan B","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Kill Switch","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Gorgon Frenzy","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Grinloked","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Double Tap","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Triple Tap","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Final Tap","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Directed Convergence","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Sudden Justice","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Focused Acceleration","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Measured Burst","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Heavy Warhead","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Final Act","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Tactical Retreat","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Mortal Conduct","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Soaring Strike","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Emergent Aftermath","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Static Alacrity","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Thundermiter","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Shrapnel Rounds","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Ambush Optics","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Skull Shots","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Brain Storm","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Draining Gloom","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Precision Munition","Mod","Rare",2.48},
        {"Cephalon Capture","All","B",400,"Alloy Plate","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",600,"Cryotic","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",400,"Ferrite","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",500,"Nano Spores","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",500,"Polymer Bundle","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",600,"Salvage","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",100,"Circuits","Resource","Rare",7.37},
        {"Cephalon Capture","All","B",120,"Plastids","Resource","Rare",7.37},
        {"Cephalon Capture","All","B",100,"Rubedo","Resource","Rare",7.37},
        {"Cephalon Capture","All","B",1,"Argon Crystal","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Control Module","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Gallium","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Morphics","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Neural Sensors","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Neurodes","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Orokin Cell","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Forma Blueprint","Blueprint","Legendary",0.25},
        {"Defection","Saturn","A",1500,"Credits Cache","Credits","Uncommon",16.67},
        {"Defection","Saturn","A",2000,"Credits Cache","Credits","Uncommon",16.67},
        {"Defection","Saturn","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Defection","Saturn","A",15,"Endo","Endo","Uncommon",16.67},
        {"Defection","Saturn","A",50,"Endo","Endo","Uncommon",16.67},
        {"Defection","Saturn","A",80,"Endo","Endo","Uncommon",16.67},
        {"Defection","Saturn","B",1,"Meso D1 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso O1 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S2 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S4 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso F1 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S5 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso N4 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso V5 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S6 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Expel Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","B",1,"Smite Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","B",1,"Cleanse Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","B",1,"Bane of Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","C",1,"Neo V5 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Neo S6 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Neo T1 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Neo B2 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Neo V2 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Neo N6 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Neo N7 Relic","Relic","Uncommon",11.06},
        {"Defection","Saturn","C",1,"Enduring Strike","Mod","Uncommon",11.28},
        {"Defection","Saturn","C",1,"Harrow Systems Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Aspect Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Chassis Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Neuroptics Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Systems Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Aspect Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Chassis Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Neuroptics Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Systems Blueprint","Blueprint","Uncommon",12.91},
        {"Defense","Hard","A",1,"Vitality","Mod","Rare",9.09},
        {"Defense","Hard","A",1,"Magazine Warp","Mod","Rare",9.09},
        {"Defense","Hard","A",1,"Trick Mag","Mod","Rare",9.09},
        {"Defense","Hard","A",1,"Neo V5 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo V2 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo S6 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo T1 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo B2 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo N6 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo N7 Relic","Relic","Rare",9.09},
        {"Defense","Hard","A",1,"Neo B3 Relic","Relic","Rare",9.09},
        {"Defense","Hard","B",1,"Axi G1 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi C2 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi E2 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi H2 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi O1 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi A1 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Hornet Strike","Mod","Rare",5.88},
        {"Defense","Hard","B",1,"Reflex Coil","Mod","Rare",5.88},
        {"Defense","Hard","B",1,"Deep Freeze","Mod","Rare",5.88},
        {"Defense","Hard","B",1,"North Wind","Mod","Rare",5.88},
        {"Defense","Hard","B",1,"Hell's Chamber","Mod","Rare",5.88},
        {"Defense","Hard","B",1,"Streamline","Mod","Rare",5.88},
        {"Defense","Hard","B",1,"Shocking Touch","Mod","Rare",5.88},
        {"Defense","Hard","B",50,"Endo","Endo","Rare",5.88},
        {"Defense","Hard","B",1,"Axi V5 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi B2 Relic","Relic","Rare",5.88},
        {"Defense","Hard","B",1,"Axi R1 Relic","Relic","Rare",5.88},
        {"Defense","Hard","C",1,"Vital Sense","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Metal Auger","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Ravage","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Stretch","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Handspring","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Convulsion","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Split Chamber","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Continuity","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Master Thief","Mod","Rare",2.26},
        {"Defense","Hard","C",80,"Endo","Endo","Rare",2.26},
        {"Defense","Hard","C",1,"Axi G1 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi C2 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi E2 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi H2 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi O1 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi A1 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi V5 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi B2 Relic","Relic","Rare",8.6},
        {"Defense","Hard","C",1,"Axi R1 Relic","Relic","Rare",8.6},
        {"Survival","Hard","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Hard","B",1,"Neo V5 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Neo S6 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Neo T1 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Neo B2 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Neo V2 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Neo N6 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Steel Fiber","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Stretch","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Serration","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Hell's Chamber","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Hornet Strike","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Flow","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Split Chamber","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Stabilizer","Mod","Rare",6.25},
        {"Survival","Hard","B",1,"Neo N7 Relic","Relic","Rare",6.25},
        {"Survival","Hard","B",1,"Neo B3 Relic","Relic","Rare",6.25},
        {"Survival","Hard","C",1,"Axi G1 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi C2 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi H2 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi E2 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi O1 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi A1 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Cleanse Infested","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Axi V5 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi B2 Relic","Relic","Rare",8.6},
        {"Survival","Hard","C",1,"Axi R1 Relic","Relic","Rare",8.6},
        {"Sabotage","Hard","A",4000,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","Hard","A",5000,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","Hard","A",10000,"Credits Cache","Credits","Uncommon",22.56},
        {"Sabotage","Hard","B",75,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Hard","B",150,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Hard","B",80,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Hard","B",400,"Circuits","Resource","Uncommon",12.65},
        {"Sabotage","Hard","B",400,"Rubedo","Resource","Uncommon",12.65},
        {"Sabotage","Hard","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Sabotage","Hard","B",240,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Hard","B",400,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Hard","B",640,"Endo","Endo","Rare",2.01},
        {"Sabotage","Hard","C",80,"Endo","Endo","Uncommon",12.58},
        {"Sabotage","Hard","C",150,"Endo","Endo","Uncommon",12.58},
        {"Sabotage","Hard","C",1,"Orokin Cell","Resource","Uncommon",12.58},
        {"Sabotage","Hard","C",1,"Gallium","Resource","Uncommon",12.58},
        {"Sabotage","Hard","C",1,"Neurodes","Resource","Uncommon",12.58},
        {"Sabotage","Hard","C",240,"Endo","Endo","Uncommon",12.58},
        {"Sabotage","Hard","C",400,"Endo","Endo","Rare",3.67},
        {"Sabotage","Hard","C",2,"Orokin Cell","Resource","Rare",3.67},
        {"Sabotage","Hard","C",2,"Gallium","Resource","Rare",3.67},
        {"Sabotage","Hard","C",2,"Neurodes","Resource","Rare",3.67},
        {"Sabotage","Hard","C",1,"Argon Crystal","Resource","Rare",3.67},
        {"Sabotage","Hard","C",1,"Tellurium","Resource","Rare",3.67},
        {"Sabotage","Hard","C",1,"Nitain Extract","Resource","Rare",2},
        {"Sabotage","Hard","C",1,"Xiphos Avionics Blueprint","Blueprint","Legendary",0.5},
        {"Sabotage","Uranus","A",2500,"Credits Cache","Credits","Uncommon",20},
        {"Sabotage","Uranus","A",3000,"Credits Cache","Credits","Uncommon",20},
        {"Sabotage","Uranus","A",300,"Polymer Bundle","Resource","Uncommon",20},
        {"Sabotage","Uranus","A",45,"Endo","Endo","Uncommon",20},
        {"Sabotage","Uranus","A",150,"Endo","Endo","Uncommon",20},
        {"Sabotage","Uranus","B",4000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Uranus","B",5000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Uranus","B",150,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Uranus","B",300,"Plastids","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","B",80,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Uranus","B",1,"Battering Maneuver","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Mobilize","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Piercing Step","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Rending Turn","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Patagium","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",2,"Gallium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",3,"Gallium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",240,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Uranus","C",250,"Oxium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",1,"Tellurium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",1,"Lightning Dash","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",1,"Firewalker","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",1,"Ice Spring","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",1,"Toxic Flight","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",400,"Endo","Endo","Rare",4.51},
        {"Spy","Hard","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Hard","A",2500,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Hard","A",50,"Endo","Endo","Uncommon",14.29},
        {"Spy","Hard","A",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Hard","A",1,"Steady Hands","Mod","Uncommon",14.29},
        {"Spy","Hard","A",1,"Stabilizer","Mod","Uncommon",14.29},
        {"Spy","Hard","A",1,"Power Throw","Mod","Uncommon",14.29},
        {"Spy","Hard","B",1,"Meso D1 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso O1 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso S2 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso S4 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso F1 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Neo V5 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo S6 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo T1 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo B2 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo V2 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo N6 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso S5 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso N4 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso V5 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Neo N7 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso S6 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Meso M1 Relic","Relic","Rare",5.96},
        {"Spy","Hard","B",1,"Neo B3 Relic","Relic","Rare",5.96},
        {"Spy","Hard","C",4000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Hard","C",5000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Hard","C",1,"Power Throw","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Stretch","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Hell's Chamber","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Scorch","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Thermite Rounds","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Frostbite","Mod","Rare",7.52},
        {"Spy","Hard","C",1,"Frigid Blast","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Arrow Mutation","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Sniper Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Shotgun Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Covert Lethality","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Ivara Neuroptics Blueprint","Blueprint","Rare",7.52},
        {"Spy","Hard","C",1,"Ivara Blueprint","Blueprint","Rare",7.52},
        {"Interception","Archwing","A",1,"Automatic Trigger","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Combustion Rounds","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Dual Rounds","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Hollowed Bullets","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Magazine Extension","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Modified Munitions","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Parallax Scope","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Rubedo-Lined Barrel","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Venomous Clip","Mod","Rare",2.51},
        {"Interception","Archwing","A",150,"Endo","Endo","Common",38.72},
        {"Interception","Archwing","A",250,"Endo","Endo","Common",38.72},
        {"Interception","Archwing","B",1,"Superior Defenses","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Bleeding Edge","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Superior Defenses","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Argon Plating","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Furor","Mod","Uncommon",10},
        {"Interception","Archwing","B",250,"Endo","Endo","Uncommon",10},
        {"Interception","Archwing","B",1,"Glacial Edge","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Electrified Barrel","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Energy Inversion","Mod","Uncommon",10},
        {"Interception","Archwing","B",50,"Endo","Endo","Uncommon",10},
        {"Interception","Archwing","C",400,"Endo","Endo","Uncommon",22.56},
        {"Interception","Archwing","C",250,"Endo","Endo","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi G1 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi C2 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi E2 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi H2 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi A1 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi O1 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi V5 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi B2 Relic","Relic","Rare",7.74},
        {"Interception","Archwing","C",1,"Axi R1 Relic","Relic","Rare",7.74},
        {"Survival","Hard2","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard2","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard2","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard2","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Hard2","B",1,"Neo V5 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo S6 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo T1 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo B2 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo V2 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo N6 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Steel Fiber","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Stretch","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Serration","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Hell's Chamber","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Hornet Strike","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Flow","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Split Chamber","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Stabilizer","Mod","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo N7 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","B",1,"Neo B3 Relic","Relic","Rare",6.25},
        {"Survival","Hard2","C",1,"Axi G1 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi C2 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi H2 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi E2 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi O1 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi A1 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Enduring Strike","Mod","Uncommon",11.28},
        {"Survival","Hard2","C",1,"Life Strike","Mod","Uncommon",11.28},
        {"Survival","Hard2","C",1,"Axi V5 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi B2 Relic","Relic","Rare",8.6},
        {"Survival","Hard2","C",1,"Axi R1 Relic","Relic","Rare",8.6},
        {"Assassinate","Hyena Pack","A",1,"Loki Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Hyena Pack","A",1,"Loki Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Hyena Pack","A",1,"Loki Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Defection","Neptune","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Defection","Neptune","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Defection","Neptune","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Defection","Neptune","A",240,"Endo","Endo","Uncommon",25},
        {"Defection","Neptune","B",1,"Neo V5 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Neo S6 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Neo T1 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Neo B2 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Neo V2 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Neo N6 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Neo N7 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","B",1,"Expel Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","B",1,"Smite Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","B",1,"Cleanse Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","B",1,"Bane of Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","C",1,"Axi G1 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Axi C2 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Axi H2 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Axi E2 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Axi O1 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Axi A1 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Axi V5 Relic","Relic","Uncommon",11.06},
        {"Defection","Neptune","C",1,"Life Strike","Mod","Uncommon",11.28},
        {"Defection","Neptune","C",1,"Harrow Systems Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Ambulas","A",1,"Excalibur Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Ambulas","A",1,"Excalibur Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Ambulas","A",1,"Excalibur Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Interception","Hard","A",1,"Vitality","Mod","Rare",9.09},
        {"Interception","Hard","A",1,"Magazine Warp","Mod","Rare",9.09},
        {"Interception","Hard","A",1,"Trick Mag","Mod","Rare",9.09},
        {"Interception","Hard","A",1,"Neo V5 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo S6 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo B2 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo T1 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo V2 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo N6 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo N7 Relic","Relic","Rare",9.09},
        {"Interception","Hard","A",1,"Neo B3 Relic","Relic","Rare",9.09},
        {"Interception","Hard","B",1,"Axi C2 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi G1 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi H2 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi E2 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi O1 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi A1 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi B2 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","B",1,"Axi R1 Relic","Relic","Uncommon",12.5},
        {"Interception","Hard","C",1,"Axi C2 Relic","Relic","Rare",2.58},
        {"Interception","Hard","C",1,"Axi H2 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi E2 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi O1 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi G1 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi A1 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi V5 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi B2 Relic","Relic","Uncommon",12.18},
        {"Interception","Hard","C",1,"Axi R1 Relic","Relic","Uncommon",12.18},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Barrel","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Blade","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Handle","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Chassis","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Blueprint","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Twin Gremlins Blueprint","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 2","A",1,"Trinity Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kril and Vor 2","A",1,"Trinity Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kril and Vor 2","A",1,"Trinity Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Sabotage","Hive","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Sabotage","Hive","A",3000,"Credits Cache","Credits","Uncommon",16.67},
        {"Sabotage","Hive","A",1000,"Nano Spores","Resource","Uncommon",16.67},
        {"Sabotage","Hive","A",50,"Endo","Endo","Uncommon",16.67},
        {"Sabotage","Hive","A",150,"Endo","Endo","Uncommon",16.67},
        {"Sabotage","Hive","A",1,"Thief's Wit","Mod","Uncommon",16.67},
        {"Sabotage","Hive","B",4000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Hive","B",5000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Hive","B",350,"Plastids","Resource","Uncommon",15.49},
        {"Sabotage","Hive","B",3,"Mutagen Sample","Resource","Uncommon",15.49},
        {"Sabotage","Hive","B",80,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Hive","B",1,"Contagious Spread","Mod","Rare",5.64},
        {"Sabotage","Hive","B",1,"Pathogen Rounds","Mod","Rare",5.64},
        {"Sabotage","Hive","B",1,"Infected Clip","Mod","Rare",5.64},
        {"Sabotage","Hive","B",1,"Fever Strike","Mod","Rare",5.64},
        {"Sabotage","Hive","C",1,"Neurodes","Resource","Uncommon",15.49},
        {"Sabotage","Hive","C",2,"Neurodes","Resource","Uncommon",15.49},
        {"Sabotage","Hive","C",80,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Hive","C",240,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Hive","C",1,"Enemy Sense","Mod","Uncommon",15.49},
        {"Sabotage","Hive","C",400,"Endo","Endo","Rare",4.51},
        {"Sabotage","Hive","C",1,"Mutalist Alad V Nav Coordinate","Resource","Rare",4.51},
        {"Sabotage","Hive","C",1,"High Voltage","Mod","Rare",4.51},
        {"Sabotage","Hive","C",1,"Shell Shock","Mod","Rare",4.51},
        {"Sabotage","Hive","C",1,"Firestorm","Mod","Rare",4.51},
        {"Salvage","All","A",1,"Vitality","Mod","Rare",9.09},
        {"Salvage","All","A",1,"Magazine Warp","Mod","Rare",9.09},
        {"Salvage","All","A",1,"Trick Mag","Mod","Rare",9.09},
        {"Salvage","All","A",1,"Neo V5 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo V2 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo S6 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo T1 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo B2 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo N6 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo N7 Relic","Relic","Rare",9.09},
        {"Salvage","All","A",1,"Neo B3 Relic","Relic","Rare",9.09},
        {"Salvage","All","B",1,"Axi G1 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi C2 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi E2 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi H2 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi O1 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi A1 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Hornet Strike","Mod","Rare",5.88},
        {"Salvage","All","B",1,"Reflex Coil","Mod","Rare",5.88},
        {"Salvage","All","B",1,"Deep Freeze","Mod","Rare",5.88},
        {"Salvage","All","B",1,"North Wind","Mod","Rare",5.88},
        {"Salvage","All","B",1,"Hell's Chamber","Mod","Rare",5.88},
        {"Salvage","All","B",1,"Streamline","Mod","Rare",5.88},
        {"Salvage","All","B",1,"Shocking Touch","Mod","Rare",5.88},
        {"Salvage","All","B",50,"Endo","Endo","Rare",5.88},
        {"Salvage","All","B",1,"Axi V5 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi B2 Relic","Relic","Rare",5.88},
        {"Salvage","All","B",1,"Axi R1 Relic","Relic","Rare",5.88},
        {"Salvage","All","C",1,"Nidus Systems Blueprint","Blueprint","Uncommon",14.29},
        {"Salvage","All","C",1,"Nidus Neuroptics Blueprint","Blueprint","Uncommon",14.29},
        {"Salvage","All","C",1,"Nidus Chassis Blueprint","Blueprint","Uncommon",14.29},
        {"Salvage","All","C",1,"Vital Sense","Mod","Uncommon",14.29},
        {"Salvage","All","C",1,"Metal Auger","Mod","Uncommon",14.29},
        {"Salvage","All","C",1,"Stretch","Mod","Uncommon",14.29},
        {"Salvage","All","C",80,"Endo","Endo","Uncommon",14.29},
        {"Survival","Eris","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Eris","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Eris","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Eris","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Eris","B",1,"Neo V5 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo S6 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo T1 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo B2 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo V2 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo N6 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo N7 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","B",1,"Neo B3 Relic","Relic","Uncommon",12.5},
        {"Survival","Eris","C",1,"Axi G1 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi C2 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi H2 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi E2 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi O1 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi A1 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Life Strike","Mod","Uncommon",10},
        {"Survival","Eris","C",1,"Axi V5 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi B2 Relic","Relic","Uncommon",10},
        {"Survival","Eris","C",1,"Axi R1 Relic","Relic","Uncommon",10},
        {"Arena","Hard","A",5000,"Credits Cache","Credits","Very Common",75.5},
        {"Arena","Hard","A",240,"Endo","Endo","Uncommon",22},
        {"Arena","Hard","A",1,"Forma Blueprint","Blueprint","Legendary",0.5},
        {"Arena","Hard","A",1,"Crimson Dervish","Mod","Legendary",0.5},
        {"Arena","Hard","A",1,"Astral Twilight","Mod","Legendary",0.5},
        {"Arena","Hard","A",1,"Blind Justice","Mod","Legendary",0.5},
        {"Arena","Hard","A",1,"Tempo Royale","Mod","Legendary",0.25},
        {"Arena","Hard","A",1,"Vengeful Revenant","Mod","Legendary",0.25},
        {"Arena","Undine","A",3000,"Credits Cache","Credits","Very Common",75.88},
        {"Arena","Undine","A",150,"Endo","Endo","Uncommon",22.11},
        {"Arena","Undine","A",1,"Forma Blueprint","Blueprint","Legendary",0.4},
        {"Arena","Undine","A",1,"Pointed Wind","Mod","Legendary",0.4},
        {"Arena","Undine","A",1,"High Noon","Mod","Legendary",0.4},
        {"Arena","Undine","A",1,"Four Riders","Mod","Legendary",0.4},
        {"Arena","Undine","A",1,"Tranquil Cleave","Mod","Legendary",0.4},
        {"Arena","Easy","A",4000,"Credits Cache","Credits","Very Common",75.88},
        {"Arena","Easy","A",250,"Endo","Endo","Uncommon",22.11},
        {"Arena","Easy","A",1,"Forma Blueprint","Blueprint","Legendary",0.34},
        {"Arena","Easy","A",1,"Crushing Ruin","Mod","Legendary",0.34},
        {"Arena","Easy","A",1,"Final Harbinger","Mod","Legendary",0.34},
        {"Arena","Easy","A",1,"Vermillion Storm","Mod","Legendary",0.34},
        {"Arena","Easy","A",1,"Stalking Fan","Mod","Legendary",0.34},
        {"Arena","Easy","A",1,"Decisive Judgement","Mod","Legendary",0.34},
        {"Assassinate","Kela De Thaym","A",1,"Saryn Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kela De Thaym","A",1,"Saryn Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kela De Thaym","A",1,"Saryn Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Raptor","A",1,"Nova Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Raptor","A",1,"Nova Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Raptor","A",1,"Nova Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Sabotage","Void Easy","A",3000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Void Easy","A",4000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Void Easy","A",5000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Void Easy","B",15,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Void Easy","B",50,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Void Easy","B",80,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Void Easy","B",240,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Void Easy","B",400,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Void Easy","B",640,"Endo","Endo","Rare",2.01},
        {"Sabotage","Void Easy","B",400,"Circuits","Resource","Uncommon",12.65},
        {"Sabotage","Void Easy","B",400,"Rubedo","Resource","Uncommon",12.65},
        {"Sabotage","Void Easy","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Sabotage","Void Easy","C",80,"Endo","Endo","Uncommon",18.88},
        {"Sabotage","Void Easy","C",150,"Endo","Endo","Uncommon",18.88},
        {"Sabotage","Void Easy","C",1,"Neurodes","Resource","Uncommon",18.88},
        {"Sabotage","Void Easy","C",240,"Endo","Endo","Uncommon",18.88},
        {"Sabotage","Void Easy","C",400,"Endo","Endo","Rare",3.67},
        {"Sabotage","Void Easy","C",2,"Orokin Cell","Resource","Rare",3.67},
        {"Sabotage","Void Easy","C",2,"Gallium","Resource","Rare",3.67},
        {"Sabotage","Void Easy","C",2,"Neurodes","Resource","Rare",3.67},
        {"Sabotage","Void Easy","C",1,"Argon Crystal","Resource","Rare",3.67},
        {"Sabotage","Void Easy","C",1,"Bullet Dance","Mod","Rare",3.67},
        {"Sabotage","Void Easy","C",1,"Nitain Extract","Resource","Rare",2},
        {"Sabotage","Void Easy","C",1,"Xiphos Avionics Blueprint","Blueprint","Legendary",0.5},
        {"Survival","Mot","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Mot","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Mot","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Mot","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Mot","B",1,"Neo V5 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo S6 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo T1 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo B2 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo V2 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo N6 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo N7 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","B",1,"Neo B3 Relic","Relic","Uncommon",12.5},
        {"Survival","Mot","C",1,"Axi G1 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi C2 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi H2 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi E2 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi O1 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi A1 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi V5 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi B2 Relic","Relic","Uncommon",11.11},
        {"Survival","Mot","C",1,"Axi R1 Relic","Relic","Uncommon",11.11},
        {"Sabotage","Void Hard","A",5000,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","Void Hard","A",7500,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","Void Hard","A",10000,"Credits Cache","Credits","Uncommon",22.56},
        {"Sabotage","Void Hard","B",150,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","Void Hard","B",240,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","Void Hard","B",320,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Void Hard","B",400,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Void Hard","B",640,"Endo","Endo","Rare",2.01},
        {"Sabotage","Void Hard","B",400,"Circuits","Resource","Uncommon",15.18},
        {"Sabotage","Void Hard","B",400,"Rubedo","Resource","Uncommon",15.18},
        {"Sabotage","Void Hard","B",300,"Plastids","Resource","Uncommon",15.18},
        {"Sabotage","Void Hard","C",150,"Endo","Endo","Uncommon",25.29},
        {"Sabotage","Void Hard","C",240,"Endo","Endo","Uncommon",25.29},
        {"Sabotage","Void Hard","C",400,"Endo","Endo","Rare",4.42},
        {"Sabotage","Void Hard","C",1,"Neurodes","Resource","Uncommon",25.29},
        {"Sabotage","Void Hard","C",2,"Orokin Cell","Resource","Rare",4.42},
        {"Sabotage","Void Hard","C",2,"Gallium","Resource","Rare",4.42},
        {"Sabotage","Void Hard","C",1,"Argon Crystal","Resource","Rare",4.42},
        {"Sabotage","Void Hard","C",1,"Bullet Dance","Mod","Rare",4.42},
        {"Sabotage","Void Hard","C",1,"Nitain Extract","Resource","Ultra Rare",1.01},
        {"Sabotage","Void Hard","C",1,"Xiphos Avionics Blueprint","Blueprint","Ultra Rare",1.01},
        {"Rush","Archwing","A",1,"Tempered Blade","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Sudden Impact","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Poisonous Sting","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Glacial Edge","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Galvanized Blade","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",150,"Endo","Endo","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Furor","Mod","Uncommon",14.29},
        {"Rush","Archwing","B",1,"Extend","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Superior Defenses","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Cutting Edge","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"System Reroute","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Efficient Transferral","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Blazing Steel","Mod","Rare",3.76},
        {"Rush","Archwing","B",150,"Endo","Endo","Very Common",77.44},
        {"Rush","Archwing","C",1,"Meteor Crash","Mod","Rare",7.52},
        {"Rush","Archwing","C",1,"Nebula Bore","Mod","Rare",7.52},
        {"Rush","Archwing","C",1,"Astral Slash","Mod","Rare",7.52},
        {"Rush","Archwing","C",400,"Endo","Endo","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith S4 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith V2 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith N3 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith S6 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith V4 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith A2 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith V3 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith B1 Relic","Relic","Rare",8.6},
        {"Defection","Phobos","A",500,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",15,"Endo","Endo","Uncommon",14.29},
        {"Defection","Phobos","A",50,"Endo","Endo","Uncommon",14.29},
        {"Defection","Phobos","A",80,"Endo","Endo","Uncommon",14.29},
        {"Defection","Phobos","B",1,"Lith V2 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Lith S4 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Lith N3 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Lith S6 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Lith V4 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Lith A2 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Lith V3 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","B",1,"Expel Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Smite Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Cleanse Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Bane of Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Intensify","Mod","Rare",4.51},
        {"Defection","Phobos","C",1,"Lith V2 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Lith S4 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Lith N3 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Lith S6 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Lith V4 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Lith A2 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Lith V3 Relic","Relic","Uncommon",11.06},
        {"Defection","Phobos","C",1,"Quickening","Mod","Rare",7.52},
        {"Defection","Phobos","C",1,"Enduring Strike","Mod","Rare",7.52},
        {"Defection","Phobos","C",1,"Harrow Systems Blueprint","Blueprint","Rare",7.52},
        {"Assassinate","Sergeant","A",1,"Mag Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sergeant","A",1,"Mag Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sergeant","A",1,"Mag Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Rush","Phobos Event","A",1,"Vitality","Mod","Uncommon",15.18},
        {"Rush","Phobos Event","A",1,"Fast Deflection","Mod","Uncommon",15.18},
        {"Rush","Phobos Event","A",1,"Fast Deflection","Mod","Uncommon",15.18},
        {"Rush","Phobos Event","A",1,"Rush","Mod","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Magazine Warp","Mod","Uncommon",15.18},
        {"Rush","Phobos Event","A",1,"Trick Mag","Mod","Uncommon",15.18},
        {"Rush","Phobos Event","A",1,"Pressure Point","Mod","Rare",2.01},
        {"Rush","Phobos Event","A",1,"Ammo Drum","Mod","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Fast Hands","Mod","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith S4 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith N3 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith V2 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith S6 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith V4 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith A2 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","A",1,"Lith B1 Relic","Relic","Rare",2.21},
        {"Rush","Phobos Event","B",1,"Speed Trigger","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Fast Hands","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Point Strike","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Vital Sense","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Piercing Hit","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Metal Auger","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Pistol Gambit","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Target Cracker","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"No Return","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Ravage","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Blunderbuss","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Point Blank","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Serration","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Hornet Strike","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Fury","Mod","Rare",2.01},
        {"Rush","Phobos Event","B",1,"Reflex Coil","Mod","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Pressure Point","Mod","Rare",8.43},
        {"Rush","Phobos Event","B",1,"Meso S2 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso S4 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso D1 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso F1 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso O1 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso S5 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso N4 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso V5 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso S6 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","B",1,"Meso M1 Relic","Relic","Ultra Rare",1.3},
        {"Rush","Phobos Event","C",1,"Hellfire","Mod","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Heated Charge","Mod","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Molten Impact","Mod","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Barrel Diffusion","Mod","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Streamline","Mod","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Intensify","Mod","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Neo T1 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Thunderbolt","Mod","Rare",2.01},
        {"Rush","Phobos Event","C",50,"Endo","Endo","Rare",6.9},
        {"Rush","Phobos Event","C",80,"Endo","Endo","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Meso S2 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Meso S4 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Neo V5 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Neo V2 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Neo S6 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Neo B2 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Meso O1 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Meso S5 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Meso N4 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Neo N6 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Meso V5 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Neo N7 Relic","Relic","Ultra Rare",1.7},
        {"Rush","Phobos Event","C",1,"Meso S6 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Meso M1 Relic","Relic","Rare",6.9},
        {"Rush","Phobos Event","C",1,"Neo B3 Relic","Relic","Ultra Rare",1.7},
        {"Defense","Derelict","A",240,"Endo","Endo","Uncommon",10},
        {"Defense","Derelict","A",150,"Endo","Endo","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith V2 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith N3 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith S6 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith V4 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith A2 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith S4 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith V3 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith B1 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","B",240,"Endo","Endo","Common",38.72},
        {"Defense","Derelict","B",150,"Endo","Endo","Common",38.72},
        {"Defense","Derelict","B",1,"Mutalist Alad V Nav Coordinate","Resource","Uncommon",22.56},
        {"Defense","Derelict","C",1,"Meso O1 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso D1 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso S2 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Forma Blueprint","Blueprint","Uncommon",22.56},
        {"Defense","Derelict","C",1,"Meso F1 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso S4 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso S5 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso N4 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso V5 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso S6 Relic","Relic","Rare",7.74},
        {"Defense","Derelict","C",1,"Meso M1 Relic","Relic","Rare",7.74},
        {"Sabotage","Derelict","A",2500,"Credits Cache","Credits","Uncommon",14.29},
        {"Sabotage","Derelict","A",3000,"Credits Cache","Credits","Uncommon",14.29},
        {"Sabotage","Derelict","A",1000,"Nano Spores","Resource","Uncommon",14.29},
        {"Sabotage","Derelict","A",80,"Endo","Endo","Uncommon",14.29},
        {"Sabotage","Derelict","A",150,"Endo","Endo","Uncommon",14.29},
        {"Sabotage","Derelict","A",1,"Thief's Wit","Mod","Uncommon",14.29},
        {"Sabotage","Derelict","A",3,"Mutagen Sample","Resource","Uncommon",14.29},
        {"Sabotage","Derelict","B",4000,"Credits Cache","Credits","Uncommon",15.18},
        {"Sabotage","Derelict","B",5000,"Credits Cache","Credits","Uncommon",15.18},
        {"Sabotage","Derelict","B",150,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","Derelict","B",1,"Neurodes","Resource","Uncommon",15.18},
        {"Sabotage","Derelict","B",2,"Neurodes","Resource","Rare",4.42},
        {"Sabotage","Derelict","B",80,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","Derelict","B",1,"Mutalist Alad V Nav Coordinate","Resource","Rare",2.01},
        {"Sabotage","Derelict","B",1,"Cleanse Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","B",1,"Bane of Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","B",1,"Smite Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","B",1,"Expel Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","C",1,"Argon Crystal","Resource","Uncommon",19.36},
        {"Sabotage","Derelict","C",2,"Argon Crystal","Resource","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Orokin Cell","Resource","Uncommon",19.36},
        {"Sabotage","Derelict","C",2,"Orokin Cell","Resource","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Neural Sensors","Resource","Uncommon",19.36},
        {"Sabotage","Derelict","C",2,"Neural Sensors","Resource","Rare",3.76},
        {"Sabotage","Derelict","C",240,"Endo","Endo","Uncommon",19.36},
        {"Sabotage","Derelict","C",400,"Endo","Endo","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Enemy Sense","Mod","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Master Thief","Mod","Rare",3.76},
        {"Survival","Derelict","A",1,"Lith V2 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith S4 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith N3 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith S6 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith V4 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith A2 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith V3 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",320,"Endo","Endo","Uncommon",10},
        {"Survival","Derelict","A",400,"Endo","Endo","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith B1 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","B",1,"Neo V2 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo T1 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo V5 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo S6 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Mutalist Alad V Nav Coordinate","Resource","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo B2 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo N6 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo N7 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","B",1,"Neo B3 Relic","Relic","Uncommon",11.11},
        {"Survival","Derelict","C",1,"Axi G1 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi C2 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi H2 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi E2 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi O1 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Octavia Neuroptics Blueprint","Blueprint","Uncommon",22.56},
        {"Survival","Derelict","C",1,"Axi A1 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi V5 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi B2 Relic","Relic","Rare",8.6},
        {"Survival","Derelict","C",1,"Axi R1 Relic","Relic","Rare",8.6},
        {"Assassinate","Lephantis","A",1,"Nekros Chassis Blueprint","Blueprint","Common",33.33},
        {"Assassinate","Lephantis","A",1,"Nekros Neuroptics Blueprint","Blueprint","Common",33.33},
        {"Assassinate","Lephantis","A",1,"Nekros Systems Blueprint","Blueprint","Common",33.33},
        {"Sabotage","Lua","A",150,"Endo","Endo","Uncommon",12.91},
        {"Sabotage","Lua","A",80,"Endo","Endo","Uncommon",12.91},
        {"Sabotage","Lua","A",300,"Polymer Bundle","Resource","Uncommon",12.91},
        {"Sabotage","Lua","A",350,"Rubedo","Resource","Uncommon",12.91},
        {"Sabotage","Lua","A",300,"Plastids","Resource","Uncommon",12.91},
        {"Sabotage","Lua","A",240,"Endo","Endo","Uncommon",12.91},
        {"Sabotage","Lua","A",1,"Octavia Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Sabotage","Lua","B",2500,"Credits Cache","Credits","Uncommon",25.29},
        {"Sabotage","Lua","B",3000,"Credits Cache","Credits","Uncommon",25.29},
        {"Sabotage","Lua","B",4000,"Credits Cache","Credits","Uncommon",25.29},
        {"Sabotage","Lua","B",240,"Endo","Endo","Uncommon",22.11},
        {"Sabotage","Lua","B",400,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Lua","B",640,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Lua","C",1,"Orokin Cell","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",1,"Gallium","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",1,"Neurodes","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",240,"Endo","Endo","Uncommon",10.82},
        {"Sabotage","Lua","C",2,"Gallium","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",2,"Orokin Cell","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",2,"Neurodes","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",1,"Tellurium","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",1,"Argon Crystal","Resource","Uncommon",10.82},
        {"Sabotage","Lua","C",1,"Nitain Extract","Resource","Ultra Rare",1.29},
        {"Sabotage","Lua","C",1,"Xiphos Engines Blueprint","Blueprint","Ultra Rare",1.29},
        {"Spy","Lua","A",1,"Blood Rush","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Hydraulic Crosshairs","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Shrapnel Shot","Mod","Uncommon",12.18},
        {"Spy","Lua","A",100,"Endo","Endo","Uncommon",12.18},
        {"Spy","Lua","A",1,"Fast Hands","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Point Strike","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Piercing Hit","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Pistol Gambit","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Gnashing Payara","Mod","Ultra Rare",1.29},
        {"Spy","Lua","A",1,"Astral Twilight","Mod","Ultra Rare",1.29},
        {"Spy","Lua","B",1,"Focused Defense","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Catalyzer Link","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Target Cracker","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"No Return","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Serration","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Hornet Strike","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Reflex Coil","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Deep Freeze","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"North Wind","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Cryo Rounds","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Hell's Chamber","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Streamline","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Shocking Touch","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Stormbringer","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"High Noon","Mod","Ultra Rare",1.29},
        {"Spy","Lua","B",1,"Crushing Ruin","Mod","Ultra Rare",1.29},
        {"Spy","Lua","B",150,"Endo","Endo","Rare",6.49},
        {"Spy","Lua","C",1,"Rime Rounds","Mod","Rare",7.37},
        {"Spy","Lua","C",1,"Scattering Inferno","Mod","Rare",7.37},
        {"Spy","Lua","C",400,"Endo","Endo","Uncommon",15.18},
        {"Spy","Lua","C",1,"Meso D1 Relic","Relic","Uncommon",15.18},
        {"Spy","Lua","C",1,"Meso F1 Relic","Relic","Uncommon",15.18},
        {"Spy","Lua","C",1,"Coiling Viper","Mod","Uncommon",15.18},
        {"Spy","Lua","C",1,"Cleaving Whirlwind","Mod","Rare",2.01},
        {"Spy","Lua","C",1,"Axi A1 Relic","Relic","Uncommon",15.18},
        {"Spy","Lua","C",1,"Ivara Chassis Blueprint","Blueprint","Rare",7.37},
        {"Spy","Kuva Fortress","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",2500,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",50,"Endo","Endo","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",1,"Steady Hands","Mod","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",1,"Stabilizer","Mod","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",1,"Power Throw","Mod","Uncommon",14.29},
        {"Spy","Kuva Fortress","B",1,"Meso D1 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso O1 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso S2 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso S4 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso F1 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Neo V5 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo S6 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo T1 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo B2 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo V2 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo N6 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso S5 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso N4 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso V5 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Neo N7 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","B",1,"Meso S6 Relic","Relic","Rare",7.04},
        {"Spy","Kuva Fortress","C",4000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Kuva Fortress","C",5000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Power Throw","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Stretch","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Hell's Chamber","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Scorch","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Thermite Rounds","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Frostbite","Mod","Uncommon",11.28},
        {"Spy","Kuva Fortress","C",1,"Frigid Blast","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Arrow Mutation","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Sniper Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Shotgun Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Covert Lethality","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Harrow Neuroptics Blueprint","Blueprint","Uncommon",11.28}
    }
}

return DropData
Advertisement