From 6b21e87dd2709bc5ff7bc03478936d41af3c30f7 Mon Sep 17 00:00:00 2001 From: Phil Bajsicki Date: Wed, 23 Aug 2023 11:14:24 +0200 Subject: [PATCH] Expanded scope, added second set of functionality and outlined process for useful output generation. --- README.org | 115 +- mod-recipes/angelbob-recipes.csv | 541 - mod-recipes/recipes-sorted-subgroups.csv | 8529 +++++++ mod-recipes/recipes.csv | 8529 +++++++ mod-recipes/recipes.org | 25310 +++++++++++++++++++++ mod-recipes/recipesmaybe.csv | 8529 +++++++ 6 files changed, 51006 insertions(+), 547 deletions(-) delete mode 100644 mod-recipes/angelbob-recipes.csv create mode 100644 mod-recipes/recipes-sorted-subgroups.csv create mode 100644 mod-recipes/recipes.csv create mode 100644 mod-recipes/recipes.org create mode 100644 mod-recipes/recipesmaybe.csv diff --git a/README.org b/README.org index 4e292ef..f68c0f2 100644 --- a/README.org +++ b/README.org @@ -6,7 +6,7 @@ This is a simple Raku script which generates an analysis of each recipe into its The .csv files used as input are generated in Factorio, by loading a new game with only ~base~ and your chosen mod enabled, and running the following Lua code: -#+name: Lua code generating a .csv file containing all available recipes. +#+name: Lua code generating a .csv file containing all recipes using the items in the whitelist. #+begin_src lua :tangle no /c local whitelist = {} @@ -28,21 +28,80 @@ for name, recipe in pairs(game.recipe_prototypes) do local ingredients = {} for _, ingredient in pairs(recipe.ingredients) do if whitelist[ingredient.name] then add = true end - ingredients[#ingredients+1] = ingredient.name .. "," .. ingredient.amount + ingredients[#ingredients+1] = ingredient.amount .. "," .. ingredient.name end if add then - parts[#parts+1] = name .. "," .. table.concat(ingredients, ",") + local item = game.item_prototypes[name] or game.fluid_prototypes[name] + parts[#parts+1] = "," .. name .. "," .. item.subgroup.name .. "," .. table.concat(ingredients, ",") end end end game.write_file("recipes.csv", table.concat(parts, "\n"), false) #+end_src +On the other hand, this script outputs ALL available recipes in an org-readable format, for easy overview, sorting, and insight. + +#+name: lua-to-org: Lua script generating an org-mode file containing all available recipes. +#+begin_src lua :tangle no +/c +local recipes = {} +for name, recipe in pairs(game.recipe_prototypes) do + local ingredients = {} + for _, ingredient in pairs(recipe.ingredients) do + ingredients[#ingredients+1] = ingredient.name .. "," .. ingredient.amount + end + local products = {} + for _, product in pairs(recipe.products) do + local amount = product.amount or product.amount_min .. "-" .. product.amount_max + products[#products+1] = product.name .. "," .. amount + end + recipes[#recipes+1] = "\n* " .. recipe.subgroup.name .. "\n** " .. name .. "\n*** products" .. "\n- " .. table.concat(products, "\n- ") .. "\n*** ingredients" .. "\n- " .. table.concat(ingredients, "\n- ") +end +game.write_file("recipes.org", table.concat(recipes, "\n"), false) +#+end_src + +The output of this is an org-mode file in the following pattern: +#+name: Example output of the lua-to-org script. +#+begin_example +,* recipe.subgroup +,** recipe.name +,*** products +- product1 +- product2 +- ... +,*** ingredients +- ingredient1 +- ingredient2 +- ... +#+end_example + + * This script This is a literate script. The source code is embedded in these code blocks, and tangled into the Raku script using org-babel. This allows me to write a description of what I want to do, and comment on it without resorting to ~// /* */~ ugly comments. +Better yet, I can include [[Lua code generating a .csv file containing all recipes using the items in the whitelist.][links directly to places within the file]] and easily cross-reference what I'm doing with the documentation/ design. +If you open this org file raw (e.g. by clicking [[https://git.bajsicki.com/phil/factorio-recipe-analyzer/raw/branch/main/README.org][here]]), you will see that there are a number of different blocks. + +There is a rough overview of the structure: + +#+begin_example +,#+name: Name of the following source block. +,#+begin_src raku :tangle file.name +[code goes here] +,#+end_src +#+end_example + +~:tangle~ defines the file into which the code block will be passed to ~org-babel-tangle~. To disable, pass ~no~. + +In the begging of the file, we can set global (in the scope of the file) properties, such as the default target for ~:tangle~: + +~#+PROPERTY: header-args :tangle fra.raku~ + +The easiest way to generate outputs from here is to open this file in Emacs, and run ~M-x org-babel-tangle~. If you're using [[https://github.com/doomemacs/doomemacs][Doom Emacs]], the default key binding is ~C-c C-v C-t~. + +*Important note:* the files in ~./mod-recipes~ are working files. They're not intrinsic parts of the software - they're there primarily for testing and development. * License I don't own the source csv files generated by Factorio, nor the mods the script is pulling from. The Raku script itself is GPLv3. @@ -50,11 +109,13 @@ I don't own the source csv files generated by Factorio, nor the mods the script ** Credits: The following are mods from which .csv files have been generated. The recipe .csv files are included in the ~mod-recipes~ directory. -* The Code +* The Code1 +** Idea: +Create an org-mode file with all the calculations included, and complete, for a clear overview of recipe progression, subgroups, item inputs and outputs, and total cost. ** Setup ** Open csv file -** Open (create if needed) output org file -/I like org-mode, sue me. Also pseudocode is in Lisp./ +** Open (create if needed) output csv +pseudocode is in Lisp./ For this, we'll likely want to include some metadata, like creation date, mod name, number of ingredients, maybe the total amount of raw mats needed to make one of everything? ** Make a list of products @@ -108,3 +169,45 @@ For each line: 2. If the ingredient item already exists: 1. Add new number we just got to the existing number. 3. Else: write new raw ingredient line and number in this section. + +* The Code 2 +** Idea/ outline +This is not for analysis as much as helping Galdoc out with creating compat layers for [[https://github.com/Orion351/galdocs_manufacturing][Galdoc's Manufacturing.]] + +Take above csv data dump from Factorio, then: +1. Figure out appropriate categories. This is the starting point we have: + - Telescoping, (inserters, belts, things that reach) + - Metalworking, + - Plastic, + - Wood, + - Stone, + - Glass, + - Electronics. + - And possibly in the future: + - Motors, + - Agriculture, + - Chemicals, + - Small Arms / Equipment. + +This has to be done manually. The csv file already includes an empty first column, which lets us manually go over it and add the tags to each item. + +2. Then pull the output template CSV file, which should have the following structure: + #+name: Example csv template for code-2 + #+begin_src csv :tangle no +item-category, item-name, amt1, catitem1, amt2, catitem2, amt3, catitem3, amt4, catitem4, ... + #+end_src + +In this example, we create an arbitrary number of columns, based on the largest number of ingredients a recipe requires from each category. + +For example, stack inserters would look like so: + +#+begin_src csv :tangle no +item-category, item-name, amt1, telescoping1, amt2, metal2, amt3, electronics3, amt4, electronics4 +telescoping, stack-inserter, 1, fast-inserter, 15, iron-gear-wheel, 15, electronic-circuit, 1, advanced-circuit +#+end_src + +This structure allows for unambiguous selection of the relevant data from the csv file, for the following reasons: +1. Amounts and categories are paired by the matching number at the end of the column name. +2. These cannot be confused with the amounts themselves, because the column names include [a-zA-Z] characters. +3. The first column makes it easy to find whether an item belongs to a particular column or not. +4. Additionally, this way we can automate creating the output .csv template, since we can check what number of columns we need for each ingredient category. diff --git a/mod-recipes/angelbob-recipes.csv b/mod-recipes/angelbob-recipes.csv deleted file mode 100644 index 561ffa9..0000000 --- a/mod-recipes/angelbob-recipes.csv +++ /dev/null @@ -1,541 +0,0 @@ -product,ingredient-1,ingredient-1-amount,ingredient-2,ingredient-2-amount,ingredient-3,ingredient-3-amount,ingredient-4,ingredient-4-amount,ingredient-5,ingredient-5-amount,ingredient-6,ingredient-6-amount,ingredient-7,ingredient-7-amount,ingredient-8,ingredient-8-amount -artillery-wagon,invar-alloy,40,engine-unit,64,iron-gear-wheel,10,advanced-circuit,20,pipe,16 -battery-equipment,steel-plate,10,battery,5 -big-electric-pole,copper-plate,5,steel-plate,5,iron-stick,8 -energy-shield-equipment,steel-plate,10,advanced-circuit,5 -exoskeleton-equipment,steel-plate,20,electric-engine-unit,30,advanced-circuit,10 -fusion-reactor-equipment,low-density-structure,50,processing-unit,200 -heat-pipe,copper-plate,10,steel-plate,5 -medium-electric-pole,copper-plate,2,steel-plate,2,iron-stick,4 -night-vision-equipment,steel-plate,10,advanced-circuit,5 -nuclear-reactor,concrete,500,steel-plate,250,advanced-circuit,500,heat-pipe-2,25 -personal-laser-defense-equipment,steel-plate,5,battery,3,electronic-circuit,5 -personal-roboport-equipment,steel-plate,5,roboport-antenna-1,2,roboport-door-1,1,roboport-chargepad-1,2 -solar-panel-equipment,copper-cable,4,steel-plate,2,electronic-circuit,5 -steam-engine,iron-plate,10,iron-gear-wheel,8,pipe,5 -steel-chest,steel-plate,8 -substation,copper-plate,5,steel-plate,10,advanced-circuit,5 -fill-chlorine-barrel,gas-canister,1,gas-chlorine,50 -fill-gas-chlorine-barrel,gas-canister,1,gas-chlorine,50 -fill-gas-nitrogen-barrel,gas-canister,1,gas-nitrogen,50 -fill-liquid-pulping-liquor-barrel,empty-barrel,1,liquid-pulping-liquor,50 -fill-nitrogen-barrel,gas-canister,1,gas-nitrogen,50 -fill-water-barrel,empty-barrel,1,water,50 -fill-water-viscous-mud-barrel,empty-barrel,1,water-viscous-mud,50 -fill-water-yellow-waste-barrel,empty-barrel,1,water-yellow-waste,50 -light-armor,iron-plate,40 -empty-chlorine-barrel,chlorine-barrel,1 -empty-gas-chlorine-barrel,gas-chlorine-barrel,1 -empty-gas-nitrogen-barrel,gas-nitrogen-barrel,1 -empty-liquid-pulping-liquor-barrel,liquid-pulping-liquor-barrel,1 -empty-nitrogen-barrel,nitrogen-barrel,1 -empty-water-barrel,water-barrel,1 -empty-water-viscous-mud-barrel,water-viscous-mud-barrel,1 -empty-water-yellow-waste-barrel,water-yellow-waste-barrel,1 -heavy-armor,copper-plate,100,steel-plate,50 -fill-alien-spores-barrel,empty-barrel,1,alien-spores,50 -empty-alien-spores-barrel,alien-spores-barrel,1 -fill-alien-goo-barrel,empty-barrel,1,alien-goo,50 -empty-alien-goo-barrel,alien-goo-barrel,1 -assembling-machine-1,iron-plate,9,iron-gear-wheel,5,basic-circuit-board,3 -automation-science-pack,copper-plate,1,iron-gear-wheel,1 -iron-stick,iron-plate,1 -beacon,copper-cable,10,steel-plate,10,electronic-circuit,20,advanced-circuit,20,crystal-splinter-harmonic,1 -accumulator,iron-plate,2,battery,10,electronic-circuit,2 -car,iron-plate,20,steel-plate,5,engine-unit,8 -wooden-chest,wood,2 -iron-chest,iron-plate,8 -electric-energy-interface,iron-plate,2,electronic-circuit,5 -explosives,coal,1,sulfur,1,water-purified,10 -cliff-explosives,explosives,10,empty-barrel,1,grenade,1 -fill-angels-ore8-sludge-barrel,empty-barrel,1,angels-ore8-sludge,50 -empty-angels-ore8-sludge-barrel,angels-ore8-sludge-barrel,1 -fill-angels-ore8-solution-barrel,empty-barrel,1,angels-ore8-solution,50 -empty-angels-ore8-solution-barrel,angels-ore8-solution-barrel,1 -fill-angels-ore8-anode-sludge-barrel,empty-barrel,1,angels-ore8-anode-sludge,50 -empty-angels-ore8-anode-sludge-barrel,angels-ore8-anode-sludge-barrel,1 -fill-angels-ore8-slime-barrel,empty-barrel,1,angels-ore8-slime,50 -empty-angels-ore8-slime-barrel,angels-ore8-slime-barrel,1 -fill-ferric-chloride-solution-barrel,empty-canister,1,liquid-ferric-chloride-solution,50 -fill-liquid-ferric-chloride-solution-barrel,empty-canister,1,liquid-ferric-chloride-solution,50 -empty-ferric-chloride-solution-barrel,ferric-chloride-solution-barrel,1 -empty-liquid-ferric-chloride-solution-barrel,liquid-ferric-chloride-solution-barrel,1 -fill-ammoniated-brine-barrel,empty-barrel,1,ammoniated-brine,50 -fill-brine-barrel,empty-barrel,1,water-saline,50 -empty-ammoniated-brine-barrel,ammoniated-brine-barrel,1 -empty-brine-barrel,brine-barrel,1 -fill-heavy-oil-barrel,empty-barrel,1,liquid-naphtha,50 -empty-heavy-oil-barrel,heavy-oil-barrel,1 -fill-light-oil-barrel,empty-barrel,1,liquid-fuel-oil,50 -empty-light-oil-barrel,light-oil-barrel,1 -fill-petroleum-gas-barrel,gas-canister,1,gas-methane,50 -empty-petroleum-gas-barrel,petroleum-gas-barrel,1 -fill-sour-gas-barrel,gas-canister,1,sour-gas,50 -empty-sour-gas-barrel,sour-gas-barrel,1 -fill-sulfuric-acid-barrel,empty-canister,1,liquid-sulfuric-acid,50 -empty-sulfuric-acid-barrel,sulfuric-acid-barrel,1 -fill-ammonia-barrel,gas-canister,1,gas-ammonia,50 -empty-ammonia-barrel,ammonia-barrel,1 -fill-carbon-dioxide-barrel,gas-canister,1,gas-carbon-dioxide,50 -empty-carbon-dioxide-barrel,carbon-dioxide-barrel,1 -fill-dinitrogen-tetroxide-barrel,empty-barrel,1,gas-dinitrogen-tetroxide,50 -empty-dinitrogen-tetroxide-barrel,dinitrogen-tetroxide-barrel,1 -fill-glycerol-barrel,empty-barrel,1,liquid-glycerol,50 -empty-glycerol-barrel,glycerol-barrel,1 -fill-hydrazine-barrel,empty-barrel,1,gas-hydrazine,50 -empty-hydrazine-barrel,hydrazine-barrel,1 -fill-hydrogen-peroxide-barrel,empty-barrel,1,gas-hydrogen-peroxide,50 -empty-hydrogen-peroxide-barrel,hydrogen-peroxide-barrel,1 -fill-nitric-oxide-barrel,gas-canister,1,gas-nitrogen-monoxide,50 -empty-nitric-oxide-barrel,nitric-oxide-barrel,1 -fill-sulfuric-nitric-acid-barrel,empty-canister,1,sulfuric-nitric-acid,50 -empty-sulfuric-nitric-acid-barrel,sulfuric-nitric-acid-barrel,1 -flying-robot-frame,steel-plate,1,electric-engine-unit,1,battery,2,electronic-circuit,3 -shotgun,iron-plate,5,wood,5,iron-gear-wheel,5,pistol,2 -flamethrower,steel-plate,5,iron-gear-wheel,5,submachine-gun,1 -rocket-launcher,steel-plate,5,electronic-circuit,5,shotgun,2 -pistol,copper-plate,5,iron-plate,5 -artillery-targeting-remote,processing-unit,1,radar,1 -combat-shotgun,steel-plate,15,wood,5,shotgun,1 -submachine-gun,iron-plate,5,iron-gear-wheel,10,pistol,1 -fill-gas-hydrogen-sulfide-barrel,gas-canister,1,gas-hydrogen-sulfide,50 -fill-hydrogen-sulfide-barrel,gas-canister,1,gas-hydrogen-sulfide,50 -empty-gas-hydrogen-sulfide-barrel,gas-hydrogen-sulfide-barrel,1 -empty-hydrogen-sulfide-barrel,hydrogen-sulfide-barrel,1 -iron-gear-wheel,iron-plate,2 -burner-mining-drill,stone-furnace,1,iron-plate,3,iron-gear-wheel,3 -electric-mining-drill,iron-plate,10,iron-gear-wheel,5,basic-circuit-board,3 -small-lamp,copper-cable,3,iron-plate,1,basic-circuit-board,1 -land-mine,steel-plate,1,explosives,2 -basic-oil-processing,crude-oil,100 -advanced-oil-processing,water-purified,50,crude-oil,100 -coal-liquefaction,coal,10,liquid-naphtha,10,steam,50 -plastic-bar,gas-methane,20,gas-chlorine,10 -pipe,iron-plate,1 -pipe-to-ground,iron-plate,5,pipe,10 -fill-liquid-plastic-barrel,empty-barrel,1,liquid-plastic,50 -empty-liquid-plastic-barrel,liquid-plastic-barrel,1 -chemical-plant,steel-plate,5,iron-gear-wheel,5,electronic-circuit,5,pipe,5 -spidertron-remote,rocket-control-unit,1,radar,1 -fill-thermal-water-barrel,empty-barrel,1,thermal-water,50 -empty-thermal-water-barrel,thermal-water-barrel,1 -fill-slag-slurry-barrel,empty-barrel,1,slag-slurry,50 -empty-slag-slurry-barrel,slag-slurry-barrel,1 -small-electric-pole,copper-cable,2,wood,1 -solar-panel,copper-plate,4,steel-plate,4,electronic-circuit,14 -stone-furnace,stone,5 -sulfur,water-purified,30,gas-methane,30 -tank,steel-plate,50,engine-unit,32,iron-gear-wheel,15,advanced-circuit,10 -rail,stone,1,steel-plate,1,iron-stick,1 -train-stop,iron-plate,6,steel-plate,3,iron-stick,6,electronic-circuit,5 -rail-signal,iron-plate,5,electronic-circuit,1 -locomotive,steel-plate,30,engine-unit,20,electronic-circuit,10 -rail-chain-signal,iron-plate,5,electronic-circuit,1 -cargo-wagon,iron-plate,20,steel-plate,20,iron-gear-wheel,10 -fluid-wagon,steel-plate,16,storage-tank,1,iron-gear-wheel,10,pipe,8 -transport-belt,tin-plate,2,iron-gear-wheel,2,basic-transport-belt,1 -fast-transport-belt,bronze-alloy,2,steel-gear-wheel,4,transport-belt,1 -express-transport-belt,aluminium-plate,2,cobalt-steel-gear-wheel,4,cobalt-steel-bearing,4,fast-transport-belt,1 -uranium-fuel-cell,iron-plate,15,uranium-235,1,uranium-238,29 -uranium-processing,uranium-ore,10 -kovarex-enrichment-process,uranium-235,40,uranium-238,5 -nuclear-fuel-reprocessing,used-up-uranium-fuel-cell,5 -boiler,stone-furnace,1,pipe,4 -heat-exchanger,boiler-2,1,heat-pipe,4 -fill-gas-natural-1-barrel,gas-canister,1,gas-natural-1,50 -empty-gas-natural-1-barrel,gas-natural-1-barrel,1 -fill-gas-raw-1-barrel,gas-canister,1,gas-raw-1,50 -empty-gas-raw-1-barrel,gas-raw-1-barrel,1 -fill-liquid-ngl-barrel,empty-barrel,1,liquid-ngl,50 -empty-liquid-ngl-barrel,liquid-ngl-barrel,1 -battery-mk2-equipment,processing-unit,5,battery-equipment,2 -energy-shield-mk2-equipment,processing-unit,5,energy-shield-equipment,2 -logistic-chest-active-provider,electronic-circuit,3,advanced-circuit,1,steel-chest,1 -personal-roboport-mk2-equipment,aluminium-plate,5,roboport-antenna-2,2,roboport-door-2,1,roboport-chargepad-2,2,personal-roboport-equipment,1 -fill-gas-ammonia-barrel,gas-canister,1,gas-ammonia,50 -fill-gas-compressed-air-barrel,gas-canister,1,gas-compressed-air,50 -fill-gas-hydrogen-chloride-barrel,gas-canister,1,gas-hydrogen-chloride,50 -fill-gas-puffer-atmosphere-barrel,gas-canister,1,gas-puffer-atmosphere,50 -fill-gas-sulfur-dioxide-barrel,gas-canister,1,gas-sulfur-dioxide,50 -fill-hydrogen-chloride-barrel,gas-canister,1,gas-hydrogen-chloride,50 -fill-liquid-brown-liquor-barrel,empty-barrel,1,liquid-brown-liquor,50 -fill-pure-water-barrel,empty-barrel,1,water-purified,50 -fill-sulfur-dioxide-barrel,gas-canister,1,gas-sulfur-dioxide,50 -fill-water-greenyellow-waste-barrel,empty-barrel,1,water-greenyellow-waste,50 -fill-water-heavy-mud-barrel,empty-barrel,1,water-heavy-mud,50 -fill-water-purified-barrel,empty-barrel,1,water-purified,50 -modular-armor,steel-plate,50,advanced-circuit,30 -empty-gas-ammonia-barrel,gas-ammonia-barrel,1 -empty-gas-compressed-air-barrel,gas-compressed-air-barrel,1 -empty-gas-hydrogen-chloride-barrel,gas-hydrogen-chloride-barrel,1 -empty-gas-puffer-atmosphere-barrel,gas-puffer-atmosphere-barrel,1 -empty-gas-sulfur-dioxide-barrel,gas-sulfur-dioxide-barrel,1 -empty-hydrogen-chloride-barrel,hydrogen-chloride-barrel,1 -empty-liquid-brown-liquor-barrel,liquid-brown-liquor-barrel,1 -empty-pure-water-barrel,pure-water-barrel,1 -empty-sulfur-dioxide-barrel,sulfur-dioxide-barrel,1 -empty-water-greenyellow-waste-barrel,water-greenyellow-waste-barrel,1 -empty-water-heavy-mud-barrel,water-heavy-mud-barrel,1 -empty-water-purified-barrel,water-purified-barrel,1 -power-armor,steel-plate,40,electric-engine-unit,20,processing-unit,40 -power-armor-mk2,electric-engine-unit,40,low-density-structure,30,processing-unit,60,speed-module-2,25,effectivity-module-2,25 -assembling-machine-2,assembling-machine-1,1,steel-plate,2,iron-gear-wheel,5,electronic-circuit,3 -construction-robot,flying-robot-frame,1,robot-brain-construction,1,robot-tool-construction,1 -fill-angels-ore9-sludge-barrel,empty-barrel,1,angels-ore9-sludge,50 -empty-angels-ore9-sludge-barrel,angels-ore9-sludge-barrel,1 -fill-angels-ore9-solution-barrel,empty-barrel,1,angels-ore9-solution,50 -empty-angels-ore9-solution-barrel,angels-ore9-solution-barrel,1 -fill-angels-ore9-anode-sludge-barrel,empty-barrel,1,angels-ore9-anode-sludge,50 -empty-angels-ore9-anode-sludge-barrel,angels-ore9-anode-sludge-barrel,1 -fill-angels-ore9-slime-barrel,empty-barrel,1,angels-ore9-slime,50 -empty-angels-ore9-slime-barrel,angels-ore9-slime-barrel,1 -fill-liquid-cupric-chloride-solution-barrel,empty-canister,1,liquid-cupric-chloride-solution,50 -empty-liquid-cupric-chloride-solution-barrel,liquid-cupric-chloride-solution-barrel,1 -heavy-oil-cracking,water-purified,30,liquid-naphtha,40 -light-oil-cracking,water-purified,30,liquid-fuel-oil,30 -pumpjack,steel-plate,5,iron-gear-wheel,10,electronic-circuit,5,pipe,10 -grenade,iron-plate,5,coal,10 -cluster-grenade,steel-plate,5,explosives,5,grenade,7 -logistic-science-pack,basic-transport-belt,1,inserter,1 -storage-tank,iron-plate,20,steel-plate,5,bob-small-inline-storage-tank,1 -fill-mineral-sludge-barrel,empty-barrel,1,mineral-sludge,50 -empty-mineral-sludge-barrel,mineral-sludge-barrel,1 -engine-unit,steel-plate,1,iron-gear-wheel,1,pipe,2 -electric-engine-unit,engine-unit,1,electronic-circuit,2,lubricant,15 -oil-refinery,steel-plate,6,steel-gear-wheel,12,electronic-circuit,4,steel-pipe,36 -roboport,steel-plate,15,roboport-antenna-1,5,roboport-door-1,1,roboport-chargepad-1,4 -fill-liquid-cellulose-acetate-mixture-barrel,empty-barrel,1,liquid-cellulose-acetate-mixture,50 -empty-liquid-cellulose-acetate-mixture-barrel,liquid-cellulose-acetate-mixture-barrel,1 -fill-liquid-cellulose-acetate-barrel,empty-barrel,1,liquid-cellulose-acetate,50 -empty-liquid-cellulose-acetate-barrel,liquid-cellulose-acetate-barrel,1 -fill-liquid-fermentation-raw-barrel,empty-barrel,1,liquid-fermentation-raw,50 -empty-liquid-fermentation-raw-barrel,liquid-fermentation-raw-barrel,1 -fill-liquid-nutrient-pulp-barrel,empty-barrel,1,liquid-nutrient-pulp,50 -empty-liquid-nutrient-pulp-barrel,liquid-nutrient-pulp-barrel,1 -fill-liquid-acetic-acid-barrel,empty-canister,1,liquid-acetic-acid,50 -empty-liquid-acetic-acid-barrel,liquid-acetic-acid-barrel,1 -fill-liquid-propionic-acid-barrel,empty-canister,1,liquid-propionic-acid,50 -empty-liquid-propionic-acid-barrel,liquid-propionic-acid-barrel,1 -fill-liquid-raw-vegetable-oil-barrel,empty-barrel,1,liquid-raw-vegetable-oil,50 -empty-liquid-raw-vegetable-oil-barrel,liquid-raw-vegetable-oil-barrel,1 -fill-liquid-vegetable-oil-barrel,empty-barrel,1,liquid-vegetable-oil,50 -empty-liquid-vegetable-oil-barrel,liquid-vegetable-oil-barrel,1 -fill-liquid-acetic-anhydride-barrel,empty-barrel,1,liquid-acetic-anhydride,50 -empty-liquid-acetic-anhydride-barrel,liquid-acetic-anhydride-barrel,1 -fill-gas-ethanol-barrel,gas-canister,1,gas-ethanol,50 -empty-gas-ethanol-barrel,gas-ethanol-barrel,1 -pump,steel-plate,1,engine-unit,1,copper-pipe,1 -stone-wall,stone-brick,5 -gate,steel-plate,2,electronic-circuit,2,stone-wall,1 -repair-pack,iron-gear-wheel,2,basic-circuit-board,2 -fill-liquid-resin-barrel,empty-barrel,1,liquid-resin,50 -empty-liquid-resin-barrel,liquid-resin-barrel,1 -spidertron,rtg,2,mech-armor-plate,10,mech-frame,1,mech-leg,8,rocket-launcher,4 -steel-furnace,stone-brick,10,steel-plate,6 -artillery-turret,concrete,60,steel-plate,60,iron-gear-wheel,40,advanced-circuit,20 -flamethrower-turret,steel-plate,20,engine-unit,5,flamethrower,1,pipe,10 -gun-turret,copper-plate,5,iron-plate,10,submachine-gun,1 -laser-turret,steel-plate,20,battery,12,electronic-circuit,20 -underground-belt,tin-plate,14,iron-gear-wheel,20,basic-underground-belt,2 -fast-underground-belt,bronze-alloy,14,steel-gear-wheel,20,underground-belt,2 -express-underground-belt,aluminium-plate,14,cobalt-steel-gear-wheel,20,cobalt-steel-bearing,20,fast-underground-belt,2 -red-wire,insulated-cable,1 -green-wire,insulated-cable,1 -fill-gas-methane-barrel,gas-canister,1,gas-methane,50 -fill-liquid-fish-atmosphere-barrel,empty-barrel,1,liquid-fish-atmosphere,50 -fill-liquid-multi-phase-oil-barrel,empty-barrel,1,liquid-multi-phase-oil,50 -empty-gas-methane-barrel,gas-methane-barrel,1 -empty-liquid-fish-atmosphere-barrel,liquid-fish-atmosphere-barrel,1 -empty-liquid-multi-phase-oil-barrel,liquid-multi-phase-oil-barrel,1 -fill-crude-oil-barrel,empty-barrel,1,crude-oil,50 -fill-gas-ethane-barrel,gas-canister,1,gas-ethane,50 -fill-liquid-polluted-fish-atmosphere-barrel,empty-barrel,1,liquid-polluted-fish-atmosphere,50 -empty-crude-oil-barrel,crude-oil-barrel,1 -empty-gas-ethane-barrel,gas-ethane-barrel,1 -empty-liquid-polluted-fish-atmosphere-barrel,liquid-polluted-fish-atmosphere-barrel,1 -fill-gas-butane-barrel,gas-canister,1,gas-butane,50 -empty-gas-butane-barrel,gas-butane-barrel,1 -fill-gas-propene-barrel,gas-canister,1,gas-propene,50 -empty-gas-propene-barrel,gas-propene-barrel,1 -logistic-chest-passive-provider,electronic-circuit,3,advanced-circuit,1,steel-chest,1 -fill-gas-nitrogen-monoxide-barrel,gas-canister,1,gas-nitrogen-monoxide,50 -fill-liquid-hydrochloric-acid-barrel,empty-canister,1,liquid-hydrochloric-acid,50 -fill-liquid-white-liquor-barrel,empty-barrel,1,liquid-white-liquor,50 -fill-water-concentrated-mud-barrel,empty-barrel,1,water-concentrated-mud,50 -fill-water-green-waste-barrel,empty-barrel,1,water-green-waste,50 -fill-water-saline-barrel,empty-barrel,1,water-saline,50 -empty-gas-nitrogen-monoxide-barrel,gas-nitrogen-monoxide-barrel,1 -empty-liquid-hydrochloric-acid-barrel,liquid-hydrochloric-acid-barrel,1 -empty-liquid-white-liquor-barrel,liquid-white-liquor-barrel,1 -empty-water-concentrated-mud-barrel,water-concentrated-mud-barrel,1 -empty-water-green-waste-barrel,water-green-waste-barrel,1 -empty-water-saline-barrel,water-saline-barrel,1 -artillery-shell,explosives,8,explosive-cannon-shell,3 -cannon-shell,steel-plate,2,plastic-bar,2,explosives,1 -flamethrower-ammo,steel-plate,5,liquid-fuel-oil,50,liquid-naphtha,50 -rocket,rocket-booster,1,explosives,1,electronic-circuit,1 -firearm-magazine,iron-plate,4 -shotgun-shell,copper-plate,2,iron-plate,2 -explosive-rocket,explosives,2,rocket,1 -explosive-cannon-shell,steel-plate,2,plastic-bar,2,explosives,2 -piercing-rounds-magazine,copper-plate,5,steel-plate,1,firearm-magazine,1 -piercing-shotgun-shell,copper-plate,5,steel-plate,2,shotgun-shell,2 -atomic-bomb,rocket-booster,1,explosives,10,rocket-control-unit,10,uranium-235,15 -uranium-cannon-shell,uranium-238,1,cannon-shell,1 -explosive-uranium-cannon-shell,uranium-238,1,explosive-cannon-shell,1 -assembling-machine-3,assembling-machine-2,1,steel-plate,9,steel-gear-wheel,5,advanced-circuit,3 -battery,lead-plate,2,plastic-bar,1,liquid-sulfuric-acid,20 -poison-capsule,steel-plate,3,coal,10,electronic-circuit,3 -slowdown-capsule,steel-plate,2,coal,5,electronic-circuit,2 -arithmetic-combinator,copper-cable,5,electronic-circuit,5 -decider-combinator,copper-cable,5,electronic-circuit,5 -constant-combinator,copper-cable,5,electronic-circuit,2 -fill-crystal-slurry-barrel,empty-barrel,1,crystal-slurry,50 -empty-crystal-slurry-barrel,crystal-slurry-barrel,1 -fill-crystal-seedling-barrel,empty-barrel,1,crystal-seedling,50 -empty-crystal-seedling-barrel,crystal-seedling-barrel,1 -fill-crystal-matrix-barrel,empty-barrel,1,crystal-matrix,50 -empty-crystal-matrix-barrel,crystal-matrix-barrel,1 -electric-furnace,stone-brick,10,steel-plate,10,advanced-circuit,5 -logistic-robot,flying-robot-frame,1,robot-brain-logistic,1,robot-tool-logistic,1 -military-science-pack,piercing-rounds-magazine,1,grenade,1,stone-wall,2 -fill-liquid-rubber-barrel,empty-barrel,1,liquid-rubber,50 -empty-liquid-rubber-barrel,liquid-rubber-barrel,1 -splitter,tin-plate,8,iron-gear-wheel,14,basic-circuit-board,5,basic-splitter,1 -fast-splitter,bronze-alloy,8,steel-gear-wheel,14,electronic-circuit,5,splitter,1 -express-splitter,aluminium-plate,8,cobalt-steel-gear-wheel,14,cobalt-steel-bearing,12,advanced-circuit,5,fast-splitter,1 -sulfuric-acid,iron-plate,1,sulfur,5,water-purified,100 -fill-gas-methanol-barrel,gas-canister,1,gas-methanol,50 -fill-liquid-condensates-barrel,empty-barrel,1,liquid-condensates,50 -fill-liquid-sulfuric-acid-barrel,empty-canister,1,liquid-sulfuric-acid,50 -empty-gas-methanol-barrel,gas-methanol-barrel,1 -empty-liquid-condensates-barrel,liquid-condensates-barrel,1 -empty-liquid-sulfuric-acid-barrel,liquid-sulfuric-acid-barrel,1 -fill-gas-ethylene-barrel,gas-canister,1,gas-ethylene,50 -fill-gas-residual-barrel,gas-canister,1,gas-residual,50 -empty-gas-ethylene-barrel,gas-ethylene-barrel,1 -empty-gas-residual-barrel,gas-residual-barrel,1 -fill-gas-benzene-barrel,gas-canister,1,gas-benzene,50 -empty-gas-benzene-barrel,gas-benzene-barrel,1 -belt-immunity-equipment,steel-plate,10,advanced-circuit,5 -discharge-defense-remote,electronic-circuit,1 -logistic-chest-storage,electronic-circuit,3,advanced-circuit,1,steel-chest,1 -offshore-pump,iron-gear-wheel,1,basic-circuit-board,2,pipe,1 -fill-gas-acid-barrel,gas-canister,1,gas-acid,50 -fill-gas-allylchlorid-barrel,gas-canister,1,gas-allylchlorid,50 -fill-gas-nitrogen-dioxide-barrel,gas-canister,1,gas-nitrogen-dioxide,50 -fill-gas-oxygen-barrel,gas-canister,1,gas-oxygen,50 -fill-liquid-black-liquor-barrel,empty-barrel,1,liquid-black-liquor,50 -fill-liquid-hexachloroplatinic-acid-barrel,empty-canister,1,liquid-hexachloroplatinic-acid,50 -fill-liquid-titanium-tetrachloride-barrel,empty-barrel,1,liquid-titanium-tetrachloride,50 -fill-liquid-trichlorosilane-barrel,empty-barrel,1,liquid-trichlorosilane,50 -fill-liquid-tungstic-acid-barrel,empty-canister,1,liquid-tungstic-acid,50 -fill-nitrogen-dioxide-barrel,gas-canister,1,gas-nitrogen-dioxide,50 -fill-oxygen-barrel,gas-canister,1,gas-oxygen,50 -fill-tungstic-acid-barrel,empty-canister,1,liquid-tungstic-acid,50 -fill-water-light-mud-barrel,empty-barrel,1,water-light-mud,50 -fill-water-mineralized-barrel,empty-barrel,1,water-mineralized,50 -fill-water-red-waste-barrel,empty-barrel,1,water-red-waste,50 -empty-gas-acid-barrel,gas-acid-barrel,1 -empty-gas-allylchlorid-barrel,gas-allylchlorid-barrel,1 -empty-gas-nitrogen-dioxide-barrel,gas-nitrogen-dioxide-barrel,1 -empty-gas-oxygen-barrel,gas-oxygen-barrel,1 -empty-liquid-black-liquor-barrel,liquid-black-liquor-barrel,1 -empty-liquid-hexachloroplatinic-acid-barrel,liquid-hexachloroplatinic-acid-barrel,1 -empty-liquid-titanium-tetrachloride-barrel,liquid-titanium-tetrachloride-barrel,1 -empty-liquid-trichlorosilane-barrel,liquid-trichlorosilane-barrel,1 -empty-liquid-tungstic-acid-barrel,liquid-tungstic-acid-barrel,1 -empty-nitrogen-dioxide-barrel,nitrogen-dioxide-barrel,1 -empty-oxygen-barrel,oxygen-barrel,1 -empty-tungstic-acid-barrel,tungstic-acid-barrel,1 -empty-water-light-mud-barrel,water-light-mud-barrel,1 -empty-water-mineralized-barrel,water-mineralized-barrel,1 -empty-water-red-waste-barrel,water-red-waste-barrel,1 -chemical-science-pack,solid-sodium-hydroxide,2,sulfur,1,engine-unit,2,advanced-circuit,3 -loader,iron-plate,5,iron-gear-wheel,5,electronic-circuit,5,transport-belt,5,inserter,5 -fast-loader,loader,1,fast-transport-belt,5 -express-loader,fast-loader,1,express-transport-belt,5 -power-switch,copper-cable,5,iron-plate,5,electronic-circuit,2 -programmable-speaker,copper-cable,5,iron-plate,3,iron-stick,4,electronic-circuit,4 -radar,iron-plate,10,iron-gear-wheel,5,basic-circuit-board,5 -defender-capsule,defender-robot,1 -distractor-capsule,distractor-robot,3 -destroyer-capsule,destroyer-robot,5 -fill-liquid-raw-fish-oil-barrel,empty-barrel,1,liquid-raw-fish-oil,50 -empty-liquid-raw-fish-oil-barrel,liquid-raw-fish-oil-barrel,1 -fill-liquid-fuel-oil-barrel,empty-barrel,1,liquid-fuel-oil,50 -empty-liquid-fuel-oil-barrel,liquid-fuel-oil-barrel,1 -fill-liquid-fuel-barrel,empty-canister,1,liquid-fuel,50 -empty-liquid-fuel-barrel,liquid-fuel-barrel,1 -fill-liquid-fish-oil-barrel,empty-barrel,1,liquid-fish-oil,50 -empty-liquid-fish-oil-barrel,liquid-fish-oil-barrel,1 -fill-liquid-naphtha-barrel,empty-barrel,1,liquid-naphtha,50 -empty-liquid-naphtha-barrel,liquid-naphtha-barrel,1 -fill-liquid-mineral-oil-barrel,empty-barrel,1,liquid-mineral-oil,50 -empty-liquid-mineral-oil-barrel,liquid-mineral-oil-barrel,1 -lubricant,liquid-naphtha,10 -fill-lubricant-barrel,empty-barrel,1,lubricant,50 -empty-lubricant-barrel,lubricant-barrel,1 -fill-gas-synthesis-barrel,gas-canister,1,gas-synthesis,50 -empty-gas-synthesis-barrel,gas-synthesis-barrel,1 -discharge-defense-equipment,steel-plate,20,processing-unit,5,laser-turret,10 -logistic-chest-buffer,electronic-circuit,3,advanced-circuit,1,steel-chest,1 -fill-gas-dinitrogen-tetroxide-barrel,gas-canister,1,gas-dinitrogen-tetroxide,50 -fill-gas-epichlorhydrin-barrel,gas-canister,1,gas-epichlorhydrin,50 -fill-gas-hydrogen-fluoride-barrel,gas-canister,1,gas-hydrogen-fluoride,50 -fill-gas-hydrogen-peroxide-barrel,gas-canister,1,gas-hydrogen-peroxide,50 -fill-gas-silane-barrel,gas-canister,1,gas-silane,50 -fill-liquid-chlorauric-acid-barrel,empty-canister,1,liquid-chlorauric-acid,50 -fill-liquid-green-liquor-barrel,empty-barrel,1,liquid-green-liquor,50 -fill-water-thin-mud-barrel,empty-barrel,1,water-thin-mud,50 -empty-gas-dinitrogen-tetroxide-barrel,gas-dinitrogen-tetroxide-barrel,1 -empty-gas-epichlorhydrin-barrel,gas-epichlorhydrin-barrel,1 -empty-gas-hydrogen-fluoride-barrel,gas-hydrogen-fluoride-barrel,1 -empty-gas-hydrogen-peroxide-barrel,gas-hydrogen-peroxide-barrel,1 -empty-gas-silane-barrel,gas-silane-barrel,1 -empty-liquid-chlorauric-acid-barrel,liquid-chlorauric-acid-barrel,1 -empty-liquid-green-liquor-barrel,liquid-green-liquor-barrel,1 -empty-water-thin-mud-barrel,water-thin-mud-barrel,1 -solid-fuel-from-light-oil,liquid-fuel-oil,10 -solid-fuel-from-petroleum-gas,gas-methane,20 -solid-fuel-from-heavy-oil,liquid-naphtha,20 -burner-inserter,iron-plate,1,iron-gear-wheel,1 -inserter,iron-plate,1,iron-gear-wheel,1,basic-circuit-board,1 -long-handed-inserter,bronze-alloy,1,steel-gear-wheel,1,electronic-circuit,1,inserter,1 -fast-inserter,aluminium-plate,1,cobalt-steel-gear-wheel,1,cobalt-steel-bearing,1,advanced-circuit,1,long-handed-inserter,1 -filter-inserter,aluminium-plate,1,cobalt-steel-gear-wheel,1,cobalt-steel-bearing,1,advanced-circuit,5,red-filter-inserter,1 -stack-inserter,aluminium-plate,4,cobalt-steel-gear-wheel,6,cobalt-steel-bearing,5,advanced-circuit,1,red-stack-inserter,1 -stack-filter-inserter,aluminium-plate,4,cobalt-steel-gear-wheel,6,cobalt-steel-bearing,6,advanced-circuit,6,red-stack-filter-inserter,1 -landfill,stone,20 -production-science-pack,electric-furnace,1,assembling-machine-2,1,angels-chemical-plant,1 -fill-liquid-toluene-barrel,empty-barrel,1,liquid-toluene,50 -fill-lithia-water-barrel,empty-barrel,1,lithia-water,50 -empty-liquid-toluene-barrel,liquid-toluene-barrel,1 -empty-lithia-water-barrel,lithia-water-barrel,1 -fill-gas-butadiene-barrel,gas-canister,1,gas-butadiene,50 -empty-gas-butadiene-barrel,gas-butadiene-barrel,1 -fill-liquid-phenol-barrel,empty-barrel,1,liquid-phenol,50 -empty-liquid-phenol-barrel,liquid-phenol-barrel,1 -fill-liquid-ethylbenzene-barrel,empty-barrel,1,liquid-ethylbenzene,50 -empty-liquid-ethylbenzene-barrel,liquid-ethylbenzene-barrel,1 -fill-liquid-styrene-barrel,empty-barrel,1,liquid-styrene,50 -empty-liquid-styrene-barrel,liquid-styrene-barrel,1 -fill-gas-formaldehyde-barrel,gas-canister,1,gas-formaldehyde,50 -fill-liquid-polyethylene-barrel,empty-barrel,1,liquid-polyethylene,50 -empty-gas-formaldehyde-barrel,gas-formaldehyde-barrel,1 -empty-liquid-polyethylene-barrel,liquid-polyethylene-barrel,1 -fill-liquid-glycerol-barrel,empty-barrel,1,liquid-glycerol,50 -empty-liquid-glycerol-barrel,liquid-glycerol-barrel,1 -fill-liquid-bisphenol-a-barrel,empty-barrel,1,liquid-bisphenol-a,50 -empty-liquid-bisphenol-a-barrel,liquid-bisphenol-a-barrel,1 -fill-gas-acetone-barrel,gas-canister,1,gas-acetone,50 -empty-gas-acetone-barrel,gas-acetone-barrel,1 -fill-gas-ethylene-oxide-barrel,gas-canister,1,gas-ethylene-oxide,50 -empty-gas-ethylene-oxide-barrel,gas-ethylene-oxide-barrel,1 -fill-liquid-ethylene-carbonate-barrel,empty-barrel,1,liquid-ethylene-carbonate,50 -empty-liquid-ethylene-carbonate-barrel,liquid-ethylene-carbonate-barrel,1 -logistic-chest-requester,electronic-circuit,3,advanced-circuit,1,steel-chest,1 -steam-turbine,aluminium-plate,25,cobalt-steel-gear-wheel,20,cobalt-steel-bearing,10,advanced-circuit,5,steam-engine-3,1 -fill-gas-ammonium-chloride-barrel,gas-canister,1,gas-ammonium-chloride,50 -fill-gas-carbon-monoxide-barrel,gas-canister,1,gas-carbon-monoxide,50 -fill-gas-chlor-methane-barrel,gas-canister,1,gas-chlor-methane,50 -fill-gas-tungsten-hexafluoride-barrel,gas-canister,1,gas-tungsten-hexafluoride,50 -fill-liquid-hexafluorosilicic-acid-barrel,empty-canister,1,liquid-hexafluorosilicic-acid,50 -fill-liquid-hydrofluoric-acid-barrel,empty-canister,1,liquid-hydrofluoric-acid,50 -empty-gas-ammonium-chloride-barrel,gas-ammonium-chloride-barrel,1 -empty-gas-carbon-monoxide-barrel,gas-carbon-monoxide-barrel,1 -empty-gas-chlor-methane-barrel,gas-chlor-methane-barrel,1 -empty-gas-tungsten-hexafluoride-barrel,gas-tungsten-hexafluoride-barrel,1 -empty-liquid-hexafluorosilicic-acid-barrel,liquid-hexafluorosilicic-acid-barrel,1 -empty-liquid-hydrofluoric-acid-barrel,liquid-hydrofluoric-acid-barrel,1 -fill-alien-acid-barrel,empty-canister,1,alien-acid,50 -empty-alien-acid-barrel,alien-acid-barrel,1 -fill-alien-explosive-barrel,empty-canister,1,alien-explosive,50 -empty-alien-explosive-barrel,alien-explosive-barrel,1 -fill-alien-poison-barrel,empty-canister,1,alien-poison,50 -empty-alien-poison-barrel,alien-poison-barrel,1 -fill-alien-fire-barrel,empty-canister,1,alien-fire,50 -empty-alien-fire-barrel,alien-fire-barrel,1 -stone-brick,stone,2 - -utility-science-pack,silicon-nitride,4,electric-engine-unit,1,lithium-ion-battery,4,low-density-structure,3,titanium-bearing,4,processing-unit,6 - -fill-liquid-coolant-barrel,empty-barrel,1,liquid-coolant,50 -empty-liquid-coolant-barrel,liquid-coolant-barrel,1 -fill-gas-carbon-dioxide-barrel,gas-canister,1,gas-carbon-dioxide,50 -fill-gas-urea-barrel,gas-canister,1,gas-urea,50 -fill-liquid-perchloric-acid-barrel,empty-canister,1,liquid-perchloric-acid,50 -empty-gas-carbon-dioxide-barrel,gas-carbon-dioxide-barrel,1 -empty-gas-urea-barrel,gas-urea-barrel,1 -empty-liquid-perchloric-acid-barrel,liquid-perchloric-acid-barrel,1 -centrifuge,concrete,100,steel-plate,50,iron-gear-wheel,100,advanced-circuit,100 -lab,iron-gear-wheel,10,basic-circuit-board,10,basic-transport-belt,4 -empty-barrel,steel-plate,1 -fill-gas-hydrogen-barrel,gas-canister,1,gas-hydrogen,50 -fill-gas-melamine-barrel,gas-canister,1,gas-melamine,50 -fill-gas-phosgene-barrel,gas-canister,1,gas-phosgene,50 -fill-hydrogen-barrel,gas-canister,1,gas-hydrogen,50 -empty-gas-hydrogen-barrel,gas-hydrogen-barrel,1 -empty-gas-melamine-barrel,gas-melamine-barrel,1 -empty-gas-phosgene-barrel,gas-phosgene-barrel,1 -empty-hydrogen-barrel,hydrogen-barrel,1 -concrete,iron-ore,1,stone-brick,5,water,100 -hazard-concrete,concrete,10 -refined-concrete,concrete,20,steel-plate,1,iron-stick,8,water,100 -fill-liquid-water-semiheavy-1-barrel,empty-barrel,1,liquid-water-semiheavy-1,50 -empty-liquid-water-semiheavy-1-barrel,liquid-water-semiheavy-1-barrel,1 -fill-liquid-water-semiheavy-2-barrel,empty-barrel,1,liquid-water-semiheavy-2,50 -empty-liquid-water-semiheavy-2-barrel,liquid-water-semiheavy-2-barrel,1 -fill-liquid-water-semiheavy-3-barrel,empty-barrel,1,liquid-water-semiheavy-3,50 -empty-liquid-water-semiheavy-3-barrel,liquid-water-semiheavy-3-barrel,1 -fill-heavy-water-barrel,empty-barrel,1,liquid-water-heavy,50 -fill-liquid-water-heavy-barrel,empty-barrel,1,liquid-water-heavy,50 -empty-heavy-water-barrel,heavy-water-barrel,1 -empty-liquid-water-heavy-barrel,liquid-water-heavy-barrel,1 -rocket-fuel,rocket-oxidizer-capsule,10,rocket-fuel-capsule,10 -refined-hazard-concrete,refined-concrete,10 -fill-deuterium-barrel,gas-canister,1,gas-deuterium,50 -fill-gas-deuterium-barrel,gas-canister,1,gas-deuterium,50 -fill-liquid-nitric-acid-barrel,empty-canister,1,liquid-nitric-acid,50 -fill-nitric-acid-barrel,empty-canister,1,liquid-nitric-acid,50 -empty-deuterium-barrel,deuterium-barrel,1 -empty-gas-deuterium-barrel,gas-deuterium-barrel,1 -empty-liquid-nitric-acid-barrel,liquid-nitric-acid-barrel,1 -empty-nitric-acid-barrel,nitric-acid-barrel,1 -uranium-rounds-magazine,uranium-bullet,5,magazine,1 -nuclear-fuel,rocket-fuel,1,uranium-235,1 -fill-gas-monochloramine-barrel,gas-canister,1,gas-monochloramine,50 -fill-liquid-aqueous-sodium-hydroxide-barrel,empty-barrel,1,liquid-aqueous-sodium-hydroxide,50 -empty-gas-monochloramine-barrel,gas-monochloramine-barrel,1 -empty-liquid-aqueous-sodium-hydroxide-barrel,liquid-aqueous-sodium-hydroxide-barrel,1 -copper-plate,copper-ore,4 -fill-gas-hydrazine-barrel,gas-canister,1,gas-hydrazine,50 -empty-gas-hydrazine-barrel,gas-hydrazine-barrel,1 -copper-cable,copper-plate,1 -steel-plate,iron-plate,2,gas-oxygen,10 -fill-gas-methylamine-barrel,gas-canister,1,gas-methylamine,50 -empty-gas-methylamine-barrel,gas-methylamine-barrel,1 -iron-plate,iron-ore,4 -fill-gas-dimethylamine-barrel,gas-canister,1,gas-dimethylamine,50 -empty-gas-dimethylamine-barrel,gas-dimethylamine-barrel,1 -effectivity-module,module-case,1,effectivity-processor,1,module-contact,4,module-circuit-board,1 -effectivity-module-2,solder,1,effectivity-processor,2,module-contact,5,effectivity-module,1 -effectivity-module-3,solder,2,electronic-components,5,effectivity-processor-2,3,effectivity-module-2,1 -productivity-module,module-case,1,productivity-processor,1,module-contact,4,module-circuit-board,1 -productivity-module-2,solder,1,productivity-processor,2,module-contact,5,productivity-module,1 -productivity-module-3,solder,2,electronic-components,5,productivity-processor-2,3,productivity-module-2,1 -speed-module,module-case,1,speed-processor,1,module-contact,4,module-circuit-board,1 -speed-module-2,solder,1,speed-processor,2,module-contact,5,speed-module,1 -speed-module-3,solder,2,electronic-components,5,speed-processor-2,3,speed-module-2,1 -fill-gas-dimethylhydrazine-barrel,gas-canister,1,gas-dimethylhydrazine,50 -empty-gas-dimethylhydrazine-barrel,gas-dimethylhydrazine-barrel,1 -fill-nitroglycerin-barrel,empty-barrel,1,nitroglycerin,50 -empty-nitroglycerin-barrel,nitroglycerin-barrel,1 -rocket-part,rocket-fuel,10,rocket-control-unit,10,low-density-structure,10,heat-shield-tile,10,rocket-engine,10 -electronic-circuit,solder,1,basic-circuit-board,1,basic-electronic-components,5 -advanced-circuit,solder,1,circuit-board,1,basic-electronic-components,4,electronic-components,4 -processing-unit,solder,2,superior-circuit-board,1,basic-electronic-components,2,electronic-components,4,intergrated-electronics,2 -rocket-control-unit,solder,5,multi-layer-circuit-board,2,basic-electronic-components,4,electronic-components,6,intergrated-electronics,4,processing-electronics,8 -rocket-silo,concrete,200,nitinol-alloy,500,electric-engine-unit,100,rocket-control-unit,25,low-density-structure,50,heat-shield-tile,100,advanced-processing-unit,50,titanium-pipe,50 -low-density-structure,aluminium-plate,20,titanium-plate,2,plastic-bar,5 -satellite,rocket-fuel,50,silver-zinc-battery,50,rocket-control-unit,100,low-density-structure,100,rtg,10,radar-5,5 diff --git a/mod-recipes/recipes-sorted-subgroups.csv b/mod-recipes/recipes-sorted-subgroups.csv new file mode 100644 index 0000000..bd02150 --- /dev/null +++ b/mod-recipes/recipes-sorted-subgroups.csv @@ -0,0 +1,8529 @@ +salt abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-salt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +burner-assembling-machine abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abburner-assembling-machine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab9 abiron-gear-wheel ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-assembling-machine abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-assembling-machine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abiron-gear-wheel ab10 abpipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-air-filtering abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-compressed-air ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-big-chest abangels-chests-big ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-big-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abiron-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-logistic-chest-active-provider abangels-chests-big ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-logistic-chest-active-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abadvanced-circuit ab5 abangels-big-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-warehouse abangels-warehouse ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-warehouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab100 abiron-plate ab100 absteel-plate ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore7-crystallization-3 abbob-gems-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abruby-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +artillery-wagon abangels-artillery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abartillery-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab40 abengine-unit ab64 abiron-gear-wheel ab10 abadvanced-circuit ab20 abpipe ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery-equipment abangels-personal-equipment-power-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abbattery ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +big-electric-pole abangels-big-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbig-electric-pole ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 absteel-plate ab5 abiron-stick ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-refugium-fish abbio-processing-buildings-alien-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-refugium-fish ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 abglass ab10 abbronze-alloy ab6 abelectronic-circuit ab5 abbronze-pipe ab75 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-burner-generator abangels-power-fluid-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-burner-generator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-furnace ab1 abiron-plate ab8 abiron-gear-wheel ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brass-chest abangels-chests-small-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrass-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrass-alloy ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant-cool-steam abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crop-farm abbio-processing-buildings-vegetabilis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrop-farm ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab45 absteel-plate ab24 absolid-soil ab15 abelectronic-circuit ab2 absteel-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +energy-shield-equipment abangels-personal-equipment-combat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenergy-shield-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +exoskeleton-equipment abangels-personal-equipment-combat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexoskeleton-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectric-engine-unit ab30 abadvanced-circuit ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fermentation-corn abbio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fermentation-raw ab75 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-corn ab10 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fusion-reactor-equipment abangels-personal-equipment-power-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfusion-reactor-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab50 abprocessing-unit ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-monochloramine abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-monochloramine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hypochlorite ab5 abgas-ammonia ab250 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-pipe abangels-power-nuclear-heat-pipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab10 absteel-plate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-breeding-1 abbio-hogger-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-1 ab2 abbio-hogger-1 ab1 abbio-hogger-2 ab1 abbio-hogger-3 ab1 abbio-hogger-4 ab1 abbio-hogger-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abbio-hogger-1 ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-butchery-1 abbio-hogger-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-hogger-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-hogging-1 abbio-hogger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-1 ab3 - 5 abcopper-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab10 abiron-plate ab1 abbio-hogger-1 ab4 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-acetic-acid-catalyst abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-acetic-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-red ab1 abgas-methanol ab70 abgas-carbon-monoxide ab30 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +medium-electric-pole abangels-medium-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmedium-electric-pole ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab2 absteel-plate ab2 abiron-stick ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +night-vision-equipment abangels-personal-equipment-power-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnight-vision-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nuclear-reactor abangels-power-nuclear-reactor-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnuclear-reactor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab500 absteel-plate ab250 abadvanced-circuit ab500 abheat-pipe-2 ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-powderizer abore-powderizer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-powderizer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 abbronze-alloy ab3 absteel-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-laser-defense-equipment abangels-personal-equipment-combat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-laser-defense-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abbattery ab3 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-antenna-equipment abangels-personal-equipment-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-antenna-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-1 ab2 abroboport-door-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-chargepad-equipment abangels-personal-equipment-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-chargepad-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-equipment abangels-personal-equipment-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abroboport-antenna-1 ab2 abroboport-door-1 ab1 abroboport-chargepad-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-robot-equipment abangels-personal-equipment-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-robot-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abcircuit-board ab1 abbasic-electronic-components ab30 abelectronic-components ab15 abmodule-case ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +seafloor-pump abwashing-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseafloor-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab6 abbasic-circuit-board ab2 abpipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +seed-extractor abbio-processing-buildings-vegetabilis-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseed-extractor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 absteel-plate ab3 absteel-gear-wheel ab6 abbasic-circuit-board ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo abangels-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab20 abiron-plate ab20 absteel-plate ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-1 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab1 abcopper-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-equipment abangels-personal-equipment-power-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab4 absteel-plate ab2 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-mud-landfill abwater-washing-filtering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablandfill ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-engine abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-engine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abiron-gear-wheel ab8 abpipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-chest abangels-chests-small-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +substation abangels-sub-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absubstation ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-chest abangels-chests-small-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-battery-1 abangels-vehicle-equipment-bobpower-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-battery-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abbattery ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-big-turret-1 abangels-vehicle-equipment-bobcombat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-big-turret-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abalien-artifact ab30 abbattery ab12 abelectronic-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-cell-1 abangels-vehicle-equipment-bobpower-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-cell-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab125 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-reactor-1 abangels-vehicle-equipment-bobpower-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-reactor-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab250 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-laser-defense-1 abangels-vehicle-equipment-bobcombat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-laser-defense-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abbattery ab3 abelectronic-circuit ab5 abruby-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-motor abangels-vehicle-equipment-bobpower-e ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-motor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectric-engine-unit ab30 abprocessing-unit ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport abangels-vehicle-equipment-bobrobot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abroboport-antenna-1 ab2 abroboport-door-1 ab1 abroboport-chargepad-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-antenna-equipment abangels-vehicle-equipment-bobrobot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-antenna-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-1 ab2 abroboport-door-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-chargepad-equipment abangels-vehicle-equipment-bobrobot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-chargepad-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-robot-equipment abangels-vehicle-equipment-bobrobot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-robot-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abcircuit-board ab1 abbasic-electronic-components ab30 abelectronic-components ab15 abmodule-case ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-shield-1 abangels-vehicle-equipment-bobcombat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-shield-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-solar-panel-1 abangels-vehicle-equipment-bobpower-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-solar-panel-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab4 absteel-plate ab2 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-viscous-mud abwater-washing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-viscous-mud ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab10 abwater ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-ruby-3 abbob-gems-raw ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abruby-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abruby-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-ruby-4 abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abruby-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abruby-3 ab1 abgrinding-wheel ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-ruby-5 abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abruby-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abruby-4 ab1 abpolishing-wheel ab1 abpolishing-compound ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-chlorine-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchlorine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-chlorine-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-chlorine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-nitrogen-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-pulping-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-pulping-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-pulping-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-nitrogen-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-viscous-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-viscous-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-viscous-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-yellow-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-yellow-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +light-armor abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablight-armor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-chlorine-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abchlorine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-chlorine-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-nitrogen-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-pulping-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-pulping-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-pulping-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-nitrogen-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-viscous-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-viscous-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-viscous-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-yellow-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-yellow-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-armor abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-armor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab100 absteel-plate ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-armor-2 abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-armor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgunmetal-alloy ab50 abinvar-alloy ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-armor-3 abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-armor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab50 abtitanium-plate ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-sulfuric-acid abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-sulfur-dioxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-nitric-acid abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-nitrogen-dioxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-liquid-air abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-air ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-compressed-air ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-ferric-chloride-solution abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-hydrogen-sulfide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-ammonia abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-nitric-oxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitric-oxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-dinitrogen-tetroxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-hydrazine abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-heavy-oil abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-tungstic-acid abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-tungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-light-oil abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablight-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-petroleum-gas abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetroleum-gas ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-chlorine abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-oxygen abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-hydrogen abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-hydrogen-chloride abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-other-nitrogen abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-blue abbio-processing-blue ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-blue ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-yellow-waste ab100 abgas-carbon-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-brown abbio-processing-brown ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-brown ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-red abbio-processing-red ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-red ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthermal-water ab100 abgas-ammonia ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-farm abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-farm ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab55 abiron-plate ab33 abbasic-circuit-board ab4 abpipe ab54 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-farm-2 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-farm-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab55 absteel-plate ab33 abalgae-farm ab1 abelectronic-circuit ab4 absteel-pipe ab54 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-farm-3 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-farm-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab55 abbronze-alloy ab33 abalgae-farm-2 ab1 abelectronic-circuit ab4 abbronze-pipe ab54 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-farm-4 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-farm-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab44 abconcrete-brick ab55 abalgae-farm-3 ab1 abadvanced-circuit ab4 abbrass-pipe ab54 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-spores abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-spores ab70 - 80 abwater-yellow-waste ab30 - 40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-alien-spores-barrel abangels-fluid-control-bio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-spores-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abalien-spores ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-alien-spores-barrel abangels-fluid-control-bio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abalien-spores ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-spores-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-bacteria abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-bacteria ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-calcium-carbonate ab1 abalien-spores ab50 abliquid-hydrochloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-goo abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-goo ab5 - 10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-bacteria ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-alien-goo-barrel abangels-fluid-control-bio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-goo-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abalien-goo ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-alien-goo-barrel abangels-fluid-control-bio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abalien-goo ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-goo-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-burner-generator-vequip abangels-vehicle-equipment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-burner-generator-vequip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 abelectronic-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-furnace abangels-chemical-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 absteel-plate ab6 abelectronic-circuit ab5 absteel-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-construction-robot abangels-cargo-bots ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-construction-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abengine-unit ab1 abiron-gear-wheel ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crushed-mix1-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-brown ab1 abangels-ore1-crushed ab2 abangels-ore2-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-chunk-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abiron-ore ab2 abcopper-ore ab1 abquartz ab1 abnickel-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-chunk ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-chunk abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore1-chunk ab2 abgeode-blue ab1 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-crushed-hand abprocessing-crafting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore1-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abiron-ore ab2 abcopper-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore1-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-crystal-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abiron-ore ab3 abcopper-ore ab1 abquartz ab1 abnickel-ore ab1 abrutile-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crystal ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-crystal abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore1-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-chunk ab2 abliquid-sulfuric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-pure-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab3 abcopper-ore ab2 abquartz ab1 abnickel-ore ab1 abrutile-ore ab1 abtungsten-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-pure ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-pure abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore1-pure ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crystal ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +assembling-machine-1 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abassembling-machine-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab9 abiron-gear-wheel ab5 abbasic-circuit-board ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +automation-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abautomation-science-pack ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abiron-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-stick abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-stick ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +beacon abmodule-beacon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbeacon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab10 absteel-plate ab10 abelectronic-circuit ab20 abadvanced-circuit ab20 abcrystal-splinter-harmonic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +beacon-2 abmodule-beacon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbeacon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab10 abtinned-copper-cable ab10 abelectronic-circuit ab20 abadvanced-circuit ab20 abprocessing-unit ab20 abcrystal-shard-harmonic ab1 abbeacon ab1 ab ab ab ab ab ab ab ab ab ab +beacon-3 abmodule-beacon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbeacon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab10 abtitanium-plate ab10 abinsulated-cable ab10 abadvanced-circuit ab20 abprocessing-unit ab20 abadvanced-processing-unit ab20 abcrystal-full-harmonic ab1 abbeacon-2 ab1 ab ab ab ab ab ab ab ab +blast-furnace abangels-blast-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abblast-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab50 abiron-plate ab12 abbasic-circuit-board ab3 abpipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bronze-smelting-1 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-bronze ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-tin ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bronze-smelting-2 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-bronze ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-nickel ab6 abingot-tin ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bronze-smelting-3 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-bronze ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-tin ab12 abingot-zinc ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-bronze abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbronze-alloy ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-bronze ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bronze-alloy abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbronze-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab3 abtin-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +burner-ore-crusher abore-crusher ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abburner-ore-crusher ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-furnace ab1 abstone ab5 abiron-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +accumulator abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abaccumulator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abbattery ab10 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +large-accumulator-2 abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablarge-accumulator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 ablithium-ion-battery ab10 abadvanced-circuit ab2 abaccumulator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +large-accumulator-3 abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablarge-accumulator-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 absilver-zinc-battery ab10 abprocessing-unit ab2 ablarge-accumulator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +car abangels-vehicle-car ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab5 abengine-unit ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-coal-from-wood abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcoal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +carbon abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-carbon ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab1 abwater ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +casting-machine abangels-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcasting-machine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 abiron-plate ab9 abiron-gear-wheel ab3 abbasic-circuit-board ab1 abpipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +character abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcharacter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-2 ab1 abplayer-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-builder abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-builder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-3 ab1 abplayer-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-fighter abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-fighter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-2 ab1 abplayer-frame ab1 abexoskeleton-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-miner abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-miner ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace ab1 abassembling-machine-2 ab1 abplayer-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-balanced-2 abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-balanced-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-2 ab1 abplayer-frame-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-builder-2 abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-builder-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-4 ab1 abplayer-frame-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-engineer abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-engineer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace ab1 abassembling-machine-3 ab1 abplayer-frame-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-fighter-2 abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-fighter-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-2 ab1 abplayer-frame-2 ab1 abexoskeleton-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-miner-2 abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-miner-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace-2 ab1 abassembling-machine-2 ab1 abplayer-frame-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-character-prospector abbodies ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-character-prospector ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace ab1 abassembling-machine-2 ab1 abplayer-frame-2 ab1 abexoskeleton-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wooden-chest abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwooden-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-chest abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coal-crushed abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcoal-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-from-dust abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab20 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-dust ab10 abmilling-drum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-slurry abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-powder ab1 abwater-purified ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-crystalization-1 abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abegg-shell-seed ab1 abliquid-polluted-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-crystalization-1 abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-polluted-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-crystalization-2 abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abegg-shell-seed ab1 abcrystal-enhancer ab1 abliquid-polluted-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-crystalization-2 abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-seed ab1 abliquid-polluted-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-energy-interface abother ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-energy-interface ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electrode abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrode ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electrode-used abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrode ab1 abwater-mineralized ab10 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-electrode-used ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +explosives abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosives ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab1 absulfur ab1 abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-nitroglycerin abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosives ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab1 abliquid-glycerol ab50 abliquid-sulfuric-acid ab25 abliquid-nitric-acid ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-trinitrotoluene abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosives ab3 abwater-yellow-waste ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-toluene ab50 abliquid-sulfuric-acid ab25 abliquid-nitric-acid ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cliff-explosives abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcliff-explosives ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abexplosives ab10 abempty-barrel ab1 abgrenade ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore8-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore8-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore8-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore8-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore8-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore8-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore8-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore8-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore8-anode-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-anode-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore8-anode-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore8-anode-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore8-anode-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-anode-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore8-slime-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-slime-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore8-slime ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore8-slime-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore8-slime ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-slime-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-ferric-chloride-solution-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abferric-chloride-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-ferric-chloride-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ferric-chloride-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-ferric-chloride-solution-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abferric-chloride-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-ferric-chloride-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ferric-chloride-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-filtering-1 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abmineral-sludge ab50 abwater-yellow-waste ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abslag-slurry ab50 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-filtering-2 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abmineral-sludge ab35 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abslag-slurry ab35 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thermal-water-filtering-1 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abthermal-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thermal-water-filtering-2 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abmineral-sludge ab35 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abthermal-water ab35 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-slurry-filtering-conversion-1 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abmineral-sludge ab50 abwater-yellow-waste ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abcrystal-slurry ab50 abwater-mineralized ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-slurry-filtering-conversion-2 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abmineral-sludge ab35 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abcrystal-slurry ab35 abwater-mineralized ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-ammoniated-brine-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abammoniated-brine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abammoniated-brine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-brine-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-ammoniated-brine-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abammoniated-brine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abammoniated-brine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-brine-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-heavy-oil-barrel abangels-fluid-control-vanilla ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-heavy-oil-barrel abangels-fluid-control-vanilla ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abheavy-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-light-oil-barrel abangels-fluid-control-vanilla ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablight-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-light-oil-barrel abangels-fluid-control-vanilla ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablight-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-petroleum-gas-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetroleum-gas-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-petroleum-gas-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpetroleum-gas-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-sour-gas-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absour-gas-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 absour-gas ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-sour-gas-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 absour-gas ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absour-gas-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-sulfuric-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfuric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-sulfuric-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfuric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-ammonia-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abammonia-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-ammonia-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abammonia-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-carbon-dioxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcarbon-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-carbon-dioxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcarbon-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-dinitrogen-tetroxide-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdinitrogen-tetroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-dinitrogen-tetroxide-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdinitrogen-tetroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-glycerol-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abglycerol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-glycerol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-glycerol-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-glycerol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglycerol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-hydrazine-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrazine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-hydrazine-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrazine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-hydrogen-peroxide-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen-peroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abgas-hydrogen-peroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-hydrogen-peroxide-barrel abangels-fluid-control-bob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abgas-hydrogen-peroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen-peroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydrogen-sulfide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfur ab5 abgas-hydrogen ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-nitric-oxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitric-oxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-nitrogen-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-nitric-oxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-nitrogen-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitric-oxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfur-dioxide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfur ab5 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-sulfuric-nitric-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfuric-nitric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 absulfuric-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-sulfuric-nitric-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 absulfuric-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfuric-nitric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flying-robot-frame abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflying-robot-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abelectric-engine-unit ab1 abbattery ab2 abelectronic-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flying-robot-frame-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflying-robot-frame-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abelectric-engine-unit ab1 abbattery ab2 abadvanced-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flying-robot-frame-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflying-robot-frame-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abelectric-engine-unit ab1 ablithium-ion-battery ab2 abprocessing-unit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flying-robot-frame-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflying-robot-frame-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 abelectric-engine-unit ab1 absilver-zinc-battery ab2 abadvanced-processing-unit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +burner-reactor abangels-power-nuclear-reactor-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abburner-reactor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-furnace ab1 absteel-plate ab6 abheat-pipe ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +burner-reactor-2 abangels-power-nuclear-reactor-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abburner-reactor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab10 abinvar-alloy ab6 abburner-reactor ab1 abheat-pipe-2 ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-acid-catalyst abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-hydrogen-sulfide ab60 abgas-carbon-dioxide ab20 abgas-hydrogen-fluoride ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-formaldehyde-catalyst abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-formaldehyde ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-methanol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-methanol-catalyst abpetrochem-feedstock ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-methanol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-carbon-dioxide ab100 abgas-hydrogen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-small abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-small ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 absteel-plate ab6 abelectronic-circuit ab4 absteel-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-small-2 abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-small-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abconcrete-brick ab20 abgas-refinery-small ab1 abadvanced-circuit ab4 abbrass-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-small-3 abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-small-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab20 abtitanium-plate ab8 abgas-refinery-small-2 ab1 abprocessing-unit ab4 abtitanium-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-small-4 abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-small-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab20 abtungsten-plate ab8 abgas-refinery-small-3 ab1 abadvanced-processing-unit ab4 abtungsten-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-separation abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-raw-1 ab60 abliquid-condensates ab30 abwater-yellow-waste ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-natural-1 ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-synthesis-separation abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-monoxide ab40 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-synthesis ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-tree-generator-1 abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-desert-seed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab5 abseedling ab4 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-tree-generator-1 abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-swamp-seed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab5 abseedling ab4 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-tree-generator-1 abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-temperate-seed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abseedling ab4 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-generator-1 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-seed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abseedling ab4 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-tree-generator-2 abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-desert-seed ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab5 absolid-fertilizer ab1 abseedling ab6 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-tree-generator-2 abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-swamp-seed ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab5 absolid-fertilizer ab1 abseedling ab6 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-tree-generator-2 abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-temperate-seed ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abseedling ab6 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-generator-2 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-seed ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abseedling ab6 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-tree-generator-3 abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-desert-seed ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab5 absolid-fertilizer ab1 abseedling ab8 abwater-saline ab50 abgas-nitrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-tree-generator-3 abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-swamp-seed ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab5 absolid-fertilizer ab1 abseedling ab8 abwater-light-mud ab50 abgas-nitrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-tree-generator-3 abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-temperate-seed ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abseedling ab8 abwater ab50 abgas-carbon-dioxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-generator-3 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtree-seed ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abseedling ab8 abwater ab50 abgas-carbon-dioxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-blue-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-blue ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-blue-processing abgeode-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-dust ab1 abstone-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-blue ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abwood ab5 abiron-gear-wheel ab5 abpistol ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flamethrower abangels-fire ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflamethrower ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abiron-gear-wheel ab5 absubmachine-gun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-launcher abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-launcher ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abelectronic-circuit ab5 abshotgun ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pistol abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpistol ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 abiron-plate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +artillery-targeting-remote abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abartillery-targeting-remote ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab1 abradar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 absteel-gear-wheel ab5 abadvanced-circuit ab5 abrifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rifle abangels-physical-ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab5 absteel-plate ab5 absteel-gear-wheel ab10 absubmachine-gun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-gun abangels-fire ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-gun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abiron-gear-wheel ab5 absubmachine-gun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +combat-shotgun abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcombat-shotgun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab15 abwood ab5 abshotgun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sniper-rifle abangels-physical-ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absniper-rifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab2 abwood ab10 abrifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +submachine-gun abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absubmachine-gun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abiron-gear-wheel ab10 abpistol ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydro-plant abwater-treatment-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydro-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab60 abiron-plate ab12 abbasic-circuit-board ab12 abpipe ab48 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-hydrogen-sulfide-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-sulfide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-hydrogen-sulfide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen-sulfide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-hydrogen-sulfide-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-hydrogen-sulfide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen-sulfide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +induction-furnace abangels-induction-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinduction-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab25 abiron-plate ab15 abiron-gear-wheel ab9 abbasic-circuit-board ab5 abpipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-iron-pebbles abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-iron-pebbles ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +burner-mining-drill abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abburner-mining-drill ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-furnace ab1 abiron-plate ab3 abiron-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-mining-drill abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-mining-drill ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abburner-mining-drill ab1 abpipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-mining-drill abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-mining-drill ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abiron-gear-wheel ab5 abbasic-circuit-board ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-mining-drill-1 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-mining-drill-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-mining-drill ab1 absteel-plate ab10 absteel-gear-wheel ab5 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-mining-drill-2 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-mining-drill-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-mining-drill-1 ab1 abinvar-alloy ab10 abbrass-gear-wheel ab5 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-mining-drill-3 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-mining-drill-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-mining-drill-2 ab1 abtitanium-plate ab10 abtitanium-gear-wheel ab5 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-mining-drill-4 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-mining-drill-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-mining-drill-3 ab1 abtungsten-carbide ab10 abnitinol-gear-wheel ab5 abadvanced-processing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-area-mining-drill-1 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-area-mining-drill-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-mining-drill ab1 absteel-plate ab10 absteel-gear-wheel ab5 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-area-mining-drill-2 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-area-mining-drill-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-area-mining-drill-1 ab1 abinvar-alloy ab10 abbrass-gear-wheel ab5 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-area-mining-drill-3 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-area-mining-drill-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-area-mining-drill-2 ab1 abtitanium-plate ab10 abtitanium-gear-wheel ab5 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-area-mining-drill-4 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-area-mining-drill-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-area-mining-drill-3 ab1 abtungsten-carbide ab10 abnitinol-gear-wheel ab5 abadvanced-processing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-lamp abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-lamp ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab3 abiron-plate ab1 abbasic-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-lamp abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-lamp ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab3 abiron-plate ab1 abbasic-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-styrene-catalyst abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-styrene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abliquid-ethylbenzene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab40 abengine-unit ab25 abelectronic-circuit ab20 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-2 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab50 abengine-unit ab30 abcrawler-locomotive ab1 abspeed-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-3 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab40 ablow-density-structure ab50 abcrawler-locomotive-2 ab1 abspeed-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-4 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab45 ablow-density-structure ab75 abcrawler-locomotive-3 ab1 abspeed-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-5 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab50 abrocket-control-unit ab2 ablow-density-structure ab100 abcrawler-locomotive-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +land-mine abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abland-mine ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abexplosives ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-mine abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-mine ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abpoison-capsule ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slowdown-mine abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslowdown-mine ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abslowdown-capsule ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +distractor-mine abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdistractor-mine ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abdistractor-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-beans-nutrients abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-beans ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-corn-nutrients abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-corn ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-leafs-nutrients abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-leafs ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-nuts-nutrients abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-nuts ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-pips-nutrients abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-pips ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fruit-nutrients abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-fruit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-vegetable-oil-nuts abbio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-raw-vegetable-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-nuts ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-pressing-0 abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfish-pulp ab5 abliquid-raw-fish-oil ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abraw-fish ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-vegetable-oil-pips abbio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-raw-vegetable-oil ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-pips ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-pressing-1 abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfish-pulp ab1 abliquid-raw-fish-oil ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-1-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-vegetable-oil-beans abbio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-raw-vegetable-oil ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-beans ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-pressing-2 abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfish-pulp ab2 abliquid-raw-fish-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-2-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-pressing-3 abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfish-pulp ab1 abliquid-raw-fish-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-3-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-oil-processing abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absour-gas ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-oil-processing abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha ab25 abliquid-fuel-oil ab45 absour-gas ab55 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab50 abcrude-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-oil-processing abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha ab50 abliquid-fuel-oil ab20 absour-gas ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +carbon-dioxide-oil-processing abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha ab60 abliquid-fuel-oil ab40 absour-gas ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-dioxide ab50 abcrude-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coal-liquefaction abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha ab90 abliquid-fuel-oil ab20 absour-gas ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab10 abliquid-naphtha ab10 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-separation abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-raw-1 ab20 abcrude-oil ab70 abwater-yellow-waste ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-multi-phase-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-floatation-cell abore-floatation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-floatation-cell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab40 abbronze-alloy ab12 abelectronic-circuit ab8 abbronze-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-leaching-plant abore-leaching ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-leaching-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab16 abconcrete-brick ab40 abadvanced-circuit ab8 abbrass-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-processing-machine abangels-processing-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-processing-machine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 abbronze-alloy ab6 absteel-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-refinery abore-refining ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-refinery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab100 abtitanium-plate ab48 abprocessing-unit ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-sorting-facility abore-sorter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-sorting-facility ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab60 abiron-plate ab36 abiron-gear-wheel ab24 abbasic-circuit-board ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-ore1 abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-ore1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-ore2 abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-ore2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-ore3 abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-ore3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-ore4 abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-ore4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-ore5 abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-ore5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-ore6 abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-ore6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-coal abangels-ore-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-coal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal-crushed ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-antenna-1 abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-antenna-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab2 absteel-plate ab1 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-antenna-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-antenna-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abtinned-copper-cable ab2 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-antenna-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-antenna-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnickel-plate ab1 abinsulated-cable ab2 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-antenna-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-antenna-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab1 abgilded-copper-cable ab2 abnickel-plate ab1 abadvanced-processing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-door-1 abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-door-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab15 abiron-gear-wheel ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-door-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-door-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab15 abbrass-gear-wheel ab20 absteel-bearing ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-door-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-door-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab15 abtitanium-gear-wheel ab20 abtitanium-bearing ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-door-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-door-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab15 abnitinol-gear-wheel ab20 abnitinol-bearing ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-chargepad-1 abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-chargepad-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-chargepad-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-chargepad-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab2 abbattery ab2 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-chargepad-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-chargepad-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 ablithium-ion-battery ab2 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport-chargepad-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport-chargepad-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab2 absilver-zinc-battery ab2 abadvanced-processing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-press abangels-pellet-press ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-press ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abconcrete-brick ab10 abbrass-gear-wheel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plastic-bar abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplastic-bar ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane ab20 abgas-chlorine ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-resin-oil abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abresin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bronze-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbronze-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plastic-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplastic-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplastic-bar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brass-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrass-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrass-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ceramic-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abceramic-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitinol-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-tungsten-pipe abpipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-tungsten-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 abcopper-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abpipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 abstone-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bronze-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbronze-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab5 abbronze-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 absteel-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plastic-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplastic-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplastic-bar ab5 abplastic-pipe ab14 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brass-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrass-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrass-alloy ab5 abbrass-pipe ab14 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abtitanium-pipe ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ceramic-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abceramic-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab5 abceramic-pipe ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab5 abtungsten-pipe ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitinol-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 abnitinol-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-tungsten-pipe-to-ground abpipe-to-ground ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-tungsten-pipe-to-ground ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab5 abcopper-tungsten-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-plastic-barrel abangels-fluid-control-petrochem-solids-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-plastic ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-plastic-1 abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-propene ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-plastic-2 abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab20 abliquid-polyethylene ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-plastic-3 abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-formaldehyde ab20 abliquid-phenol ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-plastic-barrel abangels-fluid-control-petrochem-solids-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-plastic ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-plastic-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-plastic abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplastic-bar ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-plastic ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-boots abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-boots ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abrubber ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-boots-2 abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-boots-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abrubber ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-brain abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-brain ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 absuperior-circuit-board ab5 abbasic-electronic-components ab10 abelectronic-components ab25 abintergrated-electronics ab10 abmodule-case ab1 ab ab ab ab ab ab ab ab ab ab ab ab +player-brain-2 abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-brain-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 absuperior-circuit-board ab8 abbasic-electronic-components ab8 abelectronic-components ab30 abintergrated-electronics ab20 abprocessing-electronics ab2 abmodule-case ab1 ab ab ab ab ab ab ab ab ab ab +player-gloves abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-gloves ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 absteel-gear-wheel ab15 absteel-bearing ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-gloves-2 abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-gloves-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abtitanium-gear-wheel ab15 abtitanium-bearing ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-head abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-head ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abplayer-brain ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-head-2 abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-head-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abplayer-brain-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +player-frame abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abelectric-engine-unit ab8 abadvanced-circuit ab15 absteel-chest ab1 abplayer-boots ab1 abplayer-gloves ab1 abplayer-head ab1 abplayer-power-core ab1 ab ab ab ab ab ab ab ab +player-frame-2 abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-frame-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abelectric-engine-unit ab12 abprocessing-unit ab15 abtitanium-chest ab1 abplayer-boots-2 ab1 abplayer-gloves-2 ab1 abplayer-head-2 ab1 abplayer-power-core ab1 ab ab ab ab ab ab ab ab +player-power-core abbody-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplayer-power-core ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbattery ab15 abrtg ab1 abprocessing-unit ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-casing-resin-mold abangels-mold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmotor-casing-0 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abresin ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-mixer abangels-powder-mixer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-mixer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 abbronze-alloy ab3 absteel-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wall-0 abangels-exploration-walls ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwall-0 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab5 abwood ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-burner-reactor abangels-power-nuclear ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-burner-reactor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab350 abreinforced-concrete-brick ab500 abtitanium-plate ab400 abtungsten-plate ab400 abprocessing-unit ab500 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-red-from-basic abbio-processing-alien-large-convert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-red ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab1 abalien-artifact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-red-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-red ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact-red ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-red abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-red ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-copper ab1 abruby-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact-red abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact-red ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-red ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +better-shotgun-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbetter-shotgun-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcordite ab1 abshot ab1 abshotgun-shell-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 ablead-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cannon-turret-shell-1 abangels-physical-bc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcannon-turret-shell-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab2 abshotgun-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab1 abbattery ab4 ablaser-rifle-battery-case ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abexplosives ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-plant abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab6 abiron-gear-wheel ab3 abbasic-circuit-board ab1 abpipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-distillery abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab3 abiron-plate ab3 abcopper-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chemical-plant abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abiron-gear-wheel ab5 abelectronic-circuit ab5 abpipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-plant-2 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab6 abangels-chemical-plant ab1 absteel-gear-wheel ab3 abelectronic-circuit ab1 abbronze-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chemical-plant-2 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab10 abangels-chemical-plant ab1 absteel-gear-wheel ab5 absteel-bearing ab5 abadvanced-circuit ab5 absteel-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-plant-3 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abangels-chemical-plant-2 ab1 abbrass-gear-wheel ab3 abadvanced-circuit ab1 abbrass-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chemical-plant-3 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab10 abangels-chemical-plant-2 ab1 abtitanium-gear-wheel ab5 abtitanium-bearing ab5 abprocessing-unit ab10 abtitanium-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-plant-4 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab4 abangels-chemical-plant-3 ab1 abtitanium-gear-wheel ab3 abprocessing-unit ab1 abtitanium-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chemical-plant-4 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-plant-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab10 abangels-chemical-plant-3 ab1 abnitinol-gear-wheel ab5 abnitinol-bearing ab5 abadvanced-processing-unit ab10 abnitinol-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +spidertron-remote abangels-vehicle-spidertron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspidertron-remote ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-control-unit ab1 abradar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cargo-roboport abangels-cargo-ports ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcargo-roboport ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab40 absteel-plate ab60 abiron-gear-wheel ab60 abelectronic-circuit ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cargo-box abangels-cargo-ports ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcargo-box ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab40 absteel-plate ab60 abiron-gear-wheel ab60 abelectronic-circuit ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cargo-hub abangels-cargo-ports ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcargo-hub ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab40 absteel-plate ab60 abiron-gear-wheel ab60 abelectronic-circuit ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-charging-station abangels-cargo-ports ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-charging-station ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 absteel-plate ab5 abprocessing-unit ab2 abangels-relay-station-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +separator abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseparator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 absteel-plate ab6 abelectronic-circuit ab5 absteel-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +separator-2 abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseparator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abconcrete-brick ab25 abseparator ab1 abadvanced-circuit ab5 abbrass-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +separator-3 abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseparator-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab25 abtitanium-plate ab8 abseparator-2 ab1 abprocessing-unit ab5 abtitanium-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +separator-4 abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseparator-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab25 abtungsten-plate ab8 abseparator-3 ab1 abadvanced-processing-unit ab5 abtungsten-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-active-provider abangels-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-active-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-passive-provider abangels-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-passive-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abelectronic-circuit ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-storage abangels-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-storage ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abelectronic-circuit ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-buffer abangels-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-buffer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silo-requester abangels-silo ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilo-requester ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abelectronic-circuit ab10 absilo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sintering-oven abangels-sintering-oven ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absintering-oven ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab45 absteel-plate ab24 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-thermal-water-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthermal-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abthermal-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-thermal-water-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abthermal-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthermal-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-slag-slurry-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag-slurry-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abslag-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-slag-slurry-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abslag-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abslag-slurry-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-small-inline-storage-tank abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-small-inline-storage-tank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab3 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-small-storage-tank abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-small-storage-tank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-small-inline-storage-tank ab1 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-electric-pole abangels-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-electric-pole ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab2 abwood ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-small-eggsperiment abbio-biter-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-small-egg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-dust ab1 abbio-puffer-egg-3 ab1 abcrystal-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-small-keeping abbio-biter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-small ab3 abbiter-small ab1 abcrystal-splinter-raw ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-small ab4 abbio-alien-processed-meat ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-small-butchering abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 abcrystal-splinter-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-small ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-small-breeding abbio-biter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-queen-small ab1 abbiter-queen-small ab1 abbiter-small-egg ab1 abbiter-small-egg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-queen-small ab2 abbio-alien-processed-meat ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-small abbio-biter-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-small ab1 abbiter-queen-small ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-small-egg ab1 abbio-alien-processed-meat ab1 abliquid-nutrient-pulp ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-queen-small-butchering abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 - 2 abcrystal-splinter-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-queen-small ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-salt-separation abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium ab5 abangels-electrode-used ab1 abgas-chlorine ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-salt ab10 abangels-electrode ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium ab5 abangels-electrode-used ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab5 abangels-electrode ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-sulfate-separation abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium ab4 absulfur ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-sulfate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-small abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-small ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab2 absteel-plate ab2 abelectronic-circuit ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-small-2 abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-small-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab2 absilver-plate ab2 abadvanced-circuit ab4 absolar-panel-small ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-small-3 abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-small-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab2 absilicon-wafer ab16 abtitanium-plate ab2 abprocessing-unit ab4 absolar-panel-small-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab4 absteel-plate ab4 abelectronic-circuit ab14 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-2 abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab4 absilver-plate ab4 abadvanced-circuit ab9 absolar-panel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-3 abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab4 absilicon-wafer ab36 abtitanium-plate ab4 abprocessing-unit ab9 absolar-panel-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-large abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-large ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab8 absteel-plate ab8 abelectronic-circuit ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-large-2 abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-large-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab8 absilver-plate ab8 abadvanced-circuit ab16 absolar-panel-large ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-large-3 abangels-power-solar-panel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-large-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab8 absilicon-wafer ab64 abtitanium-plate ab8 abprocessing-unit ab16 absolar-panel-large-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder-mixture abangels-alloys ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-solder-mixture ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab2 abtin-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-methane abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab1 abgas-methane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +glass-mixture-1 abangels-glass ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-glass-mixture ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +glass-mixture-2 abangels-glass ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-glass-mixture ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab1 absolid-lime ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +glass-mixture-3 abangels-glass ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-glass-mixture ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalumina ab1 abquartz ab1 absolid-lime ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +glass-mixture-4 abangels-glass ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-glass-mixture ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-lime ab1 absolid-sand ab1 absolid-sodium-carbonate ab1 absolid-sodium-sulfate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracker abpetrochem-buildings-steam ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-cracker ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 abbronze-alloy ab6 abelectronic-circuit ab4 abbronze-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracker-2 abpetrochem-buildings-steam ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-cracker-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abconcrete-brick ab20 absteam-cracker ab1 abadvanced-circuit ab4 abbrass-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracker-3 abpetrochem-buildings-steam ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-cracker-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab20 abtitanium-plate ab8 absteam-cracker-2 ab1 abprocessing-unit ab4 abtitanium-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracker-4 abpetrochem-buildings-steam ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-cracker-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab20 abtungsten-plate ab8 absteam-cracker-3 ab1 abadvanced-processing-unit ab4 abtungsten-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-methane abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methanol ab80 abgas-residual ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane ab60 absteam ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-steam-water abwater-boiling ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-steam-water-purified abwater-boiling ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-chemical-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab5 abpipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +strand-casting-machine abangels-strand-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstrand-casting-machine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab15 abbronze-alloy ab18 absteel-gear-wheel ab12 abelectronic-circuit ab3 abbronze-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfur abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab30 abgas-methane ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-soil abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-soil ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab1 absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-soil-alternative abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-soil ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab1 absolid-compost ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fertilizer abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fertilizer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-compost ab2 abgas-urea ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-fertiliser abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fertilizer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nitric-acid ab10 abgas-ammonia ab10 abgas-urea ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-alienated-fertilizer abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-alienated-fertilizer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-fertilizer ab1 abalien-goo ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-heavy-tank abangels-exploration-tank-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-heavy-tank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab50 abengine-unit ab20 abadvanced-circuit ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tank abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab50 abengine-unit ab32 abiron-gear-wheel ab15 abadvanced-circuit ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-tank-2 abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-tank-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab50 abtitanium-gear-wheel ab15 abtitanium-bearing ab15 abprocessing-unit ab5 abtank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-tank-3 abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-tank-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab40 abtungsten-carbide ab40 abnitinol-gear-wheel ab15 abnitinol-bearing ab15 abadvanced-processing-unit ab5 abbob-tank-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +thermal-bore abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthermal-bore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 abbronze-alloy ab18 absteel-gear-wheel ab12 abelectronic-circuit ab4 abbronze-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thermal-extractor abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthermal-extractor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab24 abconcrete-brick ab20 abbrass-gear-wheel ab12 abadvanced-circuit ab4 abbrass-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rail abtrain-transport ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrail ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab1 absteel-plate ab1 abiron-stick ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +train-stop abtrain-transport ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtrain-stop ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab6 absteel-plate ab3 abiron-stick ab6 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rail-signal abtrain-transport ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrail-signal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +locomotive abbob-locomotive ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab30 abengine-unit ab20 abelectronic-circuit ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-locomotive-2 abbob-locomotive ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-locomotive-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab10 absteel-gear-wheel ab20 absteel-bearing ab16 abadvanced-circuit ab5 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-locomotive-3 abbob-locomotive ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-locomotive-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab10 abtitanium-gear-wheel ab20 abtitanium-bearing ab16 abprocessing-unit ab5 abbob-locomotive-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-armoured-locomotive abbob-locomotive ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-armoured-locomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab25 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-armoured-locomotive-2 abbob-locomotive ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-armoured-locomotive-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab15 abtungsten-carbide ab15 abtitanium-gear-wheel ab20 abtitanium-bearing ab16 abprocessing-unit ab5 abbob-armoured-locomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab +rail-chain-signal abtrain-transport ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrail-chain-signal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cargo-wagon abbob-cargo-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab20 abiron-gear-wheel ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-cargo-wagon-2 abbob-cargo-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-cargo-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 absteel-gear-wheel ab12 absteel-bearing ab8 abcargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-cargo-wagon-3 abbob-cargo-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-cargo-wagon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abtitanium-gear-wheel ab12 abtitanium-bearing ab8 abbob-cargo-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-armoured-cargo-wagon abbob-cargo-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-armoured-cargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab25 abcargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-armoured-cargo-wagon-2 abbob-cargo-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-armoured-cargo-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab15 abtungsten-carbide ab15 abtitanium-gear-wheel ab12 abtitanium-bearing ab8 abbob-armoured-cargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-wagon abbob-fluid-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab16 abstorage-tank ab1 abiron-gear-wheel ab10 abpipe ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-fluid-wagon-2 abbob-fluid-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-fluid-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab16 abstorage-tank-2 ab1 absteel-gear-wheel ab12 absteel-bearing ab8 abfluid-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-fluid-wagon-3 abbob-fluid-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-fluid-wagon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab16 abstorage-tank-3 ab1 abtitanium-gear-wheel ab12 abtitanium-bearing ab8 abbob-fluid-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-armoured-fluid-wagon abbob-fluid-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-armoured-fluid-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab25 abfluid-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-armoured-fluid-wagon-2 abbob-fluid-wagon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-armoured-fluid-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab15 abtungsten-carbide ab15 abstorage-tank-3 ab1 abtitanium-gear-wheel ab12 abtitanium-bearing ab8 abbob-armoured-fluid-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab +basic-transport-belt abbob-logistic-tier-0 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbasic-transport-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abiron-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +transport-belt abbob-logistic-tier-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtransport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtin-plate ab2 abiron-gear-wheel ab2 abbasic-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-transport-belt abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab2 absteel-gear-wheel ab4 abtransport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-transport-belt abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab2 abcobalt-steel-gear-wheel ab4 abcobalt-steel-bearing ab4 abfast-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-transport-belt abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 abtitanium-gear-wheel ab4 abtitanium-bearing ab4 abexpress-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ultimate-transport-belt abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abultimate-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab2 abnitinol-gear-wheel ab4 abnitinol-bearing ab4 abturbo-transport-belt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +uranium-fuel-cell abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-fuel-cell ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab15 aburanium-235 ab1 aburanium-238 ab29 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +uranium-processing abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-235 ab1 aburanium-238 ab1 aburanium-234 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-uranium-fuel-cell abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-uranium-fuel-cell ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab100 aburanium-234 ab1 aburanium-238 ab199 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +kovarex-enrichment-process abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-235 ab41 aburanium-238 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-235 ab40 aburanium-238 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nuclear-fuel-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-238 ab3 abslag ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-uranium-fuel-cell ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-advanced-uranium-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-238 ab5 abslag ab10 abneptunium-240 ab1 abwater-greenyellow-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-uranium-fuel-cell ab10 abliquid-hydrofluoric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plutonium-nucleosynthesis abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-235 ab3 aburanium-238 ab10 abplutonium-239 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-235 ab5 aburanium-238 ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-valve abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-valve ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +valve-inspector abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvalve-inspector ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbasic-circuit-board ab1 abpipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-overflow-valve abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-overflow-valve ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +valve-return abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvalve-return ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbasic-circuit-board ab1 abpipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-topup-valve abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-topup-valve ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +valve-overflow abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvalve-overflow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbasic-circuit-board ab1 abpipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +valve-underflow abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvalve-underflow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbasic-circuit-board ab1 abpipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +valve-converter abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvalve-converter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbasic-circuit-board ab1 abpipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-saline-separation abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-hydroxide ab1 abgas-chlorine ab40 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-saline abwater-salination ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-saline ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab1000 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-salt-dissolving abwater-salination ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-saline ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-salt ab10 abwater-purified ab1000 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-water-electrolysis abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-deuterium ab20 abgas-oxygen ab12.5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-heavy ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +dirt-water-separation abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abgas-oxygen ab30 abgas-hydrogen ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +dirt-water-separation-2 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abangels-electrode-used ab1 abgas-oxygen ab30 abgas-hydrogen ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-electrode ab1 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-separation abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-oxygen ab40 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-separation-2 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrode-used ab1 abgas-oxygen ab40 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-electrode ab1 abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-heavy-water-separation abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-oxygen ab40 abgas-deuterium ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-heavy ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-heavy-water-separation-2 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrode-used ab1 abgas-oxygen ab40 abgas-deuterium ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-electrode ab1 abliquid-water-heavy ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-synthesis abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen ab60 abgas-hydrogen ab90 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-mineralized abwater-treatment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-mineralized ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-crushed ab10 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +synthetic-wood abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-sawing-manual abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-sawing-1 abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood ab6 - 8 absolid-saw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-saw ab1 absolid-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-sawing-2 abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood ab6 - 8 absolid-crystal-tipped-saw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-crystal-tipped-saw ab1 absolid-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-sawing-3 abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood ab6 - 8 absolid-crystal-full-saw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-crystal-full-saw ab1 absolid-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +boiler abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abboiler ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-furnace ab1 abpipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-1 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-1 ab30 - 40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab10 abdesert-1-seed ab5 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-1-seed abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-1-seed ab5 - 6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-1 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-breeding-0 abbio-fish-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-fish ab2 - 4 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abraw-fish ab2 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-butchery-0 abbio-fish-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abraw-fish ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-keeping-0 abbio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-fish ab2 abraw-fish ab1 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abraw-fish ab4 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-exchanger abangels-power-nuclear-heat-exchanger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-exchanger ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abboiler-2 ab1 abheat-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-1 abbio-puffer-breeding-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab2 abbio-puffer-egg-1 ab1 abbio-puffer-egg-2 ab1 abbio-puffer-egg-3 ab1 abbio-puffer-egg-4 ab1 abbio-puffer-egg-5 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab + ab product absolid-beans ab5 abbio-puffer-1 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-23 abbio-puffer-breeding-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-2 ab1 abbio-puffer-3 ab1 abbio-puffer-egg-1 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-fruit ab5 abbio-puffer-2 ab1 abbio-puffer-3 ab1 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-butchery-1 abbio-puffer-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-egg-1 abbio-puffer-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-egg-shell ab1 abbio-puffer-1 ab1 abbio-puffer-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-1 abbio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab3 abbio-puffer-1 ab1 abgas-acid ab220 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-1 ab4 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abgas-compressed-air ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-23 abbio-puffer-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-2 ab1 abbio-puffer-2 ab1 abbio-puffer-3 ab1 abbio-puffer-3 ab1 abgas-puffer-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-2 ab2 abbio-puffer-3 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abgas-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-wood-pulp abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-wood-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alginic-acid ab5 abcellulose-fiber ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-1 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-1 ab40 - 50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab10 abswamp-1-seed ab5 abwater-viscous-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-1-seed abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-1-seed ab5 - 6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-1 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-1 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-1 ab40 - 60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abtemperate-1-seed ab5 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-1-seed abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-1-seed ab5 - 6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-1 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-upgrade abbio-processing-blocks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-upgrade ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 abtoken-bio ab5 abelectronic-circuit ab1 abbronze-pipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-natural-1-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-natural-1-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-natural-1 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-natural-1-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-natural-1 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-natural-1-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-green-simple abbio-processing-green ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-green ab25 abalgae-brown ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-2 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-2 ab30 - 40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab10 abdesert-2-seed ab5 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-2-seed abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-2-seed ab5 - 6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-2 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-upgrade abbio-processing-blocks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-upgrade ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab10 abtoken-bio ab5 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-breeding-1 abbio-fish-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fish-1-raw ab5 - 10 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-brown ab2 abalien-fish-1-raw ab2 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-butchery-1 abbio-fish-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-1-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-keeping-1 abbio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fish-1-raw ab3 abalien-fish-1-raw ab1 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-1-raw ab4 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-12 abbio-puffer-breeding-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-2 ab1 abbio-puffer-egg-2 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-pips ab5 abbio-puffer-1 ab1 abbio-puffer-2 ab1 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-2 abbio-puffer-breeding-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-2 ab2 abbio-puffer-egg-1 ab1 abbio-puffer-egg-2 ab1 abbio-puffer-egg-3 ab1 abbio-puffer-egg-4 ab1 abbio-puffer-egg-5 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab + ab product absolid-leafs ab5 abbio-puffer-2 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-butchery-2 abbio-puffer-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-egg-2 abbio-puffer-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-egg-shell ab1 abbio-puffer-2 ab1 abbio-puffer-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-12 abbio-puffer-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-1 ab1 abbio-puffer-2 ab1 abbio-puffer-2 ab1 abgas-acid ab20 abgas-hydrogen-sulfide ab100 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-1 ab2 abbio-puffer-2 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abwater-yellow-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-2 abbio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-2 ab3 abbio-puffer-2 ab1 abgas-acid ab20 abgas-raw-1 ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-2 ab4 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abgas-ammonia ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfite-pulping abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-wood-pulp ab25 abliquid-brown-liquor ab75 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab20 abliquid-pulping-liquor ab75 abgas-ammonia ab25 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-2 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-2 ab40 - 50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab10 abswamp-2-seed ab5 abwater-heavy-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-2-seed abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-2-seed ab5 - 6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-2 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-2 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-2 ab40 - 60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abtemperate-2-seed ab5 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-2-seed abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-2-seed ab5 - 6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-2 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-raw-1-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-raw-1-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-raw-1 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-raw-1-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-raw-1 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-raw-1-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-green abbio-processing-green ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalgae-green ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-mineralized ab80 abgas-carbon-dioxide ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electrolyser abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab15 abiron-plate ab9 abbasic-circuit-board ab3 abpipe ab39 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electrolyser abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 abiron-plate ab5 abbasic-circuit-board ab5 abstone-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electrolyser-2 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab15 abbronze-alloy ab9 abangels-electrolyser ab1 abelectronic-circuit ab3 abbronze-pipe ab39 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electrolyser-2 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab10 absteel-plate ab10 abangels-electrolyser ab1 abelectronic-circuit ab5 abbronze-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electrolyser-3 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab12 abconcrete-brick ab15 abangels-electrolyser-2 ab1 abadvanced-circuit ab3 abbrass-pipe ab39 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electrolyser-3 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab10 abinvar-alloy ab10 abplastic-bar ab10 abangels-electrolyser-2 ab1 abadvanced-circuit ab10 abplastic-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +angels-electrolyser-4 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab15 abtitanium-plate ab12 abangels-electrolyser-3 ab1 abprocessing-unit ab3 abtitanium-pipe ab39 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electrolyser-4 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab10 abtitanium-plate ab10 abtungsten-plate ab10 abangels-electrolyser-3 ab1 abprocessing-unit ab10 abceramic-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +electrolyser-5 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrolyser-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-carbide ab10 abcopper-tungsten-alloy ab10 abnitinol-alloy ab10 abangels-electrolyser-4 ab1 abadvanced-processing-unit ab10 abcopper-tungsten-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +desert-3 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-3 ab30 - 40 abdesert-3-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab10 abdesert-3-seed ab5 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-3-seed abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-3-seed ab5 abdesert-3-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-3-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-breeding-2 abbio-fish-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fish-2-raw ab5 - 10 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-green ab2 abalien-fish-2-raw ab2 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-butchery-2 abbio-fish-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-2-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-keeping-2 abbio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fish-2-raw ab3 abalien-fish-2-raw ab1 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-2-raw ab4 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +kraft-cooking-washing abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-wood-pulp ab30 abliquid-black-liquor ab35 - 40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab20 abliquid-white-liquor ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-13 abbio-puffer-breeding-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-3 ab1 abbio-puffer-egg-3 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-beans ab5 abbio-puffer-1 ab1 abbio-puffer-3 ab1 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-3 abbio-puffer-breeding-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-3 ab2 abbio-puffer-egg-1 ab1 abbio-puffer-egg-2 ab1 abbio-puffer-egg-3 ab1 abbio-puffer-egg-4 ab1 abbio-puffer-egg-5 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab + ab product absolid-nuts ab5 abbio-puffer-3 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-butchery-3 abbio-puffer-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-egg-3 abbio-puffer-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-egg-shell ab1 abbio-puffer-3 ab1 abbio-puffer-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-13 abbio-puffer-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-1 ab1 abbio-puffer-3 ab1 abbio-puffer-3 ab1 abgas-acid ab20 abgas-ammonia ab100 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-1 ab2 abbio-puffer-3 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abwater-red-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-3 abbio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-3 ab3 abbio-puffer-3 ab1 abgas-acid ab20 abgas-urea ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-3 ab4 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abgas-carbon-monoxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-3 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-3 ab40 - 50 abswamp-3-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab10 abswamp-3-seed ab5 abwater-concentrated-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-3-seed abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-3-seed ab5 abswamp-3-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-3-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-upgrade abbio-processing-blocks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-upgrade ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtoken-bio ab5 abelectronic-circuit ab1 abbronze-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-3 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-3 ab40 - 60 abtemperate-3-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abtemperate-3-seed ab5 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-3-seed abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-3-seed ab5 abtemperate-3-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-3-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-ngl-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ngl-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-ngl ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-ngl-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-ngl ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ngl-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-4 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-4 ab30 - 40 abdesert-4-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab10 absolid-fertilizer ab1 abdesert-4-seed ab5 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-4-seed abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-4-seed ab5 abdesert-4-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-4-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-breeding-3 abbio-fish-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fish-3-raw ab5 - 10 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-3-raw ab2 abbio-raw-meat ab2 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-butchery-3 abbio-fish-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-3-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-keeping-3 abbio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fish-3-raw ab3 abalien-fish-3-raw ab1 abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fish-3-raw ab4 abliquid-nutrient-pulp ab20 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-14 abbio-puffer-breeding-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-4 ab1 abbio-puffer-egg-4 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-corn ab5 abbio-puffer-1 ab1 abbio-puffer-4 ab1 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-4 abbio-puffer-breeding-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-4 ab2 abbio-puffer-egg-1 ab1 abbio-puffer-egg-2 ab1 abbio-puffer-egg-3 ab1 abbio-puffer-egg-4 ab1 abbio-puffer-egg-5 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab + ab product absolid-pips ab5 abbio-puffer-4 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-butchery-4 abbio-puffer-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-egg-4 abbio-puffer-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-egg-shell ab1 abbio-puffer-4 ab1 abbio-puffer-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-14 abbio-puffer-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-1 ab1 abbio-puffer-4 ab1 abbio-puffer-4 ab1 abgas-acid ab20 abgas-hydrogen-fluoride ab100 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-1 ab2 abbio-puffer-4 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abwater-greenyellow-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-4 abbio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-4 ab3 abbio-puffer-4 ab1 abgas-acid ab20 abgas-synthesis ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-4 ab4 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abgas-sulfur-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-4 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-4 ab40 - 50 abswamp-4-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab10 absolid-fertilizer ab1 abswamp-4-seed ab5 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-4-seed abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-4-seed ab5 abswamp-4-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-4-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-4 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-4 ab40 - 60 abtemperate-4-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abtemperate-4-seed ab5 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-4-seed abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-4-seed ab5 abtemperate-4-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-4-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-5 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-5 ab30 - 40 abdesert-5-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab10 absolid-fertilizer ab1 abdesert-5-seed ab5 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-5-seed abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-5-seed ab5 abdesert-5-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-5-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-15 abbio-puffer-breeding-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-5 ab1 abbio-puffer-egg-5 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-leafs ab5 abbio-puffer-1 ab1 abbio-puffer-5 ab1 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-breeding-5 abbio-puffer-breeding-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-5 ab2 abbio-puffer-egg-1 ab1 abbio-puffer-egg-2 ab1 abbio-puffer-egg-3 ab1 abbio-puffer-egg-4 ab1 abbio-puffer-egg-5 ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab + ab product absolid-fruit ab5 abbio-puffer-5 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-butchery-5 abbio-puffer-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-egg-5 abbio-puffer-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-egg-shell ab1 abbio-puffer-5 ab1 abbio-puffer-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-15 abbio-puffer-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-1 ab1 abbio-puffer-1 ab1 abbio-puffer-5 ab1 abbio-puffer-5 ab1 abgas-acid ab20 abgas-hydrogen-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-1 ab2 abbio-puffer-5 ab2 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abwater-green-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +puffer-puffing-5 abbio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-5 ab3 abbio-puffer-5 ab1 abgas-acid ab20 abgas-hydrazine ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-5 ab4 abliquid-nutrient-pulp ab20 abgas-puffer-atmosphere ab20 abgas-hydrogen-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-5 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-5 ab40 - 50 abswamp-5-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab10 absolid-fertilizer ab1 abswamp-5-seed ab5 abwater-thin-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-5-seed abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-5-seed ab5 abswamp-5-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-5-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-5 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-5 ab40 - 60 abtemperate-5-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abtemperate-5-seed ab5 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-5-seed abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-5-seed ab5 abtemperate-5-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-5-seed-dormant ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-ammonia abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-warehouse-active-provider abangels-warehouse ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-warehouse-active-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abadvanced-circuit ab20 abangels-warehouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore7-crystallization-1 abbob-gems-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absapphire-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery-mk2-equipment abangels-personal-equipment-power-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery-mk2-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab5 abbattery-equipment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +big-electric-pole-2 abangels-big-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbig-electric-pole-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtinned-copper-cable ab5 abbrass-alloy ab5 abbig-electric-pole ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-butchery abbio-processing-buildings-alien-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-butchery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab10 abbronze-alloy ab9 absteel-gear-wheel ab6 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-artillery-wagon-2 abangels-artillery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-artillery-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab40 abtitanium-gear-wheel ab12 abtitanium-bearing ab8 abprocessing-unit ab20 abartillery-wagon ab1 abtitanium-pipe ab16 ab ab ab ab ab ab ab ab ab ab ab ab +cellulose-fiber-raw-wood abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcellulose-fiber ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +composter abbio-processing-buildings-vegetabilis-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcomposter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab10 absteel-plate ab6 absteel-gear-wheel ab6 abelectronic-circuit ab2 abwooden-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-coolant ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab80 abliquid-mineral-oil ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +energy-shield-mk2-equipment abangels-personal-equipment-combat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenergy-shield-mk2-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab5 abenergy-shield-equipment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +exoskeleton-equipment-2 abangels-personal-equipment-combat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexoskeleton-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 abcobalt-steel-gear-wheel ab30 abcobalt-steel-bearing ab30 abprocessing-unit ab10 abexoskeleton-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fermentation-fruit abbio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fermentation-raw ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-fruit ab10 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-generator abangels-power-fluid-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-generator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abbronze-alloy ab5 absteel-gear-wheel ab10 absteel-bearing ab10 abelectronic-circuit ab5 absteel-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +fusion-reactor-equipment-2 abangels-personal-equipment-power-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfusion-reactor-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab15 abalien-artifact-blue ab15 abadvanced-processing-unit ab50 abfusion-reactor-equipment ab1 abspeed-module-4 ab2 abeffectivity-module-4 ab2 abproductivity-module-4 ab2 ab ab ab ab ab ab ab ab ab ab +gas-hydrazine abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-hydrazine ab100 abgas-hydrogen-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-blue ab1 abgas-monochloramine ab50 abgas-ammonia ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-puffer-atmosphere abbio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-puffer-atmosphere ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab20 abgas-hydrogen-fluoride ab10 abgas-oxygen ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-pipe-2 abangels-power-nuclear-heat-pipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-pipe-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab10 abinvar-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-breeding-2 abbio-hogger-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-2 ab2 abbio-hogger-1 ab1 abbio-hogger-2 ab1 abbio-hogger-3 ab1 abbio-hogger-4 ab1 abbio-hogger-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abbio-hogger-2 ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-butchery-2 abbio-hogger-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-hogger-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-hogging-2 abbio-hogger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-2 ab3 - 5 abcopper-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab10 abiron-plate ab1 abbio-hogger-2 ab4 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-acetic-anhydride abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-acetic-anhydride ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-acetic-acid ab100 abgas-methanol ab50 abgas-carbon-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-fish-atmosphere abbio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab50 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-polluted-fish-atmosphere abbio-fish-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-polluted-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-raw-meat ab25 abliquid-fish-atmosphere ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-active-provider abangels-chests-small-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-active-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab3 abadvanced-circuit ab1 absteel-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-active-provider-2 abangels-chests-small-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-active-provider-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abadvanced-circuit ab3 abprocessing-unit ab1 abbrass-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-active-provider-3 abangels-chests-small-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-active-provider-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab3 abadvanced-processing-unit ab1 abtitanium-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +medium-electric-pole-2 abangels-medium-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmedium-electric-pole-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtinned-copper-cable ab2 abbrass-alloy ab2 abmedium-electric-pole ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +night-vision-equipment-2 abangels-personal-equipment-power-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnight-vision-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab2 abprocessing-unit ab5 abnight-vision-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nuclear-reactor-2 abangels-power-nuclear-reactor-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnuclear-reactor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab500 abtungsten-plate ab250 abprocessing-unit ab500 abheat-pipe-3 ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-powderizer-2 abore-powderizer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-powderizer-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-powderizer ab1 abaluminium-plate ab4 abconcrete-brick ab5 abbrass-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-copper abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-copper ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-copper ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-laser-defense-equipment-2 abangels-personal-equipment-combat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-laser-defense-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abadvanced-circuit ab5 abpersonal-laser-defense-equipment ab1 absapphire-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-antenna-equipment-2 abangels-personal-equipment-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-antenna-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-2 ab2 abroboport-door-2 ab1 abpersonal-roboport-antenna-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-chargepad-equipment-2 abangels-personal-equipment-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-chargepad-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-2 ab2 abpersonal-roboport-chargepad-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-mk2-equipment abangels-personal-equipment-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-mk2-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab5 abroboport-antenna-2 ab2 abroboport-door-2 ab1 abroboport-chargepad-2 ab2 abpersonal-roboport-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-robot-equipment-2 abangels-personal-equipment-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-robot-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abcircuit-board ab1 abbasic-electronic-components ab15 abelectronic-components ab30 abpersonal-roboport-robot-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-2 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-ore ab1 abtin-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-equipment-2 abangels-personal-equipment-power-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab2 absilver-plate ab2 abadvanced-circuit ab5 absolar-panel-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-geodes abwater-washing-filtering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgeode-blue ab2 abgeode-cyan ab1 abgeode-lightgreen ab1 abgeode-purple ab1 abgeode-red ab2 abgeode-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-heavy-mud ab40 abwater ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-engine-2 abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-engine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 absteel-gear-wheel ab5 absteel-bearing ab5 absteam-engine ab1 absteel-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +substation-2 abangels-sub-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absubstation-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtinned-copper-cable ab5 abbrass-alloy ab10 abadvanced-circuit ab5 absubstation ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-battery-2 abangels-vehicle-equipment-bobpower-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-battery-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab5 abvehicle-battery-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-big-turret-2 abangels-vehicle-equipment-bobcombat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-big-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abalien-artifact ab30 abbattery ab12 abadvanced-circuit ab20 abvehicle-big-turret-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-engine abangels-vehicle-equipment-bobpower-e ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-engine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 abnitinol-gear-wheel ab30 abnitinol-bearing ab30 abadvanced-processing-unit ab10 abvehicle-motor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-cell-2 abangels-vehicle-equipment-bobpower-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-cell-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab15 abprocessing-unit ab25 abvehicle-fusion-cell-1 ab1 abspeed-module-2 ab1 abeffectivity-module-2 ab1 abproductivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-reactor-2 abangels-vehicle-equipment-bobpower-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-reactor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab30 abprocessing-unit ab50 abvehicle-fusion-reactor-1 ab1 abspeed-module-2 ab2 abeffectivity-module-2 ab2 abproductivity-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-laser-defense-2 abangels-vehicle-equipment-bobcombat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-laser-defense-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abadvanced-circuit ab5 abvehicle-laser-defense-1 ab1 absapphire-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-2 abangels-vehicle-equipment-bobrobot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab5 abroboport-antenna-2 ab2 abroboport-door-2 ab1 abroboport-chargepad-2 ab2 abvehicle-roboport ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-antenna-equipment-2 abangels-vehicle-equipment-bobrobot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-antenna-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-2 ab2 abroboport-door-2 ab1 abvehicle-roboport-antenna-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-chargepad-equipment-2 abangels-vehicle-equipment-bobrobot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-chargepad-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-2 ab2 abvehicle-roboport-chargepad-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-robot-equipment-2 abangels-vehicle-equipment-bobrobot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-robot-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abcircuit-board ab1 abbasic-electronic-components ab15 abelectronic-components ab30 abvehicle-roboport-robot-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-shield-2 abangels-vehicle-equipment-bobcombat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-shield-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab5 abvehicle-shield-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-solar-panel-2 abangels-vehicle-equipment-bobpower-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-solar-panel-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab2 absilver-plate ab2 abadvanced-circuit ab5 abvehicle-solar-panel-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +washing-1 abwater-washing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-mud ab0 - 3 abwater-heavy-mud ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-viscous-mud ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +washing-plant abwashing-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwashing-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab25 abiron-plate ab12 abbasic-circuit-board ab4 abpipe ab27 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-sapphire-3 abbob-gems-raw ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absapphire-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absapphire-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-sapphire-4 abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absapphire-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absapphire-3 ab1 abgrinding-wheel ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-sapphire-5 abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absapphire-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absapphire-4 ab1 abpolishing-wheel ab1 abpolishing-compound ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-ammonia-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ammonia-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-compressed-air-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-compressed-air-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-compressed-air ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-hydrogen-chloride-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-chloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-puffer-atmosphere-barrel abangels-fluid-control-bio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-puffer-atmosphere-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-puffer-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-sulfur-dioxide-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-sulfur-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-hydrogen-chloride-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen-chloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-brown-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-brown-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-brown-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-pure-water-barrel abangels-fluid-control-angels-fluid-converter-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpure-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-sulfur-dioxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-greenyellow-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-greenyellow-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-greenyellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-heavy-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-heavy-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-heavy-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-purified-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +modular-armor abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodular-armor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab50 abadvanced-circuit ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-ammonia-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-compressed-air-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-compressed-air ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-compressed-air-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-hydrogen-chloride-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-chloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-puffer-atmosphere-barrel abangels-fluid-control-bio-puffer-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-puffer-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-puffer-atmosphere-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-sulfur-dioxide-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-hydrogen-chloride-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen-chloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-brown-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-brown-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-brown-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-pure-water-barrel abangels-fluid-control-angels-fluid-converter-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpure-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-sulfur-dioxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfur-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-greenyellow-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-greenyellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-greenyellow-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-heavy-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-heavy-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-heavy-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-purified-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +power-armor abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpower-armor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab40 abelectric-engine-unit ab20 abprocessing-unit ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +power-armor-mk2 abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpower-armor-mk2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab40 ablow-density-structure ab30 abprocessing-unit ab60 abspeed-module-2 ab25 abeffectivity-module-2 ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-power-armor-mk3 abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-power-armor-mk3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab25 abinvar-alloy ab25 abalien-artifact-orange ab25 abalien-artifact-blue ab25 abprocessing-unit ab50 abpower-armor-mk2 ab1 abspeed-module-4 ab5 abeffectivity-module-4 ab5 ab ab ab ab ab ab ab ab +bob-power-armor-mk4 abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-power-armor-mk4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab25 abtitanium-plate ab25 abalien-artifact-yellow ab25 abalien-artifact-purple ab25 abprocessing-unit ab40 abadvanced-processing-unit ab20 abbob-power-armor-mk3 ab1 abspeed-module-6 ab5 abeffectivity-module-6 ab5 ab ab ab ab ab ab +bob-power-armor-mk5 abangels-personal-equipment-armor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-power-armor-mk5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab25 abnitinol-alloy ab25 abalien-artifact-red ab25 abalien-artifact-green ab25 abprocessing-unit ab50 abadvanced-processing-unit ab50 abbob-power-armor-mk4 ab1 abspeed-module-8 ab5 abeffectivity-module-8 ab5 ab ab ab ab ab ab +angels-bio-yield-module abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abtoken-bio ab1 abeffectivity-module ab1 abproductivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-2 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abtoken-bio ab1 abeffectivity-module-2 ab1 abproductivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-3 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abtoken-bio ab1 abeffectivity-module-3 ab1 abproductivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-4 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abtoken-bio ab1 abeffectivity-module-4 ab1 abproductivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-5 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abtoken-bio ab1 abeffectivity-module-5 ab1 abproductivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-6 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abtoken-bio ab1 abeffectivity-module-6 ab1 abproductivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-7 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abtoken-bio ab1 abeffectivity-module-7 ab1 abproductivity-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-yield-module-8 abbio-yield-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-yield-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abtoken-bio ab1 abeffectivity-module-8 ab1 abproductivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-liquid-sulfuric-acid abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-sulfur-dioxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-liquid-nitric-acid abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-nitrogen-dioxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-compressed-air abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-compressed-air ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-air ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-liquid-ferric-chloride-solution abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-hydrogen-sulfide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-ammonia abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abammonia ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-nitrogen-monoxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitric-oxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-dinitrogen-tetroxide abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-hydrazine abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-liquid-naphtha abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abheavy-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-liquid-tungstic-acid abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-tungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-liquid-fuel-oil abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablight-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-methane abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpetroleum-gas ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-chlorine abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abchlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-oxygen abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aboxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-hydrogen abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-hydrogen-chloride abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +converter-angels-gas-nitrogen abangels-converter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-mixed-oxide-cell abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abAMOX-cell ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab20 aburanium-238 ab38 abplutonium-239 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plutonium-synthesis abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplutonium-239 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abneptunium-240 ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-mixed-oxide-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abamericium-241 ab1 abamericium-241 ab1 abcurium-245 ab1 aburanium-238 ab1 abslag ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-AMOX-cell ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-americium-regeneration abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplutonium-239 ab6 aburanium-238 ab15 ablead-oxide ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-238 ab60 abplutonium-239 ab1 abamericium-241 ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-advanced-mixed-oxide-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplutonium-239 ab2 abslag ab10 abcurium-245 ab3 aburanium-235 ab1 abwater-greenyellow-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-AMOX-cell ab10 abliquid-hydrofluoric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bobingabout-enrichment-process abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplutonium-239 ab41 aburanium-238 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-238 ab5 abplutonium-239 ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-chemical-plant abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abadvanced-chemical-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 abbronze-alloy ab6 abelectronic-circuit ab4 abbronze-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-chemical-plant-2 abpetrochem-buildings-chemical-plant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abadvanced-chemical-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab20 abtitanium-plate ab8 abadvanced-chemical-plant ab1 abprocessing-unit ab4 abtitanium-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +air-separation abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen ab50 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-compressed-air ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-nitrate-processing abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-monoxide ab40 abgas-nitrogen-dioxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-nitrate ab5 abgas-compressed-air ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-brown-burning-wash abbio-processing-brown ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-carbonate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-brown ab20 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +algae-brown-burning abbio-processing-brown ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-lithium ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-brown ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-air-filter abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-air-filter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab25 abiron-plate ab12 abbasic-circuit-board ab5 abpipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-air-filter-2 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-air-filter-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 abbronze-alloy ab12 abangels-air-filter ab1 abelectronic-circuit ab5 abbronze-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-air-filter-3 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-air-filter-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab16 abconcrete-brick ab25 abangels-air-filter-2 ab1 abadvanced-circuit ab5 abbrass-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-furnace-2 abangels-chemical-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-furnace-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-chemical-furnace ab1 abaluminium-plate ab8 abconcrete-brick ab25 abadvanced-circuit ab5 abbrass-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-flare-stack abpetrochem-buildings-steam ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-flare-stack ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 abiron-plate ab3 abbasic-circuit-board ab1 abpipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-fusion-reactor-vequip abangels-vehicle-equipment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-fusion-reactor-vequip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab20 abadvanced-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cargo-robot abangels-cargo-bots ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcargo-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abengine-unit ab1 abiron-gear-wheel ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cargo-robot-2 abangels-cargo-bots ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcargo-robot-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abelectric-engine-unit ab5 abiron-gear-wheel ab5 abadvanced-circuit ab5 abcargo-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crushed-mix2-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-brown ab1 abangels-ore3-crushed ab2 abangels-ore4-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-chunk-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abiron-ore ab2 abcopper-ore ab1 abbauxite-ore ab1 abzinc-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-chunk ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-chunk abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore2-chunk ab2 abgeode-purple ab1 abwater-greenyellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abiron-ore ab2 abcopper-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore2-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-crystal-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abiron-ore ab3 abcopper-ore ab1 abbauxite-ore ab1 abzinc-ore ab1 abcobalt-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-crystal ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-crystal abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore2-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-chunk ab2 abliquid-hydrofluoric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-pure-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab3 abcopper-ore ab2 abbauxite-ore ab1 abzinc-ore ab1 abcobalt-ore ab1 abtungsten-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-pure ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore2-pure abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore2-pure ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore2-crystal ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-crushed-hand abprocessing-crafting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore3-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-tree-arboretum-0 abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abtree-desert-seed ab2 abtoken-bio ab16 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-tree-arboretum-1 abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-rubber ab4 absolid-tree ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab5 abtree-desert-seed ab2 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-tree-arboretum-0 abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abtree-swamp-seed ab2 abtoken-bio ab16 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-tree-arboretum-0 abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abtree-temperate-seed ab2 abtoken-bio ab16 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-arboretum-0 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-tree ab1 abswamp-tree ab1 abdesert-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abtree-seed ab2 abtoken-bio ab16 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-tree-arboretum-2 abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-rubber ab7 absolid-tree ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sand ab5 absolid-fertilizer ab1 abtree-desert-seed ab2 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-tree-arboretum-1 abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-plastic ab4 absolid-tree ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab5 abtree-swamp-seed ab2 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-tree-arboretum-1 abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-resin ab4 absolid-tree ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abtree-temperate-seed ab2 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-basic-greenhouse-cycle abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-tree ab2 - 4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseedling ab10 abwater ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-tree-arboretum-2 abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-plastic ab7 absolid-tree ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-mud ab5 absolid-fertilizer ab1 abtree-swamp-seed ab2 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-tree-arboretum-2 abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-resin ab7 absolid-tree ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abtree-temperate-seed ab2 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-advanced-greenhouse-cycle abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-tree ab4 - 8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-fertilizer ab5 abseedling ab10 abwater ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-arboretum-1 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-tree ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 abtree-seed ab2 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-arboretum-2 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-tree ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abtree-seed ab2 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tree-arboretum-3 abbio-arboretum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-tree ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-soil ab5 absolid-fertilizer ab1 abtree-seed ab2 abwater ab50 abliquid-nutrient-pulp ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-plastic-tree abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-plastic ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-resin-tree abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-resin ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-rubber-tree abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-rubber ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-tree ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +assembling-machine-2 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abassembling-machine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-1 ab1 absteel-plate ab2 abiron-gear-wheel ab5 abelectronic-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +blast-furnace-2 abangels-blast-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abblast-furnace-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab50 abblast-furnace ab1 absteel-plate ab12 abelectronic-circuit ab3 absteel-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +blue-fiber-algae abbio-processing-blue ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abblue-cellulose-fiber ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-blue ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-brass-smelting-1 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-brass ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-zinc ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-brass-smelting-2 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-brass ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-tin ab6 abingot-zinc ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-brass-smelting-3 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-brass ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-lead ab6 abingot-zinc ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-brass abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrass-alloy ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-brass ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brass-alloy abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrass-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab3 abzinc-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +carbon-separation-1 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-carbon ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +casting-machine-2 abangels-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcasting-machine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 absteel-plate ab9 abcasting-machine ab1 absteel-gear-wheel ab3 abelectronic-circuit ab1 absteel-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab +cellulose-fiber-algae abbio-processing-green ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcellulose-fiber ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-green ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-chemical-furnace abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-chemical-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-furnace ab1 absteel-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-coke abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-coke ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-construction abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-construction ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abcircuit-board ab1 abbasic-electronic-components ab8 abelectronic-components ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-construction-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-construction-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abcircuit-board ab1 abbasic-electronic-components ab12 abelectronic-components ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-construction-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-construction-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 absuperior-circuit-board ab1 abbasic-electronic-components ab4 abelectronic-components ab8 abintergrated-electronics ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-construction-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-construction-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abmulti-layer-circuit-board ab1 abbasic-electronic-components ab2 abelectronic-components ab6 abintergrated-electronics ab6 abprocessing-electronics ab4 ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-construction abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-construction ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 absteel-gear-wheel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-construction-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-construction-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abbrass-gear-wheel ab2 absteel-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-construction-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-construction-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abtitanium-gear-wheel ab2 abtitanium-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-construction-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-construction-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 abtungsten-carbide ab1 abnitinol-gear-wheel ab2 abceramic-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-construction-robot-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-construction-robot-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconstruction-robot ab1 abflying-robot-frame-2 ab1 abrobot-brain-construction-2 ab1 abrobot-tool-construction-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-construction-robot-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-construction-robot-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-construction-robot-2 ab1 abflying-robot-frame-3 ab1 abrobot-brain-construction-3 ab1 abrobot-tool-construction-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-construction-robot-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-construction-robot-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-construction-robot-3 ab1 abflying-robot-frame-4 ab1 abrobot-brain-construction-4 ab1 abrobot-tool-construction-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +construction-robot abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abconstruction-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abflying-robot-frame ab1 abrobot-brain-construction ab1 abrobot-tool-construction ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-copper-pebbles abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-copper-pebbles ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-crawler abangels-vehicle-car ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-crawler ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab75 abengine-unit ab20 abiron-gear-wheel ab25 abelectronic-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-cab abangels-vehicle-car ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-cab ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab75 abengine-unit ab20 abiron-gear-wheel ab25 abelectronic-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-cab-deploy-charge abangels-vehicle-car ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-cab-deploy-charge ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 absteel-plate ab1 abiron-gear-wheel ab1 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-cab-undeploy-charge abangels-vehicle-car ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-cab-undeploy-charge ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 absteel-plate ab1 abiron-gear-wheel ab1 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-cab-energy-interface-mk1 abangels-vehicle-car ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-cab-energy-interface-mk1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abred-wire ab10 abgreen-wire ab10 abelectronic-circuit ab20 abmedium-electric-pole ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore9-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore9-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore9-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore9-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore9-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore9-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore9-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore9-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore9-anode-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-anode-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore9-anode-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore9-anode-sludge-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore9-anode-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-anode-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-angels-ore9-slime-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-slime-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abangels-ore9-slime ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-angels-ore9-slime-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abangels-ore9-slime ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-slime-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-cupric-chloride-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-cupric-chloride-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-cupric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-cupric-chloride-solution-barrel abangels-fluid-control-ore-processing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-cupric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-cupric-chloride-solution-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petri-dish abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetri-dish ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +substrate-dish abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absubstrate-dish ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpaste-cellulose ab1 abpetri-dish ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +seeded-dish abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseeded-dish ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-bacteria ab1 absubstrate-dish ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-seed abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-dust ab1 abseeded-dish ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +egg-shell-seed abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abegg-shell-seed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-shell-powder ab1 abseeded-dish ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-relay-station abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-relay-station ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-relay-station-2 abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-relay-station-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 absteel-plate ab5 abadvanced-circuit ab2 abangels-relay-station ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-relay-station-3 abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-relay-station-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 ablow-density-structure ab5 abprocessing-unit ab2 abangels-relay-station-2 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-zone-expander abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-zone-expander ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-zone-expander-2 abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-zone-expander-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 absteel-plate ab5 abadvanced-circuit ab2 abangels-zone-expander ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-zone-expander-3 abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-zone-expander-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 ablow-density-structure ab5 abprocessing-unit ab2 abangels-zone-expander-2 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-construction-zone-expander abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-construction-zone-expander ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-construction-zone-expander-2 abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-construction-zone-expander-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 absteel-plate ab5 abadvanced-circuit ab2 abangels-construction-zone-expander ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-construction-zone-expander-3 abangels-cargo-expander ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-construction-zone-expander-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 ablow-density-structure ab5 abprocessing-unit ab2 abangels-construction-zone-expander-2 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-lime abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-lime ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-frame ab1 absolid-lime ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-slurry-filtering-1 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abcrystal-seedling ab50 abwater-yellow-waste ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abcrystal-slurry ab50 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-slurry-filtering-2 abfiltering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abcrystal-seedling ab35 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abcrystal-slurry ab35 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filtration-unit abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfiltration-unit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 absteel-plate ab6 abelectronic-circuit ab5 absteel-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filtration-unit-2 abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfiltration-unit-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfiltration-unit ab1 abaluminium-plate ab8 abconcrete-brick ab25 abadvanced-circuit ab5 abbrass-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filtration-unit-3 abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfiltration-unit-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfiltration-unit-2 ab1 abreinforced-concrete-brick ab25 abtitanium-plate ab8 abprocessing-unit ab5 abtitanium-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-reactor abangels-power-nuclear-reactor-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-reactor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abburner-reactor ab1 absteel-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-reactor-from-fluid-furnace abangels-power-nuclear-reactor-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-reactor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfluid-furnace ab1 absteel-plate ab6 abheat-pipe ab8 absteel-pipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-reactor-2 abangels-power-nuclear-reactor-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-reactor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab10 abinvar-alloy ab6 abfluid-reactor ab1 abheat-pipe-2 ab8 abbrass-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coal-cracking abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab2 abwater-purified ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ferric-chloride-solution abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ferric-chloride-solution ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab1 abgas-hydrogen-chloride ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-oil-cracking abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-oil ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab30 abliquid-naphtha ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ammonia abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ammonia ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen ab10 abgas-hydrogen ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +dinitrogen-tetroxide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dinitrogen-tetroxide ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-dioxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +glycerol abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-glycerol ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-heavy-water abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-heavy ab0.5 abwater-purified ab99.5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab100 abgas-hydrogen-sulfide ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydrazine abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrazine ab8 abwater-purified ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab20 abgas-hydrogen-peroxide ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydrogen-chloride abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-chloride ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine ab13 abgas-hydrogen ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydrogen-peroxide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-peroxide ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen ab16 abgas-oxygen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petroleum-gas-cracking abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen ab250 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab20 abgas-methane ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +light-oil-cracking abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab30 abliquid-fuel-oil ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-liquid-air abbob-fluid-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-oxygen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitric-acid abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nitric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-dioxide ab20 abgas-hydrogen-peroxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitric-oxide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-monoxide ab20 abwater-purified ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab20 abgas-oxygen ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitrogen-dioxide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-dioxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-monoxide ab20 abgas-oxygen ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitrogen abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen ab20 abgas-oxygen ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pure-water abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pure-water-from-lithia abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithia-water ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brine-electrolysis abbob-fluid-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-hydroxide ab1 abgas-chlorine ab25 abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +salt-water-electrolysis abbob-fluid-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-hydroxide ab1 abgas-chlorine ab25 abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-salt ab1 abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sodium-chlorate abbob-fluid-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-chlorate ab1 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-salt ab1 abwater-purified ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sodium-perchlorate abbob-fluid-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-perchlorate ab1 abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-chlorate ab1 abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungstic-acid abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-chloride ab1 abliquid-tungstic-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-ore ab2 abgas-hydrogen-chloride ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-electrolysis abbob-fluid-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen ab20 abgas-oxygen ab12.5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-from-sour-gas abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absour-gas ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petroleum-gas-sweetening abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab20 abgas-hydrogen-sulfide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absour-gas ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfuric-acid-2 abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab50 abgas-hydrogen-peroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfuric-acid-3 abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide ab50 abgas-oxygen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pumpjack abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpumpjack ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abiron-gear-wheel ab10 abelectronic-circuit ab5 abpipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pumpjack-1 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pumpjack-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpumpjack ab1 absteel-plate ab20 absteel-gear-wheel ab10 abelectronic-circuit ab5 absteel-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pumpjack-2 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pumpjack-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-pumpjack-1 ab1 abaluminium-plate ab20 abbrass-gear-wheel ab10 abadvanced-circuit ab5 abbrass-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pumpjack-3 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pumpjack-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-pumpjack-2 ab1 abtitanium-plate ab20 abtitanium-gear-wheel ab10 abprocessing-unit ab5 abtitanium-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pumpjack-4 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pumpjack-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-pumpjack-3 ab1 abnitinol-alloy ab20 abnitinol-gear-wheel ab10 abadvanced-processing-unit ab5 abnitinol-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-miner-1 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-miner-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abiron-gear-wheel ab10 abbasic-circuit-board ab5 abcopper-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-miner-2 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-miner-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-miner-1 ab1 absteel-plate ab10 absteel-gear-wheel ab10 abelectronic-circuit ab5 abbronze-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-miner-3 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-miner-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-miner-2 ab1 abaluminium-plate ab10 abbrass-gear-wheel ab10 abadvanced-circuit ab5 abbrass-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-miner-4 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-miner-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-miner-3 ab1 abtitanium-plate ab10 abtitanium-gear-wheel ab10 abprocessing-unit ab5 abtitanium-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-miner-5 abextraction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-miner-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-miner-4 ab1 abnitinol-alloy ab10 abnitinol-gear-wheel ab10 abadvanced-processing-unit ab5 abnitinol-pipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-ethylene-oxide abpetrochem-feedstock ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-ethylene-oxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-ethylene ab100 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab20 abconcrete-brick ab50 abadvanced-circuit ab10 abbrass-pipe ab57 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-2 abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab50 abtitanium-plate ab20 abgas-refinery ab1 abprocessing-unit ab10 abtitanium-pipe ab57 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-3 abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab50 abtungsten-plate ab20 abgas-refinery-2 ab1 abadvanced-processing-unit ab10 abtungsten-pipe ab57 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refinery-4 abpetrochem-buildings-gas-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-refinery-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab50 abtungsten-carbide ab40 abgas-refinery-3 ab1 abadvanced-processing-unit ab5 abcopper-tungsten-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-refining abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-acid ab20 abliquid-ngl ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-raw-1 ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-synthesis-reforming abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-monoxide ab60 abgas-hydrogen ab90 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-generator-temperate-1 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-generator-temperate-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 absteel-plate ab6 abtemperate-tree ab1 abelectronic-circuit ab2 absteel-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-generator-swamp-1 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-generator-swamp-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 absteel-plate ab6 abswamp-tree ab1 abelectronic-circuit ab2 absteel-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-generator-desert-1 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-generator-desert-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 absteel-plate ab6 abdesert-tree ab1 abelectronic-circuit ab2 absteel-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-purple-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-purple ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-purple-processing abgeode-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-dust ab2 abstone-crushed ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-purple ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +grenade abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgrenade ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abcoal ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cluster-grenade abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcluster-grenade ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abexplosives ab5 abgrenade ab7 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydro-plant-2 abwater-treatment-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydro-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab60 absteel-plate ab12 abhydro-plant ab1 abelectronic-circuit ab12 absteel-pipe ab48 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydro-plant-3 abwater-treatment-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydro-plant-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab16 abconcrete-brick ab60 abhydro-plant-2 ab1 abadvanced-circuit ab12 abbrass-pipe ab48 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +induction-furnace-2 abangels-induction-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinduction-furnace-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 absteel-plate ab15 abinduction-furnace ab1 absteel-gear-wheel ab9 abelectronic-circuit ab5 absteel-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab +liquid-ethylbenzene-catalyst abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ethylbenzene ab80 abgas-hydrogen-fluoride ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-benzene ab50 abgas-ethylene ab50 abliquid-hydrofluoric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-glass-smelting abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-glass ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-glass-mixture ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder-smelting-1 abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-solder ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-solder-mixture ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder-smelting-2 abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-solder ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-lead ab12 abingot-tin ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder-smelting-3 abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-solder ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-tin ab12 abingot-zinc ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder-smelting-4 abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-solder ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab12 abingot-silver ab12 abingot-tin ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquifier abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquifier ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 abiron-plate ab6 abbasic-circuit-board ab2 abpipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquifier-2 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquifier-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab10 abbronze-alloy ab6 abliquifier ab1 abelectronic-circuit ab2 abbronze-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquifier-3 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquifier-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abconcrete-brick ab10 abliquifier-2 ab1 abadvanced-circuit ab2 abbrass-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquifier-4 abpetrochem-buildings-electrolyser ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquifier-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab10 abtitanium-plate ab8 abliquifier-3 ab1 abprocessing-unit ab2 abtitanium-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lithium-chloride abangels-alloys ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-lithium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithia-water ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lithium abangels-alloys ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablithium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-lithium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lithium-cobalt-oxide abangels-alloys ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablithium-cobalt-oxide ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-oxide ab1 ablithium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lithium-water-electrolysis abangels-alloys ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablithium-perchlorate ab1 absolid-salt ab1 abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-lithium ab1 absolid-sodium-perchlorate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-wagon abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab35 abengine-unit ab25 abelectronic-circuit ab15 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-wagon-2 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab40 abengine-unit ab30 abcrawler-locomotive-wagon ab1 abspeed-module ab1 abeffectivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-wagon-3 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-wagon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab40 ablow-density-structure ab40 abcrawler-locomotive-wagon-2 ab1 abspeed-module-2 ab1 abeffectivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-wagon-4 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-wagon-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab45 ablow-density-structure ab60 abcrawler-locomotive-wagon-3 ab1 abspeed-module-3 ab1 abeffectivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-locomotive-wagon-5 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-locomotive-wagon-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab50 abrocket-control-unit ab2 ablow-density-structure ab80 abcrawler-locomotive-wagon-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-science-pack ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbasic-transport-belt ab1 abinserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +storage-tank abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstorage-tank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab5 abbob-small-inline-storage-tank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-storage-tank-all-corners abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-storage-tank-all-corners ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab5 abbob-small-storage-tank ab1 abpipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +storage-tank-2 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstorage-tank-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 abstorage-tank ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-storage-tank-all-corners-2 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-storage-tank-all-corners-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 abbob-storage-tank-all-corners ab1 absteel-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +storage-tank-3 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstorage-tank-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abstorage-tank-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-storage-tank-all-corners-3 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-storage-tank-all-corners-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abbob-storage-tank-all-corners-2 ab1 abtitanium-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +storage-tank-4 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstorage-tank-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 abstorage-tank-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-storage-tank-all-corners-4 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-storage-tank-all-corners-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 abbob-storage-tank-all-corners-3 ab1 abnitinol-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-medium-eggsperiment abbio-biter-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-medium-egg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-4 ab1 abcrystal-seed ab1 abcrystal-enhancer ab1 abcrystal-splinter-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-medium-keeping abbio-biter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-medium ab3 abbiter-medium ab1 abcrystal-shard-raw ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-medium ab4 abbio-alien-processed-meat ab3 abliquid-nutrient-pulp ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-medium-butchering abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 abcrystal-shard-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-medium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-medium-breeding abbio-biter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-queen-medium ab1 abbiter-queen-medium ab1 abbiter-medium-egg ab1 abbiter-medium-egg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-queen-medium ab2 abbio-alien-processed-meat ab2 abliquid-nutrient-pulp ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-medium abbio-biter-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-medium ab1 abbiter-queen-medium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-medium-egg ab1 abbio-alien-processed-meat ab1 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-queen-medium-butchering abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 - 2 abcrystal-shard-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-queen-medium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-mineral-sludge-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmineral-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-mineral-sludge-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-mixing-furnace abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-mixing-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-mixing-furnace abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-mixing-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 absteel-plate ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-mixing-furnace abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-mixing-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-mixing-furnace ab1 absteel-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mold-expendable abangels-mold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmold-expendable ab1 abslag ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmotor-casing-0 ab1 absolid-sand ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +engine-unit abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abengine-unit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abiron-gear-wheel ab1 abpipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-engine-unit abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-engine-unit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abengine-unit ab1 abelectronic-circuit ab2 ablubricant ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nutrients-refining-1 abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-oil ab40 abgas-acetone ab40 abgas-synthesis ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nutrient-pulp ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nutrients-refining-2 abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-oil ab60 abliquid-glycerol ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nutrient-pulp ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nutrients-refining-3 abbio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-acetone ab60 abgas-ethanol ab30 abgas-butane ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nutrient-pulp ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-vegetable-oil-filtering-1 abbio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abliquid-vegetable-oil ab160 abliquid-nutrient-pulp ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abliquid-raw-vegetable-oil ab100 abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-fish-oil-filtering-1 abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abliquid-fish-oil ab100 abliquid-mineral-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abliquid-raw-fish-oil ab150 abthermal-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-vegetable-oil-filtering-2 abbio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abliquid-vegetable-oil ab180 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abliquid-raw-vegetable-oil ab100 abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-raw-fish-oil-filtering-2 abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abliquid-fish-oil ab125 abliquid-mineral-oil ab75 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abliquid-raw-fish-oil ab150 abthermal-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-vegetable-oil-refining abbio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-oil ab70 abliquid-mineral-oil ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-vegetable-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-fish-oil-refining abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fermentation-raw ab40 ablubricant ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fish-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-liquid-fish-oil-refining abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fermentation-raw ab75 abliquid-mineral-oil ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fish-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-refinery abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-refinery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 absteel-gear-wheel ab12 abelectronic-circuit ab4 absteel-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-refinery-2 abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-refinery-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 aboil-refinery ab1 abbrass-gear-wheel ab12 abadvanced-circuit ab4 abbrass-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-refinery-3 abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-refinery-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab8 aboil-refinery-2 ab1 abtitanium-gear-wheel ab12 abprocessing-unit ab4 abtitanium-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-refinery-4 abpetrochem-buildings-oil-refinery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-refinery-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab8 aboil-refinery-3 ab1 abtungsten-gear-wheel ab12 abadvanced-processing-unit ab4 abtungsten-pipe ab36 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-refining abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-oil-residual ab1 abliquid-mineral-oil ab20 abliquid-fuel-oil ab30 abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-crusher abore-crusher ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-crusher ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abburner-ore-crusher ab1 abstone-brick ab15 abiron-plate ab9 abiron-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-floatation-cell-2 abore-floatation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-floatation-cell-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-floatation-cell ab1 abaluminium-plate ab16 abconcrete-brick ab40 abadvanced-circuit ab8 abbrass-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-leaching-plant-2 abore-leaching ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-leaching-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-leaching-plant ab1 abreinforced-concrete-brick ab40 abtitanium-plate ab16 abprocessing-unit ab8 abtitanium-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-processing-machine-2 abangels-processing-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-processing-machine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-processing-machine ab1 abaluminium-plate ab8 abconcrete-brick ab20 abbrass-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-refinery-2 abore-refining ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-refinery-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-refinery ab1 abreinforced-concrete-brick ab100 abtungsten-plate ab48 abadvanced-processing-unit ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-sorting-facility-2 abore-sorter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-sorting-facility-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-sorting-facility ab1 abclay-brick ab60 absteel-plate ab36 absteel-gear-wheel ab24 abelectronic-circuit ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-press-2 abangels-pellet-press ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-press-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-press ab1 abreinforced-concrete-brick ab10 abtitanium-plate ab8 abtitanium-gear-wheel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ap-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abap-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abap-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ap-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abap-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abap-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ap-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abap-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abalien-blue-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-piercing-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-piercing-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpiercing-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +piercing-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpiercing-rocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abalien-blue-alloy ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-ap-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-ap-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-blue-alloy ab1 abcordite ab1 abshotgun-shell-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cannon-turret-shell-2 abangels-physical-bc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcannon-turret-shell-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab4 abpiercing-shotgun-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-roboport-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-roboport-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab15 abroboport ab1 abroboport-antenna-2 ab5 abroboport-door-2 ab1 abroboport-chargepad-2 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-roboport-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-roboport-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab15 abbob-roboport-2 ab1 abroboport-antenna-3 ab5 abroboport-door-3 ab1 abroboport-chargepad-3 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-roboport-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-roboport-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab15 abbob-roboport-3 ab1 abroboport-antenna-4 ab5 abroboport-door-4 ab1 abroboport-chargepad-4 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roboport abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abroboport ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab15 abroboport-antenna-1 ab5 abroboport-door-1 ab1 abroboport-chargepad-1 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-zone-expander abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-zone-expander ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abroboport-antenna-1 ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-zone-expander-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-zone-expander-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab5 abbob-logistic-zone-expander ab1 abroboport-antenna-2 ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-zone-expander-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-zone-expander-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abbob-logistic-zone-expander-2 ab1 abroboport-antenna-3 ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-zone-expander-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-zone-expander-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 abbob-logistic-zone-expander-3 ab1 abroboport-antenna-4 ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robochest abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robochest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-chest ab1 abroboport-antenna-1 ab1 abroboport-door-1 ab1 abroboport-chargepad-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robochest-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robochest-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abbob-robochest ab1 abroboport-door-2 ab1 abroboport-chargepad-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robochest-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robochest-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab8 abbob-robochest-2 ab1 abroboport-door-3 ab1 abroboport-chargepad-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robochest-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robochest-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab8 abbob-robochest-3 ab1 abroboport-door-4 ab1 abroboport-chargepad-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abroboport-antenna-1 ab1 abroboport-chargepad-1 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab10 abbob-robo-charge-port ab1 abroboport-chargepad-2 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab10 abbob-robo-charge-port-2 ab1 abroboport-chargepad-3 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab10 abbob-robo-charge-port-3 ab1 abroboport-chargepad-4 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-large abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-large ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab15 abroboport-antenna-1 ab1 abroboport-chargepad-1 ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-large-2 abangels-roboport-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-large-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab15 abbob-robo-charge-port-large ab1 abroboport-chargepad-2 ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-large-3 abangels-roboport-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-large-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab15 abbob-robo-charge-port-large-2 ab1 abroboport-chargepad-3 ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robo-charge-port-large-4 abangels-roboport-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robo-charge-port-large-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab15 abbob-robo-charge-port-large-3 ab1 abroboport-chargepad-4 ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-mixer-2 abangels-powder-mixer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-mixer-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-mixer ab1 abaluminium-plate ab4 abconcrete-brick ab5 abbrass-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bauxite-ore-processing abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-aluminium ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbauxite-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chrome-ore-processing abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-chrome ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abchrome-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-ore-processing abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-cobalt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-ore-processing abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-copper ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gold-ore-processing abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-gold ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-ore-processing abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-iron ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lead-ore-processing abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-lead ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +manganese-ore-processing abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-manganese ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmanganese-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nickel-ore-processing abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-nickel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnickel-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +platinum-ore-processing abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-platinum ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplatinum-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silica-ore-processing abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-silica ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-ore-processing abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-silver ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tin-ore-processing abangels-tin ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-tin ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtin-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-ore-processing abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-titanium ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrutile-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-ore-processing abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-tungsten ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +zinc-ore-processing abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessed-zinc ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abzinc-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-cellulose-acetate-mixture-barrel abangels-fluid-control-bio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-cellulose-acetate-mixture-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-cellulose-acetate-mixture ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-cellulose-acetate-mixture-barrel abangels-fluid-control-bio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-cellulose-acetate-mixture ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-cellulose-acetate-mixture-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-cellulose-acetate-barrel abangels-fluid-control-bio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-cellulose-acetate-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-cellulose-acetate ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-cellulose-acetate-barrel abangels-fluid-control-bio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-cellulose-acetate ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-cellulose-acetate-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-fermentation-raw-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fermentation-raw-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-fermentation-raw ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-fermentation-raw-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-fermentation-raw ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fermentation-raw-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-nutrient-pulp-barrel abangels-fluid-control-bio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-nutrient-pulp ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-nutrient-pulp-barrel abangels-fluid-control-bio-processor-nutrient ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-nutrient-pulp ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nutrient-pulp-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-acetic-acid-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-acetic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-acetic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-acetic-acid-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-acetic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-acetic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-propionic-acid-barrel abangels-fluid-control-bio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-propionic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-propionic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-propionic-acid-barrel abangels-fluid-control-bio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-propionic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-propionic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-raw-vegetable-oil-barrel abangels-fluid-control-bio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-raw-vegetable-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-raw-vegetable-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-raw-vegetable-oil-barrel abangels-fluid-control-bio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-raw-vegetable-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-raw-vegetable-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-vegetable-oil-barrel abangels-fluid-control-bio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-vegetable-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-vegetable-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-vegetable-oil-barrel abangels-fluid-control-bio-processor-press-vegetables ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-vegetable-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-vegetable-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-acetic-anhydride-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-acetic-anhydride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-acetic-anhydride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-acetic-anhydride-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-acetic-anhydride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-acetic-anhydride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-ethanol-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ethanol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ethanol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-ethanol-barrel abangels-fluid-control-bio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ethanol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethanol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pump abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abengine-unit ab1 abcopper-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pump-2 abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pump-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abpump ab1 abbronze-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pump-3 abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pump-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abbob-pump-2 ab1 abbrass-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-pump-4 abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-pump-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 abbob-pump-3 ab1 abcopper-tungsten-pipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +red-fiber-algae abbio-processing-red ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abred-cellulose-fiber ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-red ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-wall abangels-exploration-walls ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-wall ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gate abangels-exploration-walls ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abelectronic-circuit ab2 abstone-wall ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +repair-pack abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrepair-pack ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-gear-wheel ab2 abbasic-circuit-board ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +repair-pack-2 abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrepair-pack-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-gear-wheel ab2 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +repair-pack-3 abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrepair-pack-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab2 abbrass-gear-wheel ab2 abadvanced-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +repair-pack-4 abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrepair-pack-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 abtitanium-gear-wheel ab2 abtitanium-bearing ab1 abprocessing-unit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +repair-pack-5 abangels-chests-small-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrepair-pack-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-carbide ab2 abnitinol-gear-wheel ab2 abnitinol-bearing ab1 abadvanced-processing-unit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-resin-barrel abangels-fluid-control-petrochem-solids-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-resin-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-resin ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-resin-1 abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-resin ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-urea ab20 abgas-formaldehyde ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-resin-2 abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-resin ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-melamine ab20 abgas-formaldehyde ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-resin-3 abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-resin ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-bisphenol-a ab20 abgas-epichlorhydrin ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-resin-barrel abangels-fluid-control-petrochem-solids-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-resin ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-resin-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-resin-wood abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abresin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-resin abpetrochem-solids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abresin ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-resin ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-rubber-1 abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-rubber ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-styrene ab20 abgas-butadiene ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-rubber abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrubber ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abresin ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-rubber abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrubber ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-rubber ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +insulated-cable abpetrochem-solids-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinsulated-cable ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtinned-copper-cable ab60 abrubber ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-ruby abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-ruby ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbattery ab4 ablaser-rifle-battery-case ab1 abruby-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-saw abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-saw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-crystal-tipped-saw abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-crystal-tipped-saw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-saw ab1 abcrystal-splinter-harmonic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-crystal-full-saw abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-crystal-full-saw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-crystal-tipped-saw ab1 abcrystal-shard-harmonic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sintering-oven-2 abangels-sintering-oven ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absintering-oven-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab45 abbronze-alloy ab24 absintering-oven ab1 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slow-accumulator abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslow-accumulator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abbattery ab4 abelectronic-circuit ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slow-accumulator-2 abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslow-accumulator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 ablithium-ion-battery ab4 abadvanced-circuit ab4 abslow-accumulator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slow-accumulator-3 abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslow-accumulator-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 absilver-zinc-battery ab4 abprocessing-unit ab4 abslow-accumulator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-carbonate abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-carbonate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium ab5 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-cyanide abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-cyanide ab5 abcatalyst-metal-carrier ab1 abgas-hydrogen ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-carbon ab1 absolid-sodium ab5 abcatalyst-metal-green ab1 abgas-ammonia ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sodium-cobaltate abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absodium-cobaltate ab5 abgas-oxygen ab200 abgas-carbon-dioxide ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-oxide ab5 absolid-sodium-carbonate ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-naphtha abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab1 abliquid-naphtha ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-lime abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-lime ab4 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-limestone ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-salt-from-saline abwater-salination ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-salt ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab1000 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sulfur abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide ab60 abgas-oxygen ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +antron abangels-vehicle-spidertron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abantron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmech-frame ab1 abmech-leg ab6 abgun-turret ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tankotron abangels-vehicle-spidertron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtankotron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmech-armor-plate ab5 abmech-frame ab1 abmech-leg ab6 abspidertron-cannon ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +spidertron abangels-vehicle-spidertron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspidertron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrtg ab2 abmech-armor-plate ab10 abmech-frame ab1 abmech-leg ab8 abrocket-launcher ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-spidertron abangels-vehicle-spidertron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-spidertron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrtg ab3 abmech-armor-plate ab20 abmech-frame ab1 abmech-leg ab8 abrocket-launcher ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-spidertron abangels-vehicle-spidertron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-spidertron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-chest ab1 abmech-armor-plate ab5 abmech-frame ab1 abmech-leg ab8 abgun-turret ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-full-cutting abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-full-blue-cut ab1 abcrystal-full-red-cut ab1 abcrystal-full-green-cut ab1 abcrystal-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-full-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-cutting abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-blue-cut ab1 abcrystal-shard-red-cut ab1 abcrystal-shard-green-cut ab1 abcrystal-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-shard-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-cutting abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-blue-cut ab1 abcrystal-splinter-red-cut ab1 abcrystal-splinter-green-cut ab1 abcrystal-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-splinter-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-ethane abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ethylene ab80 abgas-residual ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethane ab60 absteam ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-chemical-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 absteel-plate ab6 absteel-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 absteel-plate ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-furnace ab1 absteel-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +strand-casting-machine-2 abangels-strand-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstrand-casting-machine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab24 abconcrete-brick ab15 abstrand-casting-machine ab1 abbrass-gear-wheel ab12 abadvanced-circuit ab3 abbrass-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab +artillery-turret abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abartillery-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab60 absteel-plate ab60 abiron-gear-wheel ab40 abadvanced-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flamethrower-turret abangels-fire ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflamethrower-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abengine-unit ab5 abflamethrower ab1 abpipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-cannon-turret abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-cannon-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab15 abelectronic-circuit ab10 abshotgun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-sniper-turret-1 abangels-physical-ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-sniper-turret-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 abiron-plate ab10 abrifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gun-turret abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgun-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 abiron-plate ab10 absubmachine-gun ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-turret abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abbattery ab12 abelectronic-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-plasma-turret-1 abangels-electric-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-plasma-turret-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab60 abalien-artifact ab20 abbattery ab48 abelectronic-circuit ab80 ablaser-rifle ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-rocket-turret abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rocket-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectronic-circuit ab10 abrocket-launcher ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-artillery-turret-2 abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-artillery-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab60 abtitanium-plate ab60 abtitanium-gear-wheel ab40 abprocessing-unit ab20 abartillery-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-gun-turret-2 abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-gun-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 absteel-gear-wheel ab10 abgun-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-sniper-turret-2 abangels-physical-ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-sniper-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abinvar-alloy ab20 abcobalt-steel-gear-wheel ab20 abcobalt-steel-bearing ab20 abbob-sniper-turret-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-laser-turret-2 abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-laser-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abadvanced-circuit ab20 ablaser-turret ab1 absapphire-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-plasma-turret-2 abangels-electric-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-plasma-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab80 abalien-artifact ab30 abbattery ab48 abadvanced-circuit ab80 abbob-plasma-turret-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-artillery-turret-3 abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-artillery-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-carbide ab60 abnitinol-alloy ab60 abnitinol-gear-wheel ab40 abadvanced-processing-unit ab20 abbob-artillery-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-turret abangels-fire ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-bio-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abengine-unit ab5 abbio-gun ab1 abpipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-gun-turret-3 abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-gun-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 abbrass-gear-wheel ab10 absteel-bearing ab10 abbob-gun-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-sniper-turret-3 abangels-physical-ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-sniper-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abnitinol-alloy ab20 abtitanium-gear-wheel ab20 abnitinol-bearing ab20 abbob-sniper-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-laser-turret-3 abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-laser-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 ablithium-ion-battery ab12 abbob-laser-turret-2 ab1 abemerald-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-plasma-turret-3 abangels-electric-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-plasma-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab80 abalien-artifact-orange ab10 abalien-artifact-blue ab10 ablithium-ion-battery ab48 abadvanced-circuit ab80 abbob-plasma-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +bob-gun-turret-4 abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-gun-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abtitanium-gear-wheel ab10 abtitanium-bearing ab10 abbob-gun-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-laser-turret-4 abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-laser-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 ablithium-ion-battery ab12 abprocessing-unit ab20 abbob-laser-turret-3 ab1 abtopaz-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-plasma-turret-4 abangels-electric-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-plasma-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab80 abalien-artifact-yellow ab10 abalien-artifact-purple ab10 ablithium-ion-battery ab48 abprocessing-unit ab80 abbob-plasma-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +bob-gun-turret-5 abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-gun-turret-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 abnitinol-gear-wheel ab10 abnitinol-bearing ab10 abbob-gun-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-laser-turret-5 abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-laser-turret-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 absilver-zinc-battery ab12 abadvanced-processing-unit ab20 abbob-laser-turret-4 ab1 abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-plasma-turret-5 abangels-electric-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-plasma-turret-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab80 abalien-artifact-red ab10 abalien-artifact-green ab10 absilver-zinc-battery ab48 abadvanced-processing-unit ab80 abbob-plasma-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +basic-underground-belt abbob-logistic-tier-0 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbasic-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab2 abwood ab2 abbasic-transport-belt ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +underground-belt abbob-logistic-tier-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abunderground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtin-plate ab14 abiron-gear-wheel ab20 abbasic-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-underground-belt abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab14 absteel-gear-wheel ab20 abunderground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-underground-belt abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab14 abcobalt-steel-gear-wheel ab20 abcobalt-steel-bearing ab20 abfast-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-underground-belt abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab14 abtitanium-gear-wheel ab20 abtitanium-bearing ab20 abexpress-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ultimate-underground-belt abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abultimate-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab14 abnitinol-gear-wheel ab20 abnitinol-bearing ab20 abturbo-underground-belt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-purification abwater-treatment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-saline ab20 abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +red-wire abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abred-wire ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinsulated-cable ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-wire abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-wire ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinsulated-cable ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-yellow-from-basic abbio-processing-alien-large-convert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-yellow ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab1 abalien-artifact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-yellow-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact-yellow ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-yellow abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-gold ab1 abdiamond-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact-yellow abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-gathering-turret abangels-electric-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-gathering-turret ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab30 abengine-unit ab5 abiron-gear-wheel ab15 abpipe ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +boiler-2 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abboiler-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abboiler ab1 absteel-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-garden-cultivating-b abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-garden ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abdesert-garden ab1 abtoken-bio ab30 abwater-mineralized ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-exchanger-2 abangels-power-nuclear-heat-exchanger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-exchanger-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab10 abheat-pipe-2 ab4 abheat-exchanger ab1 abbrass-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-pulping-liquor abbio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-pulping-liquor ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab100 abgas-oxygen ab40 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paper-bleaching-1 abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-paper ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-wood-pulp ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-desert-1 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-beans ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-1 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-swamp-1 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-nuts ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-1 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-temperate-1 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-corn ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-1 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-garden-cultivating-b abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-garden ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abswamp-garden ab1 abtoken-bio ab30 abwater-mineralized ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-farm abbio-processing-buildings-vegetabilis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-farm ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab32 abconcrete-brick ab45 abtemperate-upgrade ab1 abcrop-farm ab1 abadvanced-circuit ab2 abbrass-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab +temperate-garden-cultivating-b abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-garden ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-alienated-fertilizer ab2 abtemperate-garden ab1 abtoken-bio ab30 abwater-mineralized ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-methane-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-fish-atmosphere-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fish-atmosphere-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-multi-phase-oil-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-multi-phase-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-multi-phase-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-methane-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-fish-atmosphere-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fish-atmosphere-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-multi-phase-oil-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-multi-phase-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-multi-phase-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-bearing-ball abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-bearing-ball ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-steel-bearing-ball abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-steel-bearing-ball ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-steel-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-bearing-ball abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-bearing-ball ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ceramic-bearing-ball abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abceramic-bearing-ball ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitinol-bearing-ball abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-bearing-ball ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brown-liquor-recovery abbio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-sulfate ab1 abwater-red-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab2 abliquid-brown-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-garden-cultivating-a abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtoken-bio ab32 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paper-bleaching-2 abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-paper ab5 absolid-sodium-hypochlorite ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab2 absolid-wood-pulp ab2 abgas-chlorine ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-desert-2 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-corn ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-2 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-swamp-2 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-beans ab14 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-2 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-temperate-2 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcellulose-fiber ab22 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-2 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-farm abbio-processing-buildings-vegetabilis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-farm ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab32 abconcrete-brick ab45 abswamp-upgrade ab1 abcrop-farm ab1 abadvanced-circuit ab2 abbrass-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab +swamp-garden-cultivating-a abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtoken-bio ab32 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-garden-cultivating-a abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtoken-bio ab32 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-crude-oil-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrude-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abcrude-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-ethane-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ethane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ethane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-polluted-fish-atmosphere-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-polluted-fish-atmosphere-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-polluted-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-crude-oil-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abcrude-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-ethane-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ethane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-polluted-fish-atmosphere-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-polluted-fish-atmosphere ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-polluted-fish-atmosphere-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brass-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbrass-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrass-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-bearing abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 absteel-bearing-ball ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-steel-bearing abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-steel-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-steel-alloy ab1 abcobalt-steel-bearing-ball ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-bearing abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abtitanium-bearing-ball ab16 ablubricant ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ceramic-bearing abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abceramic-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 abceramic-bearing-ball ab16 ablubricant ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitinol-bearing abbob-bearings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 abnitinol-bearing-ball ab16 ablubricant ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-farm abbio-processing-buildings-vegetabilis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-farm ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab32 abconcrete-brick ab45 abdesert-upgrade ab1 abcrop-farm ab1 abadvanced-circuit ab2 abbrass-pipe ab9 ab ab ab ab ab ab ab ab ab ab ab ab +desert-garden-a abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtoken-bio ab16 abdesert-1-seed ab5 abdesert-2-seed ab5 abdesert-3-seed ab5 abdesert-4-seed ab5 abdesert-5-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paper-bleaching-3 abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-paper ab6 absolid-sodium-carbonate ab2 abwater-yellow-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab2 absolid-wood-pulp ab2 abgas-oxygen ab60 abgas-sulfur-dioxide ab40 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-desert-3 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-pips ab24 abcrystal-dust ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-3 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-swamp-3 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-leafs ab36 absolid-nuts ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-3 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-temperate-3 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-leafs ab32 abcellulose-fiber ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-3 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-garden-a abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtoken-bio ab16 abswamp-1-seed ab5 abswamp-2-seed ab5 abswamp-3-seed ab5 abswamp-4-seed ab5 abswamp-5-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-garden-a abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtoken-bio ab16 abtemperate-1-seed ab5 abtemperate-2-seed ab5 abtemperate-3-seed ab5 abtemperate-4-seed ab5 abtemperate-5-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-butane-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-butane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-butane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-butane-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-butane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-butane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-steel-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-steel-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-steel-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +desert-garden-b abfarming-desert-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdesert-1-seed ab5 abdesert-2-seed ab5 abdesert-3-seed ab5 abdesert-4-seed ab5 abdesert-5-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-desert-4 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fruit ab12 abcellulose-fiber ab14 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-4 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-swamp-4 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-leafs ab24 abcrystal-dust ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-4 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-temperate-4 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fruit ab10 absolid-pips ab28 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-4 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +swamp-garden-b abfarming-swamp-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abswamp-1-seed ab5 abswamp-2-seed ab5 abswamp-3-seed ab5 abswamp-4-seed ab5 abswamp-5-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +temperate-garden-b abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-1-seed ab5 abtemperate-2-seed ab5 abtemperate-3-seed ab5 abtemperate-4-seed ab5 abtemperate-5-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-propene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-propene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-propene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-propene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-propene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-propene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +garden-cultivating abfarming-temperate-seed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtemperate-garden ab1 abdesert-garden ab1 abswamp-garden ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-wood-pulp ab5 abtoken-bio ab1 abwater-mineralized ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-desert-5 abfarming-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-nuts ab4 absolid-corn ab12 abcrystal-dust ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-5 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-swamp-5 abfarming-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fruit ab16 absolid-pips ab12 abalien-bacteria ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-5 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sorting-temperate-5 abfarming-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-corn ab10 abcellulose-fiber ab8 abcrystal-dust ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-5 ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitinol-gear-wheel abbob-gears ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +aerobic-fermentation abbio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 abliquid-acetic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fermentation-raw ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-logistic-chest-passive-provider abangels-chests-big ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-logistic-chest-passive-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abelectronic-circuit ab5 abangels-big-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-warehouse-passive-provider abangels-warehouse ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-warehouse-passive-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectronic-circuit ab20 abangels-warehouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore7-crystallization-4 abbob-gems-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abemerald-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery-mk3-equipment abangels-personal-equipment-power-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery-mk3-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithium-ion-battery ab5 abbattery-mk2-equipment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +big-electric-pole-3 abangels-big-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbig-electric-pole-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abinsulated-cable ab5 abbig-electric-pole-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-hatchery abbio-processing-buildings-alien-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hatchery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-lamp ab3 abaluminium-plate ab8 abconcrete-brick ab10 abadvanced-circuit ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-processor abbio-processing-buildings-vegetabilis-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-processor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 absteel-plate ab15 absteel-gear-wheel ab12 abelectronic-circuit ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-artillery-wagon-3 abangels-artillery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-artillery-wagon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab10 abtungsten-carbide ab10 abnitinol-alloy ab20 abnitinol-gear-wheel ab12 abnitinol-bearing ab8 abadvanced-processing-unit ab20 abbob-artillery-wagon-2 ab1 abnitinol-pipe ab16 ab ab ab ab ab ab ab ab +energy-shield-mk3-equipment abangels-personal-equipment-combat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenergy-shield-mk3-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab10 abadvanced-processing-unit ab5 abenergy-shield-mk2-equipment ab2 abproductivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +exoskeleton-equipment-3 abangels-personal-equipment-combat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexoskeleton-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abtitanium-gear-wheel ab30 abtitanium-bearing ab30 abadvanced-processing-unit ab10 abexoskeleton-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fluid-generator-2 abangels-power-fluid-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-generator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab10 abinvar-alloy ab5 abbrass-gear-wheel ab10 absteel-bearing ab5 abadvanced-circuit ab5 abfluid-generator ab1 abbrass-pipe ab5 ab ab ab ab ab ab ab ab ab ab +fusion-reactor-equipment-3 abangels-personal-equipment-power-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfusion-reactor-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab15 abalien-artifact-purple ab15 abadvanced-processing-unit ab50 abfusion-reactor-equipment-2 ab1 abspeed-module-6 ab2 abeffectivity-module-6 ab2 abproductivity-module-6 ab2 ab ab ab ab ab ab ab ab ab ab +gas-methylamine abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methylamine ab200 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methanol ab50 abgas-ammonia ab250 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-pipe-3 abangels-power-nuclear-heat-pipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-pipe-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-plate ab10 abtitanium-plate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-breeding-3 abbio-hogger-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-3 ab2 abbio-hogger-1 ab1 abbio-hogger-2 ab1 abbio-hogger-3 ab1 abbio-hogger-4 ab1 abbio-hogger-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abbio-hogger-3 ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-butchery-3 abbio-hogger-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-hogger-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-hogging-3 abbio-hogger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-3 ab3 - 5 abcopper-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab10 abiron-plate ab1 abbio-hogger-3 ab4 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-acetate-mixture abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-cellulose-acetate-mixture ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab10 abliquid-acetic-acid ab40 abliquid-acetic-anhydride ab40 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-passive-provider abangels-chests-small-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-passive-provider ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab3 abadvanced-circuit ab1 absteel-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-passive-provider-2 abangels-chests-small-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-passive-provider-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abadvanced-circuit ab3 abprocessing-unit ab1 abbrass-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-passive-provider-3 abangels-chests-small-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-passive-provider-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab3 abadvanced-processing-unit ab1 abtitanium-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +medium-electric-pole-3 abangels-medium-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmedium-electric-pole-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 abinsulated-cable ab2 abmedium-electric-pole-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +night-vision-equipment-3 abangels-personal-equipment-power-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnight-vision-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab10 abadvanced-processing-unit ab5 abnight-vision-equipment-2 ab1 abdiamond-5 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nuclear-reactor-3 abangels-power-nuclear-reactor-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnuclear-reactor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab500 abtungsten-carbide ab250 abadvanced-processing-unit ab500 abheat-pipe-4 ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-powderizer-3 abore-powderizer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-powderizer-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-powderizer-2 ab1 abreinforced-concrete-brick ab5 abtitanium-plate ab4 abtitanium-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-gold abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-gold ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-gold ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-laser-defense-equipment-3 abangels-personal-equipment-combat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-laser-defense-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab5 ablithium-ion-battery ab3 abpersonal-laser-defense-equipment-2 ab1 abemerald-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-antenna-equipment-3 abangels-personal-equipment-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-antenna-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-3 ab2 abroboport-door-3 ab1 abpersonal-roboport-antenna-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-chargepad-equipment-3 abangels-personal-equipment-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-chargepad-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-3 ab2 abpersonal-roboport-chargepad-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-mk3-equipment abangels-personal-equipment-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-mk3-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abroboport-antenna-3 ab2 abroboport-door-3 ab1 abroboport-chargepad-3 ab2 abpersonal-roboport-mk2-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-robot-equipment-3 abangels-personal-equipment-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-robot-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 absuperior-circuit-board ab1 abbasic-electronic-components ab10 abelectronic-components ab20 abintergrated-electronics ab10 abpersonal-roboport-robot-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-3 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abquartz ab1 absilver-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-equipment-3 abangels-personal-equipment-power-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab2 absilicon-wafer ab8 abtitanium-plate ab2 abprocessing-unit ab5 absolar-panel-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-clay abwater-washing-filtering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-clay ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-concentrated-mud ab30 abwater ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-engine-3 abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-engine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrass-alloy ab5 abbrass-gear-wheel ab5 absteel-bearing ab5 absteam-engine-2 ab1 abbrass-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +substation-3 abangels-sub-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absubstation-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab10 abinsulated-cable ab5 abprocessing-unit ab5 absubstation-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-battery-3 abangels-vehicle-equipment-bobpower-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-battery-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithium-ion-battery ab5 abvehicle-battery-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-big-turret-3 abangels-vehicle-equipment-bobcombat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-big-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab20 abalien-artifact ab30 ablithium-ion-battery ab12 abadvanced-circuit ab20 abvehicle-big-turret-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-cell-3 abangels-vehicle-equipment-bobpower-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-cell-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab15 abprocessing-unit ab25 abvehicle-fusion-cell-2 ab1 abspeed-module-3 ab1 abeffectivity-module-3 ab1 abproductivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-reactor-3 abangels-vehicle-equipment-bobpower-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-reactor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab30 abprocessing-unit ab50 abvehicle-fusion-reactor-2 ab1 abspeed-module-3 ab2 abeffectivity-module-3 ab2 abproductivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-laser-defense-3 abangels-vehicle-equipment-bobcombat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-laser-defense-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab5 ablithium-ion-battery ab3 abvehicle-laser-defense-2 ab1 abemerald-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-3 abangels-vehicle-equipment-bobrobot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abroboport-antenna-3 ab2 abroboport-door-3 ab1 abroboport-chargepad-3 ab2 abvehicle-roboport-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-antenna-equipment-3 abangels-vehicle-equipment-bobrobot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-antenna-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-3 ab2 abroboport-door-3 ab1 abvehicle-roboport-antenna-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-chargepad-equipment-3 abangels-vehicle-equipment-bobrobot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-chargepad-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-3 ab2 abvehicle-roboport-chargepad-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-robot-equipment-3 abangels-vehicle-equipment-bobrobot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-robot-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 absuperior-circuit-board ab1 abbasic-electronic-components ab10 abelectronic-components ab20 abintergrated-electronics ab10 abvehicle-roboport-robot-equipment-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-shield-3 abangels-vehicle-equipment-bobcombat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-shield-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab10 abadvanced-processing-unit ab5 abvehicle-shield-2 ab2 abproductivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-solar-panel-3 abangels-vehicle-equipment-bobpower-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-solar-panel-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab2 abgold-plate ab2 abprocessing-unit ab5 abvehicle-solar-panel-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +washing-2 abwater-washing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-mud ab0 - 3 abwater-concentrated-mud ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-heavy-mud ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +washing-plant-2 abwashing-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwashing-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab25 abbronze-alloy ab12 abwashing-plant ab1 abelectronic-circuit ab4 abbronze-pipe ab27 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-pellets abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood-pellets ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +module-case abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodule-case ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab5 abplastic-bar ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +module-contact abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodule-contact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 absilver-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-emerald-3 abbob-gems-raw ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abemerald-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abemerald-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-emerald-4 abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abemerald-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abemerald-3 ab1 abgrinding-wheel ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-emerald-5 abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abemerald-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abemerald-4 ab1 abpolishing-wheel ab1 abpolishing-compound ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-nitrogen-monoxide-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-monoxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-nitrogen-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-hydrochloric-acid-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hydrochloric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-hydrochloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-white-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-white-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-white-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-concentrated-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-concentrated-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-concentrated-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-green-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-green-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-green-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-saline-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-saline-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-nickel-plate abbob-material-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnickel-plate ab1 abgas-sulfur-dioxide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnickel-ore ab1 abgas-oxygen ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-plate abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-oxide ab1 abliquid-sulfuric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-nitrogen-monoxide-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-nitrogen-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-monoxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-hydrochloric-acid-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-hydrochloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hydrochloric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-white-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-white-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-white-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-concentrated-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-concentrated-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-concentrated-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-green-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-green-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-green-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-saline-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-saline ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solder-alloy abbob-alloy ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolder-alloy ab11 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 absilver-plate ab1 abtin-plate ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solder-alloy-lead abbob-alloy ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolder-alloy ab11 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab7 abtin-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +module-circuit-board abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abtin-plate ab1 abphenolic-board ab1 abliquid-ferric-chloride-solution ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +module-processor-board abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodule-processor-board ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abtin-plate ab1 abphenolic-board ab1 abliquid-ferric-chloride-solution ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +module-processor-board-2 abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodule-processor-board-2 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 absilver-plate ab1 abfibreglass-board ab1 abliquid-ferric-chloride-solution ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +module-processor-board-3 abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmodule-processor-board-3 ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab2 abgold-plate ab2 abfibreglass-board ab1 abliquid-ferric-chloride-solution ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-oxide-from-copper abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab7 - 11 abcobalt-oxide ab1 - 3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab7 absolid-limestone ab1 absolid-carbon ab1 abgas-hydrogen ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-from-lead abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-plate ab7 - 11 absilver-ore ab1 - 3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-oxide ab7 abnickel-plate ab1 absolid-carbon ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-processor abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-processor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abbasic-electronic-components ab2 abelectronic-components ab2 abcrystal-splinter-blue ab1 abmodule-processor-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-processor-2 abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-processor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab2 abintergrated-electronics ab2 abcrystal-shard-blue ab1 abmodule-processor-board-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-processor-3 abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-processor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab2 abprocessing-electronics ab1 abcrystal-full-blue ab1 abmodule-processor-board-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-processor abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-processor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abbasic-electronic-components ab2 abelectronic-components ab2 abcrystal-splinter-green ab1 abmodule-processor-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-processor-2 abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-processor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab2 abintergrated-electronics ab2 abcrystal-shard-green ab1 abmodule-processor-board-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-processor-3 abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-processor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab2 abprocessing-electronics ab1 abcrystal-full-green ab1 abmodule-processor-board-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-processor abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-processor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abbasic-electronic-components ab2 abelectronic-components ab2 abcrystal-splinter-red ab1 abmodule-processor-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-processor-2 abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-processor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab2 abintergrated-electronics ab2 abcrystal-shard-red ab1 abmodule-processor-board-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-processor-3 abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-processor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab2 abprocessing-electronics ab1 abcrystal-full-red ab1 abmodule-processor-board-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-processor abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-processor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abbasic-electronic-components ab2 abelectronic-components ab2 abcrystal-splinter-harmonic ab1 abmodule-processor-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-processor-2 abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-processor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab2 abintergrated-electronics ab2 abcrystal-shard-harmonic ab1 abmodule-processor-board-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-processor-3 abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-processor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab2 abprocessing-electronics ab1 abcrystal-full-harmonic ab1 abmodule-processor-board-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-processor abmodule-intermediates ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-processor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abbasic-electronic-components ab2 abelectronic-components ab2 abcrystal-splinter-harmonic ab1 abmodule-processor-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-processor-2 abmodule-intermediates-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-processor-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab2 abintergrated-electronics ab2 abcrystal-shard-harmonic ab1 abmodule-processor-board-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-processor-3 abmodule-intermediates-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-processor-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab2 abprocessing-electronics ab1 abcrystal-full-harmonic ab1 abmodule-processor-board-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-oil-refining abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-oil-residual ab1 abliquid-mineral-oil ab20 abliquid-fuel-oil ab20 abliquid-naphtha ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab90 abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +artillery-shell abangels-artillery-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abartillery-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abexplosives ab8 abexplosive-cannon-shell ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cannon-shell abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abplastic-bar ab2 abexplosives ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-cannon-shell abangels-exploration-tank-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcannon-shell ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flamethrower-ammo abangels-fire ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflamethrower-ammo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abliquid-fuel-oil ab50 abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-booster ab1 abexplosives ab1 abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +firearm-magazine abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfirearm-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-shell abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab2 abiron-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +distractor-artillery-shell abangels-artillery-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdistractor-artillery-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 abplastic-bar ab6 abexplosives ab3 abdistractor-robot ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +explosive-rocket abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosive-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abexplosives ab2 abrocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +explosive-cannon-shell abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosive-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abplastic-bar ab2 abexplosives ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-explosive-cannon-shell abangels-exploration-tank-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-explosive-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abexplosive-cannon-shell ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +piercing-rounds-magazine abangels-physical-aa ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpiercing-rounds-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 absteel-plate ab1 abfirearm-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +piercing-shotgun-shell abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpiercing-shotgun-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab5 absteel-plate ab2 abshotgun-shell ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +atomic-bomb abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abatomic-bomb ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-booster ab1 abexplosives ab10 abrocket-control-unit ab10 aburanium-235 ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-artillery-shell abangels-artillery-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-artillery-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 abplastic-bar ab6 abexplosives ab3 abalien-poison ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-uranium-cannon-shell abangels-exploration-tank-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-uranium-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-cannon-shell ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +uranium-cannon-shell abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-238 ab1 abcannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +explosive-uranium-cannon-shell abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosive-uranium-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-238 ab1 abexplosive-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heavy-explosive-uranium-cannon-shell abangels-exploration-tank-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-explosive-uranium-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abexplosive-uranium-cannon-shell ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fire-artillery-shell abangels-artillery-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfire-artillery-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 abplastic-bar ab6 abexplosives ab3 abalien-fire ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +explosive-artillery-shell abangels-artillery-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosive-artillery-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 abplastic-bar ab6 abexplosives ab3 abalien-explosive ab180 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +scatter-cannon-shell abangels-exploration-tank-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abscatter-cannon-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abplastic-bar ab2 abexplosives ab1 abshot ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +atomic-artillery-shell abangels-artillery-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abatomic-artillery-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 abplastic-bar ab6 abexplosives ab15 abplutonium-239 ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-furnace-3 abangels-chemical-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-furnace-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-chemical-furnace-2 ab1 abreinforced-concrete-brick ab25 abtitanium-plate ab8 abprocessing-unit ab5 abtitanium-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-coil-glass-fiber abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-coil-glass-fiber ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-glass ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-construction-roboport-vequip abangels-vehicle-equipment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-construction-roboport-vequip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 abelectronic-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-solder-casting abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-solder ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-solder ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-solder-casting-fast abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-solder ab8 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-solder ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crushed-mix3-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-brown ab1 abangels-ore4-crushed ab2 abangels-ore5-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-chunk-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abcopper-ore ab2 abiron-ore ab1 absilver-ore ab1 abtin-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-chunk ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-chunk abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore3-chunk ab2 abgeode-yellow ab1 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abcopper-ore ab2 abiron-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore3-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-crystal-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abcopper-ore ab3 abiron-ore ab1 absilver-ore ab1 abtin-ore ab1 aburanium-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crystal ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-crystal abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore3-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-chunk ab2 abliquid-sulfuric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-pure-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab3 abiron-ore ab2 absilver-ore ab1 abtin-ore ab1 aburanium-ore ab1 abtungsten-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-pure ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-pure abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore3-pure ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crystal ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-arboretum-1 abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-arboretum-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab30 abglass ab6 absteel-plate ab18 abelectronic-circuit ab2 absteel-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-greenhouse abbio-processing-buildings-nauvis-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-greenhouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab2 abglass ab4 abiron-plate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +assembling-machine-3 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abassembling-machine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-2 ab1 absteel-plate ab9 absteel-gear-wheel ab5 abadvanced-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +assembling-machine-4 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abassembling-machine-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-3 ab1 abaluminium-plate ab9 abbrass-gear-wheel ab5 absteel-bearing ab5 abadvanced-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +assembling-machine-5 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abassembling-machine-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-4 ab1 abtitanium-plate ab9 abtitanium-gear-wheel ab5 abtitanium-bearing ab5 abprocessing-unit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +assembling-machine-6 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abassembling-machine-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abassembling-machine-5 ab1 abtungsten-carbide ab5 abnitinol-alloy ab5 abnitinol-gear-wheel ab5 abnitinol-bearing ab5 abadvanced-processing-unit ab3 ab ab ab ab ab ab ab ab ab ab ab ab +barreling-pump abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbarreling-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 absteel-gear-wheel ab9 abelectronic-circuit ab2 absteel-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-ammo abangels-fire ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-ammo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab10 absulfur ab5 abcrude-oil ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab2 abplastic-bar ab1 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lithium-ion-battery abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablithium-ion-battery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithium-cobalt-oxide ab1 ablithium-perchlorate ab2 absolid-carbon ab1 abplastic-bar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-zinc-battery abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-zinc-battery ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-oxide ab1 abzinc-plate ab1 absolid-sodium-hydroxide ab2 abplastic-bar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-big-eggsperiment abbio-biter-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-big-egg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-5 ab1 abcrystal-seed ab1 abcrystal-enhancer ab1 abcrystal-shard-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-big-keeping abbio-biter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-big ab3 abbiter-big ab1 abcrystal-full-raw ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-big ab4 abbio-alien-processed-meat ab4 abliquid-nutrient-pulp ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-big-butchering abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 abcrystal-full-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-big ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-big-breeding abbio-biter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-queen-big ab1 abbiter-queen-big ab1 abbiter-big-egg ab1 abbiter-big-egg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-queen-big ab2 abbio-alien-processed-meat ab2 abliquid-nutrient-pulp ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-big abbio-biter-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbiter-big ab1 abbiter-queen-big ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-big-egg ab1 abbio-alien-processed-meat ab1 abliquid-nutrient-pulp ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +biter-queen-big-butchering abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 - 2 abcrystal-full-raw ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbiter-queen-big ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +blast-furnace-3 abangels-blast-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abblast-furnace-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abblast-furnace-2 ab1 abaluminium-plate ab16 abconcrete-brick ab50 abadvanced-circuit ab3 abbrass-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-construction-robot-5 abangels-cargo-bots ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-construction-robot-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrtg ab1 abbob-construction-robot-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-robot-5 abangels-cargo-bots ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-robot-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrtg ab1 abbob-logistic-robot-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +casting-machine-3 abangels-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcasting-machine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab12 abconcrete-brick ab5 abcasting-machine-2 ab1 abbrass-gear-wheel ab3 abadvanced-circuit ab1 abbrass-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-metal-carrier abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-metal-red abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-red ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab1 abiron-ore ab1 abcatalyst-metal-carrier ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-metal-green abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-green ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbauxite-ore ab1 absilver-ore ab1 abcatalyst-metal-carrier ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-metal-blue abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-blue ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-ore ab1 abrutile-ore ab1 abcatalyst-metal-carrier ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-metal-yellow abpetrochem-catalysts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-yellow ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnickel-ore ab1 abtungsten-ore ab1 abcatalyst-metal-carrier ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +clarifier abwater-treatment-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abclarifier ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab30 abiron-plate ab12 abbasic-circuit-board ab4 abpipe ab33 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-capsule abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab3 abcoal ab10 abelectronic-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slowdown-capsule abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslowdown-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abcoal ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fire-capsule abangels-capsules-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfire-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab3 abelectronic-circuit ab3 abliquid-fuel ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +arithmetic-combinator abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abarithmetic-combinator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab5 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +decider-combinator abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdecider-combinator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab5 abelectronic-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +constant-combinator abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abconstant-combinator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-crystal-slurry-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abcrystal-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-crystal-slurry-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abcrystal-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-slurry-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-enhancer abbio-processing-alien-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-enhancer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abseeded-dish ab1 abcrystal-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-crystal-seedling-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-seedling-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-crystal-seedling-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-seedling-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-crystal-matrix-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-matrix-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abcrystal-matrix ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-crystal-matrix-barrel abangels-fluid-control-ore-sorting-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abcrystal-matrix ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-matrix-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystallizer abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystallizer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab50 absteel-plate ab30 abelectronic-circuit ab5 absteel-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystallizer-2 abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystallizer-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystallizer ab1 abaluminium-plate ab40 abconcrete-brick ab50 abadvanced-circuit ab5 abbrass-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystallizer-3 abrefining-buildings ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystallizer-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystallizer-2 ab1 abreinforced-concrete-brick ab50 abtitanium-plate ab40 abprocessing-unit ab5 abtitanium-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electric-boiler abboiler-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electric-boiler ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 abbronze-alloy ab3 abelectronic-circuit ab2 abbronze-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electric-boiler-2 abboiler-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electric-boiler-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab4 abconcrete-brick ab5 abangels-electric-boiler ab1 abadvanced-circuit ab2 abbrass-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-electric-boiler-3 abboiler-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electric-boiler-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab5 abtungsten-plate ab4 abangels-electric-boiler-2 ab1 abadvanced-processing-unit ab2 abtungsten-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-chemical-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 absteel-plate ab10 abadvanced-circuit ab5 absteel-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-furnace absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-furnace-2 absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-furnace-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace ab1 abtungsten-plate ab10 abinvar-alloy ab10 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-furnace-3 absmelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-furnace-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace-2 ab1 abtungsten-carbide ab10 abcopper-tungsten-alloy ab10 abadvanced-processing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-mixing-furnace abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-mixing-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab10 absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-ethylene-carbonate abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ethylene-carbonate ab90 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethylene-oxide ab100 abgas-carbon-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-explosive-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-explosive-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abexplosive-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +explosive-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexplosive-rocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abalien-explosive ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +he-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhe-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhe-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +he-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhe-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhe-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +he-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhe-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abalien-explosive ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-explosive-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-explosive-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcordite ab1 abshotgun-shell-casing ab1 abalien-explosive ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-accumulator abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-accumulator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abbattery ab4 abelectronic-circuit ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-accumulator-2 abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-accumulator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 ablithium-ion-battery ab4 abadvanced-circuit ab4 abfast-accumulator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-accumulator-3 abangels-power-accumulator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-accumulator-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab2 absilver-zinc-battery ab4 abprocessing-unit ab4 abfast-accumulator-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-ammonia-from-blue-fiber abbio-processing-blue ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ammonia ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abblue-cellulose-fiber ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-fractioning abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab50 abgas-ethane ab30 abgas-butane ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ngl ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-hydrogen-chloride abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine ab50 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-nitrogen-monoxide abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-nitrogen-monoxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-ammonia ab60 abgas-oxygen ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-synthesis-methanation abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-methane ab60 abgas-ethane ab20 abgas-butane ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-blue ab1 abgas-synthesis ab100 abgas-hydrogen ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-yellow-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-yellow ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-yellow-processing abgeode-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-dust ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-yellow ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-gunmetal-smelting-1 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-gunmetal ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab18 abingot-tin ab6 abingot-zinc ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-gunmetal abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgunmetal-alloy ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-gunmetal ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gunmetal-alloy abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgunmetal-alloy ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab8 abtin-plate ab1 abzinc-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +induction-furnace-3 abangels-induction-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinduction-furnace-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab20 abconcrete-brick ab25 abinduction-furnace-2 ab1 abbrass-gear-wheel ab9 abadvanced-circuit ab5 abbrass-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-zone-interface abangels-roboport-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-zone-interface ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab5 abadvanced-circuit ab2 abroboport-antenna-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-storage-tank-3 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-storage-tank-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 abiron-plate ab3 abbob-small-inline-storage-tank ab1 abpipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-storage-tank-2 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-storage-tank-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab40 absteel-plate ab12 absteel-pipe ab39 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-storage-tank-1 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-storage-tank-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab20 absteel-plate ab6 absteel-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-pressure-tank-1 abangels-fluid-tanks ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-pressure-tank-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab20 absteel-plate ab20 abpipe ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-polyethylene-catalyst abpetrochem-feedstock ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-polyethylene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-blue ab1 abgas-ethylene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-logistic abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-logistic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abcircuit-board ab1 abbasic-electronic-components ab6 abelectronic-components ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-logistic-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-logistic-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abcircuit-board ab1 abbasic-electronic-components ab10 abelectronic-components ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-logistic-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-logistic-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 absuperior-circuit-board ab1 abbasic-electronic-components ab4 abelectronic-components ab6 abintergrated-electronics ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-logistic-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-logistic-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abmulti-layer-circuit-board ab1 abbasic-electronic-components ab2 abelectronic-components ab4 abintergrated-electronics ab8 abprocessing-electronics ab4 ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-logistic abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-logistic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 absteel-gear-wheel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-logistic-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-logistic-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abbrass-gear-wheel ab2 absteel-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-logistic-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-logistic-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abtitanium-gear-wheel ab2 abtitanium-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-logistic-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-logistic-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 abnitinol-gear-wheel ab2 abceramic-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-robot-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-robot-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablogistic-robot ab1 abflying-robot-frame-2 ab1 abrobot-brain-logistic-2 ab1 abrobot-tool-logistic-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-robot-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-robot-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-logistic-robot-2 ab1 abflying-robot-frame-3 ab1 abrobot-brain-logistic-3 ab1 abrobot-tool-logistic-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-logistic-robot-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-logistic-robot-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-logistic-robot-3 ab1 abflying-robot-frame-4 ab1 abrobot-brain-logistic-4 ab1 abrobot-tool-logistic-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-robot abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abflying-robot-frame ab1 abrobot-brain-logistic ab1 abrobot-tool-logistic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +military-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmilitary-science-pack ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpiercing-rounds-magazine ab1 abgrenade ab1 abstone-wall ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mold-non-expendable abangels-mold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmold-non-expendable ab1 abslag ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmotor-casing-0 ab1 absolid-clay ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mold-non-expendable-wash abangels-mold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmold-non-expendable ab1 abwater-red-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abspent-mold-non-expendable ab1 abliquid-nitric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fish-pulp-nutrients abbio-processor-press-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfish-pulp ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-orange-from-basic abbio-processing-alien-large-convert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-orange ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab1 abalien-artifact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-orange-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-orange ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact-orange ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-orange abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-orange ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-tungsten ab1 abtopaz-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact-orange abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact-orange ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-orange ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-crusher-2 abore-crusher ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-crusher-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-crusher ab1 abclay-brick ab15 absteel-plate ab9 absteel-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-floatation-cell-3 abore-floatation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-floatation-cell-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-floatation-cell-2 ab1 abreinforced-concrete-brick ab40 abtitanium-plate ab16 abprocessing-unit ab8 abtitanium-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-leaching-plant-3 abore-leaching ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-leaching-plant-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-leaching-plant-2 ab1 abreinforced-concrete-brick ab40 abtungsten-plate ab16 abadvanced-processing-unit ab8 abtungsten-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-processing-machine-3 abangels-processing-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-processing-machine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-processing-machine-2 ab1 abreinforced-concrete-brick ab20 abtitanium-plate ab8 abtitanium-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-sorting-facility-3 abore-sorter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-sorting-facility-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-sorting-facility-2 ab1 abaluminium-plate ab48 abconcrete-brick ab60 abbrass-gear-wheel ab24 abadvanced-circuit ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-cellulose abbio-processing-green ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-cellulose ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab3 abcellulose-fiber ab5 abgas-chlor-methane ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +aluminium-processed-processing abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-aluminium ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-aluminium ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chrome-processed-processing abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-chrome ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-chrome ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-processed-processing abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-cobalt ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-cobalt ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-processed-processing abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-copper ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-copper ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gold-processed-processing abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-gold ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-gold ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-processed-processing abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-iron ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-iron ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lead-processed-processing abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-lead ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-lead ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +manganese-processed-processing abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-manganese ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-manganese ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nickel-processed-processing abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-nickel ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-nickel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +platinum-processed-processing abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-platinum ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-platinum ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-press-3 abangels-pellet-press ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-press-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-press-2 ab1 abreinforced-concrete-brick ab10 abtungsten-plate ab8 abtungsten-gear-wheel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silica-processed-processing abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-silica ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-silica ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-processed-processing abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-silver ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-silver ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tin-processed-processing abangels-tin ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-tin ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-tin ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-processed-processing abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-titanium ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-titanium ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-processed-processing abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-tungsten ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-tungsten ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +zinc-processed-processing abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-zinc ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-zinc ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-full-blue abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-full-blue ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-grindstone ab1 abcrystal-full-blue-cut ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-blue abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-blue ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-grindstone ab1 abcrystal-shard-blue-cut ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-blue abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-blue ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-splinter-blue-cut ab1 abcrystal-grindstone ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-full-red abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-full-red ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-grindstone ab1 abcrystal-full-red-cut ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-red abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-red ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-grindstone ab1 abcrystal-shard-red-cut ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-red abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-red ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-splinter-red-cut ab1 abcrystal-grindstone ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-full-green abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-full-green ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-grindstone ab1 abcrystal-full-green-cut ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-green abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-green ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-grindstone ab1 abcrystal-shard-green-cut ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-green abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-green ab1 abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-splinter-green-cut ab1 abcrystal-grindstone ab1 abcrystal-slurry ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-mixer-3 abangels-powder-mixer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-mixer-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-mixer-2 ab1 abreinforced-concrete-brick ab5 abtitanium-plate ab4 abtitanium-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-plastic abbio-arboretum-swamp ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-plastic ab1 abgas-acetone ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-rubber abbio-arboretum-desert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-rubber ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-rubber ab1 abgas-acetone ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-resin abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-resin ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-resin ab1 abgas-ethanol ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-resin-resin-liquification abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-resin ab10 - 40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abresin ab4 abgas-ethanol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-resin-wood-reprocessing abbio-arboretum-temperate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abresin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +reinforced-wall abangels-exploration-walls ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abreinforced-wall ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab3 absteel-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +reinforced-gate abangels-exploration-walls ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abreinforced-gate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 abelectronic-circuit ab2 abreinforced-wall ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-rubber-barrel abangels-fluid-control-petrochem-solids-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-rubber-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-rubber ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-rubber-barrel abangels-fluid-control-petrochem-solids-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-rubber ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-rubber-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-sapphire abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-sapphire ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbattery ab4 ablaser-rifle-battery-case ab1 absapphire-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-seedling abbio-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abseedling ab1 - 9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sintering-oven-3 abangels-sintering-oven ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absintering-oven-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab32 abconcrete-brick ab45 absintering-oven-2 ab1 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-stone abprocessing-crafting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abslag ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-hydroxide abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-hydroxide ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium ab5 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-aqueous-sodium-hydroxide-reverse abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-hydroxide ab5 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-aqueous-sodium-hydroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-alginic-acid abbio-processing-brown ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-alginic-acid ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-brown ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-calcium-carbonate abbio-processing-red ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-carbonate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abred-cellulose-fiber ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cement-mixture-1 abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-cement ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab1 absolid-lime ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cement-mixture-2 abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-cement ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalumina ab1 abiron-ore ab1 abquartz ab1 absolid-lime ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-coke-sulfur abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-coke ab2 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-fuel-oil abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab1 abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-salt abwater-salination ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-salt ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab1000 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-splitter abbob-logistic-tier-0 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbasic-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab4 abwood ab4 abiron-gear-wheel ab2 abbasic-transport-belt ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +splitter abbob-logistic-tier-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absplitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtin-plate ab8 abiron-gear-wheel ab14 abbasic-circuit-board ab5 abbasic-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-splitter abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab8 absteel-gear-wheel ab14 abelectronic-circuit ab5 absplitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-splitter abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab8 abcobalt-steel-gear-wheel ab14 abcobalt-steel-bearing ab12 abadvanced-circuit ab5 abfast-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-splitter abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab8 abtitanium-gear-wheel ab14 abtitanium-bearing ab12 abprocessing-unit ab5 abexpress-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ultimate-splitter abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abultimate-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab8 abnitinol-gear-wheel ab14 abnitinol-bearing ab12 abadvanced-processing-unit ab5 abturbo-splitter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-butane abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-benzene ab80 abgas-residual ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-butane ab60 absteam ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +strand-casting-machine-3 abangels-strand-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstrand-casting-machine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab15 abtitanium-plate ab24 abstrand-casting-machine-2 ab1 abtitanium-gear-wheel ab12 abprocessing-unit ab3 abtitanium-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab +thermal-water-purification abwater-treatment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmineral-sludge ab20 abwater-purified ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthermal-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-thorium-fuel-cell abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-thorium-fuel-cell ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abzinc-plate ab15 abplutonium-239 ab8 abcurium-245 ab1 abthorium-232 ab17 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-thorium-processing abangels-power-nuclear-processing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthorium-232 ab4 abplutonium-239 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthorium-ore ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-thorium-fuel-cell-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab5 abneptunium-240 ab1 abthorium-232 ab2 aburanium-234 ab1 abcurium-245 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-angels-thorium-fuel-cell ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-advanced-thorium-fuel-cell-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab10 abneptunium-240 ab2 aburanium-234 ab2 abangels-muon-fusion-catalyst ab1 abwater-greenyellow-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-angels-thorium-fuel-cell ab10 abliquid-hydrofluoric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cannon-turret-shell-3 abangels-physical-bc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcannon-turret-shell-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab4 aburanium-238 ab2 abcannon-turret-shell-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-wagon abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abiron-gear-wheel ab25 abelectronic-circuit ab15 abcargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-wagon-2 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab25 abiron-chest ab5 abcrawler-wagon ab1 abeffectivity-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-wagon-3 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-wagon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab25 abiron-chest ab10 abcrawler-wagon-2 ab1 abeffectivity-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-wagon-4 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-wagon-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab35 absteel-chest ab5 abcrawler-wagon-3 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-wagon-5 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-wagon-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab50 absteel-chest ab10 abcrawler-wagon-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +boiler-3 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abboiler-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab5 abboiler-2 ab1 abbrass-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-exchanger-3 abangels-power-nuclear-heat-exchanger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-exchanger-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab10 abheat-pipe-3 ab4 abheat-exchanger-2 ab1 abceramic-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfuric-acid abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 absulfur ab5 abwater-purified ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-methanol-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methanol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-methanol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-condensates-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-condensates-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-condensates ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-sulfuric-acid-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-sulfuric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-methanol-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-methanol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methanol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-condensates-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-condensates ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-condensates-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-sulfuric-acid-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-sulfuric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-sulfur-dioxide abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-sulfur-dioxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absulfur ab1 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-white-liquor abbio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-white-liquor ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab2 absolid-sodium-sulfate ab2 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +kraft-causting abbio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-limestone ab4 abliquid-white-liquor ab55 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-lime ab4 abliquid-green-liquor ab60 abwater ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-carbon-dioxide abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-dioxide ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +kraft-recovery abbio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-green-liquor ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-black-liquor ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-ethylene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ethylene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ethylene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-residual-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-residual-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-residual ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-ethylene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ethylene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethylene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-residual-barrel abangels-fluid-control-petrochem-raw-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-residual ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-residual-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-sulfur-dioxide-calcium-sulfate abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-lime ab1 abgas-sulfur-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-calcium-sulfate ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-benzene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-benzene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-benzene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-benzene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-benzene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-benzene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-chlorine abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +anaerobic-fermentation abbio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 abgas-ethanol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fermentation-raw ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-logistic-chest-storage abangels-chests-big ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-logistic-chest-storage ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abelectronic-circuit ab5 abangels-big-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-warehouse-storage abangels-warehouse ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-warehouse-storage ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectronic-circuit ab20 abangels-warehouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore7-crystallization-5 abbob-gems-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abamethyst-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery-mk4-equipment abangels-personal-equipment-power-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery-mk4-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab5 abalien-artifact-blue ab5 abadvanced-processing-unit ab5 abbattery-mk3-equipment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +belt-immunity-equipment abangels-personal-equipment-power-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbelt-immunity-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +big-electric-pole-4 abangels-big-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbig-electric-pole-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab5 abnitinol-alloy ab5 abbig-electric-pole-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-press abbio-processing-buildings-vegetabilis-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-press ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 abbronze-alloy ab6 absteel-gear-wheel ab6 abelectronic-circuit ab2 abbronze-pipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-refugium-puffer abbio-processing-buildings-alien-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-refugium-puffer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab16 abglass ab5 abconcrete-brick ab15 abadvanced-circuit ab4 abbrass-pipe ab33 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant-used-filtration-1 abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abliquid-coolant ab160 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-coal ab1 abliquid-coolant-used ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant-used-filtration-2 abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abliquid-coolant ab160 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abliquid-coolant-used ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +discharge-defense-remote abangels-personal-equipment-combat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdischarge-defense-remote ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electro-whinning-cell abore-whinning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectro-whinning-cell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab16 abconcrete-brick ab20 abadvanced-circuit ab8 abbrass-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +energy-shield-mk4-equipment abangels-personal-equipment-combat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenergy-shield-mk4-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab5 abalien-artifact-blue ab5 abadvanced-processing-unit ab5 abenergy-shield-mk3-equipment ab2 abeffectivity-module-4 ab1 abproductivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +fluid-generator-3 abangels-power-fluid-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluid-generator-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab10 abtungsten-plate ab5 abtitanium-gear-wheel ab10 abtitanium-bearing ab10 abprocessing-unit ab5 abfluid-generator-2 ab1 abceramic-pipe ab5 ab ab ab ab ab ab ab ab ab ab +fusion-reactor-equipment-4 abangels-personal-equipment-power-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfusion-reactor-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab15 abalien-artifact-green ab15 abadvanced-processing-unit ab50 abfusion-reactor-equipment-3 ab1 abspeed-module-8 ab2 abeffectivity-module-8 ab2 abproductivity-module-8 ab2 ab ab ab ab ab ab ab ab ab ab +gas-dimethylamine abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dimethylamine ab200 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methylamine ab200 abgas-methanol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-fractioning-synthesis abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab90 abgas-ethane ab30 abgas-butane ab20 abgas-carbon-monoxide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ngl ab100 abgas-synthesis ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-nitrogen-dioxide abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen ab60 abgas-nitrogen-monoxide ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-pipe-4 abangels-power-nuclear-heat-pipe ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-pipe-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-plate ab10 abcopper-tungsten-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-breeding-4 abbio-hogger-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-4 ab2 abbio-hogger-1 ab1 abbio-hogger-2 ab1 abbio-hogger-3 ab1 abbio-hogger-4 ab1 abbio-hogger-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abbio-hogger-4 ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-breeding-5 abbio-hogger-breeding ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-5 ab2 abbio-hogger-1 ab1 abbio-hogger-2 ab1 abbio-hogger-3 ab1 abbio-hogger-4 ab1 abbio-hogger-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abbio-hogger-5 ab2 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-butchery-4 abbio-hogger-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-hogger-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-butchery-5 abbio-hogger-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-raw-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-hogger-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-hogging-4 abbio-hogger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-4 ab3 - 5 abcopper-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab10 abiron-plate ab1 abbio-hogger-4 ab4 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hogger-hogging-5 abbio-hogger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-hogger-5 ab3 - 5 abcopper-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab10 abiron-plate ab1 abbio-hogger-5 ab4 abliquid-nutrient-pulp ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-cellulose-acetate abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-cellulose-acetate ab50 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-cellulose-acetate-mixture ab50 abwater-purified ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-storage abangels-chests-small-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-storage ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab3 abadvanced-circuit ab1 absteel-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-storage-2 abangels-chests-small-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-storage-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abadvanced-circuit ab3 abprocessing-unit ab1 abbrass-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-storage-3 abangels-chests-small-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-storage-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab3 abadvanced-processing-unit ab1 abtitanium-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +medium-electric-pole-4 abangels-medium-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmedium-electric-pole-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab2 abnitinol-alloy ab2 abmedium-electric-pole-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nutrient-extractor abbio-processing-buildings-vegetabilis-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnutrient-extractor ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab5 abbronze-alloy ab3 absteel-gear-wheel ab6 abelectronic-circuit ab2 abbronze-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +offshore-pump abwashing-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboffshore-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-gear-wheel ab1 abbasic-circuit-board ab2 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-tungsten abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-tungsten ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowdered-tungsten ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-laser-defense-equipment-4 abangels-personal-equipment-combat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-laser-defense-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 ablithium-ion-battery ab3 abprocessing-unit ab5 abpersonal-laser-defense-equipment-3 ab1 abamethyst-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-antenna-equipment-4 abangels-personal-equipment-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-antenna-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-4 ab2 abroboport-door-4 ab1 abpersonal-roboport-antenna-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-chargepad-equipment-4 abangels-personal-equipment-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-chargepad-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-4 ab2 abpersonal-roboport-chargepad-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-mk4-equipment abangels-personal-equipment-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-mk4-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 abroboport-antenna-4 ab2 abroboport-door-4 ab1 abroboport-chargepad-4 ab2 abpersonal-roboport-mk3-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-roboport-robot-equipment-4 abangels-personal-equipment-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-roboport-robot-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abmulti-layer-circuit-board ab1 abbasic-electronic-components ab5 abelectronic-components ab10 abintergrated-electronics ab20 abprocessing-electronics ab8 abpersonal-roboport-robot-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab +slag-processing-4 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgold-ore ab1 abnickel-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solar-panel-equipment-4 abangels-personal-equipment-power-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolar-panel-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab5 abnitinol-alloy ab2 abalien-artifact ab10 abadvanced-processing-unit ab5 absolar-panel-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solder abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolder ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder-alloy ab4 abresin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-limestone abwater-washing-filtering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-limestone ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-light-mud ab20 abwater ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-engine-4 abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-engine-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 abtitanium-gear-wheel ab5 abtitanium-bearing ab5 absteam-engine-3 ab1 abtitanium-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +substation-4 abangels-sub-power-poles ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absubstation-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab5 abnitinol-alloy ab10 abadvanced-processing-unit ab5 absubstation-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-battery-4 abangels-vehicle-equipment-bobpower-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-battery-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab5 abalien-artifact-blue ab5 abadvanced-processing-unit ab5 abvehicle-battery-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-big-turret-4 abangels-vehicle-equipment-bobcombat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-big-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab20 abalien-artifact-orange ab15 abalien-artifact-blue ab15 ablithium-ion-battery ab12 abprocessing-unit ab20 abvehicle-big-turret-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-cell-4 abangels-vehicle-equipment-bobpower-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-cell-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab8 abalien-artifact-blue ab8 abadvanced-processing-unit ab25 abvehicle-fusion-cell-3 ab1 abspeed-module-5 ab1 abeffectivity-module-5 ab1 abproductivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-reactor-4 abangels-vehicle-equipment-bobpower-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-reactor-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab15 abalien-artifact-blue ab15 abadvanced-processing-unit ab50 abvehicle-fusion-reactor-3 ab1 abspeed-module-5 ab2 abeffectivity-module-5 ab2 abproductivity-module-5 ab2 ab ab ab ab ab ab ab ab ab ab +vehicle-laser-defense-4 abangels-vehicle-equipment-bobcombat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-laser-defense-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab5 ablithium-ion-battery ab3 abprocessing-unit ab5 abvehicle-laser-defense-3 ab1 abamethyst-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-4 abangels-vehicle-equipment-bobrobot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 abroboport-antenna-4 ab2 abroboport-door-4 ab1 abroboport-chargepad-4 ab2 abvehicle-roboport-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-antenna-equipment-4 abangels-vehicle-equipment-bobrobot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-antenna-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-antenna-4 ab2 abroboport-door-4 ab1 abvehicle-roboport-antenna-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-chargepad-equipment-4 abangels-vehicle-equipment-bobrobot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-chargepad-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abroboport-chargepad-4 ab2 abvehicle-roboport-chargepad-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-roboport-robot-equipment-4 abangels-vehicle-equipment-bobrobot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-roboport-robot-equipment-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abmulti-layer-circuit-board ab1 abbasic-electronic-components ab5 abelectronic-components ab10 abintergrated-electronics ab20 abprocessing-electronics ab8 abvehicle-roboport-robot-equipment-3 ab1 ab ab ab ab ab ab ab ab ab ab +vehicle-shield-4 abangels-vehicle-equipment-bobcombat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-shield-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab5 abalien-artifact-blue ab5 abadvanced-processing-unit ab5 abvehicle-shield-3 ab2 abeffectivity-module-4 ab1 abproductivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-solar-panel-4 abangels-vehicle-equipment-bobpower-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-solar-panel-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab5 absilicon-wafer ab10 abtitanium-plate ab2 abadvanced-processing-unit ab5 abvehicle-solar-panel-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +washing-3 abwater-washing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-mud ab0 - 3 abwater-light-mud ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-concentrated-mud ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-bricks abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood-bricks ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood-pellets ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-amethyst-3 abbob-gems-raw ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abamethyst-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abamethyst-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-amethyst-4 abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abamethyst-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abamethyst-3 ab1 abgrinding-wheel ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-amethyst-5 abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abamethyst-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abamethyst-4 ab1 abpolishing-wheel ab1 abpolishing-compound ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-acid-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-allylchlorid-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-allylchlorid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-allylchlorid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-nitrogen-dioxide-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-nitrogen-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-nitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-oxygen-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-oxygen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-black-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-black-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-black-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-hexachloroplatinic-acid-barrel abangels-fluid-control-angels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hexachloroplatinic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-hexachloroplatinic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-titanium-tetrachloride-barrel abangels-fluid-control-angels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-titanium-tetrachloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-titanium-tetrachloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-trichlorosilane-barrel abangels-fluid-control-angels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-trichlorosilane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-trichlorosilane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-tungstic-acid-barrel abangels-fluid-control-angels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-tungstic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-tungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-nitrogen-dioxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitrogen-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-nitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-oxygen-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboxygen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-tungstic-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungstic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-tungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-light-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-light-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-mineralized-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-mineralized-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-mineralized ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-red-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-red-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-red-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-acid-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-allylchlorid-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-allylchlorid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-allylchlorid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-nitrogen-dioxide-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-nitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-oxygen-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-black-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-black-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-black-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-hexachloroplatinic-acid-barrel abangels-fluid-control-angels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-hexachloroplatinic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hexachloroplatinic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-titanium-tetrachloride-barrel abangels-fluid-control-angels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-titanium-tetrachloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-titanium-tetrachloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-trichlorosilane-barrel abangels-fluid-control-angels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-trichlorosilane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-trichlorosilane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-tungstic-acid-barrel abangels-fluid-control-angels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-tungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-tungstic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-nitrogen-dioxide-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-nitrogen-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitrogen-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-oxygen-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aboxygen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-tungstic-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-tungstic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungstic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-light-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-light-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-light-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-mineralized-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-mineralized ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-mineralized-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-red-waste-barrel abangels-fluid-control-water-cleaning-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-red-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-red-waste-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-furnace-4 abangels-chemical-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-chemical-furnace-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-chemical-furnace-3 ab1 abreinforced-concrete-brick ab25 abtungsten-plate ab8 abadvanced-processing-unit ab5 abtungsten-pipe ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +quartz-glass abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abglass ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-glass-1 abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abglass ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-glass ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-glass-2 abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abglass ab4 ablead-oxide ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-glass ab40 abliquid-molten-lead ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-glass-3 abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abglass ab5 abingot-tin ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-glass ab40 abliquid-molten-tin ab20 abgas-nitrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-repair-roboport-vequip abangels-vehicle-equipment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-repair-roboport-vequip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab20 abadvanced-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder-mixture-smelting abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolder ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-solder-mixture ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-solder abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolder ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-solder ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-solder-converting abangels-solder-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolder ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-solder ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crushed-mix4-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtin-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-brown ab1 abangels-ore3-crushed ab2 abangels-ore6-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-chunk-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abcopper-ore ab2 abiron-ore ab1 ablead-ore ab1 abbauxite-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-chunk ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-chunk abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore4-chunk ab2 abgeode-lightgreen ab1 abwater-green-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abcopper-ore ab2 abiron-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore4-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-crystal-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abcopper-ore ab3 abiron-ore ab1 ablead-ore ab1 abbauxite-ore ab1 abrutile-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-crystal ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-crystal abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore4-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-chunk ab2 abliquid-hydrochloric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-pure-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab3 abiron-ore ab2 ablead-ore ab1 abbauxite-ore ab1 abrutile-ore ab1 abcobalt-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-pure ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore4-pure abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore4-pure ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore4-crystal ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-copper-smelting abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abanode-copper ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-copper ab8 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +blast-furnace-4 abangels-blast-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abblast-furnace-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abblast-furnace-3 ab1 abreinforced-concrete-brick ab50 abtitanium-plate ab16 abprocessing-unit ab3 abtitanium-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-blue-from-basic abbio-processing-alien-large-convert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-blue ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-blue ab1 abalien-artifact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-blue-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact-blue ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-blue abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-cobalt ab1 absapphire-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact-blue abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-bot-wagon abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-bot-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abiron-gear-wheel ab25 abelectronic-circuit ab15 abcargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-bot-wagon-2 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-bot-wagon-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab25 abiron-chest ab5 abcrawler-bot-wagon ab1 abeffectivity-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-bot-wagon-3 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-bot-wagon-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab25 absteel-chest ab5 abcrawler-bot-wagon-2 ab1 abeffectivity-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-bot-wagon-4 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-bot-wagon-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab35 ablogistic-chest-storage ab5 abcrawler-bot-wagon-3 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crawler-bot-wagon-5 abangels-vehicle-train-crawler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrawler-bot-wagon-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-control-unit ab2 ablow-density-structure ab50 ablogistic-chest-buffer ab5 abcrawler-bot-wagon-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +carbon-separation-2 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +casting-machine-4 abangels-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcasting-machine-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab5 abtitanium-plate ab12 abcasting-machine-3 ab1 abtitanium-gear-wheel ab3 abprocessing-unit ab1 abtitanium-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-steam-cracking-butane abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-butadiene ab80 abgas-residual ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abliquid-naphtha ab60 absteam ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-nickel-smelting abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-nickel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-nickel ab4 abliquid-sulfuric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chemical-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-science-pack ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab2 absulfur ab1 abengine-unit ab2 abadvanced-circuit ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-clay-brick-raw abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abclay-brick-raw ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-lime ab2 absolid-clay ab4 absolid-sand ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coke-purification abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-carbon ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab2 absteam ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coke-purification-2 abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-carbon ab6 absolid-sodium-carbonate ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab4 absolid-sodium-hydroxide ab1 abgas-nitrogen ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-combat abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-combat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abbasic-circuit-board ab1 abbasic-electronic-components ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-combat-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-combat-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abcircuit-board ab1 abbasic-electronic-components ab10 abelectronic-components ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-combat-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-combat-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 absuperior-circuit-board ab1 abbasic-electronic-components ab4 abelectronic-components ab2 abintergrated-electronics ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-brain-combat-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-brain-combat-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abmulti-layer-circuit-board ab1 abbasic-electronic-components ab2 abelectronic-components ab4 abintergrated-electronics ab2 abprocessing-electronics ab1 ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-combat abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-combat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 absteel-gear-wheel ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-combat-2 abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-combat-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab1 abbrass-alloy ab1 abbattery ab1 abbrass-gear-wheel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-combat-3 abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-combat-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 ablithium-ion-battery ab1 abtitanium-gear-wheel ab2 abemerald-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-tool-combat-4 abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-tool-combat-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab1 absilver-zinc-battery ab1 abnitinol-gear-wheel ab2 abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-laser-robot abangels-robot-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-laser-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdestroyer-robot ab1 abflying-robot-frame-4 ab1 abrobot-brain-combat-4 ab1 abrobot-tool-combat-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +defender-robot abangels-robot-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdefender-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abflying-robot-frame ab1 abrobot-brain-combat ab1 abrobot-tool-combat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +destroyer-robot abangels-robot-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdestroyer-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdistractor-robot ab1 abflying-robot-frame-3 ab1 abrobot-brain-combat-3 ab1 abrobot-tool-combat-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +distractor-robot abangels-robot-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdistractor-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdefender-robot ab1 abflying-robot-frame-2 ab1 abrobot-brain-combat-2 ab1 abrobot-tool-combat-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +condensates-oil-refining abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-oil-residual ab1 abliquid-mineral-oil ab40 abliquid-fuel-oil ab30 abliquid-naphtha ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab40 abliquid-condensates ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-deuterium-fuel-cell abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-deuterium-fuel-cell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abzinc-plate ab1 abangels-muon-fusion-catalyst ab1 abgas-deuterium ab600 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-deuterium-fuel-cell-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab5 abangels-muon-fusion-catalyst ab4 abangels-muon-fusion-catalyst ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-angels-deuterium-fuel-cell ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-advanced-deuterium-fuel-cell-reprocessing abangels-power-nuclear-fuel-cell ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab5 abangels-muon-fusion-catalyst ab10 abwater-greenyellow-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-angels-deuterium-fuel-cell ab10 abliquid-hydrofluoric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-chemical-mixing-furnace abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-chemical-mixing-furnace ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-mixing-furnace ab1 abtungsten-plate ab10 abinvar-alloy ab10 abprocessing-unit ab5 abtungsten-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-chemical-mixing-furnace-2 abbob-smelting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-chemical-mixing-furnace-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-chemical-mixing-furnace ab1 abtungsten-carbide ab10 abcopper-tungsten-alloy ab10 abadvanced-processing-unit ab5 abcopper-tungsten-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electronics-machine-1 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectronics-machine-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abiron-gear-wheel ab5 abbasic-circuit-board ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electronics-machine-2 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectronics-machine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronics-machine-1 ab1 absteel-plate ab5 absteel-gear-wheel ab5 absteel-bearing ab5 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electronics-machine-3 abbob-assembly-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectronics-machine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronics-machine-2 ab1 abtitanium-plate ab5 abtitanium-gear-wheel ab5 abtitanium-bearing ab5 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-emerald abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-emerald ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithium-ion-battery ab4 ablaser-rifle-battery-case ab1 abemerald-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +enriched-fuel-from-hydrazine abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenriched-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-fuel ab1 abgas-hydrazine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-flame-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-flame-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abflame-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flame-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflame-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abflame-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flame-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflame-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abflame-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flame-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflame-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abalien-fire ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +flame-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abflame-rocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abalien-fire ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-flame-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-flame-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcordite ab1 abshotgun-shell-casing ab1 abalien-fire ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-benzene-catalyst abpetrochem-feedstock ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-benzene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-methane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-hydrogen-chloride-separation abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-chlorine ab50 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-lightgreen-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-lightgreen ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-lightgreen-processing abgeode-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-dust ab3 abstone-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-lightgreen ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-full-harmonic abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-full-harmonic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-full-blue ab1 abcrystal-full-red ab1 abcrystal-full-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-shard-harmonic abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-shard-harmonic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-shard-blue ab1 abcrystal-shard-red ab1 abcrystal-shard-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-splinter-harmonic abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-splinter-harmonic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-splinter-blue ab1 abcrystal-splinter-red ab1 abcrystal-splinter-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +induction-furnace-4 abangels-induction-furnace ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinduction-furnace-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab25 abtitanium-plate ab20 abinduction-furnace-3 ab1 abtitanium-gear-wheel ab9 abprocessing-unit ab5 abtitanium-pipe ab12 ab ab ab ab ab ab ab ab ab ab ab ab +tin-ore-smelting abangels-tin ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-tin ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtin-ore ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-tin-smelting abangels-tin ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-tin ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-tin ab8 absolid-coke ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-tin-smelting abangels-tin ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-tin ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-tin ab8 absolid-carbon ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-invar-smelting-1 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-invar ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-steel ab24 abingot-nickel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-invar abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinvar-alloy ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-invar ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +invar-alloy abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinvar-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab3 abnickel-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-platinum-smelting abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hexachloroplatinic-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-platinum ab4 abliquid-hydrochloric-acid ab30 abliquid-nitric-acid ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-naphtha-catalyst abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-naphtha ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-red ab1 abgas-synthesis ab150 abgas-carbon-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-phenol-catalyst abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-phenol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-yellow ab1 abgas-benzene ab100 abgas-oxygen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cumene-process abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-phenol ab60 abgas-acetone ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-blue ab1 abgas-benzene ab50 abgas-propene ab50 abgas-oxygen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-sulfuric-acid abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-sulfuric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab90 abwater-purified ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +titanium-ore-smelting abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-titanium-tetrachloride ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrutile-ore ab24 absolid-carbon ab6 abgas-chlorine ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-titanium-smelting abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-titanium-tetrachloride ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-titanium ab8 absolid-carbon ab6 abgas-chlorine ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-silicon-smelting abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-trichlorosilane ab120 abgas-hydrogen ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-silica ab8 abgas-hydrogen-chloride ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-ore-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-chloride ab2 abliquid-tungstic-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-ore ab12 abgas-hydrogen-chloride ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +loader abbelt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abloader ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab5 abiron-gear-wheel ab5 abelectronic-circuit ab5 abtransport-belt ab5 abinserter ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-loader abbelt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-loader ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abloader ab1 abfast-transport-belt ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-loader abbelt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-loader ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfast-loader ab1 abexpress-transport-belt ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-processed-meat abbio-biter-butchery ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-alien-processed-meat ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-raw-meat ab1 abalien-goo ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-crusher-3 abore-crusher ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-crusher-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-crusher-2 ab1 abaluminium-plate ab12 abconcrete-brick ab15 abbrass-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-processing-machine-4 abangels-processing-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-processing-machine-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-processing-machine-3 ab1 abreinforced-concrete-brick ab20 abtungsten-plate ab8 abtungsten-gear-wheel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ore-sorting-facility-4 abore-sorter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abore-sorting-facility-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abore-sorting-facility-3 ab1 abreinforced-concrete-brick ab60 abtitanium-plate ab48 abtitanium-gear-wheel ab24 abprocessing-unit ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +power-switch abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpower-switch ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab5 abiron-plate ab5 abelectronic-circuit ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +programmable-speaker abcircuit-network ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprogrammable-speaker ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab5 abiron-plate ab3 abiron-stick ab4 abelectronic-circuit ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-press-4 abangels-pellet-press ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-press-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-press-3 ab1 abreinforced-concrete-brick ab10 abtungsten-carbide ab8 abnitinol-gear-wheel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-mixer-4 abangels-powder-mixer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-mixer-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-mixer-3 ab1 abreinforced-concrete-brick ab5 abtungsten-plate ab4 abtungsten-gear-wheel ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +radar abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abradar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abiron-gear-wheel ab5 abbasic-circuit-board ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +radar-2 abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abradar-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 absteel-gear-wheel ab5 abelectronic-circuit ab5 abradar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +radar-3 abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abradar-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab10 abbrass-gear-wheel ab5 absteel-bearing ab5 abadvanced-circuit ab5 abradar-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +radar-4 abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abradar-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab10 abtitanium-gear-wheel ab5 abtitanium-bearing ab5 abprocessing-unit ab5 abradar-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +radar-5 abangels-artillery-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abradar-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab10 abnitinol-gear-wheel ab5 abnitinol-bearing ab5 abadvanced-processing-unit ab5 abradar-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-atomic-bomb abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abatomic-bomb ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-booster ab1 abexplosives ab10 abrocket-control-unit ab10 abplutonium-239 ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-atomic-bomb-2 abangels-explosion-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abatomic-bomb ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-booster ab1 abexplosives ab20 abrocket-control-unit ab20 abangels-muon-fusion-catalyst ab1 abgas-deuterium ab3600 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +salination-plant abwater-treatment-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absalination-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab56 abconcrete-brick ab75 abadvanced-circuit ab12 abbrass-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sintering-oven-4 abangels-sintering-oven ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absintering-oven-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab45 abtitanium-plate ab32 abprocessing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sintering-oven-5 abangels-sintering-oven ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absintering-oven-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab45 abtungsten-plate ab32 absintering-oven-4 ab1 abadvanced-processing-unit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-hydroxide-solid-sodium-sulfate abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-sulfate ab2 abwater-purified ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab4 abliquid-sulfuric-acid ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-chrome-smelting abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-chromate ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-chrome ab8 absolid-sodium-carbonate ab7 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-cobalt-smelting abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-cobalt-hydroxide ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-cobalt ab2 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-synthesis abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab1 abgas-synthesis ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-lead-smelting abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-oxide ab24 abgas-sulfur-dioxide ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-lead ab8 abgas-oxygen ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-lithium abwater-salination ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-lithium ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthermal-water ab1000 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +manganese-processed-processing-alt abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-manganese-oxide ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-manganese ab4 abgas-synthesis ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-manganese-smelting abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-manganese-oxide ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-manganese ab8 abgas-natural-1 ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-silver-smelting abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-nitrate ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-silver ab4 abliquid-nitric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-aluminium-smelting abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-aluminate ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-aluminium ab6 absolid-coke ab3 absolid-sodium-carbonate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-gold-smelting abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-gold-cyanide ab18 absolid-sodium-hydroxide ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-gold ab6 absolid-sodium-cyanide ab4 abwater-purified ab40 abgas-oxygen ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +zinc-ore-processing-alt abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-zinc-oxide ab8 abgas-sulfur-dioxide ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abzinc-ore ab8 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-zinc-smelting abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-zinc-oxide ab24 abgas-sulfur-dioxide ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-zinc ab8 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-crushed abprocessing-crafting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +strand-casting-machine-4 abangels-strand-casting-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstrand-casting-machine-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab15 abtungsten-plate ab24 abstrand-casting-machine-3 ab1 abtungsten-gear-wheel ab12 abadvanced-processing-unit ab3 abtungsten-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab +defender-capsule abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdefender-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdefender-robot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +distractor-capsule abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdistractor-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdistractor-robot ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +destroyer-capsule abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdestroyer-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdestroyer-robot ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-laser-robot-capsule abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-laser-robot-capsule ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbob-laser-robot ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +yellow-waste-water-purification abwater-cleaning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur ab1 abwater-mineralized ab20 abwater-purified ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-yellow-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +boiler-4 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abboiler-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab5 abboiler-3 ab1 abceramic-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-exchanger-4 abangels-power-nuclear-heat-exchanger ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-exchanger-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab10 abheat-pipe-4 ab4 abheat-exchanger-3 ab1 abcopper-tungsten-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-raw-fish-oil-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-raw-fish-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-raw-fish-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-raw-fish-oil-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-raw-fish-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-raw-fish-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-fuel-oil-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-fuel-oil-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-fuel-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-fuel-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-fuel ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-fuel-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-fuel ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-fish-oil-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fish-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-fish-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-fish-oil-barrel abangels-fluid-control-bio-fish ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-fish-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fish-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-naphtha-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-naphtha-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-naphtha-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-naphtha ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-mineral-oil-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-mineral-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-mineral-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-mineral-oil-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-mineral-oil ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-mineral-oil-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lubricant abfluid-recipes ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablubricant ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-lubricant-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablubricant-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 ablubricant ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-lubricant-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 ablubricant ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablubricant-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-synthesis-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-synthesis ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-synthesis-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-synthesis ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-synthesis-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-deuterium abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-deuterium ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-logistic-chest-buffer abangels-chests-big ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-logistic-chest-buffer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abadvanced-circuit ab5 abangels-big-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-warehouse-buffer abangels-warehouse ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-warehouse-buffer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abadvanced-circuit ab20 abangels-warehouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore7-crystallization-2 abbob-gems-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtopaz-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery-mk5-equipment abangels-personal-equipment-power-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery-mk5-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab5 abalien-artifact-purple ab5 absilver-zinc-battery ab5 abbattery-mk4-equipment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-plastic-1 abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-cellulose-acetate ab25 abgas-acetone ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-refugium-biter abbio-processing-buildings-alien-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-refugium-biter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab95 abtitanium-plate ab40 abprocessing-unit ab4 abstone-wall ab4 abtitanium-pipe ab33 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-oxide abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-oxide ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-ore ab2 absolid-limestone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +discharge-defense-equipment abangels-personal-equipment-combat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdischarge-defense-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abprocessing-unit ab5 ablaser-turret ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electro-whinning-cell-2 abore-whinning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectro-whinning-cell-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectro-whinning-cell ab1 abreinforced-concrete-brick ab20 abtitanium-plate ab16 abprocessing-unit ab8 abtitanium-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +energy-shield-mk5-equipment abangels-personal-equipment-combat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenergy-shield-mk5-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab5 abalien-artifact-purple ab5 abadvanced-processing-unit ab5 abenergy-shield-mk4-equipment ab2 abeffectivity-module-6 ab1 abproductivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +ethanol-to-ethylene-synthesis abbio-processor-fermentation ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ethylene ab50 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethanol ab50 abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-ammonia abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-ammonia ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-red ab1 abgas-hydrogen ab50 abgas-nitrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-carbon-dioxide-from-wood abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-dioxide ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood-pellets ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-dimethylhydrazine abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dimethylhydrazine ab200 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dimethylamine ab200 abgas-monochloramine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-fractioning-condensates abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab30 abgas-ethane ab30 abgas-butane ab70 abliquid-naphtha ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ngl ab100 abliquid-condensates ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ground-water-pump abwashing-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abground-water-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab5 abbasic-circuit-board ab2 abpipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hydrazine-generator abangels-power-fluid-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrazine-generator ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab5 abnitinol-alloy ab10 abnitinol-gear-wheel ab10 abnitinol-bearing ab10 abadvanced-processing-unit ab5 abfluid-generator-3 ab1 abcopper-tungsten-pipe ab5 ab ab ab ab ab ab ab ab ab ab +liquid-bisphenol-a abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-bisphenol-a ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-phenol ab60 abgas-acetone ab40 abliquid-hydrochloric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-buffer abangels-chests-small-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-buffer ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab3 abadvanced-circuit ab1 absteel-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-buffer-2 abangels-chests-small-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-buffer-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abadvanced-circuit ab3 abprocessing-unit ab1 abbrass-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-buffer-3 abangels-chests-small-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-buffer-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab3 abadvanced-processing-unit ab1 abtitanium-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-cobalt abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-cobalt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-cobalt ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-laser-defense-equipment-5 abangels-personal-equipment-combat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-laser-defense-equipment-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 absilver-zinc-battery ab3 abprocessing-unit ab5 abpersonal-laser-defense-equipment-4 ab1 abtopaz-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +residual-oil-refining abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-oil-residual ab1 abliquid-mineral-oil ab60 abliquid-fuel-oil ab30 abliquid-naphtha ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab60 abgas-residual ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-5 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abzinc-ore ab1 abrutile-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sand abwater-washing-filtering ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sand ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-thin-mud ab10 abwater ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-engine-5 abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-engine-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 abnitinol-gear-wheel ab5 abnitinol-bearing ab5 absteam-engine-4 ab1 abnitinol-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-oxide abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-oxide ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-tungstic-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-battery-5 abangels-vehicle-equipment-bobpower-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-battery-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab5 abalien-artifact-purple ab5 absilver-zinc-battery ab5 abvehicle-battery-4 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-big-turret-5 abangels-vehicle-equipment-bobcombat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-big-turret-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 abalien-artifact-yellow ab15 abalien-artifact-purple ab15 absilver-zinc-battery ab12 abprocessing-unit ab20 abvehicle-big-turret-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-cell-5 abangels-vehicle-equipment-bobpower-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-cell-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab8 abalien-artifact-purple ab8 abadvanced-processing-unit ab25 abvehicle-fusion-cell-4 ab1 abspeed-module-6 ab1 abeffectivity-module-6 ab1 abproductivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-reactor-5 abangels-vehicle-equipment-bobpower-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-reactor-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab15 abalien-artifact-purple ab15 abadvanced-processing-unit ab50 abvehicle-fusion-reactor-4 ab1 abspeed-module-6 ab2 abeffectivity-module-6 ab2 abproductivity-module-6 ab2 ab ab ab ab ab ab ab ab ab ab +vehicle-laser-defense-5 abangels-vehicle-equipment-bobcombat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-laser-defense-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 absilver-zinc-battery ab3 abprocessing-unit ab5 abvehicle-laser-defense-4 ab1 abtopaz-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-shield-5 abangels-vehicle-equipment-bobcombat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-shield-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab5 abalien-artifact-purple ab5 abadvanced-processing-unit ab5 abvehicle-shield-4 ab2 abeffectivity-module-6 ab1 abproductivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-solar-panel-5 abangels-vehicle-equipment-bobpower-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-solar-panel-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab5 absilicon-wafer ab10 abnitinol-alloy ab2 abalien-artifact ab10 abadvanced-processing-unit ab5 abvehicle-solar-panel-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +washing-4 abwater-washing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-mud ab0 - 3 abwater-thin-mud ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-light-mud ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-topaz-3 abbob-gems-raw ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtopaz-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtopaz-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-topaz-4 abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtopaz-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtopaz-3 ab1 abgrinding-wheel ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-topaz-5 abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtopaz-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtopaz-4 ab1 abpolishing-wheel ab1 abpolishing-compound ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-dinitrogen-tetroxide-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dinitrogen-tetroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-epichlorhydrin-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-epichlorhydrin-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-epichlorhydrin ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-hydrogen-fluoride-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-fluoride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen-fluoride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-hydrogen-peroxide-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-peroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen-peroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-silane-barrel abangels-fluid-control-angels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-silane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-silane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-chlorauric-acid-barrel abangels-fluid-control-angels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-chlorauric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-chlorauric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-green-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-green-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-green-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-water-thin-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-thin-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abwater-thin-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-dinitrogen-tetroxide-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dinitrogen-tetroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-epichlorhydrin-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-epichlorhydrin ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-epichlorhydrin-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-hydrogen-fluoride-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen-fluoride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-fluoride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-hydrogen-peroxide-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen-peroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-peroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-silane-barrel abangels-fluid-control-angels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-silane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-silane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-chlorauric-acid-barrel abangels-fluid-control-angels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-chlorauric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-chlorauric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-green-liquor-barrel abangels-fluid-control-bio-liquor ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-green-liquor ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-green-liquor-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-water-thin-mud-barrel abangels-fluid-control-water-washing-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abwater-thin-mud ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-thin-mud-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +acid-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abacid-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abacid-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +acid-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abacid-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abacid-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +acid-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abacid-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abalien-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +acid-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abacid-rocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abalien-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-acid-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-acid-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abacid-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-acid-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-acid-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcordite ab1 abshotgun-shell-casing ab1 abalien-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-logistic-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abadvanced-logistic-science-pack ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbrass-chest ab2 abflying-robot-frame ab1 abexpress-transport-belt ab1 abfilter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +air-pump abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abair-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abiron-gear-wheel ab2 abelectronic-circuit ab2 abcopper-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +air-pump-2 abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abair-pump-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abair-pump ab1 absteel-plate ab2 absteel-gear-wheel ab4 abadvanced-circuit ab3 abbronze-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +air-pump-3 abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abair-pump-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abair-pump-2 ab1 abtitanium-plate ab2 abtitanium-gear-wheel ab4 abtitanium-bearing ab4 abprocessing-unit ab3 abbrass-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab +air-pump-4 abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abair-pump-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abair-pump-3 ab1 abnitinol-alloy ab2 abelectric-engine-unit ab1 abnitinol-gear-wheel ab4 abnitinol-bearing ab4 abadvanced-processing-unit ab3 ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-amethyst abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-amethyst ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithium-ion-battery ab4 ablaser-rifle-battery-case ab1 abamethyst-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-heavy-energy-shield-vequip abangels-vehicle-equipment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-heavy-energy-shield-vequip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab20 abadvanced-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-glass-fiber-board abangels-glass-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfibreglass-board ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-coil-glass-fiber ab1 abliquid-resin ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix1-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abquartz ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore5-chunk ab2 abangels-ore6-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-chunk-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 ablead-ore ab2 abnickel-ore ab1 abbauxite-ore ab1 abquartz ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-chunk ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-chunk abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore5-chunk ab2 abgeode-cyan ab1 abwater-red-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 ablead-ore ab2 abnickel-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore5-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-crystal-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 ablead-ore ab3 abnickel-ore ab1 abbauxite-ore ab1 abquartz ab1 abgold-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-crystal ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-crystal abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore5-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-chunk ab2 abliquid-nitric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-pure-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-ore ab3 abnickel-ore ab2 abbauxite-ore ab1 abquartz ab1 abgold-ore ab1 aburanium-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-pure ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-pure abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore5-pure ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-crystal ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-lead-smelting abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abanode-lead ab24 abgas-sulfur-dioxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-lead ab8 absolid-limestone ab2 absolid-coke ab2 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-from-light-oil abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-from-petroleum-gas abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-from-heavy-oil abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-from-hydrogen abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab1 abgas-hydrogen ab175 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalyst-steam-cracking-naphtha abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-propene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-red ab1 abliquid-naphtha ab100 absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-manganese-smelting abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-manganese ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-manganese ab4 abliquid-sulfuric-acid ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-manganese-oxide-smelting abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-manganese ab12 absolid-iron-hydroxide ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-iron ab4 absolid-manganese-oxide ab12 abliquid-sulfuric-acid ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-zinc-oxide-smelting abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-zinc ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-zinc-oxide ab12 abliquid-sulfuric-acid ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-clay-brick abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abclay-brick ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick-raw ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-cobalt-steel-smelting-1 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-cobalt-steel ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-cobalt ab12 abingot-steel ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-cobalt-steel abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-steel-alloy ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-cobalt-steel ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-steel-alloy abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-steel-alloy ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-plate ab1 abiron-plate ab14 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robot-gun-drone abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robot-gun-drone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrobot-brain-combat ab1 abgun-turret ab1 abrobot-drone-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robot-laser-drone abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robot-laser-drone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrobot-brain-combat ab1 ablaser-turret ab1 abrobot-drone-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robot-flamethrower-drone abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robot-flamethrower-drone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrobot-brain-combat ab1 abflamethrower-turret ab1 abrobot-drone-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-robot-plasma-drone abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-robot-plasma-drone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrobot-brain-combat ab1 abbob-plasma-turret-1 ab1 abrobot-drone-frame-large ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-chlor-methane abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-chlor-methane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine ab60 abgas-methane ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-propene-synthesis abpetrochem-chemistry ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-propene ab80 abgas-residual ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methanol ab100 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-silicon-smelting abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalumina ab6 abgas-silane ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-aluminium ab6 abpellet-silica ab8 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-synthesis-methanol abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abwater-purified ab20 abgas-methanol ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-synthesis ab100 abgas-carbon-dioxide ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-cyan-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-cyan ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-cyan-processing abgeode-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-dust ab3 abstone-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-cyan ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +greenyellow-waste-water-purification abwater-cleaning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluorite-ore ab1 abwater-mineralized ab20 abwater-purified ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-greenyellow-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-ore-smelting abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-copper ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-copper-smelting abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-copper ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-copper ab8 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +anode-copper-smelting abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-copper ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abanode-copper ab12 abliquid-sulfuric-acid ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-ore-smelting abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-iron ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-iron-smelting abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-iron ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-iron ab8 absolid-coke ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-iron-smelting abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-iron ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-iron ab8 absolid-limestone ab2 absolid-coke ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-iron-hydroxide-smelting abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-iron ab6 abgas-carbon-dioxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-iron-hydroxide ab6 absolid-coke ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +burner-inserter abbob-logistic-tier-0 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abburner-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abiron-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-inserter abbob-logistic-tier-0 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abburner-inserter ab1 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +inserter abbob-logistic-tier-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abinserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abiron-gear-wheel ab1 abbasic-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +yellow-filter-inserter abbob-logistic-tier-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abyellow-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab4 abinserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +long-handed-inserter abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablong-handed-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab1 absteel-gear-wheel ab1 abelectronic-circuit ab1 abinserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +red-filter-inserter abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abred-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab1 absteel-gear-wheel ab1 abelectronic-circuit ab1 abyellow-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +red-stack-inserter abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abred-stack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbronze-alloy ab3 absteel-gear-wheel ab5 ablong-handed-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +red-stack-filter-inserter abbob-logistic-tier-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abred-stack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab5 abred-stack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fast-inserter abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfast-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abcobalt-steel-gear-wheel ab1 abcobalt-steel-bearing ab1 abadvanced-circuit ab1 ablong-handed-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-inserter abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abcobalt-steel-gear-wheel ab1 abcobalt-steel-bearing ab1 abadvanced-circuit ab5 abred-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stack-inserter abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab4 abcobalt-steel-gear-wheel ab6 abcobalt-steel-bearing ab5 abadvanced-circuit ab1 abred-stack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stack-filter-inserter abbob-logistic-tier-3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab4 abcobalt-steel-gear-wheel ab6 abcobalt-steel-bearing ab6 abadvanced-circuit ab6 abred-stack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-inserter abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abtitanium-gear-wheel ab1 abtitanium-bearing ab1 abprocessing-unit ab1 abfast-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-filter-inserter abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab1 abtitanium-gear-wheel ab1 abtitanium-bearing ab1 abprocessing-unit ab5 abfilter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-stack-inserter abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-stack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab4 abtitanium-gear-wheel ab6 abtitanium-bearing ab6 abprocessing-unit ab1 abstack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +turbo-stack-filter-inserter abbob-logistic-tier-4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abturbo-stack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab4 abtitanium-gear-wheel ab6 abtitanium-bearing ab6 abprocessing-unit ab6 abstack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-inserter abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 abnitinol-gear-wheel ab1 abnitinol-bearing ab1 abadvanced-processing-unit ab1 abturbo-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-filter-inserter abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab1 abnitinol-gear-wheel ab1 abnitinol-bearing ab1 abadvanced-processing-unit ab5 abturbo-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-stack-inserter abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-stack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab4 abnitinol-gear-wheel ab6 abnitinol-bearing ab6 abadvanced-processing-unit ab1 abturbo-stack-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +express-stack-filter-inserter abbob-logistic-tier-5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abexpress-stack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab4 abnitinol-gear-wheel ab6 abnitinol-bearing ab6 abadvanced-processing-unit ab6 abturbo-stack-filter-inserter ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +landfill abprocessing-crafting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablandfill ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-chlorauric-acid abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-chlorauric-acid ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-gold ab12 abliquid-nitric-acid ab30 abliquid-hydrochloric-acid ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-hydrofluoric-acid abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-sulfate ab1 abliquid-hydrofluoric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfluorite-ore ab5 abliquid-sulfuric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-hydrogen-fluoride abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hydrofluoric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-fluoride ab90 abwater-purified ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-hydrogen-fluoride abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-fluoride ab55 abwater-greenyellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hydrofluoric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-carbonate-electrolysis abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-electrode-used ab1 abliquid-aqueous-sodium-hydroxide ab50 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-carbonate ab5 abangels-electrode ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-aqueous-sodium-hydroxide abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-aqueous-sodium-hydroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab5 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-coke abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpellet-coke ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-coke ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-tin abangels-tin ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-tin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-tin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-full-blue abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab15 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-full-blue-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-shard-blue abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab10 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-shard-blue-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-splinter-blue abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab5 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-splinter-blue-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-full-red abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab15 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-full-red-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-shard-red abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab10 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-shard-red-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-splinter-red abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab5 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-splinter-red-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-full-green abbio-biter-processing-crystal-full ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab15 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-full-green-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-shard-green abbio-biter-processing-crystal-shard ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab10 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-shard-green-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-powder-splinter-green abbio-biter-processing-crystal-splinter ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-powder ab5 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abcrystal-splinter-green-cut ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +production-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproduction-science-pack ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-furnace ab1 abassembling-machine-2 ab1 abangels-chemical-plant ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-purple-from-basic abbio-processing-alien-large-convert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-purple ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-purple ab1 abalien-artifact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-purple-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-purple ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact-purple ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-purple abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-purple ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-titanium ab1 abamethyst-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact-purple abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact-purple ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-purple ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +salination-plant-2 abwater-treatment-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absalination-plant-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abreinforced-concrete-brick ab75 abtitanium-plate ab56 absalination-plant ab1 abprocessing-unit ab12 abtitanium-pipe ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-oxide abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-oxide ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-nitrate ab1 absolid-sodium-hydroxide ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bauxite-ore-smelting abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-aluminium-hydroxide ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbauxite-ore ab12 absolid-sodium-hydroxide ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-aluminium-smelting abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-aluminium-hydroxide ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-aluminium ab4 absolid-sodium-hydroxide ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-hexachloroplatinic-acid-smelting abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-ammonium-chloroplatinate ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hexachloroplatinic-acid ab120 abgas-ammonium-chloride ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-calcium-chloride abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-chloride ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-crushed ab6 abgas-hydrogen-chloride ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-ore-processing-alt abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-oxide ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-ore ab8 absolid-limestone ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-cobalt-smelting abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-oxide ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-cobalt ab8 absolid-limestone ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-cobalt-hydroxide-smelting abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-oxide ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-cobalt-hydroxide ab24 absolid-calcium-chloride ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-chromate-smelting abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-dichromate ab12 absolid-sodium-sulfate ab1 abwater-purified ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-chromate ab12 abliquid-sulfuric-acid ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-fuel-hydrazine abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-fuel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-nickel-smelting abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-nickel-carbonyl ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-nickel ab8 absulfur ab1 abgas-carbon-monoxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-tungstic-acid-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-oxide ab24 abwater-purified ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-tungstic-acid ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-tungsten-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-oxide ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-tungsten ab4 abgas-ammonia ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-titanium-tetrachloride-smelting abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absponge-titanium ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-titanium-tetrachloride ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-naphtha abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis ab150 abgas-residual ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab100 absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-toluene-from-naphtha abpetrochem-feedstock ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-toluene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abliquid-naphtha ab100 abgas-hydrogen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-toluene-from-benzene abpetrochem-feedstock ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-toluene ab100 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-benzene ab100 abgas-chlor-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-pump abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abiron-gear-wheel ab2 abelectronic-circuit ab2 abcopper-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-pump-2 abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-pump-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-pump ab1 absteel-plate ab2 absteel-gear-wheel ab4 abadvanced-circuit ab3 abbronze-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-pump-3 abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-pump-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-pump-2 ab1 abtitanium-plate ab2 abtitanium-gear-wheel ab4 abtitanium-bearing ab4 abprocessing-unit ab3 abbrass-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab +water-pump-4 abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-pump-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-pump-3 ab1 abnitinol-alloy ab2 abelectric-engine-unit ab1 abnitinol-gear-wheel ab4 abnitinol-bearing ab4 abadvanced-processing-unit ab3 ab ab ab ab ab ab ab ab ab ab ab ab +boiler-5 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abboiler-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab5 abboiler-4 ab1 abcopper-tungsten-pipe ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-toluene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-toluene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-toluene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-lithia-water-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablithia-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 ablithia-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-toluene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-toluene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-toluene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-lithia-water-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 ablithia-water ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithia-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-butadiene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-butadiene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-butadiene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-butadiene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-butadiene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-butadiene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-phenol-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-phenol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-phenol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-phenol-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-phenol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-phenol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-ethylbenzene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ethylbenzene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-ethylbenzene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-ethylbenzene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-ethylbenzene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ethylbenzene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-styrene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-styrene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-styrene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-styrene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-styrene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-styrene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-formaldehyde-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-formaldehyde-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-formaldehyde ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-polyethylene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-polyethylene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-polyethylene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-formaldehyde-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-formaldehyde ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-formaldehyde-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-polyethylene-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-polyethylene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-polyethylene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-glycerol-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-glycerol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-glycerol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-glycerol-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-glycerol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-glycerol-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-bisphenol-a-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-bisphenol-a-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-bisphenol-a ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-bisphenol-a-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-bisphenol-a ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-bisphenol-a-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-acetone-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-acetone-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-acetone ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-acetone-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-acetone ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-acetone-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-ethylene-oxide-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ethylene-oxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ethylene-oxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-ethylene-oxide-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ethylene-oxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethylene-oxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-ethylene-carbonate-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ethylene-carbonate-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-ethylene-carbonate ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-ethylene-carbonate-barrel abangels-fluid-control-petrochem-carbon-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-ethylene-carbonate ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ethylene-carbonate-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-logistic-chest-requester abangels-chests-big ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-logistic-chest-requester ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab10 abelectronic-circuit ab5 abangels-big-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-warehouse-requester abangels-warehouse ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-warehouse-requester ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectronic-circuit ab20 abangels-warehouse ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore7-crystallization-6 abbob-gems-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdiamond-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abcrystal-seedling ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +battery-mk6-equipment abangels-personal-equipment-power-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbattery-mk6-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab5 abalien-artifact-green ab5 abadvanced-processing-unit ab5 abbattery-mk5-equipment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-puffer-egg-shell-powder abbio-puffer-egg ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-puffer-egg-shell-powder ab2 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum ab1 abbio-puffer-egg-shell ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-refugium-hogger abbio-processing-buildings-alien-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-refugium-hogger ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab15 absteel-plate ab12 abelectronic-circuit ab4 absteel-pipe ab33 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-tile abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbio-tile ab5 - 10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-glass-mixture ab1 abconcrete-brick ab2 absolid-soil ab2 abtoken-bio ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant-cool-100 abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-coolant-used ab200 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-coolant-used ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electro-whinning-cell-3 abore-whinning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectro-whinning-cell-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectro-whinning-cell-2 ab1 abreinforced-concrete-brick ab20 abtungsten-plate ab16 abadvanced-processing-unit ab8 abtungsten-pipe ab18 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +energy-shield-mk6-equipment abangels-personal-equipment-combat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenergy-shield-mk6-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab5 abalien-artifact-green ab5 abadvanced-processing-unit ab5 abenergy-shield-mk5-equipment ab2 abeffectivity-module-8 ab1 abproductivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +gas-ammonium-chloride abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ammonium-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab50 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-dinitrogen-tetroxide abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-dinitrogen-tetroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-yellow ab1 abgas-nitrogen-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-fractioning-residual abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methane ab40 abgas-ethane ab40 abgas-butane ab50 abliquid-toluene ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ngl ab100 abgas-residual ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-mineral-oil-catalyst abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-mineral-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab60 abthermal-water ab20 abgas-carbon-monoxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-propionic-acid-catalyst abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abliquid-propionic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-green ab1 abgas-ethylene ab50 abgas-carbon-monoxide ab50 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-requester abangels-chests-small-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-requester ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectronic-circuit ab3 abadvanced-circuit ab1 absteel-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-requester-2 abangels-chests-small-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-requester-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abadvanced-circuit ab3 abprocessing-unit ab1 abbrass-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +logistic-chest-requester-3 abangels-chests-small-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablogistic-chest-requester-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessing-unit ab3 abadvanced-processing-unit ab1 abtitanium-chest ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-titanium abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-titanium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-titanium ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +personal-laser-defense-equipment-6 abangels-personal-equipment-combat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpersonal-laser-defense-equipment-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 abalien-artifact-red ab5 abalien-artifact-green ab5 absilver-zinc-battery ab3 abadvanced-processing-unit ab5 abpersonal-laser-defense-equipment-5 ab1 abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab +slag-processing-6 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbauxite-ore ab1 abmanganese-ore ab1 abchrome-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-turbine abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-turbine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab25 abcobalt-steel-gear-wheel ab20 abcobalt-steel-bearing ab10 abadvanced-circuit ab5 absteam-engine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-battery-6 abangels-vehicle-equipment-bobpower-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-battery-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab5 abalien-artifact-green ab5 abadvanced-processing-unit ab5 abvehicle-battery-5 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-big-turret-6 abangels-vehicle-equipment-bobcombat-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-big-turret-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab20 abalien-artifact-red ab15 abalien-artifact-green ab15 absilver-zinc-battery ab12 abadvanced-processing-unit ab20 abvehicle-big-turret-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-cell-6 abangels-vehicle-equipment-bobpower-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-cell-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab8 abalien-artifact-green ab8 abadvanced-processing-unit ab25 abvehicle-fusion-cell-5 ab1 abspeed-module-8 ab1 abeffectivity-module-8 ab1 abproductivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab +vehicle-fusion-reactor-6 abangels-vehicle-equipment-bobpower-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-fusion-reactor-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab15 abalien-artifact-green ab15 abadvanced-processing-unit ab50 abvehicle-fusion-reactor-5 ab1 abspeed-module-8 ab2 abeffectivity-module-8 ab2 abproductivity-module-8 ab2 ab ab ab ab ab ab ab ab ab ab +vehicle-laser-defense-6 abangels-vehicle-equipment-bobcombat-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-laser-defense-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab5 absilver-zinc-battery ab3 abadvanced-processing-unit ab5 abvehicle-laser-defense-5 ab1 abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-shield-6 abangels-vehicle-equipment-bobcombat-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-shield-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab5 abalien-artifact-green ab5 abadvanced-processing-unit ab5 abvehicle-shield-5 ab2 abeffectivity-module-8 ab1 abproductivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-solar-panel-6 abangels-vehicle-equipment-bobpower-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-solar-panel-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab5 absilicon-wafer ab10 abnitinol-alloy ab2 abalien-artifact ab10 abadvanced-processing-unit ab5 abvehicle-solar-panel-5 ab1 abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab +washing-5 abwater-washing ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-mud ab0 - 3 abwater-saline ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-thin-mud ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-gas-shift-1 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-dioxide ab50 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-monoxide ab50 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wood-charcoal abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwood-charcoal ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood-pellets ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-diamond-3 abbob-gems-raw ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdiamond-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdiamond-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-diamond-4 abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdiamond-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdiamond-3 ab1 abgrinding-wheel ab1 abwater ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-diamond-5 abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdiamond-4 ab1 abpolishing-wheel ab1 abpolishing-compound ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-ammonium-chloride-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-ammonium-chloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-ammonium-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-carbon-monoxide-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-monoxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-carbon-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-chlor-methane-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-chlor-methane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-chlor-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-tungsten-hexafluoride-barrel abangels-fluid-control-angels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-tungsten-hexafluoride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-tungsten-hexafluoride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-hexafluorosilicic-acid-barrel abangels-fluid-control-angels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hexafluorosilicic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-hexafluorosilicic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-hydrofluoric-acid-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hydrofluoric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-hydrofluoric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-ammonium-chloride-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-ammonium-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonium-chloride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-carbon-monoxide-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-carbon-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-monoxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-chlor-methane-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-chlor-methane ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlor-methane-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-tungsten-hexafluoride-barrel abangels-fluid-control-angels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-tungsten-hexafluoride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-tungsten-hexafluoride-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-hexafluorosilicic-acid-barrel abangels-fluid-control-angels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-hexafluorosilicic-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hexafluorosilicic-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-hydrofluoric-acid-barrel abangels-fluid-control-petrochem-sulfer-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-hydrofluoric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hydrofluoric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-blue-alloy abbob-alien-resource ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-blue-alloy ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab10 abalien-artifact-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-orange-alloy abbob-alien-resource ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-orange-alloy ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abalien-artifact-orange ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-acid abbob-alien-resource ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-purple ab1 abliquid-sulfuric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-alien-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abalien-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-alien-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abalien-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-explosive abbob-alien-resource ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-explosive ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab6 absulfur ab6 abalien-artifact-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-alien-explosive-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-explosive-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abalien-explosive ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-alien-explosive-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abalien-explosive ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-explosive-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-poison abbob-alien-resource ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-poison ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab6 abalien-artifact-green ab1 abliquid-nitric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-alien-poison-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-poison-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abalien-poison ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-alien-poison-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abalien-poison ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-poison-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-fire abbob-alien-resource ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fire ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab1 abliquid-naphtha ab60 abliquid-fuel-oil ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-alien-fire-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-fire-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abalien-fire ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-alien-fire-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abalien-fire ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-fire-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alumina abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalumina ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbauxite-ore ab1 absolid-sodium-hydroxide ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ammoniated-brine abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abammoniated-brine ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab10 abgas-ammonia ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ammonium-chloride-recycling abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-chloride ab1 abgas-ammonia ab50 abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abammonium-chloride ab2 absolid-limestone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix2-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnickel-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore1-chunk ab2 abangels-ore5-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-chunk-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abtin-ore ab2 abquartz ab1 absilver-ore ab1 abzinc-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-chunk ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-chunk abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore6-chunk ab2 abgeode-red ab1 abwater-yellow-waste ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-crushed ab2 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abtin-ore ab2 abquartz ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore6-crushed ab2 abstone-crushed ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-crystal-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abtin-ore ab3 abquartz ab1 absilver-ore ab1 abzinc-ore ab1 abgold-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-crystal ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-crystal abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore6-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-chunk ab2 abliquid-sulfuric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-pure-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtin-ore ab3 abquartz ab2 absilver-ore ab1 abzinc-ore ab1 abgold-ore ab1 abcobalt-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-pure ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-pure abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore6-pure ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-crystal ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +brine abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-saline ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-salt ab1 abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +calcium-chloride abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-calcium-chloride ab1 abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-limestone ab1 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-mineral-oil abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis ab100 abgas-residual ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-mineral-oil ab100 absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-gold-smelting abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-gold ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-gold ab2 abliquid-chlorauric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-gold-cyanide-smelting abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-gold ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-gold-cyanide ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coal-cracking-1 abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-coke ab6 abgas-hydrogen-sulfide ab50 abgas-benzene ab30 abgas-methane ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cooling-tower abboiler-building ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcooling-tower ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abclay-brick ab50 abbronze-alloy ab30 abelectronic-circuit ab5 abbronze-pipe ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +robot-drone-frame abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-drone-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abelectric-engine-unit ab2 abbattery ab6 absteel-gear-wheel ab10 absteel-bearing ab10 abelectronic-circuit ab10 ab ab ab ab ab ab ab ab ab ab ab ab +robot-drone-frame-large abangels-exploration-troups ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrobot-drone-frame-large ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectric-engine-unit ab2 abbattery ab12 absteel-gear-wheel ab10 absteel-bearing ab10 abelectronic-circuit ab10 ab ab ab ab ab ab ab ab ab ab ab ab +solid-tungsten-oxide-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-tungsten-hexafluoride ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-oxide ab12 abgas-hydrogen-fluoride ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-red-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-red ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +geode-red-processing abgeode-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-dust ab1 abstone-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgeode-red ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-waste-water-purification abwater-cleaning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-salt ab1 abwater-saline ab20 abwater-purified ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-green-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-green-from-basic abbio-processing-alien-large-convert ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-green ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-green ab1 abalien-artifact ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-green-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact-green ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-green abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-zinc ab1 abemerald-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact-green abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cobalt-ore-smelting abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-cobalt ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-ore ab24 absolid-carbon ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-cobalt-oxide-smelting abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-cobalt ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcobalt-oxide ab24 absolid-carbon ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +manganese-ore-smelting abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-manganese ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmanganese-ore ab24 absolid-coke ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cathode-manganese-smelting abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-manganese ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcathode-manganese ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nickel-ore-smelting abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-nickel ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnickel-ore ab24 abgas-carbon-monoxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cathode-nickel-smelting abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-nickel ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcathode-nickel ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-nickel-carbonyl-smelting abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-nickel ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-nickel-carbonyl ab18 abingot-nickel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +platinum-ore-smelting abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-platinum ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplatinum-ore ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-platinum-smelting abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-platinum ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-platinum ab8 abliquid-sulfuric-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-ammonium-chloroplatinate-smelting abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-platinum ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-ammonium-chloroplatinate ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silicon-ore-smelting abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-silicon ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab24 absolid-carbon ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-trichlorosilane-smelting abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-silicon ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silicon ab6 abliquid-trichlorosilane ab90 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-silane-smelting abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-silicon ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silicon ab6 abgas-silane ab90 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +ingot-iron-smelting abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-steel ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-iron ab24 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sponge-titanium-smelting abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-titanium ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absponge-titanium ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-titanium-smelting abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-titanium ab24 absolid-limestone ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-titanium ab8 absolid-carbon ab6 absolid-calcium-chloride ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +zinc-ore-smelting abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-zinc ab24 abingot-lead ab6 abgas-sulfur-dioxide ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abzinc-ore ab24 abgas-oxygen ab60 abliquid-molten-lead ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-zinc-smelting abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-zinc ab24 abgas-sulfur-dioxide ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-zinc ab8 absolid-carbon ab6 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cathode-zinc-smelting abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-zinc ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcathode-zinc ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lead-oxide abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-oxide ab1 abgas-sulfur-dioxide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-ore ab1 abgas-oxygen ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lead-oxide-2 abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-oxide ab1 abgas-hydrogen-sulfide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-ore ab1 abwater ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-nitrate abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-nitrate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-plate ab1 abgas-nitrogen-dioxide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +limestone abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-limestone ab1 abgas-carbon-dioxide ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-hexafluorosilicic-acid abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hexafluorosilicic-acid ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab3 abliquid-hydrofluoric-acid ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-hydrochloric-acid abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-hydrochloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-chloride ab100 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-tin-smelting abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-tin ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-tin ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-hypochlorite abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-hypochlorite ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-aqueous-sodium-hydroxide ab50 abgas-chlorine ab200 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-chlorate abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-chlorate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-aqueous-sodium-hydroxide ab50 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-perchlorate abpetrochem-sodium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-perchlorate ab5 abcatalyst-metal-carrier ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-chlorate ab5 abcatalyst-metal-blue ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-nitinol-smelting-1 abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-nitinol ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-nickel ab12 abingot-titanium ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-nitinol abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-alloy ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-nitinol ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitinol-alloy abangels-alloys-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitinol-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnickel-plate ab3 abtitanium-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-poison-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-poison-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpoison-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpoison-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpoison-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abalien-poison ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +poison-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpoison-rocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abalien-poison ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-poison-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-poison-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcordite ab1 abshotgun-shell-casing ab1 abalien-poison ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-copper abangels-copper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-copper ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-rocket-defense-equipment-vequip abangels-vehicle-equipment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rocket-defense-equipment-vequip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab20 absteel-plate ab20 abadvanced-circuit ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sodium-bicarbonate abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absodium-bicarbonate ab1 abammonium-chloride ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abammoniated-brine ab10 abgas-carbon-dioxide ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sodium-carbonate abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-carbonate ab1 abgas-carbon-dioxide ab25 abwater-purified ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absodium-bicarbonate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-aluminium-hydroxide-smelting abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalumina ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-aluminium-hydroxide ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-aluminate-smelting abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalumina ab24 absolid-sodium-carbonate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-aluminate ab24 absolid-sodium-hydroxide ab3 abgas-carbon-dioxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-dichromate-smelting abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-chrome-oxide ab24 absolid-sodium-carbonate ab3 abgas-carbon-monoxide ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-dichromate ab24 absolid-carbon ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pellet-silver-smelting abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-silver-cyanide ab24 absolid-sodium-hydroxide ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpellet-silver ab8 absolid-sodium-cyanide ab6 abwater-purified ab60 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-gas-residual abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis ab150 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-residual ab100 absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-brick abangels-stone ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abstone-brick ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfur-2 abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab50 abgas-hydrogen ab80 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfur-3 abbob-resource-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfur ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide ab50 abgas-oxygen ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-topaz abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-topaz ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-zinc-battery ab4 ablaser-rifle-battery-case ab1 abtopaz-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +utility-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abutility-science-pack ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab4 abelectric-engine-unit ab1 ablithium-ion-battery ab4 ablow-density-structure ab3 abtitanium-bearing ab4 abprocessing-unit ab6 ab ab ab ab ab ab ab ab ab ab ab ab +oil-boiler abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-boiler ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abboiler-2 ab1 absteel-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-coolant-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-coolant-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-coolant ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-coolant-barrel abangels-fluid-control-water-treatment-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-coolant ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-coolant-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-sulfur-scrubber abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-lime-used ab1 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-lime ab1 abwater ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-anode-sludge abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abangels-ore8-anode-sludge ab60 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-slime ab60 abliquid-ferric-chloride-solution ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-crushed ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crushed ab2 abangels-ore2-crushed ab2 abangels-ore5-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab2 abmanganese-ore ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-crystal-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab4 abmanganese-ore ab2 abnickel-ore ab1 abcobalt-ore ab1 abchrome-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-crystal ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-powder-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab3 abmanganese-ore ab2 abnickel-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-powder ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-sludge abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-sludge ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-powder ab3 abangels-ore1-chunk ab1 abangels-ore2-chunk ab1 abangels-ore5-chunk ab1 abthermal-water ab20 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-solution abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-solution ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-dust ab3 abangels-ore1-crystal ab1 abangels-ore2-crystal ab1 abangels-ore5-crystal ab1 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bio-plastic-2 abbio-plastic ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-plastic ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab10 abliquid-acetic-acid ab25 abliquid-propionic-acid ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +carbon-dioxide abbob-fluid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-dioxide ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-carbon ab1 abgas-oxygen ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +carbon-from-charcoal abbio-processing-wood ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-carbon ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood-charcoal ab1 abgas-oxygen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +condensates-refining abpetrochem-carbon-gas-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-coke ab2 abliquid-naphtha ab50 abgas-methane ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-condensates ab60 abthermal-water ab20 abgas-carbon-monoxide ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant-cool-200 abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-coolant-used ab200 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-coolant-used ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +crystal-dust-liquify abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-dust ab10 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +enriched-fuel-from-liquid-fuel abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abenriched-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-urea abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-urea ab80 abwater-purified ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab60 abgas-carbon-dioxide ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-hydrochloric-acid-solid-sodium-sulfate abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-sulfate ab3 abliquid-hydrochloric-acid ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-salt ab6 abliquid-sulfuric-acid ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mineral-oil-lubricant abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablubricant ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-mineral-oil ab40 abgas-residual ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-zinc abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-zinc ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-zinc ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-7 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-ammonium-nitrate abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-ammonium-nitrate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab100 abliquid-nitric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-turbine-2 abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-turbine-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtitanium-plate ab25 abtitanium-gear-wheel ab25 abtitanium-bearing ab15 abprocessing-unit ab5 absteam-turbine ab1 abtitanium-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +water-gas-shift-2 abpetrochem-basics ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified ab50 abgas-carbon-monoxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen ab50 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +grinding-wheel abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgrinding-wheel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-carbide ab5 absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +polishing-wheel abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpolishing-wheel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abwood ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +polishing-compound abbob-gems-polished ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpolishing-compound ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalumina ab1 abliquid-mineral-oil ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-carbon-dioxide-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-carbon-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-urea-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-urea-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-urea ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-perchloric-acid-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-perchloric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-perchloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-carbon-dioxide-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-carbon-dioxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-dioxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-urea-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-urea ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-urea-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-perchloric-acid-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-perchloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-perchloric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-tin-casting abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-tin ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-tin ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-tin-casting-fast abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-tin ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-tin ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix3-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbauxite-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore2-chunk ab2 abangels-ore4-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-artifact-from-small abbio-processing-alien-large ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-artifact ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absmall-alien-artifact ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-pre-artifact-base abbio-processing-alien-pre ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-pre-artifact-base ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abseeded-dish ab1 abpaste-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +small-alien-artifact abbio-processing-alien-small ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmall-alien-artifact ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-pre-artifact-base ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silicon-powder abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilicon-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silicon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-fuel-oil abpetrochem-cracking ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis ab100 abgas-residual ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil ab100 absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-sodium-silver-cyanide-smelting abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcathode-silver ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-silver-cyanide ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +centrifuge abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcentrifuge ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab100 absteel-plate ab50 abiron-gear-wheel ab100 abadvanced-circuit ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +centrifuge-2 abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcentrifuge-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcentrifuge ab1 absilicon-nitride ab100 abtitanium-plate ab50 abtitanium-gear-wheel ab100 abtitanium-bearing ab50 abprocessing-unit ab100 ab ab ab ab ab ab ab ab ab ab ab ab +centrifuge-3 abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcentrifuge-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcentrifuge-2 ab1 abtungsten-carbide ab100 abnitinol-alloy ab50 abnitinol-gear-wheel ab100 abnitinol-bearing ab50 abadvanced-processing-unit ab100 ab ab ab ab ab ab ab ab ab ab ab ab +coal-cracking-2 abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-coke ab6 abcatalyst-metal-carrier ab1 abliquid-naphtha ab60 abliquid-ngl ab30 abliquid-mineral-oil ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab5 abcatalyst-metal-red ab1 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-diamond abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-diamond ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-zinc-battery ab4 ablaser-rifle-battery-case ab1 abdiamond-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-electric-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-electric-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abalien-orange-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electric-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectric-rocket-warhead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abalien-orange-alloy ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-electric-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-electric-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-orange-alloy ab1 abcordite ab1 abshotgun-shell-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-aluminium-oxide-smelting abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-aluminium ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalumina ab24 absolid-carbon ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +chrome-ore-smelting abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-chrome ab24 abgas-carbon-monoxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abchrome-ore ab24 absolid-carbon ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-chrome-smelting abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-chrome ab24 abgas-carbon-monoxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-chrome ab8 absolid-carbon ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-chrome-oxide-smelting abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-chrome ab24 absolid-chrome-oxide ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-chrome-oxide ab24 abingot-chrome ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gold-ore-smelting abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-gold ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-ore ab24 abgas-chlorine ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cathode-gold-smelting abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-gold ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcathode-gold ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lead-ore-smelting abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-lead ab24 abgas-sulfur-dioxide ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-ore ab24 abgas-oxygen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-lead-oxide-smelting abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-lead ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-oxide ab24 absolid-carbon ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +anode-lead-smelting abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-lead ab12 abslag ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abanode-lead ab12 abliquid-hexafluorosilicic-acid ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lab-2 abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablab-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablab ab1 abadvanced-circuit ab10 abexpress-transport-belt ab4 abfilter-inserter ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lab-alien abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablab-alien ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablab ab1 abalien-artifact-orange ab5 abalien-artifact-blue ab5 abalien-artifact ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lab abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablab ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-gear-wheel ab10 abbasic-circuit-board ab10 abbasic-transport-belt ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lab-module abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablab-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablab ab1 abspeed-processor ab5 abeffectivity-processor ab5 abproductivity-processor ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +concrete-mixture-1 abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-concrete ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abslag ab4 absolid-cement ab8 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +concrete-mixture-2 abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-concrete ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone ab3 absolid-cement ab6 absolid-sand ab3 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-copper-smelting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-copper ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-copper ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-cobalt abangels-cobalt ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-cobalt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-cobalt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-iron abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-manganese abangels-manganese ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-manganese ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-manganese ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-nickel abangels-nickel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-nickel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-nickel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-platinum abangels-platinum ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-platinum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-platinum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-silicon abangels-silicon ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilicon-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silicon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-titanium abangels-titanium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-titanium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-titanium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-zinc abangels-zinc ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-zinc ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-zinc ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +red-waste-water-purification abwater-cleaning ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-sodium-nitrate ab1 abwater-mineralized ab20 abwater-purified ab70 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-red-waste ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +science-pack-gold abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abscience-pack-gold ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abautomation-science-pack ab1 ablogistic-science-pack ab1 abmilitary-science-pack ab1 abchemical-science-pack ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack-blue abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack-blue ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack-orange abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack-orange ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-orange ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack-purple abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack-purple ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-purple ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack-yellow abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack-yellow ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-yellow ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack-green abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack-green ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-green ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +alien-science-pack-red abscience-pack ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abalien-science-pack-red ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processed-tungsten-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-ammonium-paratungstate ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abprocessed-tungsten ab8 abgas-ammonia ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-cracking-oil-residual abpetrochem-carbon-synthesis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-residual ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-oil-residual ab10 absteam ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +water-thermal-lithia abwater-treatment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablithia-water ab40 abwater-purified ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthermal-water ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-boiler-2 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-boiler-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinvar-alloy ab5 aboil-boiler ab1 abbrass-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-anode-sludge-filtering abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abangels-ore8-slime ab60 abwater-yellow-waste ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abangels-ore8-solution ab60 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-crystal abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-crystal ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-anode-sludge ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-dust abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-dust ab4 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab1 abangels-ore8-sludge ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-dust-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-ore ab4 abmanganese-ore ab2 abnickel-ore ab1 abcobalt-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-dust ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore8-powder abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore8-powder ab3 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore8-crushed ab3 abmilling-drum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-crushed-processing abore-sorting-t1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab2 abtin-ore ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-crushed ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-crystal-processing abore-sorting-t4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab4 abtin-ore ab2 absilver-ore ab1 abgold-ore ab1 abquartz ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-crystal ab9 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-powder-processing abore-sorting-t2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab3 abtin-ore ab2 absilver-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-powder ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coolant-cool-300 abcoolant ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-coolant-used ab200 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-coolant-used ab200 abwater ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-barrel abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-lime-used abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 abgas-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-lime-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-ferric-chloride-solution abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-ferric-chloride-solution ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab2 abgas-hydrogen-chloride ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-fuel abpetrochem-carbon-oil-feed ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-fuel ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil ab40 abgas-residual ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-iron abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-iron ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powdered-tungsten abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowdered-tungsten ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-oxide ab1 abgas-hydrogen ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-8 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-ore ab1 abtungsten-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-ammonium-perchlorate abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-ammonium-perchlorate ab3 absolid-salt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab100 abliquid-perchloric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steam-turbine-3 abangels-power-steam-generator ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteam-turbine-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab25 abnitinol-gear-wheel ab25 abnitinol-bearing ab15 abadvanced-processing-unit ab5 absteam-turbine-2 ab1 abnitinol-pipe ab5 ab ab ab ab ab ab ab ab ab ab ab ab +crystal-grindstone abbob-gems-cut ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcrystal-grindstone ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgrinding-wheel ab1 abcrystal-powder ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-hydrogen-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-melamine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-melamine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-melamine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-phosgene-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-phosgene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-phosgene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-hydrogen-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhydrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-hydrogen-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-melamine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-melamine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-melamine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-phosgene-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-phosgene ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-phosgene-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-hydrogen-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrogen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abhydrogen-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-copper-casting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-copper ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-copper ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-copper-casting-fast abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-copper ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-copper ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-tin-casting abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-tin ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-tin ab40 abliquid-molten-copper ab40 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-tin-casting-fast abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-tin ab8 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-tin ab70 abliquid-molten-copper ab70 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix4-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abzinc-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore2-chunk ab2 abangels-ore6-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +coal-cracking-3 abpetrochem-coal ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-synthesis ab100 abgas-carbon-dioxide ab20 abgas-hydrogen-sulfide ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcoal ab5 absteam ab50 abgas-oxygen ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +concrete abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abconcrete ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab1 abstone-brick ab5 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-concrete abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abconcrete ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-concrete ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +hazard-concrete abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abhazard-concrete ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +refined-concrete abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrefined-concrete ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab20 absteel-plate ab1 abiron-stick ab8 abwater ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-allylchlorid abpetrochem-chlorine-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-allylchlorid ab50 abgas-hydrogen-chloride ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-propene ab50 abgas-chlorine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silver-ore-smelting abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-silver ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-ore ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-silver-nitrate-smelting abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-silver ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-nitrate ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cathode-silver-smelting abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abingot-silver ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcathode-silver ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-cobalt-smelting abangels-cobalt-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-cobalt ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-cobalt ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-manganese-smelting abangels-manganese-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-manganese ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-manganese ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-nickel-smelting abangels-nickel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-nickel ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-nickel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-platinum-smelting abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-platinum ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-platinum ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-silicon-smelting abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-silicon ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silicon ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-titanium-smelting-1 abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-titanium ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-titanium ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-titanium-smelting-2 abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-titanium ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-manganese ab12 abingot-titanium ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-titanium-smelting-3 abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-titanium ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-nickel ab12 abingot-titanium ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-titanium-smelting-4 abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-titanium ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-aluminium ab12 abingot-tin ab12 abingot-titanium ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-titanium-smelting-5 abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-titanium ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-chrome ab12 abingot-cobalt ab12 abingot-titanium ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-zinc-smelting abangels-zinc-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-zinc ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-zinc ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-nitric-acid abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-dioxide ab100 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sodium-nitrate-acid-processing abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nitric-acid ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-nitrate ab5 abliquid-sulfuric-acid ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-plasma-rocket abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbob-plasma-rocket ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplasma-rocket-warhead ab1 abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plasma-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplasma-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplasma-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plasma-bullet-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplasma-bullet-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplasma-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plasma-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplasma-bullet-projectile ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab6 abalien-artifact-red ab1 abalien-artifact-yellow ab1 abalien-artifact-orange ab1 abalien-artifact-blue ab1 abalien-artifact-purple ab1 abalien-artifact-green ab1 abgas-deuterium ab10 ab ab ab ab ab ab ab ab +plasma-rocket-warhead abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplasma-rocket-warhead ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab6 abalien-artifact-red ab1 abalien-artifact-yellow ab1 abalien-artifact-orange ab1 abalien-artifact-blue ab1 abalien-artifact-purple ab1 abalien-artifact-green ab1 abgas-deuterium ab10 ab ab ab ab ab ab ab ab +shotgun-plasma-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-plasma-shell ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-artifact-red ab1 abalien-artifact-yellow ab1 abalien-artifact-orange ab1 abalien-artifact-blue ab1 abalien-artifact-purple ab1 abalien-artifact-green ab1 abcordite ab6 abshotgun-shell-casing ab6 abgas-deuterium ab10 ab ab ab ab ab ab +powder-aluminium abangels-aluminium ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-aluminium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-aluminium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-chrome abangels-chrome ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-chrome ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-chrome ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-gold abangels-gold ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-gold ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-gold ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-lead abangels-lead ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-lead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-lead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-steel abangels-iron ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-steel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-steel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-tungsten-hexafluoride-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowdered-tungsten ab24 abfluorite-ore ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-tungsten-hexafluoride ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +solid-ammonium-paratungstate-smelting abangels-tungsten ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowdered-tungsten ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-ammonium-paratungstate ab24 abgas-hydrogen ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-water-semiheavy-1-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-semiheavy-1-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-water-semiheavy-1 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-water-semiheavy-1-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-water-semiheavy-1 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-1-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-water-semiheavy-2-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-semiheavy-2-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-water-semiheavy-2 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-water-semiheavy-2-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-water-semiheavy-2 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-2-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-water-semiheavy-3-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-semiheavy-3-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-water-semiheavy-3 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-water-semiheavy-3-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-water-semiheavy-3 ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-3-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-heavy-water-barrel abangels-fluid-control-angels-fluid-converter-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheavy-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-water-heavy ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-water-heavy-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-heavy-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-water-heavy ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-heavy-water-barrel abangels-fluid-control-angels-fluid-converter-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-water-heavy ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abheavy-water-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-water-heavy-barrel abangels-fluid-control-water-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-water-heavy ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-heavy-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-boiler-3 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-boiler-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab5 aboil-boiler-2 ab1 abceramic-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-oxidizer-capsule abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-oxidizer-capsule ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nitric-acid ab10 abgas-dinitrogen-tetroxide ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-fuel-capsule abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-fuel-capsule ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dimethylhydrazine ab30 abgas-hydrazine ab30 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-fuel abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-oxidizer-capsule ab10 abrocket-fuel-capsule ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +refined-hazard-concrete abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrefined-hazard-concrete ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrefined-concrete ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-hydrogen abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-hydrogen-chloride abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-chloride ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-hydrogen-sulfide abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-anode-sludge abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag ab1 abangels-ore9-anode-sludge ab60 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-slime ab60 abliquid-cupric-chloride-solution ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-crushed abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-crushed ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crushed ab2 abangels-ore4-crushed ab2 abangels-ore6-crushed ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-sludge abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-sludge ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-powder ab3 abangels-ore3-chunk ab1 abangels-ore4-chunk ab1 abangels-ore6-chunk ab1 abthermal-water ab20 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-solution abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-solution ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-dust ab3 abangels-ore3-crystal ab1 abangels-ore4-crystal ab1 abangels-ore6-crystal ab1 abliquid-sulfuric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-canister abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 abplastic-bar ab1 abempty-barrel ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-melamine abpetrochem-nitrogen ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalyst-metal-carrier ab1 abgas-melamine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalyst-metal-blue ab1 abgas-urea ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-cupric-chloride-solution abpetrochem-chlorine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-cupric-chloride-solution ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab2 abgas-hydrogen-chloride ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +paste-silver abbio-processing-paste ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpaste-silver ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-silver ab2 abpaste-cellulose ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-9 abslag-processing-1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-ore ab1 abfluorite-ore ab1 abthorium-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +slag-processing-dissolution abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abslag ab5 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-deuterium-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdeuterium-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-deuterium ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-deuterium-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-deuterium-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-deuterium ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-nitric-acid-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-nitric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-nitric-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-canister ab1 abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-deuterium-barrel abangels-fluid-control-bob-gas-bottle ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-deuterium ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdeuterium-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-deuterium-barrel abangels-fluid-control-petrochem-basic-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-deuterium ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-deuterium-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-nitric-acid-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nitric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-nitric-acid-barrel abangels-fluid-control-bob-canister ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-canister ab1 abliquid-nitric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitric-acid-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-mono-silicon-seed abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-mono-silicon-seed ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-silicon ab5 abgas-nitrogen ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore6-crushed-smelting abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtin-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore6-crushed ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tin-plate abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtin-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtin-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-tin abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtin-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-tin ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-tin-converting abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtin-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-tin ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-cobalt-casting abangels-cobalt-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-cobalt ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-cobalt ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-cobalt-casting-fast abangels-cobalt-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-cobalt ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-cobalt ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-manganese-casting abangels-manganese-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-manganese ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-manganese ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-manganese-casting-fast abangels-manganese-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-manganese ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-manganese ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-nickel-casting abangels-nickel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-nickel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-nickel ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-nickel-casting-fast abangels-nickel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-nickel ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-nickel ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-platinum-casting abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-platinum ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-platinum ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-platinum-casting-fast abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-platinum ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-platinum ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-titanium-casting abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-titanium ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-titanium ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-titanium-casting-fast abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-titanium ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-titanium ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-zinc-casting abangels-zinc-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-zinc ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-zinc ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-zinc-casting-fast abangels-zinc-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-zinc ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-zinc ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-copper-casting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-copper ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-copper ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-copper-casting-fast abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-copper ab8 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-copper ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix5-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore3-chunk ab2 abangels-ore6-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +casting-powder-tungsten-1 abangels-tungsten-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcasting-powder-tungsten ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-cobalt ab12 abpowdered-tungsten ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +casting-powder-tungsten-2 abangels-tungsten-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcasting-powder-tungsten ab24 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowder-nickel ab12 abpowdered-tungsten ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalysator-brown abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalysator-brown ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-concrete-brick abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abconcrete-brick ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab4 abliquid-concrete ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-hydrogen-sulfide-enrichment abpetrochem-sulfur ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-purified ab50 abgas-enriched-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteam ab50 abgas-hydrogen-sulfide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-epichlorhydrin abpetrochem-chlorine-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-epichlorhydrin ab90 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab5 abgas-allylchlorid ab100 abliquid-hydrochloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-aluminium-smelting-1 abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-aluminium ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-aluminium ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-aluminium-smelting-2 abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-aluminium ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-aluminium ab12 abingot-manganese ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-aluminium-smelting-3 abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-aluminium ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-aluminium ab12 abingot-copper ab12 abingot-silicon ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-chrome-smelting abangels-chrome-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-chrome ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-chrome ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-gold-smelting abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-gold ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-gold ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-iron-smelting-1 abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-iron ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-iron ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-iron-smelting-2 abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-iron ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-iron ab12 abingot-manganese ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-iron-smelting-3 abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-iron ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-iron ab12 abingot-silicon ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-iron-smelting-4 abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-iron ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-cobalt ab12 abingot-iron ab12 abingot-nickel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-iron-smelting-5 abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-iron ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-chrome ab12 abingot-iron ab12 abingot-nickel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-lead-smelting abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-lead ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-lead ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-steel-smelting-1 abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-steel ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-steel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-steel-smelting-2 abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-steel ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-steel ab12 abingot-silicon ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-steel-smelting-3 abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-steel ab240 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-steel ab12 abingot-manganese ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-steel-smelting-4 abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-steel ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-cobalt ab12 abingot-steel ab12 abingot-nickel ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-steel-smelting-5 abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-steel ab360 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-chrome ab12 abingot-steel ab12 abpowdered-tungsten ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-uranium-shell abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-uranium-shell ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-238 ab1 abcordite ab1 abshotgun-shell-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +uranium-bullet abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-bullet ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-bullet-projectile ab1 abcordite ab1 abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +uranium-bullet-projectile abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-bullet-projectile ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 aburanium-238 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +uranium-rounds-magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-rounds-magazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product aburanium-bullet ab5 abmagazine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +powder-silver abangels-silver ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpowder-silver ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silver ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +oil-boiler-4 abangels-power-steam-boiler ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aboil-boiler-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-tungsten-alloy ab5 aboil-boiler-3 ab1 abcopper-tungsten-pipe ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-booster-1 abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-booster ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-ammonium-nitrate ab3 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +sulfuric-nitric-acid abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absulfuric-nitric-acid ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-sulfuric-acid ab10 abliquid-nitric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nitroglycerin abpetrochem-rocket ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitroglycerin ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-glycerol ab10 abliquid-sulfuric-acid ab15 abliquid-nitric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-booster-2 abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-booster ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-ammonium-perchlorate ab3 abpipe ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix6-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfluorite-ore ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore8-powder ab2 abangels-ore2-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-chunk-mix7-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore1-chunk ab2 abangels-ore2-chunk ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-anode-sludge-filtering abore-processing-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic-used ab1 abangels-ore9-slime ab60 abwater-yellow-waste ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic ab1 abangels-ore9-solution ab60 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-crystal abore-processing-d ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-crystal ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-anode-sludge ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-dust abore-processing-b ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-dust ab4 abwater-yellow-waste ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-hydroxide ab1 abangels-ore9-sludge ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-dust-processing abore-sorting-t3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-ore ab4 abtin-ore ab2 absilver-ore ab1 abgold-ore ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-dust ab8 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore9-powder abore-processing-a ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-ore9-powder ab3 abmilling-drum-used ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore9-crushed ab3 abmilling-drum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-titanium-plate abbob-material-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrutile-ore ab2 absolid-carbon ab1 absolid-calcium-chloride ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-tungsten-plate abbob-alloy ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-plate ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowdered-tungsten ab4 abnickel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-zinc-plate abbob-material-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abzinc-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abzinc-ore ab1 abliquid-sulfuric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-canister abangels-fluid-control ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 abempty-canister ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +nuclear-fuel abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnuclear-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-fuel ab1 aburanium-235 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tinned-copper-cable abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtinned-copper-cable ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab3 abtin-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +stone-crushed-dissolution abliquifying ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abslag-slurry ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-crushed ab25 abliquid-sulfuric-acid ab15 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-monochloramine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-monochloramine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-monochloramine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-liquid-aqueous-sodium-hydroxide-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-aqueous-sodium-hydroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abliquid-aqueous-sodium-hydroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-monochloramine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-monochloramine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-monochloramine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-liquid-aqueous-sodium-hydroxide-barrel abangels-fluid-control-petrochem-chlorine-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abliquid-aqueous-sodium-hydroxide ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-aqueous-sodium-hydroxide-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-cobalt abangels-cobalt-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-cobalt ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-cobalt ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-cobalt-converting abangels-cobalt-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-cobalt ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-cobalt ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore3-crushed-smelting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore3-crushed ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-copper-pebbles-smelting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-copper-pebbles ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-copper-nugget-smelting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-copper-nugget ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-plate abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-copper abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-copper ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-copper-converting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-copper ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-manganese abangels-manganese-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-manganese ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-manganese ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-manganese-converting abangels-manganese-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-manganese ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-manganese ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-nickel abangels-nickel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnickel-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-nickel ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-nickel-converting abangels-nickel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnickel-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-nickel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-titanium abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-titanium ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-titanium-converting abangels-titanium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtitanium-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-titanium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-tungsten abangels-tungsten-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-plate ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcasting-powder-tungsten ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-zinc abangels-zinc-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abzinc-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-zinc ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-zinc-converting abangels-zinc-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abzinc-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-zinc ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-quartz-crucible abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-quartz-crucible ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-aluminium-casting abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-aluminium ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-aluminium ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-aluminium-casting-fast abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-aluminium ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-aluminium ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-chrome-casting abangels-chrome-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-chrome ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-chrome ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-chrome-casting-fast abangels-chrome-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-chrome ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-chrome ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-gold-casting abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-gold ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-gold ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-gold-casting-fast abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-gold ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-gold ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-iron-casting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-iron ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-iron ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-iron-casting-fast abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-iron ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-iron ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-lead-casting abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-lead ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-lead ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-lead-casting-fast abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-lead ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-lead ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-steel-casting abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-steel ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-steel ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-steel-casting-fast abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-steel ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-steel ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-platinum-casting abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-platinum ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-platinum ab40 abliquid-molten-copper ab40 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-platinum-casting-fast abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-platinum ab8 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-platinum ab70 abliquid-molten-copper ab70 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-tinned-copper-wire abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtinned-copper-cable ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab10 abtin-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-tin-converting abangels-tin-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtinned-copper-cable ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-wire-coil-tin ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalysator-green abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalysator-green ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-seedling ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bullet-casing abangels-physical-ad ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbullet-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgunmetal-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +cordite abangels-physical-ac ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcordite ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgun-cotton ab13 abpetroleum-jelly ab1 abnitroglycerin ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +laser-rifle-battery-case abangels-electric-c ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablaser-rifle-battery-case ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abplastic-bar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +magazine abangels-physical-ae ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmagazine ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-body abangels-explosion-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-body ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab1 abprocessing-unit ab1 abrocket-engine ab1 abliquid-fuel ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-engine abangels-explosion-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-engine ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-plate ab1 abtungsten-gear-wheel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shotgun-shell-casing abangels-physical-bb ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshotgun-shell-casing ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgunmetal-alloy ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-glycerol abpetrochem-chlorine-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-glycerol ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-epichlorhydrin ab100 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +molten-silver-smelting abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-molten-silver ab120 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abingot-silver ab12 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-reinforced-concrete-brick abangels-stone-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abreinforced-concrete-brick ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abstone-brick ab4 absteel-plate ab4 abliquid-concrete ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-nuclear-fuel abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-nuclear-fuel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-fuel ab1 abplutonium-239 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crystal-mix1-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrutile-ore ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore1-crystal ab2 abangels-ore4-crystal ab2 abangels-ore5-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-aluminium-plate abbob-material-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abaluminium-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalumina ab2 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-lead-plate abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-oxide ab2 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-silicon-plate abbob-material-electrolysis ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-mono-silicon ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abquartz ab2 absolid-carbon ab1 absolid-calcium-chloride ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-hydrazine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrazine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-hydrazine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-hydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrazine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-mono-silicon-1 abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-mono-silicon ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-mono-silicon-seed ab1 abliquid-molten-silicon ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-mono-silicon-2 abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-mono-silicon ab6 abangels-quartz-crucible ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-mono-silicon-seed ab1 abangels-quartz-crucible ab1 abliquid-molten-silicon ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-aluminium abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abaluminium-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-aluminium ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-aluminium-converting abangels-aluminium-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abaluminium-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-aluminium ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-chrome abangels-chrome-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-chrome ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-chrome ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-chrome-converting abangels-chrome-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-chrome ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-chrome ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore5-crushed-smelting abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore5-crushed ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +lead-plate abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-lead abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-lead ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-lead-converting abangels-lead-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablead-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-lead ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-platinum abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-platinum ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-platinum ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-platinum-converting abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-plate-platinum ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-platinum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rod-stack-iron-casting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rod-stack-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-iron ab60 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rod-stack-iron-casting-fast abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rod-stack-iron ab2 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-iron ab110 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rod-stack-steel-casting abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rod-stack-steel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-steel ab60 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rod-stack-steel-casting-fast abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rod-stack-steel ab2 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-steel ab110 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-silver-casting abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-silver ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-silver ab80 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +roll-silver-casting-fast abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-roll-silver ab4 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-silver ab140 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-gold-casting abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-gold ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-gold ab40 abliquid-molten-copper ab40 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-gold-casting-fast abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-gold ab8 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-gold ab70 abliquid-molten-copper ab70 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-cable abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-cable ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-copper-converting abangels-copper-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-cable ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-wire-coil-copper ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +catalysator-orange abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcatalysator-orange ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-brown ab2 abcatalysator-green ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-methanol-from-wood abbio-processing-green ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methanol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +liquid-perchloric-acid abpetrochem-chlorine-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-perchloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-sodium-perchlorate ab2 abliquid-hydrochloric-acid ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-carbide abangels-tungsten-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-carbide ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-oxide ab1 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +tungsten-carbide-2 abangels-tungsten-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-carbide ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowdered-tungsten ab1 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-enrichment-1 abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-sulfide ab100 abliquid-water-semiheavy-1 ab50 abwater-green-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab60 abwater-purified ab50 abgas-enriched-hydrogen-sulfide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-enrichment-2 abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-sulfide ab100 abliquid-water-semiheavy-2 ab50 abwater-green-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab60 abliquid-water-semiheavy-1 ab50 abgas-enriched-hydrogen-sulfide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-enrichment-3 abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-hydrogen-sulfide ab100 abliquid-water-semiheavy-3 ab50 abwater-green-waste ab60 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab60 abliquid-water-semiheavy-2 ab50 abgas-enriched-hydrogen-sulfide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-heavy-water-extraction abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-heavy ab5 absteam ab95 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-3 ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-enriched-cooling-1 abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-semiheavy-1 ab200 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-1 ab200 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-enriched-cooling-2 abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-semiheavy-2 ab200 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-2 ab200 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-enriched-cooling-3 abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-semiheavy-3 ab200 absteam ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-semiheavy-3 ab200 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-heavy-water-cooling abwater-enrichment ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abliquid-water-heavy ab100 absteam ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-water-heavy ab100 abwater-purified ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-nuclear-fuel-2 abpetrochem-fuel ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-nuclear-fuel-2 ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-fuel ab3 abplutonium-239 ab2 abthorium-232 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crystal-mix2-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgold-ore ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore1-crystal ab2 abangels-ore5-crystal ab2 abangels-ore6-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +bob-gold-plate abbob-material-chemical ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgold-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgold-ore ab1 abgas-chlorine ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +copper-tungsten-alloy abangels-tungsten-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcopper-tungsten-alloy ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abpowdered-tungsten ab3 abcopper-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gas-phosgene abpetrochem-chlorine-2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-phosgene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-carbon ab1 abgas-carbon-monoxide ab60 abgas-chlorine ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +steel-plate abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abgas-oxygen ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-methylamine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-methylamine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-methylamine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-methylamine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-methylamine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methylamine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-gold abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgold-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-gold ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-gold-converting abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgold-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-gold ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore1-crushed-smelting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-ore1-crushed ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-iron-pebbles-smelting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-iron-pebbles ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-iron-nugget-smelting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-iron-nugget ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +iron-plate abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-iron abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-iron ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-iron-converting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-steel abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-steel ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-steel-converting abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absteel-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-steel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-silicon-wafer abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilicon-wafer ab1 - 5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-mono-silicon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silicon-wafer abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilicon-wafer ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-mono-silicon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-silver-casting abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-silver ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-silver ab40 abliquid-molten-copper ab40 abwater ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-silver-casting-fast abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-coil-silver ab8 abliquid-coolant-used ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-silver ab70 abliquid-molten-copper ab70 abliquid-coolant ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-platinated-copper-wire abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-platinum ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab10 abangels-plate-platinum ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-platinum-converting abangels-platinum-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-platinum ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-wire-coil-platinum ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thorium-processing abbob-nuclear ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthorium-232 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthorium-ore ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-thermal-water abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abthermal-water ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-slag-slurry abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abslag-slurry ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-mineral-sludge abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmineral-sludge ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-crystal-slurry abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-slurry ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-crystal-seedling abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-seedling ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-crystal-matrix abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrystal-matrix ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-chlorauric-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-chlorauric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-hexafluorosilicic-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hexafluorosilicic-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-hexachloroplatinic-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hexachloroplatinic-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-trichlorosilane abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-trichlorosilane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-silane abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-silane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-titanium-tetrachloride abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-titanium-tetrachloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-tungstic-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-tungstic-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-tungsten-hexafluoride abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-tungsten-hexafluoride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-purified abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-purified ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-saline abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-saline ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-mineralized abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-mineralized ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-lithia-water abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablithia-water ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-liquid-coolant abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-coolant ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-yellow-waste abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-yellow-waste ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-greenyellow-waste abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-greenyellow-waste ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-green-waste abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-green-waste ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-red-waste abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-red-waste ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-viscous-mud abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-viscous-mud ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-heavy-mud abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-heavy-mud ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-concentrated-mud abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-concentrated-mud ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-light-mud abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-light-mud ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-water-thin-mud abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwater-thin-mud ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-compressed-air abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-compressed-air ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-oxygen abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-hydrogen-peroxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-peroxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-carbon-monoxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-monoxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-carbon-dioxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-carbon-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-hydrogen abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-chlorine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlorine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-hydrogen-chloride abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-hydrochloric-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hydrochloric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-allylchlorid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-allylchlorid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-epichlorhydrin abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-epichlorhydrin ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-chlor-methane abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-chlor-methane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-perchloric-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-perchloric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-phosgene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-phosgene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-ferric-chloride-solution abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ferric-chloride-solution ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-cupric-chloride-solution abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-cupric-chloride-solution ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-water-void-liquid-aqueous-sodium-hydroxide abangels-water-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwater-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-aqueous-sodium-hydroxide ab400 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-nitrogen abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-ammonia abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonia ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-nitrogen-monoxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-monoxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-nitrogen-dioxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-dinitrogen-tetroxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dinitrogen-tetroxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-ammonium-chloride abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ammonium-chloride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-urea abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-urea ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-melamine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-melamine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-nitric-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-nitric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-monochloramine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-monochloramine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-hydrazine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrazine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-methylamine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methylamine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-dimethylamine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dimethylamine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-dimethylhydrazine abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dimethylhydrazine ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-hydrogen-sulfide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-sulfide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-sulfur-dioxide abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-sulfuric-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-sulfuric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-hydrogen-fluoride abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-hydrogen-fluoride ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-hydrofluoric-acid abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-hydrofluoric-acid ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-natural-1 abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-natural-1 ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-raw-1 abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-raw-1 ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-ngl abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ngl ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-multi-phase-oil abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-multi-phase-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-condensates abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-condensates ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-residual abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-residual ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-methane abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-ethane abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-butane abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-butane ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-propene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-propene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-methanol abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methanol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-ethylene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethylene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-benzene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-benzene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-fuel-oil abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-fuel-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-naphtha abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-naphtha ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-mineral-oil abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-mineral-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-synthesis abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-synthesis ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-toluene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-toluene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-butadiene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-butadiene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-phenol abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-phenol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-ethylbenzene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ethylbenzene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-styrene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-styrene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-formaldehyde abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-formaldehyde ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-polyethylene abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-polyethylene ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-glycerol abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-glycerol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-liquid-bisphenol-a abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-bisphenol-a ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-acetone abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-acetone ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-algae-green abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-green ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-algae-brown abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-brown ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-algae-red abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-red ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-algae-blue abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalgae-blue ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-wood abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-cellulose-fiber abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcellulose-fiber ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-garden abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-garden ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-garden abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-garden ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-garden abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-garden ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-1-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-1-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-2-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-2-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-3-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-3-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-4-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-4-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-5-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-5-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-3-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-3-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-4-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-4-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-5-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-5-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-1 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-2 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-3 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-4 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-4 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-temperate-5 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtemperate-5 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-1-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-1-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-2-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-2-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-3-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-3-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-4-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-4-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-5-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-5-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-3-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-3-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-4-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-4-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-5-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-5-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-1 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-2 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-3 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-4 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-4 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-swamp-5 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abswamp-5 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-1-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-1-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-2-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-2-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-3-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-3-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-4-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-4-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-5-seed abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-5-seed ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-3-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-3-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-4-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-4-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-5-seed-dormant abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-5-seed-dormant ab20 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-1 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-1 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-2 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-3 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-4 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-4 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-desert-5 abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abdesert-5 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-gas-ethanol abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-ethanol ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-bio-puffer-egg-shell abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abbio-puffer-egg-shell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-alien-spores abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-spores ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-bio-void-alien-bacteria abangels-bio-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absolid-compost ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abalien-bacteria ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-crude-oil abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcrude-oil ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-ferric-chloride-solution abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-ferric-chloride-solution ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-chemical-void-lubricant abangels-chemical-void ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abchemical-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablubricant ab100 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crystal-mix3-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcobalt-ore ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore2-crystal ab2 abangels-ore4-crystal ab2 abangels-ore6-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gilded-copper-cable abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgilded-copper-cable ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab3 abgold-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wooden-board-paper abbio-paper ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwooden-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolid-paper ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-dimethylamine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dimethylamine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-dimethylamine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-dimethylamine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-dimethylamine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dimethylamine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abeffectivity-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module-2 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abeffectivity-processor ab2 abmodule-contact ab5 abeffectivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module-3 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab5 abeffectivity-processor-2 ab3 abeffectivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module-4 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab5 abmodule-contact ab5 abeffectivity-processor-2 ab4 abeffectivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module-5 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abintergrated-electronics ab5 abruby-5 ab1 abmodule-contact ab5 abeffectivity-processor-2 ab5 abeffectivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module-6 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab5 abemerald-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab6 abeffectivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +effectivity-module-7 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab5 abprocessing-electronics ab3 abtopaz-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab8 abeffectivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab +effectivity-module-8 abeffectivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abeffectivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abelectronic-components ab5 abintergrated-electronics ab5 abprocessing-electronics ab5 abdiamond-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab10 abeffectivity-module-7 ab1 ab ab ab ab ab ab ab ab +god-module-1 abgod-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgod-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abmodule-case ab1 abspeed-processor ab2 abeffectivity-processor ab6 abproductivity-processor ab2 abpollution-clean-processor ab4 abmodule-contact ab5 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab +green-module-1 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abeffectivity-processor ab1 abpollution-clean-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-module-1-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abeffectivity-module ab1 abpollution-clean-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +god-module-2 abgod-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgod-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abelectronic-components ab7 abintergrated-electronics ab7 abmodule-contact ab5 abspeed-processor-2 ab4 abeffectivity-processor-2 ab12 abproductivity-processor-2 ab4 abpollution-clean-processor-2 ab8 abgod-module-1 ab1 ab ab ab ab ab ab +green-module-2 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abeffectivity-processor ab2 abpollution-clean-processor ab2 abmodule-contact ab5 abgreen-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-module-2-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abeffectivity-module-2 ab1 abpollution-clean-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +god-module-3 abgod-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgod-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab7 abruby-5 ab1 absapphire-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab6 abeffectivity-processor-3 ab18 abproductivity-processor-3 ab6 abpollution-clean-processor-3 ab12 abgod-module-2 ab1 ab ab ab ab +green-module-3 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abelectronic-components ab7 abeffectivity-processor-2 ab3 abpollution-clean-processor-2 ab3 abgreen-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-module-3-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abeffectivity-module-3 ab1 abpollution-clean-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +god-module-4 abgod-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgod-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab12 abelectronic-components ab8 abintergrated-electronics ab8 abprocessing-electronics ab8 abemerald-5 ab1 abamethyst-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab10 abeffectivity-processor-3 ab30 abproductivity-processor-3 ab10 abpollution-clean-processor-3 ab20 abgod-module-3 ab1 +green-module-4 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab7 abmodule-contact ab5 abeffectivity-processor-2 ab4 abpollution-clean-processor-2 ab4 abgreen-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +green-module-4-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abeffectivity-module-4 ab1 abpollution-clean-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +god-module-5 abgod-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgod-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab15 abelectronic-components ab10 abintergrated-electronics ab10 abprocessing-electronics ab10 abtopaz-5 ab1 abdiamond-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab15 abeffectivity-processor-3 ab45 abproductivity-processor-3 ab15 abpollution-clean-processor-3 ab30 abgod-module-4 ab1 +green-module-5 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abintergrated-electronics ab7 abruby-5 ab1 abmodule-contact ab5 abeffectivity-processor-2 ab5 abpollution-clean-processor-2 ab5 abgreen-module-4 ab1 ab ab ab ab ab ab ab ab ab ab +green-module-5-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abeffectivity-module-5 ab1 abpollution-clean-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-module-6 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab7 abemerald-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab6 abpollution-clean-processor-3 ab6 abgreen-module-5 ab1 ab ab ab ab ab ab ab ab ab ab +green-module-6-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abeffectivity-module-6 ab1 abpollution-clean-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-module-7 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abintergrated-electronics ab8 abprocessing-electronics ab5 abtopaz-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab8 abpollution-clean-processor-3 ab8 abgreen-module-6 ab1 ab ab ab ab ab ab ab ab +green-module-7-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abeffectivity-module-7 ab1 abpollution-clean-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +green-module-8 abgreen-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab12 abelectronic-components ab8 abintergrated-electronics ab8 abprocessing-electronics ab8 abdiamond-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab10 abpollution-clean-processor-3 ab10 abgreen-module-7 ab1 ab ab ab ab ab ab +green-module-8-combine abgreen-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgreen-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abeffectivity-module-8 ab1 abpollution-clean-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abproductivity-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module-2 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abproductivity-processor ab2 abmodule-contact ab5 abproductivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module-3 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab5 abproductivity-processor-2 ab3 abproductivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module-4 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab5 abmodule-contact ab5 abproductivity-processor-2 ab4 abproductivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module-5 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abintergrated-electronics ab5 abruby-5 ab1 abmodule-contact ab5 abproductivity-processor-2 ab5 abproductivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module-6 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab5 abemerald-5 ab1 abmodule-contact ab5 abproductivity-processor-3 ab6 abproductivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +productivity-module-7 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab5 abprocessing-electronics ab3 abtopaz-5 ab1 abmodule-contact ab5 abproductivity-processor-3 ab8 abproductivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab +productivity-module-8 abproductivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abproductivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abelectronic-components ab5 abintergrated-electronics ab5 abprocessing-electronics ab5 abdiamond-5 ab1 abmodule-contact ab5 abproductivity-processor-3 ab10 abproductivity-module-7 ab1 ab ab ab ab ab ab ab ab +pollution-clean-module-1 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abpollution-clean-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-2 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abpollution-clean-processor ab2 abmodule-contact ab5 abpollution-clean-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-3 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab5 abpollution-clean-processor-2 ab3 abpollution-clean-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-4 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab5 abmodule-contact ab5 abpollution-clean-processor-2 ab4 abpollution-clean-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-5 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abintergrated-electronics ab5 abruby-5 ab1 abmodule-contact ab5 abpollution-clean-processor-2 ab5 abpollution-clean-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-6 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab5 abemerald-5 ab1 abmodule-contact ab5 abpollution-clean-processor-3 ab6 abpollution-clean-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-7 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab5 abprocessing-electronics ab3 abtopaz-5 ab1 abmodule-contact ab5 abpollution-clean-processor-3 ab8 abpollution-clean-module-6 ab1 ab ab ab ab ab ab ab ab ab ab +pollution-clean-module-8 abpollution-clean-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-clean-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abelectronic-components ab5 abintergrated-electronics ab5 abprocessing-electronics ab5 abdiamond-5 ab1 abmodule-contact ab5 abpollution-clean-processor-3 ab10 abpollution-clean-module-7 ab1 ab ab ab ab ab ab ab ab +pollution-create-module-1 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abpollution-create-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-module-2 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abpollution-create-processor ab2 abmodule-contact ab5 abpollution-create-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-module-3 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab5 abpollution-create-processor-2 ab3 abpollution-create-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-module-4 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab5 abmodule-contact ab5 abpollution-create-processor-2 ab4 abpollution-create-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-module-5 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abintergrated-electronics ab5 abruby-5 ab1 abmodule-contact ab5 abpollution-create-processor-2 ab5 abpollution-create-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-module-6 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab5 abemerald-5 ab1 abmodule-contact ab5 abpollution-create-processor-3 ab6 abpollution-create-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +pollution-create-module-7 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab5 abprocessing-electronics ab3 abtopaz-5 ab1 abmodule-contact ab5 abpollution-create-processor-3 ab8 abpollution-create-module-6 ab1 ab ab ab ab ab ab ab ab ab ab +pollution-create-module-8 abpollution-create-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpollution-create-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abelectronic-components ab5 abintergrated-electronics ab5 abprocessing-electronics ab5 abdiamond-5 ab1 abmodule-contact ab5 abpollution-create-processor-3 ab10 abpollution-create-module-7 ab1 ab ab ab ab ab ab ab ab +raw-productivity-module-1 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abeffectivity-processor ab1 abproductivity-processor ab1 abpollution-clean-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-1-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abeffectivity-module ab1 abproductivity-module ab1 abpollution-clean-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-2 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abeffectivity-processor ab2 abproductivity-processor ab2 abpollution-clean-processor ab2 abmodule-contact ab5 abraw-productivity-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-2-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abeffectivity-module-2 ab1 abproductivity-module-2 ab1 abpollution-clean-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-3 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abelectronic-components ab7 abeffectivity-processor-2 ab3 abproductivity-processor-2 ab3 abpollution-clean-processor-2 ab3 abraw-productivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-3-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abeffectivity-module-3 ab1 abproductivity-module-3 ab1 abpollution-clean-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-4 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab7 abmodule-contact ab5 abeffectivity-processor-2 ab4 abproductivity-processor-2 ab4 abpollution-clean-processor-2 ab4 abraw-productivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-4-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abeffectivity-module-4 ab1 abproductivity-module-4 ab1 abpollution-clean-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-5 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abintergrated-electronics ab7 abruby-5 ab1 abmodule-contact ab5 abeffectivity-processor-2 ab5 abproductivity-processor-2 ab5 abpollution-clean-processor-2 ab5 abraw-productivity-module-4 ab1 ab ab ab ab ab ab ab ab +raw-productivity-module-5-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abeffectivity-module-5 ab1 abproductivity-module-5 ab1 abpollution-clean-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-6 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab7 abemerald-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab6 abproductivity-processor-3 ab6 abpollution-clean-processor-3 ab6 abraw-productivity-module-5 ab1 ab ab ab ab ab ab ab ab +raw-productivity-module-6-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abeffectivity-module-6 ab1 abproductivity-module-6 ab1 abpollution-clean-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-7 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abintergrated-electronics ab8 abprocessing-electronics ab5 abtopaz-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab8 abproductivity-processor-3 ab8 abpollution-clean-processor-3 ab8 abraw-productivity-module-6 ab1 ab ab ab ab ab ab +raw-productivity-module-7-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abeffectivity-module-7 ab1 abproductivity-module-7 ab1 abpollution-clean-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-productivity-module-8 abraw-productivity-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab12 abelectronic-components ab8 abintergrated-electronics ab8 abprocessing-electronics ab8 abdiamond-5 ab1 abmodule-contact ab5 abeffectivity-processor-3 ab10 abproductivity-processor-3 ab10 abpollution-clean-processor-3 ab10 abraw-productivity-module-7 ab1 ab ab ab ab +raw-productivity-module-8-combine abraw-productivity-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-productivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abeffectivity-module-8 ab1 abproductivity-module-8 ab1 abpollution-clean-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-1 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abspeed-processor ab1 abeffectivity-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-1-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abspeed-module ab1 abeffectivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-2 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abspeed-processor ab2 abeffectivity-processor ab2 abmodule-contact ab5 abraw-speed-module-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-2-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abspeed-module-2 ab1 abeffectivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-3 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abelectronic-components ab7 abspeed-processor-2 ab3 abeffectivity-processor-2 ab3 abraw-speed-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-3-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abspeed-module-3 ab1 abeffectivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-4 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab7 abmodule-contact ab5 abspeed-processor-2 ab4 abeffectivity-processor-2 ab4 abraw-speed-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-4-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abspeed-module-4 ab1 abeffectivity-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-5 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abintergrated-electronics ab7 abruby-5 ab1 abmodule-contact ab5 abspeed-processor-2 ab5 abeffectivity-processor-2 ab5 abraw-speed-module-4 ab1 ab ab ab ab ab ab ab ab ab ab +raw-speed-module-5-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab6 abspeed-module-5 ab1 abeffectivity-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-6 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab7 abemerald-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab6 abeffectivity-processor-3 ab6 abraw-speed-module-5 ab1 ab ab ab ab ab ab ab ab ab ab +raw-speed-module-6-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abspeed-module-6 ab1 abeffectivity-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-7 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abintergrated-electronics ab8 abprocessing-electronics ab5 abtopaz-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab8 abeffectivity-processor-3 ab8 abraw-speed-module-6 ab1 ab ab ab ab ab ab ab ab +raw-speed-module-7-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abspeed-module-7 ab1 abeffectivity-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +raw-speed-module-8 abraw-speed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab12 abelectronic-components ab8 abintergrated-electronics ab8 abprocessing-electronics ab8 abdiamond-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab10 abeffectivity-processor-3 ab10 abraw-speed-module-7 ab1 ab ab ab ab ab ab +raw-speed-module-8-combine abraw-speed-module-combine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abraw-speed-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab10 abspeed-module-8 ab1 abeffectivity-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-module abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmodule-case ab1 abspeed-processor ab1 abmodule-contact ab4 abmodule-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-module-2 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abspeed-processor ab2 abmodule-contact ab5 abspeed-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-module-3 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 abelectronic-components ab5 abspeed-processor-2 ab3 abspeed-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-module-4 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab3 abintergrated-electronics ab5 abmodule-contact ab5 abspeed-processor-2 ab4 abspeed-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +speed-module-5 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abintergrated-electronics ab5 abruby-5 ab1 abmodule-contact ab5 abspeed-processor-2 ab5 abspeed-module-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +speed-module-6 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-6 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abintergrated-electronics ab5 abemerald-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab6 abspeed-module-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab +speed-module-7 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-7 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab7 abintergrated-electronics ab5 abprocessing-electronics ab3 abtopaz-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab8 abspeed-module-6 ab1 ab ab ab ab ab ab ab ab ab ab +speed-module-8 abspeed-module ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspeed-module-8 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab8 abelectronic-components ab5 abintergrated-electronics ab5 abprocessing-electronics ab5 abdiamond-5 ab1 abmodule-contact ab5 abspeed-processor-3 ab10 abspeed-module-7 ab1 ab ab ab ab ab ab ab ab +silver-plate abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-plate ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilver-ore ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-plate-silver abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abliquid-molten-silver ab40 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-roll-silver-converting abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilver-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-roll-silver ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-rod-iron-plate abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-stick ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-rod-stack-iron-converting abangels-iron-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abiron-stick ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-rod-stack-iron ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-rod-steel-plate abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rod-steel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-rod-stack-steel-converting abangels-steel-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-rod-steel ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-rod-stack-steel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-gold abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgilded-copper-cable ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab10 abgold-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-gold-converting abangels-gold-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgilded-copper-cable ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-wire-coil-gold ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silicon-nitride abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilicon-nitride ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-powder ab1 abgas-nitrogen ab13 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +silicon-carbide abangels-silicon-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absilicon-carbide ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-powder ab1 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crystal-mix4-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore2-crystal ab2 abangels-ore4-crystal ab2 abangels-ore5-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-gas-dimethylhydrazine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-dimethylhydrazine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-canister ab1 abgas-dimethylhydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-gas-dimethylhydrazine-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgas-canister ab1 abgas-dimethylhydrazine ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-dimethylhydrazine-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-silvered-copper-wire abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-silver ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab10 absilver-plate ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angels-wire-coil-silver-converting abangels-silver-casting ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-wire-silver ab16 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-wire-coil-silver ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-nitrogen abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-nitrogen ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crystal-mix5-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe aburanium-ore ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore1-crystal ab2 abangels-ore3-crystal ab2 abangels-ore5-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fill-nitroglycerin-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abnitroglycerin-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-barrel ab1 abnitroglycerin ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-nitroglycerin-barrel abangels-fluid-control-petrochem-nitrogen-fluids ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-barrel ab1 abnitroglycerin ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitroglycerin-barrel ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-oxygen abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-oxygen ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-crystal-mix6-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthorium-ore ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-green ab1 abangels-ore8-crystal ab2 abangels-ore9-crystal ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-petroleum-gas abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-methane ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-pure-mix1-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abtungsten-ore ab6 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore1-pure ab2 abangels-ore2-pure ab2 abangels-ore3-pure ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-part abintermediate-product ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-part ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-fuel ab10 abrocket-control-unit ab10 ablow-density-structure ab10 abheat-shield-tile ab10 abrocket-engine ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-pure-mix2-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore3-pure ab2 abangels-ore5-pure ab2 abangels-ore6-pure ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +empty-nuclear-fuel-cell abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-nuclear-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab5 absteel-plate ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +plutonium-fuel-cell abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abplutonium-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-nuclear-fuel-cell ab10 aburanium-238 ab19 abplutonium-239 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +angelsore-pure-mix3-processing abore-sorting-advanced ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abangels-void ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcatalysator-orange ab1 abangels-ore2-pure ab2 abangels-ore4-pure ab2 abangels-ore5-pure ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-armor-plate abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-armor-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtungsten-carbide ab2 ablow-density-structure ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-brain abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-brain ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab120 abmulti-layer-circuit-board ab40 abbasic-electronic-components ab80 abelectronic-components ab100 abintergrated-electronics ab100 abprocessing-electronics ab120 abmodule-case ab2 ab ab ab ab ab ab ab ab ab ab +mech-frame abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab50 abmech-brain ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-leg abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-leg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abinsulated-cable ab4 abmech-foot ab1 abmech-hip ab1 abmech-knee ab1 abmech-leg-segment ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-foot abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-foot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrubber ab1 ablow-density-structure ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-hip abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-hip ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab5 ablow-density-structure ab2 abtitanium-gear-wheel ab4 abtitanium-bearing ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-knee abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-knee ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab10 ablow-density-structure ab2 abtitanium-gear-wheel ab8 abtitanium-bearing ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +mech-leg-segment abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmech-leg-segment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abnitinol-alloy ab2 abtitanium-pipe ab3 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +spidertron-cannon abmech-parts ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abspidertron-cannon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab15 abiron-gear-wheel ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thorium-fuel-cell abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthorium-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-nuclear-fuel-cell ab10 aburanium-235 ab1 abthorium-232 ab19 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thorium-plutonium-fuel-cell abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthorium-plutonium-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-nuclear-fuel-cell ab10 abplutonium-239 ab1 abthorium-232 ab19 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +thorium-fuel-reprocessing abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abthorium-232 ab4 aburanium-235 ab3 abempty-nuclear-fuel-cell ab10 abangels-muon-fusion-catalyst ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-thorium-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-sour-gas abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absour-gas ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-steam abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteam ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-sulfur-dioxide abvoid ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-sulfur-dioxide ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +deuterium-fuel-cell abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdeuterium-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-nuclear-fuel-cell ab10 abangels-muon-fusion-catalyst ab1 abgas-deuterium ab190 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +deuterium-fuel-cell-2 abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abdeuterium-fuel-cell-2 ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abempty-nuclear-fuel-cell ab10 abangels-muon-fusion-catalyst ab5 abgas-deuterium ab250 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +deuterium-fuel-reprocessing abbob-fuel-cells ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abempty-nuclear-fuel-cell ab10 ablithium ab1 abangels-muon-fusion-catalyst ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abused-up-deuterium-fuel-cell ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +void-pump abbob-pump ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvoid-pump ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab2 abiron-gear-wheel ab2 abelectronic-circuit ab2 abcopper-pipe ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-frame abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-frame ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abiron-plate ab1 absteel-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-coal abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-coal ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-frame ab5 abcoal ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electronic-circuit abangels-loaded-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectronic-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abbasic-circuit-board ab1 abbasic-electronic-components ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-circuit abangels-loaded-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abadvanced-circuit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab1 abcircuit-board ab1 abbasic-electronic-components ab4 abelectronic-components ab4 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processing-unit abangels-loaded-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessing-unit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab2 absuperior-circuit-board ab1 abbasic-electronic-components ab2 abelectronic-components ab4 abintergrated-electronics ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +vehicle-belt-immunity-equipment abangels-vehicle-equipment-bobpower-e ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abvehicle-belt-immunity-equipment ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab10 abadvanced-circuit ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-1 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab40 abengine-unit ab25 abelectronic-circuit ab20 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-1-2 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-1-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab50 abengine-unit ab30 absmelting-locomotive-1 ab1 abspeed-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-1-3 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-1-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab40 ablow-density-structure ab50 absmelting-locomotive-1-2 ab1 abspeed-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-1-4 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-1-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab45 ablow-density-structure ab75 absmelting-locomotive-1-3 ab1 abspeed-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-1-5 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-1-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab50 abrocket-control-unit ab2 ablow-density-structure ab100 absmelting-locomotive-1-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-tender abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-tender ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab35 abengine-unit ab25 abelectronic-circuit ab15 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-tender-2 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-tender-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab40 abengine-unit ab30 absmelting-locomotive-tender ab1 abspeed-module ab1 abeffectivity-module ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-tender-3 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-tender-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab40 ablow-density-structure ab40 absmelting-locomotive-tender-2 ab1 abspeed-module-2 ab1 abeffectivity-module-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-tender-4 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-tender-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab45 ablow-density-structure ab60 absmelting-locomotive-tender-3 ab1 abspeed-module-3 ab1 abeffectivity-module-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-locomotive-tender-5 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-locomotive-tender-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab50 abrocket-control-unit ab2 ablow-density-structure ab80 absmelting-locomotive-tender-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-wagon-1 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-wagon-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abiron-gear-wheel ab25 abelectronic-circuit ab15 abcargo-wagon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-wagon-1-2 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-wagon-1-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab25 abiron-chest ab5 absmelting-wagon-1 ab1 abeffectivity-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-wagon-1-3 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-wagon-1-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab25 abiron-chest ab10 absmelting-wagon-1-2 ab1 abeffectivity-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-wagon-1-4 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-wagon-1-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab35 absteel-chest ab5 absmelting-wagon-1-3 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +smelting-wagon-1-5 abangels-smeltingtrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absmelting-wagon-1-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablow-density-structure ab50 absteel-chest ab10 absmelting-wagon-1-4 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-locomotive-1 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-locomotive-1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab40 abengine-unit ab25 abelectronic-circuit ab20 ablocomotive ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-locomotive-1-2 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-locomotive-1-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab50 abengine-unit ab30 abpetro-locomotive-1 ab1 abspeed-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-locomotive-1-3 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-locomotive-1-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab40 ablow-density-structure ab50 abpetro-locomotive-1-2 ab1 abspeed-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-locomotive-1-4 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-locomotive-1-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab45 ablow-density-structure ab75 abpetro-locomotive-1-3 ab1 abspeed-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-locomotive-1-5 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-locomotive-1-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abelectric-engine-unit ab50 abrocket-control-unit ab2 ablow-density-structure ab100 abpetro-locomotive-1-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank1 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank1 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectronic-circuit ab15 abfluid-wagon ab1 abpipe ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank1-2 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank1-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab25 abangels-storage-tank-1 ab3 abpetro-tank1 ab1 abeffectivity-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank1-3 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank1-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-storage-tank-1 ab6 ablow-density-structure ab25 abpetro-tank1-2 ab1 abeffectivity-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank1-4 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank1-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-storage-tank-1 ab9 ablow-density-structure ab35 abpetro-tank1-3 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank1-5 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank1-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-storage-tank-1 ab12 ablow-density-structure ab50 abpetro-tank1-4 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank2 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab20 abelectronic-circuit ab15 abfluid-wagon ab1 abpipe ab25 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank2-2 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank2-2 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab25 abangels-storage-tank-2 ab3 abpetro-tank2 ab1 abeffectivity-module ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank2-3 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank2-3 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-storage-tank-2 ab6 ablow-density-structure ab25 abpetro-tank2-2 ab1 abeffectivity-module-2 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank2-4 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank2-4 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-storage-tank-2 ab9 ablow-density-structure ab35 abpetro-tank2-3 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petro-tank2-5 abangels-petrotrain ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetro-tank2-5 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abangels-storage-tank-2 ab12 ablow-density-structure ab50 abpetro-tank2-4 ab1 abeffectivity-module-3 ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-circuit-board abangels-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbasic-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-cable ab3 abwooden-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +basic-electronic-components abangels-circuit-components ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abbasic-electronic-components ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abtinned-copper-cable ab1 absolid-carbon ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +wooden-board abangels-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abwooden-board ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +circuit-board abangels-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abcircuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 abtin-plate ab1 abphenolic-board ab1 abliquid-ferric-chloride-solution ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +electronic-components abangels-circuit-components ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abelectronic-components ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-wafer ab2 abangels-wire-silver ab1 abplastic-bar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +phenolic-board abangels-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abphenolic-board ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abresin ab1 abwood ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +fibreglass-board abangels-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfibreglass-board ab2 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abglass ab1 abplastic-bar ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +intergrated-electronics abangels-circuit-components ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abintergrated-electronics ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-wafer ab4 abplastic-bar ab1 abinsulated-cable ab1 abliquid-sulfuric-acid ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +superior-circuit-board abangels-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absuperior-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab1 absilver-plate ab1 abfibreglass-board ab1 abliquid-ferric-chloride-solution ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +advanced-processing-unit abangels-loaded-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abadvanced-processing-unit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab4 abmulti-layer-circuit-board ab1 abbasic-electronic-components ab1 abelectronic-components ab2 abintergrated-electronics ab4 abprocessing-electronics ab1 ab ab ab ab ab ab ab ab ab ab ab ab +multi-layer-circuit-board abangels-circuit-board ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmulti-layer-circuit-board ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abcopper-plate ab2 abgold-plate ab2 abfibreglass-board ab1 abliquid-ferric-chloride-solution ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +processing-electronics abangels-circuit-components ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abprocessing-electronics ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgilded-copper-cable ab2 absilicon-wafer ab6 absilicon-nitride ab1 abliquid-sulfuric-acid ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-ceramic abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-frame ab1 abalumina ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +filter-ceramic-refurbish abgeode-crystallization ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abfilter-ceramic ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abfilter-ceramic-used ab1 abwater-purified ab50 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +milling-drum abore-powderizer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmilling-drum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absteel-plate ab1 ablubricant ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +milling-drum-used abore-powderizer ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abmilling-drum ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abmilling-drum-used ab1 ablubricant ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +shot abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abshot ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product ablead-plate ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +gun-cotton abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abgun-cotton ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abwood ab1 abliquid-nitric-acid ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +petroleum-jelly abangels-physical-ba ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abpetroleum-jelly ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abgas-residual ab10 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rocket-control-unit abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-control-unit ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absolder ab5 abmulti-layer-circuit-board ab2 abbasic-electronic-components ab4 abelectronic-components ab6 abintergrated-electronics ab4 abprocessing-electronics ab8 ab ab ab ab ab ab ab ab ab ab ab ab +rocket-silo abproduction-machine ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrocket-silo ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abconcrete ab200 abnitinol-alloy ab500 abelectric-engine-unit ab100 abrocket-control-unit ab25 ablow-density-structure ab50 abheat-shield-tile ab100 abadvanced-processing-unit ab50 abtitanium-pipe ab50 ab ab ab ab ab ab ab ab +low-density-structure abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe ablow-density-structure ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab20 abtitanium-plate ab2 abplastic-bar ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +heat-shield-tile abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abheat-shield-tile ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product absilicon-nitride ab10 abtungsten-carbide ab5 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +rtg abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe abrtg ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abaluminium-plate ab5 ablead-plate ab1 absodium-cobaltate ab2 abplutonium-239 ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab +satellite abangels-basic-intermediate ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab recipe absatellite ab1 ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab + ab product abrocket-fuel ab50 absilver-zinc-battery ab50 abrocket-control-unit ab100 ablow-density-structure ab100 abrtg ab10 abradar-5 ab5 ab ab ab ab ab ab ab ab ab ab ab ab diff --git a/mod-recipes/recipes.csv b/mod-recipes/recipes.csv new file mode 100644 index 0000000..9f7401f --- /dev/null +++ b/mod-recipes/recipes.csv @@ -0,0 +1,8529 @@ +salt,bob-material-chemical +, recipe,solid-salt,1 +, product,water,25 +burner-assembling-machine,bob-assembly-machine +, recipe,burner-assembling-machine,1 +, product,iron-plate,9,iron-gear-wheel,5 +steam-assembling-machine,bob-assembly-machine +, recipe,steam-assembling-machine,1 +, product,iron-plate,10,iron-gear-wheel,10,pipe,5 +angels-air-filtering,petrochem-nitrogen +, recipe,gas-compressed-air,200 +, product, +angels-big-chest,angels-chests-big +, recipe,angels-big-chest,1 +, product,iron-plate,10,iron-chest,1 +angels-logistic-chest-active-provider,angels-chests-big +, recipe,angels-logistic-chest-active-provider,1 +, product,iron-plate,10,advanced-circuit,5,angels-big-chest,1 +angels-warehouse,angels-warehouse +, recipe,angels-warehouse,1 +, product,stone-brick,100,iron-plate,100,steel-plate,50 +angelsore7-crystallization-3,bob-gems-crystallization +, recipe,ruby-ore,1 +, product,catalysator-green,1,crystal-seedling,50 +artillery-wagon,angels-artillery +, recipe,artillery-wagon,1 +, product,invar-alloy,40,engine-unit,64,iron-gear-wheel,10,advanced-circuit,20,pipe,16 +battery-equipment,angels-personal-equipment-power-c +, recipe,battery-equipment,1 +, product,steel-plate,10,battery,5 +big-electric-pole,angels-big-power-poles +, recipe,big-electric-pole,1 +, product,copper-plate,5,steel-plate,5,iron-stick,8 +bio-refugium-fish,bio-processing-buildings-alien-a +, recipe,bio-refugium-fish,1 +, product,clay-brick,20,glass,10,bronze-alloy,6,electronic-circuit,5,bronze-pipe,75 +bob-burner-generator,angels-power-fluid-generator +, recipe,bob-burner-generator,1 +, product,stone-furnace,1,iron-plate,8,iron-gear-wheel,5 +brass-chest,angels-chests-small-c +, recipe,brass-chest,1 +, product,brass-alloy,8 +coolant-cool-steam,coolant +, recipe,water-purified,100 +, product,steam,100 +crop-farm,bio-processing-buildings-vegetabilis-a +, recipe,crop-farm,1 +, product,clay-brick,45,steel-plate,24,solid-soil,15,electronic-circuit,2,steel-pipe,9 +energy-shield-equipment,angels-personal-equipment-combat-a +, recipe,energy-shield-equipment,1 +, product,steel-plate,10,advanced-circuit,5 +exoskeleton-equipment,angels-personal-equipment-combat-c +, recipe,exoskeleton-equipment,1 +, product,steel-plate,20,electric-engine-unit,30,advanced-circuit,10 +fermentation-corn,bio-processor-fermentation +, recipe,liquid-fermentation-raw,75 +, product,solid-corn,10,water,50 +fusion-reactor-equipment,angels-personal-equipment-power-b +, recipe,fusion-reactor-equipment,1 +, product,low-density-structure,50,processing-unit,200 +gas-monochloramine,petrochem-rocket +, recipe,gas-monochloramine,50 +, product,solid-sodium-hypochlorite,5,gas-ammonia,250 +heat-pipe,angels-power-nuclear-heat-pipe +, recipe,heat-pipe,1 +, product,copper-plate,10,steel-plate,5 +hogger-breeding-1,bio-hogger-breeding +, recipe,bio-hogger-1,2,bio-hogger-1,1,bio-hogger-2,1,bio-hogger-3,1,bio-hogger-4,1,bio-hogger-5,1 +, product,iron-plate,1,bio-hogger-1,2,liquid-nutrient-pulp,20 +hogger-butchery-1,bio-hogger-butchery +, recipe,bio-raw-meat,1 +, product,bio-hogger-1,1 +hogger-hogging-1,bio-hogger +, recipe,bio-hogger-1,3 - 5,copper-ore,10 +, product,iron-ore,10,iron-plate,1,bio-hogger-1,4,liquid-nutrient-pulp,20 +liquid-acetic-acid-catalyst,bio-plastic +, recipe,catalyst-metal-carrier,1,liquid-acetic-acid,100 +, product,catalyst-metal-red,1,gas-methanol,70,gas-carbon-monoxide,30,water-purified,50 +medium-electric-pole,angels-medium-power-poles +, recipe,medium-electric-pole,1 +, product,copper-plate,2,steel-plate,2,iron-stick,4 +night-vision-equipment,angels-personal-equipment-power-d +, recipe,night-vision-equipment,1 +, product,steel-plate,10,advanced-circuit,5 +nuclear-reactor,angels-power-nuclear-reactor-b +, recipe,nuclear-reactor,1 +, product,concrete,500,steel-plate,250,advanced-circuit,500,heat-pipe-2,25 +ore-powderizer,ore-powderizer +, recipe,ore-powderizer,1 +, product,clay-brick,5,bronze-alloy,3,steel-gear-wheel,3 +personal-laser-defense-equipment,angels-personal-equipment-combat-b +, recipe,personal-laser-defense-equipment,1 +, product,steel-plate,5,battery,3,electronic-circuit,5 +personal-roboport-antenna-equipment,angels-personal-equipment-robot-c +, recipe,personal-roboport-antenna-equipment,1 +, product,roboport-antenna-1,2,roboport-door-1,1 +personal-roboport-chargepad-equipment,angels-personal-equipment-robot-b +, recipe,personal-roboport-chargepad-equipment,1 +, product,roboport-chargepad-1,2 +personal-roboport-equipment,angels-personal-equipment-robot-d +, recipe,personal-roboport-equipment,1 +, product,steel-plate,5,roboport-antenna-1,2,roboport-door-1,1,roboport-chargepad-1,2 +personal-roboport-robot-equipment,angels-personal-equipment-robot-a +, recipe,personal-roboport-robot-equipment,1 +, product,solder,2,circuit-board,1,basic-electronic-components,30,electronic-components,15,module-case,1 +seafloor-pump,washing-building +, recipe,seafloor-pump,1 +, product,iron-plate,6,basic-circuit-board,2,pipe,6 +seed-extractor,bio-processing-buildings-vegetabilis-b +, recipe,seed-extractor,1 +, product,clay-brick,5,steel-plate,3,steel-gear-wheel,6,basic-circuit-board,4 +silo,angels-silo +, recipe,silo,1 +, product,stone-brick,20,iron-plate,20,steel-plate,10 +slag-processing-1,slag-processing-1 +, recipe,iron-ore,1,copper-ore,1 +, product,mineral-sludge,50 +solar-panel-equipment,angels-personal-equipment-power-a +, recipe,solar-panel-equipment,1 +, product,copper-cable,4,steel-plate,2,electronic-circuit,5 +solid-mud-landfill,water-washing-filtering +, recipe,landfill,1 +, product,solid-mud,25 +steam-engine,angels-power-steam-generator +, recipe,steam-engine,1 +, product,iron-plate,10,iron-gear-wheel,8,pipe,5 +steel-chest,angels-chests-small-b +, recipe,steel-chest,1 +, product,steel-plate,8 +substation,angels-sub-power-poles +, recipe,substation,1 +, product,copper-plate,5,steel-plate,10,advanced-circuit,5 +titanium-chest,angels-chests-small-d +, recipe,titanium-chest,1 +, product,titanium-plate,8 +vehicle-battery-1,angels-vehicle-equipment-bobpower-d +, recipe,vehicle-battery-1,1 +, product,steel-plate,10,battery,5 +vehicle-big-turret-1,angels-vehicle-equipment-bobcombat-c +, recipe,vehicle-big-turret-1,1 +, product,steel-plate,20,alien-artifact,30,battery,12,electronic-circuit,20 +vehicle-fusion-cell-1,angels-vehicle-equipment-bobpower-b +, recipe,vehicle-fusion-cell-1,1 +, product,processing-unit,125 +vehicle-fusion-reactor-1,angels-vehicle-equipment-bobpower-c +, recipe,vehicle-fusion-reactor-1,1 +, product,processing-unit,250 +vehicle-laser-defense-1,angels-vehicle-equipment-bobcombat-b +, recipe,vehicle-laser-defense-1,1 +, product,steel-plate,5,battery,3,electronic-circuit,5,ruby-5,1 +vehicle-motor,angels-vehicle-equipment-bobpower-e +, recipe,vehicle-motor,1 +, product,steel-plate,20,electric-engine-unit,30,processing-unit,10 +vehicle-roboport,angels-vehicle-equipment-bobrobot-d +, recipe,vehicle-roboport,1 +, product,steel-plate,5,roboport-antenna-1,2,roboport-door-1,1,roboport-chargepad-1,2 +vehicle-roboport-antenna-equipment,angels-vehicle-equipment-bobrobot-c +, recipe,vehicle-roboport-antenna-equipment,1 +, product,roboport-antenna-1,2,roboport-door-1,1 +vehicle-roboport-chargepad-equipment,angels-vehicle-equipment-bobrobot-b +, recipe,vehicle-roboport-chargepad-equipment,1 +, product,roboport-chargepad-1,2 +vehicle-roboport-robot-equipment,angels-vehicle-equipment-bobrobot-a +, recipe,vehicle-roboport-robot-equipment,1 +, product,solder,2,circuit-board,1,basic-electronic-components,30,electronic-components,15,module-case,1 +vehicle-shield-1,angels-vehicle-equipment-bobcombat-a +, recipe,vehicle-shield-1,1 +, product,steel-plate,10,advanced-circuit,5 +vehicle-solar-panel-1,angels-vehicle-equipment-bobpower-a +, recipe,vehicle-solar-panel-1,1 +, product,copper-cable,4,steel-plate,2,electronic-circuit,5 +water-viscous-mud,water-washing +, recipe,water-viscous-mud,150 +, product,solid-mud,10,water,150 +bob-ruby-3,bob-gems-raw +, recipe,ruby-3,1 +, product,ruby-ore,1 +bob-ruby-4,bob-gems-cut +, recipe,ruby-4,1 +, product,ruby-3,1,grinding-wheel,1,water,10 +bob-ruby-5,bob-gems-polished +, recipe,ruby-5,1 +, product,ruby-4,1,polishing-wheel,1,polishing-compound,1 +fill-chlorine-barrel,angels-fluid-control-bob-gas-bottle +, recipe,chlorine-barrel,1 +, product,gas-canister,1,gas-chlorine,50 +fill-gas-chlorine-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-chlorine-barrel,1 +, product,gas-canister,1,gas-chlorine,50 +fill-gas-nitrogen-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-nitrogen-barrel,1 +, product,gas-canister,1,gas-nitrogen,50 +fill-liquid-pulping-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,liquid-pulping-liquor-barrel,1 +, product,empty-barrel,1,liquid-pulping-liquor,50 +fill-nitrogen-barrel,angels-fluid-control-bob-gas-bottle +, recipe,nitrogen-barrel,1 +, product,gas-canister,1,gas-nitrogen,50 +fill-water-barrel,angels-fluid-control-water-treatment-fluid +, recipe,water-barrel,1 +, product,empty-barrel,1,water,50 +fill-water-viscous-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,water-viscous-mud-barrel,1 +, product,empty-barrel,1,water-viscous-mud,50 +fill-water-yellow-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,water-yellow-waste-barrel,1 +, product,empty-barrel,1,water-yellow-waste,50 +light-armor,angels-personal-equipment-armor +, recipe,light-armor,1 +, product,iron-plate,40 +empty-chlorine-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-chlorine,50 +, product,chlorine-barrel,1 +empty-gas-chlorine-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-canister,1,gas-chlorine,50 +, product,gas-chlorine-barrel,1 +empty-gas-nitrogen-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-nitrogen,50 +, product,gas-nitrogen-barrel,1 +empty-liquid-pulping-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,empty-barrel,1,liquid-pulping-liquor,50 +, product,liquid-pulping-liquor-barrel,1 +empty-nitrogen-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-nitrogen,50 +, product,nitrogen-barrel,1 +empty-water-barrel,angels-fluid-control-water-treatment-fluid +, recipe,empty-barrel,1,water,50 +, product,water-barrel,1 +empty-water-viscous-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,empty-barrel,1,water-viscous-mud,50 +, product,water-viscous-mud-barrel,1 +empty-water-yellow-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,empty-barrel,1,water-yellow-waste,50 +, product,water-yellow-waste-barrel,1 +heavy-armor,angels-personal-equipment-armor +, recipe,heavy-armor,1 +, product,copper-plate,100,steel-plate,50 +heavy-armor-2,angels-personal-equipment-armor +, recipe,heavy-armor-2,1 +, product,gunmetal-alloy,50,invar-alloy,100 +heavy-armor-3,angels-personal-equipment-armor +, recipe,heavy-armor-3,1 +, product,silicon-nitride,50,titanium-plate,100 +converter-other-sulfuric-acid,angels-converter +, recipe,sulfuric-acid,50 +, product,liquid-sulfuric-acid,50 +converter-other-sulfur-dioxide,angels-converter +, recipe,sulfur-dioxide,50 +, product,gas-sulfur-dioxide,50 +converter-other-nitric-acid,angels-converter +, recipe,nitric-acid,50 +, product,liquid-nitric-acid,50 +converter-other-nitrogen-dioxide,angels-converter +, recipe,nitrogen-dioxide,50 +, product,gas-nitrogen-dioxide,50 +converter-other-liquid-air,angels-converter +, recipe,liquid-air,50 +, product,gas-compressed-air,50 +converter-other-ferric-chloride-solution,angels-converter +, recipe,ferric-chloride-solution,50 +, product,liquid-ferric-chloride-solution,50 +converter-other-hydrogen-sulfide,angels-converter +, recipe,hydrogen-sulfide,50 +, product,gas-hydrogen-sulfide,50 +converter-other-ammonia,angels-converter +, recipe,ammonia,50 +, product,gas-ammonia,50 +converter-other-nitric-oxide,angels-converter +, recipe,nitric-oxide,50 +, product,gas-nitrogen-monoxide,50 +converter-other-dinitrogen-tetroxide,angels-converter +, recipe,dinitrogen-tetroxide,50 +, product,gas-dinitrogen-tetroxide,50 +converter-other-hydrazine,angels-converter +, recipe,hydrazine,50 +, product,gas-hydrazine,50 +converter-other-heavy-oil,angels-converter +, recipe,heavy-oil,50 +, product,liquid-naphtha,50 +converter-other-tungstic-acid,angels-converter +, recipe,tungstic-acid,50 +, product,liquid-tungstic-acid,50 +converter-other-light-oil,angels-converter +, recipe,light-oil,50 +, product,liquid-fuel-oil,50 +converter-other-petroleum-gas,angels-converter +, recipe,petroleum-gas,50 +, product,gas-methane,50 +converter-other-chlorine,angels-converter +, recipe,chlorine,50 +, product,gas-chlorine,50 +converter-other-oxygen,angels-converter +, recipe,oxygen,50 +, product,gas-oxygen,50 +converter-other-hydrogen,angels-converter +, recipe,hydrogen,50 +, product,gas-hydrogen,50 +converter-other-hydrogen-chloride,angels-converter +, recipe,hydrogen-chloride,50 +, product,gas-hydrogen-chloride,50 +converter-other-nitrogen,angels-converter +, recipe,nitrogen,50 +, product,gas-nitrogen,50 +algae-blue,bio-processing-blue +, recipe,algae-blue,40 +, product,water-yellow-waste,100,gas-carbon-dioxide,100 +algae-brown,bio-processing-brown +, recipe,algae-brown,40 +, product,water-saline,100 +algae-red,bio-processing-red +, recipe,algae-red,40 +, product,thermal-water,100,gas-ammonia,100 +algae-farm,bio-processing-buildings-nauvis-a +, recipe,algae-farm,1 +, product,stone-brick,55,iron-plate,33,basic-circuit-board,4,pipe,54 +algae-farm-2,bio-processing-buildings-nauvis-a +, recipe,algae-farm-2,1 +, product,clay-brick,55,steel-plate,33,algae-farm,1,electronic-circuit,4,steel-pipe,54 +algae-farm-3,bio-processing-buildings-nauvis-a +, recipe,algae-farm-3,1 +, product,clay-brick,55,bronze-alloy,33,algae-farm-2,1,electronic-circuit,4,bronze-pipe,54 +algae-farm-4,bio-processing-buildings-nauvis-a +, recipe,algae-farm-4,1 +, product,aluminium-plate,44,concrete-brick,55,algae-farm-3,1,advanced-circuit,4,brass-pipe,54 +alien-spores,bio-processing-alien-intermediate +, recipe,alien-spores,70 - 80,water-yellow-waste,30 - 40 +, product,liquid-polluted-fish-atmosphere,100 +fill-alien-spores-barrel,angels-fluid-control-bio-processing-alien-intermediate +, recipe,alien-spores-barrel,1 +, product,empty-barrel,1,alien-spores,50 +empty-alien-spores-barrel,angels-fluid-control-bio-processing-alien-intermediate +, recipe,empty-barrel,1,alien-spores,50 +, product,alien-spores-barrel,1 +alien-bacteria,bio-processing-alien-intermediate +, recipe,alien-bacteria,1 +, product,solid-calcium-carbonate,1,alien-spores,50,liquid-hydrochloric-acid,50 +alien-goo,bio-processing-alien-intermediate +, recipe,alien-goo,5 - 10 +, product,alien-bacteria,1 +fill-alien-goo-barrel,angels-fluid-control-bio-processing-alien-intermediate +, recipe,alien-goo-barrel,1 +, product,empty-barrel,1,alien-goo,50 +empty-alien-goo-barrel,angels-fluid-control-bio-processing-alien-intermediate +, recipe,empty-barrel,1,alien-goo,50 +, product,alien-goo-barrel,1 +angels-burner-generator-vequip,angels-vehicle-equipment +, recipe,angels-burner-generator-vequip,1 +, product,iron-plate,20,electronic-circuit,20 +angels-chemical-furnace,angels-chemical-furnace +, recipe,angels-chemical-furnace,1 +, product,clay-brick,25,steel-plate,6,electronic-circuit,5,steel-pipe,30 +angels-construction-robot,angels-cargo-bots +, recipe,angels-construction-robot,1 +, product,steel-plate,5,engine-unit,1,iron-gear-wheel,5,electronic-circuit,2 +angelsore-crushed-mix1-processing,ore-sorting-advanced +, recipe,iron-ore,4 +, product,catalysator-brown,1,angels-ore1-crushed,2,angels-ore2-crushed,2 +angelsore1-chunk-processing,ore-sorting-t2 +, recipe,slag,1,iron-ore,2,copper-ore,1,quartz,1,nickel-ore,1 +, product,angels-ore1-chunk,6 +angelsore1-chunk,ore-processing-b +, recipe,angels-ore1-chunk,2,geode-blue,1,water-yellow-waste,50 +, product,angels-ore1-crushed,2,water-purified,50 +angelsore1-crushed-hand,processing-crafting +, recipe,angels-ore1-crushed,2,stone-crushed,1 +, product,angels-ore1,2 +angelsore1-crushed-processing,ore-sorting-t1 +, recipe,slag,1,iron-ore,2,copper-ore,1 +, product,angels-ore1-crushed,4 +angelsore1-crushed,ore-processing-a +, recipe,angels-ore1-crushed,2,stone-crushed,1 +, product,angels-ore1,2 +angelsore1-crystal-processing,ore-sorting-t3 +, recipe,slag,1,iron-ore,3,copper-ore,1,quartz,1,nickel-ore,1,rutile-ore,1 +, product,angels-ore1-crystal,8 +angelsore1-crystal,ore-processing-c +, recipe,angels-ore1-crystal,2 +, product,angels-ore1-chunk,2,liquid-sulfuric-acid,10 +angelsore1-pure-processing,ore-sorting-t4 +, recipe,iron-ore,3,copper-ore,2,quartz,1,nickel-ore,1,rutile-ore,1,tungsten-ore,1 +, product,angels-ore1-pure,9 +angelsore1-pure,ore-processing-d +, recipe,angels-ore1-pure,4 +, product,angels-ore1-crystal,4 +assembling-machine-1,bob-assembly-machine +, recipe,assembling-machine-1,1 +, product,iron-plate,9,iron-gear-wheel,5,basic-circuit-board,3 +automation-science-pack,science-pack +, recipe,automation-science-pack,1 +, product,copper-plate,1,iron-gear-wheel,1 +iron-stick,angels-basic-intermediate +, recipe,iron-stick,2 +, product,iron-plate,1 +beacon,module-beacon +, recipe,beacon,1 +, product,copper-cable,10,steel-plate,10,electronic-circuit,20,advanced-circuit,20,crystal-splinter-harmonic,1 +beacon-2,module-beacon +, recipe,beacon-2,1 +, product,aluminium-plate,10,tinned-copper-cable,10,electronic-circuit,20,advanced-circuit,20,processing-unit,20,crystal-shard-harmonic,1,beacon,1 +beacon-3,module-beacon +, recipe,beacon-3,1 +, product,gold-plate,10,titanium-plate,10,insulated-cable,10,advanced-circuit,20,processing-unit,20,advanced-processing-unit,20,crystal-full-harmonic,1,beacon-2,1 +blast-furnace,angels-blast-furnace +, recipe,blast-furnace,1 +, product,stone-brick,50,iron-plate,12,basic-circuit-board,3,pipe,15 +angels-bronze-smelting-1,angels-alloys-casting +, recipe,liquid-molten-bronze,240 +, product,ingot-copper,18,ingot-tin,6 +angels-bronze-smelting-2,angels-alloys-casting +, recipe,liquid-molten-bronze,360 +, product,ingot-copper,18,ingot-nickel,6,ingot-tin,12 +angels-bronze-smelting-3,angels-alloys-casting +, recipe,liquid-molten-bronze,360 +, product,ingot-copper,18,ingot-tin,12,ingot-zinc,6 +angels-plate-bronze,angels-alloys-casting +, recipe,bronze-alloy,4 +, product,liquid-molten-bronze,40 +bronze-alloy,angels-alloys-casting +, recipe,bronze-alloy,5 +, product,copper-plate,3,tin-plate,2 +burner-ore-crusher,ore-crusher +, recipe,burner-ore-crusher,1 +, product,stone-furnace,1,stone,5,iron-gear-wheel,3 +accumulator,angels-power-accumulator +, recipe,accumulator,1 +, product,iron-plate,2,battery,10,electronic-circuit,2 +large-accumulator-2,angels-power-accumulator +, recipe,large-accumulator-2,1 +, product,steel-plate,2,lithium-ion-battery,10,advanced-circuit,2,accumulator,1 +large-accumulator-3,angels-power-accumulator +, recipe,large-accumulator-3,1 +, product,titanium-plate,2,silver-zinc-battery,10,processing-unit,2,large-accumulator-2,1 +car,angels-vehicle-car +, recipe,car,1 +, product,iron-plate,20,steel-plate,5,engine-unit,8 +bob-coal-from-wood,petrochem-coal +, recipe,coal,1 +, product,wood,5 +carbon,bob-material-chemical +, recipe,solid-carbon,2 +, product,coal,1,water,5 +casting-machine,angels-casting-machine +, recipe,casting-machine,1 +, product,stone-brick,5,iron-plate,9,iron-gear-wheel,3,basic-circuit-board,1,pipe,6 +character,bodies +, recipe,character,1 +, product,assembling-machine-2,1,player-frame,1 +bob-character-builder,bodies +, recipe,bob-character-builder,1 +, product,assembling-machine-3,1,player-frame,1 +bob-character-fighter,bodies +, recipe,bob-character-fighter,1 +, product,assembling-machine-2,1,player-frame,1,exoskeleton-equipment,1 +bob-character-miner,bodies +, recipe,bob-character-miner,1 +, product,electric-furnace,1,assembling-machine-2,1,player-frame,1 +bob-character-balanced-2,bodies +, recipe,bob-character-balanced-2,1 +, product,assembling-machine-2,1,player-frame-2,1 +bob-character-builder-2,bodies +, recipe,bob-character-builder-2,1 +, product,assembling-machine-4,1,player-frame-2,1 +bob-character-engineer,bodies +, recipe,bob-character-engineer,1 +, product,electric-furnace,1,assembling-machine-3,1,player-frame-2,1 +bob-character-fighter-2,bodies +, recipe,bob-character-fighter-2,1 +, product,assembling-machine-2,1,player-frame-2,1,exoskeleton-equipment-2,1 +bob-character-miner-2,bodies +, recipe,bob-character-miner-2,1 +, product,electric-furnace-2,1,assembling-machine-2,1,player-frame-2,1 +bob-character-prospector,bodies +, recipe,bob-character-prospector,1 +, product,electric-furnace,1,assembling-machine-2,1,player-frame-2,1,exoskeleton-equipment,1 +wooden-chest,angels-chests-small-a +, recipe,wooden-chest,1 +, product,wood,2 +iron-chest,angels-chests-small-a +, recipe,iron-chest,1 +, product,iron-plate,8 +coal-crushed,petrochem-coal +, recipe,coal-crushed,2 +, product,coal,1 +crystal-powder-from-dust,bio-biter-processing-crystal-full +, recipe,crystal-powder,20,milling-drum-used,1 +, product,crystal-dust,10,milling-drum,1 +crystal-powder-slurry,bio-biter-processing-crystal-full +, recipe,crystal-slurry,1 +, product,crystal-powder,1,water-purified,1 +crystal-shard-crystalization-1,bio-biter-processing-crystal-shard +, recipe,crystal-shard-raw,1 +, product,egg-shell-seed,1,liquid-polluted-fish-atmosphere,50 +crystal-splinter-crystalization-1,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-raw,1 +, product,liquid-polluted-fish-atmosphere,50 +crystal-shard-crystalization-2,bio-biter-processing-crystal-shard +, recipe,crystal-shard-raw,1 +, product,egg-shell-seed,1,crystal-enhancer,1,liquid-polluted-fish-atmosphere,50 +crystal-splinter-crystalization-2,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-raw,1 +, product,crystal-seed,1,liquid-polluted-fish-atmosphere,50 +electric-energy-interface,other +, recipe,electric-energy-interface,1 +, product,iron-plate,2,electronic-circuit,5 +angels-electrode,petrochem-catalysts +, recipe,angels-electrode,1 +, product,steel-plate,1,solid-carbon,1 +angels-electrode-used,petrochem-catalysts +, recipe,angels-electrode,1,water-mineralized,10,water,40 +, product,angels-electrode-used,1,water-purified,50 +explosives,petrochem-solids-2 +, recipe,explosives,2 +, product,coal,1,sulfur,1,water-purified,10 +solid-nitroglycerin,petrochem-solids-2 +, recipe,explosives,2 +, product,coal,1,liquid-glycerol,50,liquid-sulfuric-acid,25,liquid-nitric-acid,25 +solid-trinitrotoluene,petrochem-solids-2 +, recipe,explosives,3,water-yellow-waste,25 +, product,liquid-toluene,50,liquid-sulfuric-acid,25,liquid-nitric-acid,25 +cliff-explosives,petrochem-solids-2 +, recipe,cliff-explosives,1 +, product,explosives,10,empty-barrel,1,grenade,1 +fill-angels-ore8-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore8-sludge-barrel,1 +, product,empty-barrel,1,angels-ore8-sludge,50 +empty-angels-ore8-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore8-sludge,50 +, product,angels-ore8-sludge-barrel,1 +fill-angels-ore8-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore8-solution-barrel,1 +, product,empty-barrel,1,angels-ore8-solution,50 +empty-angels-ore8-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore8-solution,50 +, product,angels-ore8-solution-barrel,1 +fill-angels-ore8-anode-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore8-anode-sludge-barrel,1 +, product,empty-barrel,1,angels-ore8-anode-sludge,50 +empty-angels-ore8-anode-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore8-anode-sludge,50 +, product,angels-ore8-anode-sludge-barrel,1 +fill-angels-ore8-slime-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore8-slime-barrel,1 +, product,empty-barrel,1,angels-ore8-slime,50 +empty-angels-ore8-slime-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore8-slime,50 +, product,angels-ore8-slime-barrel,1 +fill-ferric-chloride-solution-barrel,angels-fluid-control-bob-canister +, recipe,ferric-chloride-solution-barrel,1 +, product,empty-canister,1,liquid-ferric-chloride-solution,50 +fill-liquid-ferric-chloride-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,liquid-ferric-chloride-solution-barrel,1 +, product,empty-canister,1,liquid-ferric-chloride-solution,50 +empty-ferric-chloride-solution-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,liquid-ferric-chloride-solution,50 +, product,ferric-chloride-solution-barrel,1 +empty-liquid-ferric-chloride-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-canister,1,liquid-ferric-chloride-solution,50 +, product,liquid-ferric-chloride-solution-barrel,1 +slag-processing-filtering-1,filtering +, recipe,filter-frame,1,mineral-sludge,50,water-yellow-waste,40 +, product,filter-coal,1,slag-slurry,50,water-purified,50 +slag-processing-filtering-2,filtering +, recipe,filter-ceramic-used,1,mineral-sludge,35,water-yellow-waste,20 +, product,filter-ceramic,1,slag-slurry,35,water-purified,50 +thermal-water-filtering-1,filtering +, recipe,filter-frame,1,mineral-sludge,50 +, product,filter-coal,1,thermal-water,50 +thermal-water-filtering-2,filtering +, recipe,filter-ceramic-used,1,mineral-sludge,35 +, product,filter-ceramic,1,thermal-water,35 +crystal-slurry-filtering-conversion-1,filtering +, recipe,filter-frame,1,mineral-sludge,50,water-yellow-waste,40 +, product,filter-coal,1,crystal-slurry,50,water-mineralized,100 +crystal-slurry-filtering-conversion-2,filtering +, recipe,filter-ceramic-used,1,mineral-sludge,35,water-yellow-waste,20 +, product,filter-ceramic,1,crystal-slurry,35,water-mineralized,100 +fill-ammoniated-brine-barrel,angels-fluid-control-bob-fluid +, recipe,ammoniated-brine-barrel,1 +, product,empty-barrel,1,ammoniated-brine,50 +fill-brine-barrel,angels-fluid-control-bob-fluid +, recipe,brine-barrel,1 +, product,empty-barrel,1,water-saline,50 +empty-ammoniated-brine-barrel,angels-fluid-control-bob-fluid +, recipe,empty-barrel,1,ammoniated-brine,50 +, product,ammoniated-brine-barrel,1 +empty-brine-barrel,angels-fluid-control-bob-fluid +, recipe,empty-barrel,1,water-saline,50 +, product,brine-barrel,1 +fill-heavy-oil-barrel,angels-fluid-control-vanilla +, recipe,heavy-oil-barrel,1 +, product,empty-barrel,1,liquid-naphtha,50 +empty-heavy-oil-barrel,angels-fluid-control-vanilla +, recipe,empty-barrel,1,liquid-naphtha,50 +, product,heavy-oil-barrel,1 +fill-light-oil-barrel,angels-fluid-control-vanilla +, recipe,light-oil-barrel,1 +, product,empty-barrel,1,liquid-fuel-oil,50 +empty-light-oil-barrel,angels-fluid-control-vanilla +, recipe,empty-barrel,1,liquid-fuel-oil,50 +, product,light-oil-barrel,1 +fill-petroleum-gas-barrel,angels-fluid-control-bob-gas-bottle +, recipe,petroleum-gas-barrel,1 +, product,gas-canister,1,gas-methane,50 +empty-petroleum-gas-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-methane,50 +, product,petroleum-gas-barrel,1 +fill-sour-gas-barrel,angels-fluid-control-bob-gas-bottle +, recipe,sour-gas-barrel,1 +, product,gas-canister,1,sour-gas,50 +empty-sour-gas-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,sour-gas,50 +, product,sour-gas-barrel,1 +fill-sulfuric-acid-barrel,angels-fluid-control-bob-canister +, recipe,sulfuric-acid-barrel,1 +, product,empty-canister,1,liquid-sulfuric-acid,50 +empty-sulfuric-acid-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,liquid-sulfuric-acid,50 +, product,sulfuric-acid-barrel,1 +fill-ammonia-barrel,angels-fluid-control-bob-gas-bottle +, recipe,ammonia-barrel,1 +, product,gas-canister,1,gas-ammonia,50 +empty-ammonia-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-ammonia,50 +, product,ammonia-barrel,1 +fill-carbon-dioxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,carbon-dioxide-barrel,1 +, product,gas-canister,1,gas-carbon-dioxide,50 +empty-carbon-dioxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-carbon-dioxide,50 +, product,carbon-dioxide-barrel,1 +fill-dinitrogen-tetroxide-barrel,angels-fluid-control-bob-fluid +, recipe,dinitrogen-tetroxide-barrel,1 +, product,empty-barrel,1,gas-dinitrogen-tetroxide,50 +empty-dinitrogen-tetroxide-barrel,angels-fluid-control-bob-fluid +, recipe,empty-barrel,1,gas-dinitrogen-tetroxide,50 +, product,dinitrogen-tetroxide-barrel,1 +fill-glycerol-barrel,angels-fluid-control-bob-fluid +, recipe,glycerol-barrel,1 +, product,empty-barrel,1,liquid-glycerol,50 +empty-glycerol-barrel,angels-fluid-control-bob-fluid +, recipe,empty-barrel,1,liquid-glycerol,50 +, product,glycerol-barrel,1 +fill-hydrazine-barrel,angels-fluid-control-bob-fluid +, recipe,hydrazine-barrel,1 +, product,empty-barrel,1,gas-hydrazine,50 +empty-hydrazine-barrel,angels-fluid-control-bob-fluid +, recipe,empty-barrel,1,gas-hydrazine,50 +, product,hydrazine-barrel,1 +fill-hydrogen-peroxide-barrel,angels-fluid-control-bob-fluid +, recipe,hydrogen-peroxide-barrel,1 +, product,empty-barrel,1,gas-hydrogen-peroxide,50 +empty-hydrogen-peroxide-barrel,angels-fluid-control-bob-fluid +, recipe,empty-barrel,1,gas-hydrogen-peroxide,50 +, product,hydrogen-peroxide-barrel,1 +hydrogen-sulfide,bob-fluid +, recipe,gas-hydrogen-sulfide,50 +, product,sulfur,5,gas-hydrogen,80 +fill-nitric-oxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,nitric-oxide-barrel,1 +, product,gas-canister,1,gas-nitrogen-monoxide,50 +empty-nitric-oxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-nitrogen-monoxide,50 +, product,nitric-oxide-barrel,1 +sulfur-dioxide,bob-fluid +, recipe,gas-sulfur-dioxide,50 +, product,sulfur,5,gas-oxygen,50 +fill-sulfuric-nitric-acid-barrel,angels-fluid-control-bob-canister +, recipe,sulfuric-nitric-acid-barrel,1 +, product,empty-canister,1,sulfuric-nitric-acid,50 +empty-sulfuric-nitric-acid-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,sulfuric-nitric-acid,50 +, product,sulfuric-nitric-acid-barrel,1 +flying-robot-frame,angels-robot-a +, recipe,flying-robot-frame,1 +, product,steel-plate,1,electric-engine-unit,1,battery,2,electronic-circuit,3 +flying-robot-frame-2,angels-robot-b +, recipe,flying-robot-frame-2,1 +, product,aluminium-plate,1,electric-engine-unit,1,battery,2,advanced-circuit,3 +flying-robot-frame-3,angels-robot-c +, recipe,flying-robot-frame-3,1 +, product,titanium-plate,1,electric-engine-unit,1,lithium-ion-battery,2,processing-unit,3 +flying-robot-frame-4,angels-robot-d +, recipe,flying-robot-frame-4,1 +, product,silicon-nitride,1,electric-engine-unit,1,silver-zinc-battery,2,advanced-processing-unit,3 +burner-reactor,angels-power-nuclear-reactor-a +, recipe,burner-reactor,1 +, product,steel-furnace,1,steel-plate,6,heat-pipe,8 +burner-reactor-2,angels-power-nuclear-reactor-a +, recipe,burner-reactor-2,1 +, product,concrete,10,invar-alloy,6,burner-reactor,1,heat-pipe-2,8 +gas-acid-catalyst,petrochem-sulfur +, recipe,catalyst-metal-carrier,1,gas-hydrogen-sulfide,60,gas-carbon-dioxide,20,gas-hydrogen-fluoride,20 +, product,catalyst-metal-green,1,gas-acid,100 +gas-formaldehyde-catalyst,petrochem-chemistry +, recipe,catalyst-metal-carrier,1,gas-formaldehyde,100 +, product,catalyst-metal-green,1,gas-methanol,100 +gas-methanol-catalyst,petrochem-feedstock +, recipe,catalyst-metal-carrier,1,gas-methanol,100 +, product,catalyst-metal-green,1,gas-carbon-dioxide,100,gas-hydrogen,100 +gas-refinery-small,petrochem-buildings-gas-refinery +, recipe,gas-refinery-small,1 +, product,clay-brick,20,steel-plate,6,electronic-circuit,4,steel-pipe,36 +gas-refinery-small-2,petrochem-buildings-gas-refinery +, recipe,gas-refinery-small-2,1 +, product,aluminium-plate,8,concrete-brick,20,gas-refinery-small,1,advanced-circuit,4,brass-pipe,36 +gas-refinery-small-3,petrochem-buildings-gas-refinery +, recipe,gas-refinery-small-3,1 +, product,reinforced-concrete-brick,20,titanium-plate,8,gas-refinery-small-2,1,processing-unit,4,titanium-pipe,36 +gas-refinery-small-4,petrochem-buildings-gas-refinery +, recipe,gas-refinery-small-4,1 +, product,reinforced-concrete-brick,20,tungsten-plate,8,gas-refinery-small-3,1,advanced-processing-unit,4,tungsten-pipe,36 +gas-separation,petrochem-carbon-gas-feed +, recipe,gas-raw-1,60,liquid-condensates,30,water-yellow-waste,10 +, product,gas-natural-1,100 +gas-synthesis-separation,petrochem-carbon-synthesis +, recipe,gas-carbon-monoxide,40,gas-hydrogen,60 +, product,gas-synthesis,100 +desert-tree-generator-1,bio-arboretum-desert +, recipe,tree-desert-seed,4 +, product,solid-sand,5,seedling,4,water-saline,50 +swamp-tree-generator-1,bio-arboretum-swamp +, recipe,tree-swamp-seed,4 +, product,solid-mud,5,seedling,4,water-light-mud,50 +temperate-tree-generator-1,bio-arboretum-temperate +, recipe,tree-temperate-seed,4 +, product,solid-soil,5,seedling,4,water,50 +tree-generator-1,bio-arboretum +, recipe,tree-seed,4 +, product,solid-soil,5,seedling,4,water,50 +desert-tree-generator-2,bio-arboretum-desert +, recipe,tree-desert-seed,6 +, product,solid-sand,5,solid-fertilizer,1,seedling,6,water-saline,50 +swamp-tree-generator-2,bio-arboretum-swamp +, recipe,tree-swamp-seed,6 +, product,solid-mud,5,solid-fertilizer,1,seedling,6,water-light-mud,50 +temperate-tree-generator-2,bio-arboretum-temperate +, recipe,tree-temperate-seed,6 +, product,solid-soil,5,solid-fertilizer,1,seedling,6,water,50 +tree-generator-2,bio-arboretum +, recipe,tree-seed,6 +, product,solid-soil,5,solid-fertilizer,1,seedling,6,water,50 +desert-tree-generator-3,bio-arboretum-desert +, recipe,tree-desert-seed,8 +, product,solid-sand,5,solid-fertilizer,1,seedling,8,water-saline,50,gas-nitrogen,20 +swamp-tree-generator-3,bio-arboretum-swamp +, recipe,tree-swamp-seed,8 +, product,solid-mud,5,solid-fertilizer,1,seedling,8,water-light-mud,50,gas-nitrogen,20 +temperate-tree-generator-3,bio-arboretum-temperate +, recipe,tree-temperate-seed,8 +, product,solid-soil,5,solid-fertilizer,1,seedling,8,water,50,gas-carbon-dioxide,20 +tree-generator-3,bio-arboretum +, recipe,tree-seed,8 +, product,solid-soil,5,solid-fertilizer,1,seedling,8,water,50,gas-carbon-dioxide,20 +geode-blue-liquify,liquifying +, recipe,crystal-slurry,20 +, product,geode-blue,5,liquid-sulfuric-acid,15 +geode-blue-processing,geode-processing-1 +, recipe,crystal-dust,1,stone-crushed,2 +, product,geode-blue,2 +shotgun,angels-physical-ba +, recipe,shotgun,1 +, product,iron-plate,5,wood,5,iron-gear-wheel,5,pistol,2 +flamethrower,angels-fire +, recipe,flamethrower,1 +, product,steel-plate,5,iron-gear-wheel,5,submachine-gun,1 +rocket-launcher,angels-explosion-a +, recipe,rocket-launcher,1 +, product,steel-plate,5,electronic-circuit,5,shotgun,2 +pistol,angels-physical-aa +, recipe,pistol,1 +, product,copper-plate,5,iron-plate,5 +artillery-targeting-remote,angels-artillery-a +, recipe,artillery-targeting-remote,1 +, product,processing-unit,1,radar,1 +laser-rifle,angels-electric-a +, recipe,laser-rifle,1 +, product,steel-plate,10,steel-gear-wheel,5,advanced-circuit,5,rifle,1 +rifle,angels-physical-ab +, recipe,rifle,1 +, product,aluminium-plate,5,steel-plate,5,steel-gear-wheel,10,submachine-gun,1 +bio-gun,angels-fire +, recipe,bio-gun,1 +, product,steel-plate,5,iron-gear-wheel,5,submachine-gun,1 +combat-shotgun,angels-physical-ba +, recipe,combat-shotgun,1 +, product,steel-plate,15,wood,5,shotgun,1 +sniper-rifle,angels-physical-ab +, recipe,sniper-rifle,1 +, product,glass,2,wood,10,rifle,1 +submachine-gun,angels-physical-aa +, recipe,submachine-gun,1 +, product,iron-plate,5,iron-gear-wheel,10,pistol,1 +hydro-plant,water-treatment-building +, recipe,hydro-plant,1 +, product,stone-brick,60,iron-plate,12,basic-circuit-board,12,pipe,48 +fill-gas-hydrogen-sulfide-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-hydrogen-sulfide-barrel,1 +, product,gas-canister,1,gas-hydrogen-sulfide,50 +fill-hydrogen-sulfide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,hydrogen-sulfide-barrel,1 +, product,gas-canister,1,gas-hydrogen-sulfide,50 +empty-gas-hydrogen-sulfide-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-canister,1,gas-hydrogen-sulfide,50 +, product,gas-hydrogen-sulfide-barrel,1 +empty-hydrogen-sulfide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-hydrogen-sulfide,50 +, product,hydrogen-sulfide-barrel,1 +induction-furnace,angels-induction-furnace +, recipe,induction-furnace,1 +, product,stone-brick,25,iron-plate,15,iron-gear-wheel,9,basic-circuit-board,5,pipe,12 +iron-gear-wheel,bob-gears +, recipe,iron-gear-wheel,1 +, product,iron-plate,2 +angels-iron-pebbles,ore-sorting-advanced +, recipe,angels-iron-pebbles,4 +, product,iron-ore,2 +burner-mining-drill,extraction-machine +, recipe,burner-mining-drill,1 +, product,stone-furnace,1,iron-plate,3,iron-gear-wheel,3 +steam-mining-drill,extraction-machine +, recipe,steam-mining-drill,1 +, product,burner-mining-drill,1,pipe,2 +electric-mining-drill,extraction-machine +, recipe,electric-mining-drill,1 +, product,iron-plate,10,iron-gear-wheel,5,basic-circuit-board,3 +bob-mining-drill-1,extraction-machine +, recipe,bob-mining-drill-1,1 +, product,electric-mining-drill,1,steel-plate,10,steel-gear-wheel,5,electronic-circuit,5 +bob-mining-drill-2,extraction-machine +, recipe,bob-mining-drill-2,1 +, product,bob-mining-drill-1,1,invar-alloy,10,brass-gear-wheel,5,advanced-circuit,5 +bob-mining-drill-3,extraction-machine +, recipe,bob-mining-drill-3,1 +, product,bob-mining-drill-2,1,titanium-plate,10,titanium-gear-wheel,5,processing-unit,5 +bob-mining-drill-4,extraction-machine +, recipe,bob-mining-drill-4,1 +, product,bob-mining-drill-3,1,tungsten-carbide,10,nitinol-gear-wheel,5,advanced-processing-unit,5 +bob-area-mining-drill-1,extraction-machine +, recipe,bob-area-mining-drill-1,1 +, product,electric-mining-drill,1,steel-plate,10,steel-gear-wheel,5,electronic-circuit,5 +bob-area-mining-drill-2,extraction-machine +, recipe,bob-area-mining-drill-2,1 +, product,bob-area-mining-drill-1,1,invar-alloy,10,brass-gear-wheel,5,advanced-circuit,5 +bob-area-mining-drill-3,extraction-machine +, recipe,bob-area-mining-drill-3,1 +, product,bob-area-mining-drill-2,1,titanium-plate,10,titanium-gear-wheel,5,processing-unit,5 +bob-area-mining-drill-4,extraction-machine +, recipe,bob-area-mining-drill-4,1 +, product,bob-area-mining-drill-3,1,tungsten-carbide,10,nitinol-gear-wheel,5,advanced-processing-unit,5 +small-lamp,circuit-network +, recipe,small-lamp,1 +, product,copper-cable,3,iron-plate,1,basic-circuit-board,1 +angels-lamp,circuit-network +, recipe,angels-lamp,1 +, product,copper-cable,3,iron-plate,1,basic-circuit-board,1 +liquid-styrene-catalyst,petrochem-chemistry +, recipe,catalyst-metal-carrier,1,liquid-styrene,50 +, product,catalyst-metal-green,1,liquid-ethylbenzene,100 +crawler-locomotive,angels-vehicle-train-crawler +, recipe,crawler-locomotive,1 +, product,steel-plate,40,engine-unit,25,electronic-circuit,20,locomotive,1 +crawler-locomotive-2,angels-vehicle-train-crawler +, recipe,crawler-locomotive-2,1 +, product,steel-plate,50,engine-unit,30,crawler-locomotive,1,speed-module,2 +crawler-locomotive-3,angels-vehicle-train-crawler +, recipe,crawler-locomotive-3,1 +, product,electric-engine-unit,40,low-density-structure,50,crawler-locomotive-2,1,speed-module-2,2 +crawler-locomotive-4,angels-vehicle-train-crawler +, recipe,crawler-locomotive-4,1 +, product,electric-engine-unit,45,low-density-structure,75,crawler-locomotive-3,1,speed-module-3,2 +crawler-locomotive-5,angels-vehicle-train-crawler +, recipe,crawler-locomotive-5,1 +, product,electric-engine-unit,50,rocket-control-unit,2,low-density-structure,100,crawler-locomotive-4,1 +land-mine,angels-capsules-a +, recipe,land-mine,4 +, product,steel-plate,1,explosives,2 +poison-mine,angels-capsules-a +, recipe,poison-mine,4 +, product,steel-plate,1,poison-capsule,4 +slowdown-mine,angels-capsules-a +, recipe,slowdown-mine,4 +, product,steel-plate,1,slowdown-capsule,4 +distractor-mine,angels-capsules-a +, recipe,distractor-mine,3 +, product,steel-plate,1,distractor-capsule,1 +solid-beans-nutrients,bio-processor-nutrient +, recipe,liquid-nutrient-pulp,80 +, product,solid-beans,5 +solid-corn-nutrients,bio-processor-nutrient +, recipe,liquid-nutrient-pulp,70 +, product,solid-corn,5 +solid-leafs-nutrients,bio-processor-nutrient +, recipe,liquid-nutrient-pulp,10 +, product,solid-leafs,5 +solid-nuts-nutrients,bio-processor-nutrient +, recipe,liquid-nutrient-pulp,40 +, product,solid-nuts,5 +solid-pips-nutrients,bio-processor-nutrient +, recipe,liquid-nutrient-pulp,20 +, product,solid-pips,5 +solid-fruit-nutrients,bio-processor-nutrient +, recipe,liquid-nutrient-pulp,60 +, product,solid-fruit,5 +liquid-raw-vegetable-oil-nuts,bio-processor-press-vegetables +, recipe,liquid-raw-vegetable-oil,50 +, product,solid-nuts,10 +fish-pressing-0,bio-processor-press-fish +, recipe,fish-pulp,5,liquid-raw-fish-oil,200 +, product,raw-fish,1 +liquid-raw-vegetable-oil-pips,bio-processor-press-vegetables +, recipe,liquid-raw-vegetable-oil,40 +, product,solid-pips,10 +fish-pressing-1,bio-processor-press-fish +, recipe,fish-pulp,1,liquid-raw-fish-oil,200 +, product,alien-fish-1-raw,1 +liquid-raw-vegetable-oil-beans,bio-processor-press-vegetables +, recipe,liquid-raw-vegetable-oil,30 +, product,solid-beans,10 +fish-pressing-2,bio-processor-press-fish +, recipe,fish-pulp,2,liquid-raw-fish-oil,100 +, product,alien-fish-2-raw,1 +fish-pressing-3,bio-processor-press-fish +, recipe,fish-pulp,1,liquid-raw-fish-oil,50 +, product,alien-fish-3-raw,1 +basic-oil-processing,fluid-recipes +, recipe,sour-gas,70 +, product,crude-oil,100 +advanced-oil-processing,fluid-recipes +, recipe,liquid-naphtha,25,liquid-fuel-oil,45,sour-gas,55 +, product,water-purified,50,crude-oil,100 +bob-oil-processing,fluid-recipes +, recipe,liquid-naphtha,50,liquid-fuel-oil,20,sour-gas,30 +, product,crude-oil,100 +carbon-dioxide-oil-processing,fluid-recipes +, recipe,liquid-naphtha,60,liquid-fuel-oil,40,sour-gas,25 +, product,gas-carbon-dioxide,50,crude-oil,100 +coal-liquefaction,fluid-recipes +, recipe,liquid-naphtha,90,liquid-fuel-oil,20,sour-gas,10 +, product,coal,10,liquid-naphtha,10,steam,50 +oil-separation,petrochem-carbon-oil-feed +, recipe,gas-raw-1,20,crude-oil,70,water-yellow-waste,10 +, product,liquid-multi-phase-oil,100 +ore-floatation-cell,ore-floatation +, recipe,ore-floatation-cell,1 +, product,clay-brick,40,bronze-alloy,12,electronic-circuit,8,bronze-pipe,12 +ore-leaching-plant,ore-leaching +, recipe,ore-leaching-plant,1 +, product,aluminium-plate,16,concrete-brick,40,advanced-circuit,8,brass-pipe,12 +ore-processing-machine,angels-processing-machine +, recipe,ore-processing-machine,1 +, product,clay-brick,20,bronze-alloy,6,steel-gear-wheel,6 +ore-refinery,ore-refining +, recipe,ore-refinery,1 +, product,reinforced-concrete-brick,100,titanium-plate,48,processing-unit,12 +ore-sorting-facility,ore-sorter +, recipe,ore-sorting-facility,1 +, product,stone-brick,60,iron-plate,36,iron-gear-wheel,24,basic-circuit-board,12 +silo-ore1,angels-ore-silo +, recipe,silo-ore1,1 +, product,angels-ore1-crushed,10,silo,1 +silo-ore2,angels-ore-silo +, recipe,silo-ore2,1 +, product,angels-ore2-crushed,10,silo,1 +silo-ore3,angels-ore-silo +, recipe,silo-ore3,1 +, product,angels-ore3-crushed,10,silo,1 +silo-ore4,angels-ore-silo +, recipe,silo-ore4,1 +, product,angels-ore4-crushed,10,silo,1 +silo-ore5,angels-ore-silo +, recipe,silo-ore5,1 +, product,angels-ore5-crushed,10,silo,1 +silo-ore6,angels-ore-silo +, recipe,silo-ore6,1 +, product,angels-ore6-crushed,10,silo,1 +silo-coal,angels-ore-silo +, recipe,silo-coal,1 +, product,coal-crushed,10,silo,1 +roboport-antenna-1,angels-roboport-a +, recipe,roboport-antenna-1,1 +, product,copper-cable,2,steel-plate,1,advanced-circuit,5 +roboport-antenna-2,angels-roboport-b +, recipe,roboport-antenna-2,1 +, product,aluminium-plate,1,tinned-copper-cable,2,advanced-circuit,5 +roboport-antenna-3,angels-roboport-c +, recipe,roboport-antenna-3,1 +, product,nickel-plate,1,insulated-cable,2,processing-unit,5 +roboport-antenna-4,angels-roboport-d +, recipe,roboport-antenna-4,1 +, product,gold-plate,1,gilded-copper-cable,2,nickel-plate,1,advanced-processing-unit,5 +roboport-door-1,angels-roboport-a +, recipe,roboport-door-1,1 +, product,steel-plate,15,iron-gear-wheel,20 +roboport-door-2,angels-roboport-b +, recipe,roboport-door-2,1 +, product,invar-alloy,15,brass-gear-wheel,20,steel-bearing,20 +roboport-door-3,angels-roboport-c +, recipe,roboport-door-3,1 +, product,titanium-plate,15,titanium-gear-wheel,20,titanium-bearing,20 +roboport-door-4,angels-roboport-d +, recipe,roboport-door-4,1 +, product,nitinol-alloy,15,nitinol-gear-wheel,20,nitinol-bearing,20 +roboport-chargepad-1,angels-roboport-a +, recipe,roboport-chargepad-1,1 +, product,steel-plate,2,advanced-circuit,5 +roboport-chargepad-2,angels-roboport-b +, recipe,roboport-chargepad-2,1 +, product,invar-alloy,2,battery,2,advanced-circuit,5 +roboport-chargepad-3,angels-roboport-c +, recipe,roboport-chargepad-3,1 +, product,titanium-plate,2,lithium-ion-battery,2,processing-unit,5 +roboport-chargepad-4,angels-roboport-d +, recipe,roboport-chargepad-4,1 +, product,nitinol-alloy,2,silver-zinc-battery,2,advanced-processing-unit,5 +pellet-press,angels-pellet-press +, recipe,pellet-press,1 +, product,aluminium-plate,8,concrete-brick,10,brass-gear-wheel,12 +plastic-bar,petrochem-solids +, recipe,plastic-bar,2 +, product,gas-methane,20,gas-chlorine,10 +bob-resin-oil,bob-resource-chemical +, recipe,resin,1 +, product,liquid-naphtha,10 +copper-pipe,pipe +, recipe,copper-pipe,1 +, product,copper-plate,1 +pipe,pipe +, recipe,pipe,1 +, product,iron-plate,1 +stone-pipe,pipe +, recipe,stone-pipe,1 +, product,stone-brick,1 +bronze-pipe,pipe +, recipe,bronze-pipe,1 +, product,bronze-alloy,1 +steel-pipe,pipe +, recipe,steel-pipe,1 +, product,steel-plate,1 +plastic-pipe,pipe +, recipe,plastic-pipe,1 +, product,plastic-bar,1 +brass-pipe,pipe +, recipe,brass-pipe,1 +, product,brass-alloy,1 +titanium-pipe,pipe +, recipe,titanium-pipe,1 +, product,titanium-plate,1 +ceramic-pipe,pipe +, recipe,ceramic-pipe,1 +, product,silicon-nitride,1 +tungsten-pipe,pipe +, recipe,tungsten-pipe,1 +, product,tungsten-plate,1 +nitinol-pipe,pipe +, recipe,nitinol-pipe,1 +, product,nitinol-alloy,1 +copper-tungsten-pipe,pipe +, recipe,copper-tungsten-pipe,1 +, product,copper-tungsten-alloy,1 +copper-pipe-to-ground,pipe-to-ground +, recipe,copper-pipe-to-ground,2 +, product,copper-plate,5,copper-pipe,10 +pipe-to-ground,pipe-to-ground +, recipe,pipe-to-ground,2 +, product,iron-plate,5,pipe,10 +stone-pipe-to-ground,pipe-to-ground +, recipe,stone-pipe-to-ground,2 +, product,stone-brick,5,stone-pipe,10 +bronze-pipe-to-ground,pipe-to-ground +, recipe,bronze-pipe-to-ground,2 +, product,bronze-alloy,5,bronze-pipe,12 +steel-pipe-to-ground,pipe-to-ground +, recipe,steel-pipe-to-ground,2 +, product,steel-plate,5,steel-pipe,12 +plastic-pipe-to-ground,pipe-to-ground +, recipe,plastic-pipe-to-ground,2 +, product,plastic-bar,5,plastic-pipe,14 +brass-pipe-to-ground,pipe-to-ground +, recipe,brass-pipe-to-ground,2 +, product,brass-alloy,5,brass-pipe,14 +titanium-pipe-to-ground,pipe-to-ground +, recipe,titanium-pipe-to-ground,2 +, product,titanium-plate,5,titanium-pipe,16 +ceramic-pipe-to-ground,pipe-to-ground +, recipe,ceramic-pipe-to-ground,2 +, product,silicon-nitride,5,ceramic-pipe,16 +tungsten-pipe-to-ground,pipe-to-ground +, recipe,tungsten-pipe-to-ground,2 +, product,tungsten-plate,5,tungsten-pipe,16 +nitinol-pipe-to-ground,pipe-to-ground +, recipe,nitinol-pipe-to-ground,2 +, product,nitinol-alloy,5,nitinol-pipe,18 +copper-tungsten-pipe-to-ground,pipe-to-ground +, recipe,copper-tungsten-pipe-to-ground,2 +, product,copper-tungsten-alloy,5,copper-tungsten-pipe,18 +fill-liquid-plastic-barrel,angels-fluid-control-petrochem-solids-fluids +, recipe,liquid-plastic-barrel,1 +, product,empty-barrel,1,liquid-plastic,50 +liquid-plastic-1,petrochem-solids +, recipe,liquid-plastic,10 +, product,gas-propene,40 +liquid-plastic-2,petrochem-solids +, recipe,liquid-plastic,20 +, product,liquid-naphtha,20,liquid-polyethylene,20 +liquid-plastic-3,petrochem-solids +, recipe,liquid-plastic,30 +, product,gas-formaldehyde,20,liquid-phenol,20 +empty-liquid-plastic-barrel,angels-fluid-control-petrochem-solids-fluids +, recipe,empty-barrel,1,liquid-plastic,50 +, product,liquid-plastic-barrel,1 +solid-plastic,petrochem-solids +, recipe,plastic-bar,4 +, product,liquid-plastic,40 +player-boots,body-parts +, recipe,player-boots,1 +, product,steel-plate,5,rubber,15 +player-boots-2,body-parts +, recipe,player-boots-2,1 +, product,titanium-plate,5,rubber,15 +player-brain,body-parts +, recipe,player-brain,1 +, product,solder,5,superior-circuit-board,5,basic-electronic-components,10,electronic-components,25,intergrated-electronics,10,module-case,1 +player-brain-2,body-parts +, recipe,player-brain-2,1 +, product,solder,10,superior-circuit-board,8,basic-electronic-components,8,electronic-components,30,intergrated-electronics,20,processing-electronics,2,module-case,1 +player-gloves,body-parts +, recipe,player-gloves,1 +, product,steel-plate,5,steel-gear-wheel,15,steel-bearing,8 +player-gloves-2,body-parts +, recipe,player-gloves-2,1 +, product,titanium-plate,5,titanium-gear-wheel,15,titanium-bearing,8 +player-head,body-parts +, recipe,player-head,1 +, product,steel-plate,5,player-brain,1 +player-head-2,body-parts +, recipe,player-head-2,1 +, product,titanium-plate,5,player-brain-2,1 +player-frame,body-parts +, recipe,player-frame,1 +, product,steel-plate,5,electric-engine-unit,8,advanced-circuit,15,steel-chest,1,player-boots,1,player-gloves,1,player-head,1,player-power-core,1 +player-frame-2,body-parts +, recipe,player-frame-2,1 +, product,titanium-plate,5,electric-engine-unit,12,processing-unit,15,titanium-chest,1,player-boots-2,1,player-gloves-2,1,player-head-2,1,player-power-core,1 +player-power-core,body-parts +, recipe,player-power-core,1 +, product,battery,15,rtg,1,processing-unit,50 +angels-casing-resin-mold,angels-mold-casting +, recipe,motor-casing-0,1 +, product,resin,2 +powder-mixer,angels-powder-mixer +, recipe,powder-mixer,1 +, product,clay-brick,5,bronze-alloy,3,steel-gear-wheel,3 +wall-0,angels-exploration-walls +, recipe,wall-0,1 +, product,stone,5,wood,1 +angels-burner-reactor,angels-power-nuclear +, recipe,angels-burner-reactor,1 +, product,lead-plate,350,reinforced-concrete-brick,500,titanium-plate,400,tungsten-plate,400,processing-unit,500 +alien-artifact-red-from-basic,bio-processing-alien-large-convert +, recipe,alien-artifact-red,5 +, product,alien-artifact-red,1,alien-artifact,5 +alien-artifact-red-from-small,bio-processing-alien-large +, recipe,alien-artifact-red,1 +, product,small-alien-artifact-red,25 +alien-pre-artifact-red,bio-processing-alien-pre +, recipe,alien-pre-artifact-red,1 +, product,seeded-dish,1,paste-copper,1,ruby-4,1 +small-alien-artifact-red,bio-processing-alien-small +, recipe,small-alien-artifact-red,1 +, product,alien-pre-artifact-red,1 +better-shotgun-shell,angels-physical-bb +, recipe,better-shotgun-shell,1 +, product,cordite,1,shot,1,shotgun-shell-casing,1 +bob-rocket,angels-explosion-bb +, recipe,bob-rocket,1 +, product,rocket-warhead,1,rocket-body,1 +bullet,angels-physical-ad +, recipe,bullet,1 +, product,bullet-projectile,1,cordite,1,bullet-casing,1 +bullet-magazine,angels-physical-ae +, recipe,bullet-magazine,1 +, product,bullet,5,magazine,1 +bullet-projectile,angels-physical-ac +, recipe,bullet-projectile,2 +, product,copper-plate,1,lead-plate,1 +cannon-turret-shell-1,angels-physical-bc +, recipe,cannon-turret-shell-1,1 +, product,coal,2,shotgun-shell,1 +laser-rifle-battery,angels-electric-c +, recipe,laser-rifle-battery,1 +, product,glass,1,battery,4,laser-rifle-battery-case,1 +rocket-warhead,angels-explosion-ba +, recipe,rocket-warhead,1 +, product,steel-plate,1,explosives,1 +angels-chemical-plant,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant,1 +, product,iron-plate,6,iron-gear-wheel,3,basic-circuit-board,1,pipe,12 +bob-distillery,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant,1 +, product,copper-plate,3,iron-plate,3,copper-pipe,2 +chemical-plant,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant,1 +, product,steel-plate,5,iron-gear-wheel,5,electronic-circuit,5,pipe,5 +angels-chemical-plant-2,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant-2,1 +, product,bronze-alloy,6,angels-chemical-plant,1,steel-gear-wheel,3,electronic-circuit,1,bronze-pipe,12 +chemical-plant-2,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant-2,1 +, product,glass,10,angels-chemical-plant,1,steel-gear-wheel,5,steel-bearing,5,advanced-circuit,5,steel-pipe,5 +angels-chemical-plant-3,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant-3,1 +, product,aluminium-plate,8,angels-chemical-plant-2,1,brass-gear-wheel,3,advanced-circuit,1,brass-pipe,12 +chemical-plant-3,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant-3,1 +, product,titanium-plate,10,angels-chemical-plant-2,1,titanium-gear-wheel,5,titanium-bearing,5,processing-unit,10,titanium-pipe,5 +angels-chemical-plant-4,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant-4,1 +, product,titanium-plate,4,angels-chemical-plant-3,1,titanium-gear-wheel,3,processing-unit,1,titanium-pipe,12 +chemical-plant-4,petrochem-buildings-chemical-plant +, recipe,angels-chemical-plant-4,1 +, product,nitinol-alloy,10,angels-chemical-plant-3,1,nitinol-gear-wheel,5,nitinol-bearing,5,advanced-processing-unit,10,nitinol-pipe,5 +spidertron-remote,angels-vehicle-spidertron +, recipe,spidertron-remote,1 +, product,rocket-control-unit,1,radar,1 +cargo-roboport,angels-cargo-ports +, recipe,cargo-roboport,1 +, product,stone-brick,40,steel-plate,60,iron-gear-wheel,60,electronic-circuit,60 +cargo-box,angels-cargo-ports +, recipe,cargo-box,1 +, product,stone-brick,40,steel-plate,60,iron-gear-wheel,60,electronic-circuit,60 +cargo-hub,angels-cargo-ports +, recipe,cargo-hub,1 +, product,stone-brick,40,steel-plate,60,iron-gear-wheel,60,electronic-circuit,60 +angels-charging-station,angels-cargo-ports +, recipe,angels-charging-station,1 +, product,iron-plate,5,steel-plate,5,processing-unit,2,angels-relay-station-2,2 +separator,petrochem-buildings-oil-refinery +, recipe,separator,1 +, product,clay-brick,25,steel-plate,6,electronic-circuit,5,steel-pipe,30 +separator-2,petrochem-buildings-oil-refinery +, recipe,separator-2,1 +, product,aluminium-plate,8,concrete-brick,25,separator,1,advanced-circuit,5,brass-pipe,30 +separator-3,petrochem-buildings-oil-refinery +, recipe,separator-3,1 +, product,reinforced-concrete-brick,25,titanium-plate,8,separator-2,1,processing-unit,5,titanium-pipe,30 +separator-4,petrochem-buildings-oil-refinery +, recipe,separator-4,1 +, product,reinforced-concrete-brick,25,tungsten-plate,8,separator-3,1,advanced-processing-unit,5,tungsten-pipe,30 +silo-active-provider,angels-silo +, recipe,silo-active-provider,1 +, product,steel-plate,10,advanced-circuit,10,silo,1 +silo-passive-provider,angels-silo +, recipe,silo-passive-provider,1 +, product,steel-plate,10,electronic-circuit,10,silo,1 +silo-storage,angels-silo +, recipe,silo-storage,1 +, product,steel-plate,10,electronic-circuit,10,silo,1 +silo-buffer,angels-silo +, recipe,silo-buffer,1 +, product,steel-plate,10,advanced-circuit,10,silo,1 +silo-requester,angels-silo +, recipe,silo-requester,1 +, product,steel-plate,10,electronic-circuit,10,silo,1 +sintering-oven,angels-sintering-oven +, recipe,sintering-oven,1 +, product,clay-brick,45,steel-plate,24,electronic-circuit,5 +fill-thermal-water-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,thermal-water-barrel,1 +, product,empty-barrel,1,thermal-water,50 +empty-thermal-water-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,empty-barrel,1,thermal-water,50 +, product,thermal-water-barrel,1 +fill-slag-slurry-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,slag-slurry-barrel,1 +, product,empty-barrel,1,slag-slurry,50 +empty-slag-slurry-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,empty-barrel,1,slag-slurry,50 +, product,slag-slurry-barrel,1 +bob-small-inline-storage-tank,angels-fluid-tanks +, recipe,bob-small-inline-storage-tank,1 +, product,iron-plate,3,pipe,1 +bob-small-storage-tank,angels-fluid-tanks +, recipe,bob-small-storage-tank,1 +, product,bob-small-inline-storage-tank,1,pipe,1 +small-electric-pole,angels-power-poles +, recipe,small-electric-pole,2 +, product,copper-cable,2,wood,1 +biter-small-eggsperiment,bio-biter-egg +, recipe,biter-small-egg,1 +, product,crystal-dust,1,bio-puffer-egg-3,1,crystal-seed,1 +biter-small-keeping,bio-biter +, recipe,biter-small,3,biter-small,1,crystal-splinter-raw,4 +, product,biter-small,4,bio-alien-processed-meat,2,liquid-nutrient-pulp,20 +biter-small-butchering,bio-biter-butchery +, recipe,bio-raw-meat,1,crystal-splinter-raw,1 +, product,biter-small,1 +biter-small-breeding,bio-biter +, recipe,biter-queen-small,1,biter-queen-small,1,biter-small-egg,1,biter-small-egg,1 +, product,biter-queen-small,2,bio-alien-processed-meat,2,liquid-nutrient-pulp,20 +biter-small,bio-biter-egg +, recipe,biter-small,1,biter-queen-small,1 +, product,biter-small-egg,1,bio-alien-processed-meat,1,liquid-nutrient-pulp,10 +biter-queen-small-butchering,bio-biter-butchery +, recipe,bio-raw-meat,1 - 2,crystal-splinter-raw,1 +, product,biter-queen-small,1 +solid-salt-separation,petrochem-sodium +, recipe,solid-sodium,5,angels-electrode-used,1,gas-chlorine,200 +, product,solid-salt,10,angels-electrode,1 +solid-sodium,petrochem-sodium +, recipe,solid-sodium,5,angels-electrode-used,1,water-purified,50 +, product,solid-sodium-hydroxide,5,angels-electrode,1 +solid-sodium-sulfate-separation,petrochem-sodium +, recipe,solid-sodium,4,sulfur,2 +, product,solid-sodium-sulfate,2 +solar-panel-small,angels-power-solar-panel +, recipe,solar-panel-small,1 +, product,copper-plate,2,steel-plate,2,electronic-circuit,6 +solar-panel-small-2,angels-power-solar-panel +, recipe,solar-panel-small-2,1 +, product,glass,2,silver-plate,2,advanced-circuit,4,solar-panel-small,1 +solar-panel-small-3,angels-power-solar-panel +, recipe,solar-panel-small-3,1 +, product,gold-plate,2,silicon-wafer,16,titanium-plate,2,processing-unit,4,solar-panel-small-2,1 +solar-panel,angels-power-solar-panel +, recipe,solar-panel,1 +, product,copper-plate,4,steel-plate,4,electronic-circuit,14 +solar-panel-2,angels-power-solar-panel +, recipe,solar-panel-2,1 +, product,glass,4,silver-plate,4,advanced-circuit,9,solar-panel,1 +solar-panel-3,angels-power-solar-panel +, recipe,solar-panel-3,1 +, product,gold-plate,4,silicon-wafer,36,titanium-plate,4,processing-unit,9,solar-panel-2,1 +solar-panel-large,angels-power-solar-panel +, recipe,solar-panel-large,1 +, product,copper-plate,8,steel-plate,8,electronic-circuit,24 +solar-panel-large-2,angels-power-solar-panel +, recipe,solar-panel-large-2,1 +, product,glass,8,silver-plate,8,advanced-circuit,16,solar-panel-large,1 +solar-panel-large-3,angels-power-solar-panel +, recipe,solar-panel-large-3,1 +, product,gold-plate,8,silicon-wafer,64,titanium-plate,8,processing-unit,16,solar-panel-large-2,1 +angels-solder-mixture,angels-alloys +, recipe,angels-solder-mixture,2 +, product,lead-plate,2,tin-plate,2 +solid-fuel-methane,petrochem-fuel +, recipe,solid-fuel,2 +, product,solid-coke,1,gas-methane,100 +glass-mixture-1,angels-glass +, recipe,solid-glass-mixture,1 +, product,quartz,1 +glass-mixture-2,angels-glass +, recipe,solid-glass-mixture,2 +, product,quartz,1,solid-lime,1 +glass-mixture-3,angels-glass +, recipe,solid-glass-mixture,3 +, product,alumina,1,quartz,1,solid-lime,1 +glass-mixture-4,angels-glass +, recipe,solid-glass-mixture,4 +, product,solid-lime,1,solid-sand,1,solid-sodium-carbonate,1,solid-sodium-sulfate,1 +steam-cracker,petrochem-buildings-steam +, recipe,steam-cracker,1 +, product,clay-brick,20,bronze-alloy,6,electronic-circuit,4,bronze-pipe,36 +steam-cracker-2,petrochem-buildings-steam +, recipe,steam-cracker-2,1 +, product,aluminium-plate,8,concrete-brick,20,steam-cracker,1,advanced-circuit,4,brass-pipe,36 +steam-cracker-3,petrochem-buildings-steam +, recipe,steam-cracker-3,1 +, product,reinforced-concrete-brick,20,titanium-plate,8,steam-cracker-2,1,processing-unit,4,titanium-pipe,36 +steam-cracker-4,petrochem-buildings-steam +, recipe,steam-cracker-4,1 +, product,reinforced-concrete-brick,20,tungsten-plate,8,steam-cracker-3,1,advanced-processing-unit,4,tungsten-pipe,36 +steam-cracking-methane,petrochem-cracking +, recipe,gas-methanol,80,gas-residual,20 +, product,gas-methane,60,steam,60 +angels-steam-water,water-boiling +, recipe,steam,40 +, product,water,40 +angels-steam-water-purified,water-boiling +, recipe,steam,40 +, product,water-purified,40 +stone-chemical-furnace,smelting-machine +, recipe,stone-furnace,1 +, product,stone,5,pipe,2 +stone-furnace,smelting-machine +, recipe,stone-furnace,1 +, product,stone,5 +strand-casting-machine,angels-strand-casting-machine +, recipe,strand-casting-machine,1 +, product,clay-brick,15,bronze-alloy,18,steel-gear-wheel,12,electronic-circuit,3,bronze-pipe,18 +sulfur,petrochem-sulfur +, recipe,sulfur,2 +, product,water-purified,30,gas-methane,30 +solid-soil,bio-wood +, recipe,solid-soil,1 +, product,solid-mud,1,solid-compost,1 +solid-soil-alternative,bio-wood +, recipe,solid-soil,1 +, product,solid-sand,1,solid-compost,2 +solid-fertilizer,bio-wood +, recipe,solid-fertilizer,1 +, product,solid-compost,2,gas-urea,20 +bob-fertiliser,bio-wood +, recipe,solid-fertilizer,1 +, product,liquid-nitric-acid,10,gas-ammonia,10,gas-urea,20 +solid-alienated-fertilizer,bio-wood +, recipe,solid-alienated-fertilizer,1 +, product,solid-fertilizer,1,alien-goo,5 +angels-heavy-tank,angels-exploration-tank-b +, recipe,angels-heavy-tank,1 +, product,steel-plate,50,engine-unit,20,advanced-circuit,10 +tank,angels-exploration-tank-a +, recipe,tank,1 +, product,steel-plate,50,engine-unit,32,iron-gear-wheel,15,advanced-circuit,10 +bob-tank-2,angels-exploration-tank-a +, recipe,bob-tank-2,1 +, product,titanium-plate,50,titanium-gear-wheel,15,titanium-bearing,15,processing-unit,5,tank,1 +bob-tank-3,angels-exploration-tank-a +, recipe,bob-tank-3,1 +, product,silicon-nitride,40,tungsten-carbide,40,nitinol-gear-wheel,15,nitinol-bearing,15,advanced-processing-unit,5,bob-tank-2,1 +thermal-bore,refining-buildings +, recipe,thermal-bore,1 +, product,clay-brick,20,bronze-alloy,18,steel-gear-wheel,12,electronic-circuit,4,bronze-pipe,12 +thermal-extractor,refining-buildings +, recipe,thermal-extractor,1 +, product,aluminium-plate,24,concrete-brick,20,brass-gear-wheel,12,advanced-circuit,4,brass-pipe,12 +rail,train-transport +, recipe,rail,2 +, product,stone,1,steel-plate,1,iron-stick,1 +train-stop,train-transport +, recipe,train-stop,1 +, product,iron-plate,6,steel-plate,3,iron-stick,6,electronic-circuit,5 +rail-signal,train-transport +, recipe,rail-signal,1 +, product,iron-plate,5,electronic-circuit,1 +locomotive,bob-locomotive +, recipe,locomotive,1 +, product,steel-plate,30,engine-unit,20,electronic-circuit,10 +bob-locomotive-2,bob-locomotive +, recipe,bob-locomotive-2,1 +, product,invar-alloy,10,steel-gear-wheel,20,steel-bearing,16,advanced-circuit,5,locomotive,1 +bob-locomotive-3,bob-locomotive +, recipe,bob-locomotive-3,1 +, product,titanium-plate,10,titanium-gear-wheel,20,titanium-bearing,16,processing-unit,5,bob-locomotive-2,1 +bob-armoured-locomotive,bob-locomotive +, recipe,bob-armoured-locomotive,1 +, product,titanium-plate,25,locomotive,1 +bob-armoured-locomotive-2,bob-locomotive +, recipe,bob-armoured-locomotive-2,1 +, product,silicon-nitride,15,tungsten-carbide,15,titanium-gear-wheel,20,titanium-bearing,16,processing-unit,5,bob-armoured-locomotive,1 +rail-chain-signal,train-transport +, recipe,rail-chain-signal,1 +, product,iron-plate,5,electronic-circuit,1 +cargo-wagon,bob-cargo-wagon +, recipe,cargo-wagon,1 +, product,iron-plate,20,steel-plate,20,iron-gear-wheel,10 +bob-cargo-wagon-2,bob-cargo-wagon +, recipe,bob-cargo-wagon-2,1 +, product,invar-alloy,20,steel-gear-wheel,12,steel-bearing,8,cargo-wagon,1 +bob-cargo-wagon-3,bob-cargo-wagon +, recipe,bob-cargo-wagon-3,1 +, product,titanium-plate,20,titanium-gear-wheel,12,titanium-bearing,8,bob-cargo-wagon-2,1 +bob-armoured-cargo-wagon,bob-cargo-wagon +, recipe,bob-armoured-cargo-wagon,1 +, product,titanium-plate,25,cargo-wagon,1 +bob-armoured-cargo-wagon-2,bob-cargo-wagon +, recipe,bob-armoured-cargo-wagon-2,1 +, product,silicon-nitride,15,tungsten-carbide,15,titanium-gear-wheel,12,titanium-bearing,8,bob-armoured-cargo-wagon,1 +fluid-wagon,bob-fluid-wagon +, recipe,fluid-wagon,1 +, product,steel-plate,16,storage-tank,1,iron-gear-wheel,10,pipe,8 +bob-fluid-wagon-2,bob-fluid-wagon +, recipe,bob-fluid-wagon-2,1 +, product,invar-alloy,16,storage-tank-2,1,steel-gear-wheel,12,steel-bearing,8,fluid-wagon,1 +bob-fluid-wagon-3,bob-fluid-wagon +, recipe,bob-fluid-wagon-3,1 +, product,titanium-plate,16,storage-tank-3,1,titanium-gear-wheel,12,titanium-bearing,8,bob-fluid-wagon-2,1 +bob-armoured-fluid-wagon,bob-fluid-wagon +, recipe,bob-armoured-fluid-wagon,1 +, product,titanium-plate,25,fluid-wagon,1 +bob-armoured-fluid-wagon-2,bob-fluid-wagon +, recipe,bob-armoured-fluid-wagon-2,1 +, product,silicon-nitride,15,tungsten-carbide,15,storage-tank-3,1,titanium-gear-wheel,12,titanium-bearing,8,bob-armoured-fluid-wagon,1 +basic-transport-belt,bob-logistic-tier-0 +, recipe,basic-transport-belt,2 +, product,iron-plate,1,iron-gear-wheel,1 +transport-belt,bob-logistic-tier-1 +, recipe,transport-belt,1 +, product,tin-plate,2,iron-gear-wheel,2,basic-transport-belt,1 +fast-transport-belt,bob-logistic-tier-2 +, recipe,fast-transport-belt,1 +, product,bronze-alloy,2,steel-gear-wheel,4,transport-belt,1 +express-transport-belt,bob-logistic-tier-3 +, recipe,express-transport-belt,1 +, product,aluminium-plate,2,cobalt-steel-gear-wheel,4,cobalt-steel-bearing,4,fast-transport-belt,1 +turbo-transport-belt,bob-logistic-tier-4 +, recipe,turbo-transport-belt,1 +, product,titanium-plate,2,titanium-gear-wheel,4,titanium-bearing,4,express-transport-belt,1 +ultimate-transport-belt,bob-logistic-tier-5 +, recipe,ultimate-transport-belt,1 +, product,nitinol-alloy,2,nitinol-gear-wheel,4,nitinol-bearing,4,turbo-transport-belt,1 +uranium-fuel-cell,angels-power-nuclear-fuel-cell +, recipe,uranium-fuel-cell,15 +, product,iron-plate,15,uranium-235,1,uranium-238,29 +uranium-processing,angels-power-nuclear-processing +, recipe,uranium-235,1,uranium-238,1,uranium-234,1 +, product,uranium-ore,10 +angels-uranium-fuel-cell,angels-power-nuclear-fuel-cell +, recipe,angels-uranium-fuel-cell,100 +, product,iron-plate,100,uranium-234,1,uranium-238,199 +kovarex-enrichment-process,angels-power-nuclear-processing +, recipe,uranium-235,41,uranium-238,2 +, product,uranium-235,40,uranium-238,5 +nuclear-fuel-reprocessing,angels-power-nuclear-fuel-cell +, recipe,uranium-238,3,slag,5 +, product,used-up-uranium-fuel-cell,5 +angels-advanced-uranium-reprocessing,angels-power-nuclear-fuel-cell +, recipe,uranium-238,5,slag,10,neptunium-240,1,water-greenyellow-waste,60 +, product,used-up-uranium-fuel-cell,10,liquid-hydrofluoric-acid,60 +plutonium-nucleosynthesis,angels-power-nuclear-processing +, recipe,uranium-235,3,uranium-238,10,plutonium-239,1 +, product,uranium-235,5,uranium-238,15 +bob-valve,angels-fluid-control +, recipe,bob-valve,1 +, product,iron-plate,1,pipe,1 +valve-inspector,angels-fluid-control +, recipe,valve-inspector,1 +, product,basic-circuit-board,1,pipe,3 +bob-overflow-valve,angels-fluid-control +, recipe,bob-overflow-valve,1 +, product,iron-plate,1,pipe,1 +valve-return,angels-fluid-control +, recipe,valve-return,1 +, product,basic-circuit-board,1,pipe,3 +bob-topup-valve,angels-fluid-control +, recipe,bob-topup-valve,1 +, product,iron-plate,1,pipe,1 +valve-overflow,angels-fluid-control +, recipe,valve-overflow,1 +, product,basic-circuit-board,1,pipe,3 +valve-underflow,angels-fluid-control +, recipe,valve-underflow,1 +, product,basic-circuit-board,1,pipe,3 +valve-converter,angels-fluid-control +, recipe,valve-converter,1 +, product,basic-circuit-board,1,pipe,3 +water-saline-separation,petrochem-chlorine +, recipe,solid-sodium-hydroxide,1,gas-chlorine,40,gas-hydrogen,60 +, product,water-saline,100 +water-saline,water-salination +, recipe,water-saline,400 +, product,water,1000 +solid-salt-dissolving,water-salination +, recipe,water-saline,400 +, product,solid-salt,10,water-purified,1000 +heavy-water-electrolysis,petrochem-basics +, recipe,gas-deuterium,20,gas-oxygen,12.5 +, product,liquid-water-heavy,10 +dirt-water-separation,petrochem-basics +, recipe,slag,1,gas-oxygen,30,gas-hydrogen,40 +, product,water,100 +dirt-water-separation-2,petrochem-basics +, recipe,slag,1,angels-electrode-used,1,gas-oxygen,30,gas-hydrogen,40 +, product,angels-electrode,1,water,100 +water-separation,petrochem-basics +, recipe,gas-oxygen,40,gas-hydrogen,60 +, product,water-purified,100 +water-separation-2,petrochem-basics +, recipe,angels-electrode-used,1,gas-oxygen,40,gas-hydrogen,60 +, product,angels-electrode,1,water-purified,100 +angels-heavy-water-separation,petrochem-basics +, recipe,gas-oxygen,40,gas-deuterium,60 +, product,liquid-water-heavy,100 +angels-heavy-water-separation-2,petrochem-basics +, recipe,angels-electrode-used,1,gas-oxygen,40,gas-deuterium,60 +, product,angels-electrode,1,liquid-water-heavy,100 +water-synthesis,petrochem-basics +, recipe,water-purified,100 +, product,gas-oxygen,60,gas-hydrogen,90 +water-mineralized,water-treatment +, recipe,water-mineralized,100 +, product,stone-crushed,10,water,100 +synthetic-wood,bob-resource-chemical +, recipe,wood,2 +, product,liquid-naphtha,10 +wood-sawing-manual,bio-processing-wood +, recipe,wood,5 +, product,solid-tree,1 +wood-sawing-1,bio-processing-wood +, recipe,wood,6 - 8,solid-saw,1 +, product,solid-saw,1,solid-tree,1 +wood-sawing-2,bio-processing-wood +, recipe,wood,6 - 8,solid-crystal-tipped-saw,1 +, product,solid-crystal-tipped-saw,1,solid-tree,1 +wood-sawing-3,bio-processing-wood +, recipe,wood,6 - 8,solid-crystal-full-saw,1 +, product,solid-crystal-full-saw,1,solid-tree,1 +boiler,angels-power-steam-boiler +, recipe,boiler,1 +, product,stone-furnace,1,pipe,4 +desert-1,farming-desert +, recipe,desert-1,30 - 40 +, product,solid-sand,10,desert-1-seed,5,water-saline,50 +desert-1-seed,farming-desert-seed +, recipe,desert-1-seed,5 - 6 +, product,desert-1,5 +fish-breeding-0,bio-fish-breeding +, recipe,raw-fish,2 - 4,liquid-polluted-fish-atmosphere,100 +, product,raw-fish,2,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +fish-butchery-0,bio-fish-butchery +, recipe,bio-raw-meat,1 +, product,raw-fish,1 +fish-keeping-0,bio-fish +, recipe,raw-fish,2,raw-fish,1,liquid-polluted-fish-atmosphere,100 +, product,raw-fish,4,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +heat-exchanger,angels-power-nuclear-heat-exchanger +, recipe,heat-exchanger,1 +, product,boiler-2,1,heat-pipe,4 +puffer-breeding-1,bio-puffer-breeding-1 +, recipe,bio-puffer-1,2,bio-puffer-egg-1,1,bio-puffer-egg-2,1,bio-puffer-egg-3,1,bio-puffer-egg-4,1,bio-puffer-egg-5,1,gas-acid,20 +, product,solid-beans,5,bio-puffer-1,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-breeding-23,bio-puffer-breeding-2 +, recipe,bio-puffer-2,1,bio-puffer-3,1,bio-puffer-egg-1,1,gas-acid,20 +, product,solid-fruit,5,bio-puffer-2,1,bio-puffer-3,1,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-butchery-1,bio-puffer-butchery +, recipe,bio-raw-meat,1 +, product,bio-puffer-1,1 +puffer-egg-1,bio-puffer-egg +, recipe,bio-puffer-egg-shell,1,bio-puffer-1,1,bio-puffer-2,1 +, product,bio-puffer-egg-1,1 +puffer-puffing-1,bio-puffer-1 +, recipe,bio-puffer-1,3,bio-puffer-1,1,gas-acid,220 +, product,bio-puffer-1,4,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,gas-compressed-air,100 +puffer-puffing-23,bio-puffer-2 +, recipe,bio-puffer-2,1,bio-puffer-2,1,bio-puffer-3,1,bio-puffer-3,1,gas-puffer-atmosphere,100 +, product,bio-puffer-2,2,bio-puffer-3,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,gas-acid,100 +solid-wood-pulp,bio-paper +, recipe,solid-wood-pulp,20 +, product,solid-alginic-acid,5,cellulose-fiber,20 +swamp-1,farming-swamp +, recipe,swamp-1,40 - 50 +, product,solid-mud,10,swamp-1-seed,5,water-viscous-mud,50 +swamp-1-seed,farming-swamp-seed +, recipe,swamp-1-seed,5 - 6 +, product,swamp-1,5 +temperate-1,farming-temperate +, recipe,temperate-1,40 - 60 +, product,solid-soil,5,temperate-1-seed,5,water,50 +temperate-1-seed,farming-temperate-seed +, recipe,temperate-1-seed,5 - 6 +, product,temperate-1,5 +temperate-upgrade,bio-processing-blocks +, recipe,temperate-upgrade,1 +, product,clay-brick,5,token-bio,5,electronic-circuit,1,bronze-pipe,3 +fill-gas-natural-1-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,gas-natural-1-barrel,1 +, product,gas-canister,1,gas-natural-1,50 +empty-gas-natural-1-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,gas-canister,1,gas-natural-1,50 +, product,gas-natural-1-barrel,1 +algae-green-simple,bio-processing-green +, recipe,algae-green,25,algae-brown,5 +, product,water,100 +desert-2,farming-desert +, recipe,desert-2,30 - 40 +, product,solid-sand,10,desert-2-seed,5,water-saline,50 +desert-2-seed,farming-desert-seed +, recipe,desert-2-seed,5 - 6 +, product,desert-2,5 +desert-upgrade,bio-processing-blocks +, recipe,desert-upgrade,1 +, product,clay-brick,10,token-bio,5,electronic-circuit,1 +fish-breeding-1,bio-fish-breeding +, recipe,alien-fish-1-raw,5 - 10,liquid-polluted-fish-atmosphere,100 +, product,algae-brown,2,alien-fish-1-raw,2,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +fish-butchery-1,bio-fish-butchery +, recipe,bio-raw-meat,1 +, product,alien-fish-1-raw,1 +fish-keeping-1,bio-fish +, recipe,alien-fish-1-raw,3,alien-fish-1-raw,1,liquid-polluted-fish-atmosphere,100 +, product,alien-fish-1-raw,4,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +puffer-breeding-12,bio-puffer-breeding-2 +, recipe,bio-puffer-1,1,bio-puffer-2,1,bio-puffer-egg-2,1,gas-acid,20 +, product,solid-pips,5,bio-puffer-1,1,bio-puffer-2,1,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-breeding-2,bio-puffer-breeding-1 +, recipe,bio-puffer-2,2,bio-puffer-egg-1,1,bio-puffer-egg-2,1,bio-puffer-egg-3,1,bio-puffer-egg-4,1,bio-puffer-egg-5,1,gas-acid,20 +, product,solid-leafs,5,bio-puffer-2,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-butchery-2,bio-puffer-butchery +, recipe,bio-raw-meat,1 +, product,bio-puffer-2,1 +puffer-egg-2,bio-puffer-egg +, recipe,bio-puffer-egg-shell,1,bio-puffer-2,1,bio-puffer-1,1 +, product,bio-puffer-egg-2,1 +puffer-puffing-12,bio-puffer-2 +, recipe,bio-puffer-1,1,bio-puffer-1,1,bio-puffer-2,1,bio-puffer-2,1,gas-acid,20,gas-hydrogen-sulfide,100 +, product,bio-puffer-1,2,bio-puffer-2,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,water-yellow-waste,100 +puffer-puffing-2,bio-puffer-1 +, recipe,bio-puffer-2,3,bio-puffer-2,1,gas-acid,20,gas-raw-1,200 +, product,bio-puffer-2,4,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,gas-ammonia,100 +sulfite-pulping,bio-paper +, recipe,solid-wood-pulp,25,liquid-brown-liquor,75 +, product,cellulose-fiber,20,liquid-pulping-liquor,75,gas-ammonia,25,water,50 +swamp-2,farming-swamp +, recipe,swamp-2,40 - 50 +, product,solid-mud,10,swamp-2-seed,5,water-heavy-mud,50 +swamp-2-seed,farming-swamp-seed +, recipe,swamp-2-seed,5 - 6 +, product,swamp-2,5 +temperate-2,farming-temperate +, recipe,temperate-2,40 - 60 +, product,solid-soil,5,temperate-2-seed,5,water,50 +temperate-2-seed,farming-temperate-seed +, recipe,temperate-2-seed,5 - 6 +, product,temperate-2,5 +fill-gas-raw-1-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,gas-raw-1-barrel,1 +, product,gas-canister,1,gas-raw-1,50 +empty-gas-raw-1-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,gas-canister,1,gas-raw-1,50 +, product,gas-raw-1-barrel,1 +algae-green,bio-processing-green +, recipe,algae-green,50 +, product,water-mineralized,80,gas-carbon-dioxide,80 +angels-electrolyser,petrochem-buildings-electrolyser +, recipe,angels-electrolyser,1 +, product,stone-brick,15,iron-plate,9,basic-circuit-board,3,pipe,39 +electrolyser,petrochem-buildings-electrolyser +, recipe,angels-electrolyser,1 +, product,stone-brick,5,iron-plate,5,basic-circuit-board,5,stone-pipe,2 +angels-electrolyser-2,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-2,1 +, product,clay-brick,15,bronze-alloy,9,angels-electrolyser,1,electronic-circuit,3,bronze-pipe,39 +electrolyser-2,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-2,1 +, product,glass,10,steel-plate,10,angels-electrolyser,1,electronic-circuit,5,bronze-pipe,5 +angels-electrolyser-3,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-3,1 +, product,aluminium-plate,12,concrete-brick,15,angels-electrolyser-2,1,advanced-circuit,3,brass-pipe,39 +electrolyser-3,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-3,1 +, product,aluminium-plate,10,invar-alloy,10,plastic-bar,10,angels-electrolyser-2,1,advanced-circuit,10,plastic-pipe,5 +angels-electrolyser-4,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-4,1 +, product,reinforced-concrete-brick,15,titanium-plate,12,angels-electrolyser-3,1,processing-unit,3,titanium-pipe,39 +electrolyser-4,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-4,1 +, product,silicon-nitride,10,titanium-plate,10,tungsten-plate,10,angels-electrolyser-3,1,processing-unit,10,ceramic-pipe,5 +electrolyser-5,petrochem-buildings-electrolyser +, recipe,angels-electrolyser-4,1 +, product,tungsten-carbide,10,copper-tungsten-alloy,10,nitinol-alloy,10,angels-electrolyser-4,1,advanced-processing-unit,10,copper-tungsten-pipe,5 +desert-3,farming-desert +, recipe,desert-3,30 - 40,desert-3-seed-dormant,5 +, product,solid-sand,10,desert-3-seed,5,water-saline,50 +desert-3-seed,farming-desert-seed +, recipe,desert-3-seed,5,desert-3-seed,1 +, product,desert-3-seed-dormant,5 +fish-breeding-2,bio-fish-breeding +, recipe,alien-fish-2-raw,5 - 10,liquid-polluted-fish-atmosphere,100 +, product,algae-green,2,alien-fish-2-raw,2,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +fish-butchery-2,bio-fish-butchery +, recipe,bio-raw-meat,1 +, product,alien-fish-2-raw,1 +fish-keeping-2,bio-fish +, recipe,alien-fish-2-raw,3,alien-fish-2-raw,1,liquid-polluted-fish-atmosphere,100 +, product,alien-fish-2-raw,4,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +kraft-cooking-washing,bio-paper +, recipe,solid-wood-pulp,30,liquid-black-liquor,35 - 40 +, product,cellulose-fiber,20,liquid-white-liquor,40 +puffer-breeding-13,bio-puffer-breeding-2 +, recipe,bio-puffer-1,1,bio-puffer-3,1,bio-puffer-egg-3,1,gas-acid,20 +, product,solid-beans,5,bio-puffer-1,1,bio-puffer-3,1,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-breeding-3,bio-puffer-breeding-1 +, recipe,bio-puffer-3,2,bio-puffer-egg-1,1,bio-puffer-egg-2,1,bio-puffer-egg-3,1,bio-puffer-egg-4,1,bio-puffer-egg-5,1,gas-acid,20 +, product,solid-nuts,5,bio-puffer-3,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-butchery-3,bio-puffer-butchery +, recipe,bio-raw-meat,1 +, product,bio-puffer-3,1 +puffer-egg-3,bio-puffer-egg +, recipe,bio-puffer-egg-shell,1,bio-puffer-3,1,bio-puffer-1,1 +, product,bio-puffer-egg-3,1 +puffer-puffing-13,bio-puffer-2 +, recipe,bio-puffer-1,1,bio-puffer-1,1,bio-puffer-3,1,bio-puffer-3,1,gas-acid,20,gas-ammonia,100 +, product,bio-puffer-1,2,bio-puffer-3,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,water-red-waste,100 +puffer-puffing-3,bio-puffer-1 +, recipe,bio-puffer-3,3,bio-puffer-3,1,gas-acid,20,gas-urea,200 +, product,bio-puffer-3,4,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,gas-carbon-monoxide,100 +swamp-3,farming-swamp +, recipe,swamp-3,40 - 50,swamp-3-seed-dormant,5 +, product,solid-mud,10,swamp-3-seed,5,water-concentrated-mud,50 +swamp-3-seed,farming-swamp-seed +, recipe,swamp-3-seed,5,swamp-3-seed,1 +, product,swamp-3-seed-dormant,5 +swamp-upgrade,bio-processing-blocks +, recipe,swamp-upgrade,1 +, product,token-bio,5,electronic-circuit,1,bronze-pipe,6 +temperate-3,farming-temperate +, recipe,temperate-3,40 - 60,temperate-3-seed-dormant,5 +, product,solid-soil,5,temperate-3-seed,5,water,50 +temperate-3-seed,farming-temperate-seed +, recipe,temperate-3-seed,5,temperate-3-seed,1 +, product,temperate-3-seed-dormant,5 +fill-liquid-ngl-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,liquid-ngl-barrel,1 +, product,empty-barrel,1,liquid-ngl,50 +empty-liquid-ngl-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,empty-barrel,1,liquid-ngl,50 +, product,liquid-ngl-barrel,1 +desert-4,farming-desert +, recipe,desert-4,30 - 40,desert-4-seed-dormant,5 +, product,solid-sand,10,solid-fertilizer,1,desert-4-seed,5,water-saline,50 +desert-4-seed,farming-desert-seed +, recipe,desert-4-seed,5,desert-4-seed,1 +, product,desert-4-seed-dormant,5 +fish-breeding-3,bio-fish-breeding +, recipe,alien-fish-3-raw,5 - 10,liquid-polluted-fish-atmosphere,100 +, product,alien-fish-3-raw,2,bio-raw-meat,2,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +fish-butchery-3,bio-fish-butchery +, recipe,bio-raw-meat,2 +, product,alien-fish-3-raw,1 +fish-keeping-3,bio-fish +, recipe,alien-fish-3-raw,3,alien-fish-3-raw,1,liquid-polluted-fish-atmosphere,100 +, product,alien-fish-3-raw,4,liquid-nutrient-pulp,20,liquid-fish-atmosphere,100 +puffer-breeding-14,bio-puffer-breeding-2 +, recipe,bio-puffer-1,1,bio-puffer-4,1,bio-puffer-egg-4,1,gas-acid,20 +, product,solid-corn,5,bio-puffer-1,1,bio-puffer-4,1,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-breeding-4,bio-puffer-breeding-1 +, recipe,bio-puffer-4,2,bio-puffer-egg-1,1,bio-puffer-egg-2,1,bio-puffer-egg-3,1,bio-puffer-egg-4,1,bio-puffer-egg-5,1,gas-acid,20 +, product,solid-pips,5,bio-puffer-4,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-butchery-4,bio-puffer-butchery +, recipe,bio-raw-meat,1 +, product,bio-puffer-4,1 +puffer-egg-4,bio-puffer-egg +, recipe,bio-puffer-egg-shell,1,bio-puffer-4,1,bio-puffer-1,1 +, product,bio-puffer-egg-4,1 +puffer-puffing-14,bio-puffer-2 +, recipe,bio-puffer-1,1,bio-puffer-1,1,bio-puffer-4,1,bio-puffer-4,1,gas-acid,20,gas-hydrogen-fluoride,100 +, product,bio-puffer-1,2,bio-puffer-4,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,water-greenyellow-waste,100 +puffer-puffing-4,bio-puffer-1 +, recipe,bio-puffer-4,3,bio-puffer-4,1,gas-acid,20,gas-synthesis,200 +, product,bio-puffer-4,4,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,gas-sulfur-dioxide,100 +swamp-4,farming-swamp +, recipe,swamp-4,40 - 50,swamp-4-seed-dormant,5 +, product,solid-mud,10,solid-fertilizer,1,swamp-4-seed,5,water-light-mud,50 +swamp-4-seed,farming-swamp-seed +, recipe,swamp-4-seed,5,swamp-4-seed,1 +, product,swamp-4-seed-dormant,5 +temperate-4,farming-temperate +, recipe,temperate-4,40 - 60,temperate-4-seed-dormant,5 +, product,solid-soil,5,solid-fertilizer,1,temperate-4-seed,5,water,50 +temperate-4-seed,farming-temperate-seed +, recipe,temperate-4-seed,5,temperate-4-seed,1 +, product,temperate-4-seed-dormant,5 +desert-5,farming-desert +, recipe,desert-5,30 - 40,desert-5-seed-dormant,5 +, product,solid-sand,10,solid-fertilizer,1,desert-5-seed,5,water-saline,50 +desert-5-seed,farming-desert-seed +, recipe,desert-5-seed,5,desert-5-seed,1 +, product,desert-5-seed-dormant,5 +puffer-breeding-15,bio-puffer-breeding-2 +, recipe,bio-puffer-1,1,bio-puffer-5,1,bio-puffer-egg-5,1,gas-acid,20 +, product,solid-leafs,5,bio-puffer-1,1,bio-puffer-5,1,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-breeding-5,bio-puffer-breeding-1 +, recipe,bio-puffer-5,2,bio-puffer-egg-1,1,bio-puffer-egg-2,1,bio-puffer-egg-3,1,bio-puffer-egg-4,1,bio-puffer-egg-5,1,gas-acid,20 +, product,solid-fruit,5,bio-puffer-5,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20 +puffer-butchery-5,bio-puffer-butchery +, recipe,bio-raw-meat,1 +, product,bio-puffer-5,1 +puffer-egg-5,bio-puffer-egg +, recipe,bio-puffer-egg-shell,1,bio-puffer-5,1,bio-puffer-1,1 +, product,bio-puffer-egg-5,1 +puffer-puffing-15,bio-puffer-2 +, recipe,bio-puffer-1,1,bio-puffer-1,1,bio-puffer-5,1,bio-puffer-5,1,gas-acid,20,gas-hydrogen-chloride,100 +, product,bio-puffer-1,2,bio-puffer-5,2,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,water-green-waste,100 +puffer-puffing-5,bio-puffer-1 +, recipe,bio-puffer-5,3,bio-puffer-5,1,gas-acid,20,gas-hydrazine,200 +, product,bio-puffer-5,4,liquid-nutrient-pulp,20,gas-puffer-atmosphere,20,gas-hydrogen-chloride,100 +swamp-5,farming-swamp +, recipe,swamp-5,40 - 50,swamp-5-seed-dormant,5 +, product,solid-mud,10,solid-fertilizer,1,swamp-5-seed,5,water-thin-mud,50 +swamp-5-seed,farming-swamp-seed +, recipe,swamp-5-seed,5,swamp-5-seed,1 +, product,swamp-5-seed-dormant,5 +temperate-5,farming-temperate +, recipe,temperate-5,40 - 60,temperate-5-seed-dormant,5 +, product,solid-soil,5,solid-fertilizer,1,temperate-5-seed,5,water,50 +temperate-5-seed,farming-temperate-seed +, recipe,temperate-5-seed,5,temperate-5-seed,1 +, product,temperate-5-seed-dormant,5 +void-ammonia,void +, recipe,void,1 +, product,gas-ammonia,25 +angels-warehouse-active-provider,angels-warehouse +, recipe,angels-warehouse-active-provider,1 +, product,steel-plate,20,advanced-circuit,20,angels-warehouse,1 +angelsore7-crystallization-1,bob-gems-crystallization +, recipe,sapphire-ore,1 +, product,catalysator-green,1,crystal-seedling,50 +battery-mk2-equipment,angels-personal-equipment-power-c +, recipe,battery-mk2-equipment,1 +, product,processing-unit,5,battery-equipment,2 +big-electric-pole-2,angels-big-power-poles +, recipe,big-electric-pole-2,1 +, product,tinned-copper-cable,5,brass-alloy,5,big-electric-pole,1 +bio-butchery,bio-processing-buildings-alien-a +, recipe,bio-butchery,1 +, product,clay-brick,10,bronze-alloy,9,steel-gear-wheel,6,electronic-circuit,1 +bob-artillery-wagon-2,angels-artillery +, recipe,bob-artillery-wagon-2,1 +, product,titanium-plate,40,titanium-gear-wheel,12,titanium-bearing,8,processing-unit,20,artillery-wagon,1,titanium-pipe,16 +cellulose-fiber-raw-wood,bio-processing-wood +, recipe,cellulose-fiber,4 +, product,wood,2 +composter,bio-processing-buildings-vegetabilis-b +, recipe,composter,1 +, product,clay-brick,10,steel-plate,6,steel-gear-wheel,6,electronic-circuit,2,wooden-chest,1 +coolant,coolant +, recipe,liquid-coolant,100 +, product,water,80,liquid-mineral-oil,20 +energy-shield-mk2-equipment,angels-personal-equipment-combat-a +, recipe,energy-shield-mk2-equipment,1 +, product,processing-unit,5,energy-shield-equipment,2 +exoskeleton-equipment-2,angels-personal-equipment-combat-c +, recipe,exoskeleton-equipment-2,1 +, product,invar-alloy,20,cobalt-steel-gear-wheel,30,cobalt-steel-bearing,30,processing-unit,10,exoskeleton-equipment,1 +fermentation-fruit,bio-processor-fermentation +, recipe,liquid-fermentation-raw,100 +, product,solid-fruit,10,water,50 +fluid-generator,angels-power-fluid-generator +, recipe,fluid-generator,1 +, product,steel-plate,10,bronze-alloy,5,steel-gear-wheel,10,steel-bearing,10,electronic-circuit,5,steel-pipe,5 +fusion-reactor-equipment-2,angels-personal-equipment-power-b +, recipe,fusion-reactor-equipment-2,1 +, product,alien-artifact-orange,15,alien-artifact-blue,15,advanced-processing-unit,50,fusion-reactor-equipment,1,speed-module-4,2,effectivity-module-4,2,productivity-module-4,2 +gas-hydrazine,petrochem-rocket +, recipe,catalyst-metal-carrier,1,gas-hydrazine,100,gas-hydrogen-chloride,100 +, product,catalyst-metal-blue,1,gas-monochloramine,50,gas-ammonia,200 +gas-puffer-atmosphere,bio-puffer-1 +, recipe,gas-puffer-atmosphere,60 +, product,gas-sulfur-dioxide,20,gas-hydrogen-fluoride,10,gas-oxygen,10 +heat-pipe-2,angels-power-nuclear-heat-pipe +, recipe,heat-pipe-2,1 +, product,aluminium-plate,10,invar-alloy,5 +hogger-breeding-2,bio-hogger-breeding +, recipe,bio-hogger-2,2,bio-hogger-1,1,bio-hogger-2,1,bio-hogger-3,1,bio-hogger-4,1,bio-hogger-5,1 +, product,iron-plate,1,bio-hogger-2,2,liquid-nutrient-pulp,20 +hogger-butchery-2,bio-hogger-butchery +, recipe,bio-raw-meat,1 +, product,bio-hogger-2,1 +hogger-hogging-2,bio-hogger +, recipe,bio-hogger-2,3 - 5,copper-ore,10 +, product,iron-ore,10,iron-plate,1,bio-hogger-2,4,liquid-nutrient-pulp,20 +liquid-acetic-anhydride,bio-plastic +, recipe,liquid-acetic-anhydride,150 +, product,liquid-acetic-acid,100,gas-methanol,50,gas-carbon-monoxide,50 +liquid-fish-atmosphere,bio-fish +, recipe,liquid-fish-atmosphere,100 +, product,water,50,water-saline,50 +liquid-polluted-fish-atmosphere,bio-fish-breeding +, recipe,liquid-polluted-fish-atmosphere,100 +, product,bio-raw-meat,25,liquid-fish-atmosphere,100 +logistic-chest-active-provider,angels-chests-small-b +, recipe,logistic-chest-active-provider,1 +, product,electronic-circuit,3,advanced-circuit,1,steel-chest,1 +logistic-chest-active-provider-2,angels-chests-small-c +, recipe,logistic-chest-active-provider-2,1 +, product,advanced-circuit,3,processing-unit,1,brass-chest,1 +logistic-chest-active-provider-3,angels-chests-small-d +, recipe,logistic-chest-active-provider-3,1 +, product,processing-unit,3,advanced-processing-unit,1,titanium-chest,1 +medium-electric-pole-2,angels-medium-power-poles +, recipe,medium-electric-pole-2,1 +, product,tinned-copper-cable,2,brass-alloy,2,medium-electric-pole,1 +night-vision-equipment-2,angels-personal-equipment-power-d +, recipe,night-vision-equipment-2,1 +, product,glass,2,processing-unit,5,night-vision-equipment,1 +nuclear-reactor-2,angels-power-nuclear-reactor-b +, recipe,nuclear-reactor-2,1 +, product,lead-plate,500,tungsten-plate,250,processing-unit,500,heat-pipe-3,25 +ore-powderizer-2,ore-powderizer +, recipe,ore-powderizer-2,1 +, product,ore-powderizer,1,aluminium-plate,4,concrete-brick,5,brass-gear-wheel,3 +paste-copper,bio-processing-paste +, recipe,paste-copper,1 +, product,powder-copper,2,paste-cellulose,1 +personal-laser-defense-equipment-2,angels-personal-equipment-combat-b +, recipe,personal-laser-defense-equipment-2,1 +, product,steel-plate,5,advanced-circuit,5,personal-laser-defense-equipment,1,sapphire-5,1 +personal-roboport-antenna-equipment-2,angels-personal-equipment-robot-c +, recipe,personal-roboport-antenna-equipment-2,1 +, product,roboport-antenna-2,2,roboport-door-2,1,personal-roboport-antenna-equipment,1 +personal-roboport-chargepad-equipment-2,angels-personal-equipment-robot-b +, recipe,personal-roboport-chargepad-equipment-2,1 +, product,roboport-chargepad-2,2,personal-roboport-chargepad-equipment,1 +personal-roboport-mk2-equipment,angels-personal-equipment-robot-d +, recipe,personal-roboport-mk2-equipment,1 +, product,aluminium-plate,5,roboport-antenna-2,2,roboport-door-2,1,roboport-chargepad-2,2,personal-roboport-equipment,1 +personal-roboport-robot-equipment-2,angels-personal-equipment-robot-a +, recipe,personal-roboport-robot-equipment-2,1 +, product,solder,3,circuit-board,1,basic-electronic-components,15,electronic-components,30,personal-roboport-robot-equipment,1 +slag-processing-2,slag-processing-1 +, recipe,lead-ore,1,tin-ore,1 +, product,mineral-sludge,50 +solar-panel-equipment-2,angels-personal-equipment-power-a +, recipe,solar-panel-equipment-2,1 +, product,glass,2,silver-plate,2,advanced-circuit,5,solar-panel-equipment,1 +solid-geodes,water-washing-filtering +, recipe,geode-blue,2,geode-cyan,1,geode-lightgreen,1,geode-purple,1,geode-red,2,geode-yellow,1 +, product,water-heavy-mud,40,water,25 +steam-engine-2,angels-power-steam-generator +, recipe,steam-engine-2,1 +, product,steel-plate,5,steel-gear-wheel,5,steel-bearing,5,steam-engine,1,steel-pipe,5 +substation-2,angels-sub-power-poles +, recipe,substation-2,1 +, product,tinned-copper-cable,5,brass-alloy,10,advanced-circuit,5,substation,1 +vehicle-battery-2,angels-vehicle-equipment-bobpower-d +, recipe,vehicle-battery-2,1 +, product,processing-unit,5,vehicle-battery-1,2 +vehicle-big-turret-2,angels-vehicle-equipment-bobcombat-c +, recipe,vehicle-big-turret-2,1 +, product,steel-plate,20,alien-artifact,30,battery,12,advanced-circuit,20,vehicle-big-turret-1,1 +vehicle-engine,angels-vehicle-equipment-bobpower-e +, recipe,vehicle-engine,1 +, product,nitinol-alloy,20,nitinol-gear-wheel,30,nitinol-bearing,30,advanced-processing-unit,10,vehicle-motor,1 +vehicle-fusion-cell-2,angels-vehicle-equipment-bobpower-b +, recipe,vehicle-fusion-cell-2,1 +, product,alien-artifact,15,processing-unit,25,vehicle-fusion-cell-1,1,speed-module-2,1,effectivity-module-2,1,productivity-module-2,1 +vehicle-fusion-reactor-2,angels-vehicle-equipment-bobpower-c +, recipe,vehicle-fusion-reactor-2,1 +, product,alien-artifact,30,processing-unit,50,vehicle-fusion-reactor-1,1,speed-module-2,2,effectivity-module-2,2,productivity-module-2,2 +vehicle-laser-defense-2,angels-vehicle-equipment-bobcombat-b +, recipe,vehicle-laser-defense-2,1 +, product,steel-plate,5,advanced-circuit,5,vehicle-laser-defense-1,1,sapphire-5,1 +vehicle-roboport-2,angels-vehicle-equipment-bobrobot-d +, recipe,vehicle-roboport-2,1 +, product,aluminium-plate,5,roboport-antenna-2,2,roboport-door-2,1,roboport-chargepad-2,2,vehicle-roboport,1 +vehicle-roboport-antenna-equipment-2,angels-vehicle-equipment-bobrobot-c +, recipe,vehicle-roboport-antenna-equipment-2,1 +, product,roboport-antenna-2,2,roboport-door-2,1,vehicle-roboport-antenna-equipment,1 +vehicle-roboport-chargepad-equipment-2,angels-vehicle-equipment-bobrobot-b +, recipe,vehicle-roboport-chargepad-equipment-2,1 +, product,roboport-chargepad-2,2,vehicle-roboport-chargepad-equipment,1 +vehicle-roboport-robot-equipment-2,angels-vehicle-equipment-bobrobot-a +, recipe,vehicle-roboport-robot-equipment-2,1 +, product,solder,3,circuit-board,1,basic-electronic-components,15,electronic-components,30,vehicle-roboport-robot-equipment,1 +vehicle-shield-2,angels-vehicle-equipment-bobcombat-a +, recipe,vehicle-shield-2,1 +, product,processing-unit,5,vehicle-shield-1,2 +vehicle-solar-panel-2,angels-vehicle-equipment-bobpower-a +, recipe,vehicle-solar-panel-2,1 +, product,glass,2,silver-plate,2,advanced-circuit,5,vehicle-solar-panel-1,1 +washing-1,water-washing +, recipe,solid-mud,0 - 3,water-heavy-mud,200 +, product,water-viscous-mud,200,water,50 +washing-plant,washing-building +, recipe,washing-plant,1 +, product,stone-brick,25,iron-plate,12,basic-circuit-board,4,pipe,27 +bob-sapphire-3,bob-gems-raw +, recipe,sapphire-3,1 +, product,sapphire-ore,1 +bob-sapphire-4,bob-gems-cut +, recipe,sapphire-4,1 +, product,sapphire-3,1,grinding-wheel,1,water,10 +bob-sapphire-5,bob-gems-polished +, recipe,sapphire-5,1 +, product,sapphire-4,1,polishing-wheel,1,polishing-compound,1 +fill-gas-ammonia-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-ammonia-barrel,1 +, product,gas-canister,1,gas-ammonia,50 +fill-gas-compressed-air-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-compressed-air-barrel,1 +, product,gas-canister,1,gas-compressed-air,50 +fill-gas-hydrogen-chloride-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-hydrogen-chloride-barrel,1 +, product,gas-canister,1,gas-hydrogen-chloride,50 +fill-gas-puffer-atmosphere-barrel,angels-fluid-control-bio-puffer-1 +, recipe,gas-puffer-atmosphere-barrel,1 +, product,gas-canister,1,gas-puffer-atmosphere,50 +fill-gas-sulfur-dioxide-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-sulfur-dioxide-barrel,1 +, product,gas-canister,1,gas-sulfur-dioxide,50 +fill-hydrogen-chloride-barrel,angels-fluid-control-bob-gas-bottle +, recipe,hydrogen-chloride-barrel,1 +, product,gas-canister,1,gas-hydrogen-chloride,50 +fill-liquid-brown-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,liquid-brown-liquor-barrel,1 +, product,empty-barrel,1,liquid-brown-liquor,50 +fill-pure-water-barrel,angels-fluid-control-angels-fluid-converter-water-treatment-fluid +, recipe,pure-water-barrel,1 +, product,empty-barrel,1,water-purified,50 +fill-sulfur-dioxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,sulfur-dioxide-barrel,1 +, product,gas-canister,1,gas-sulfur-dioxide,50 +fill-water-greenyellow-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,water-greenyellow-waste-barrel,1 +, product,empty-barrel,1,water-greenyellow-waste,50 +fill-water-heavy-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,water-heavy-mud-barrel,1 +, product,empty-barrel,1,water-heavy-mud,50 +fill-water-purified-barrel,angels-fluid-control-water-treatment-fluid +, recipe,water-purified-barrel,1 +, product,empty-barrel,1,water-purified,50 +modular-armor,angels-personal-equipment-armor +, recipe,modular-armor,1 +, product,steel-plate,50,advanced-circuit,30 +empty-gas-ammonia-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-ammonia,50 +, product,gas-ammonia-barrel,1 +empty-gas-compressed-air-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-compressed-air,50 +, product,gas-compressed-air-barrel,1 +empty-gas-hydrogen-chloride-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-canister,1,gas-hydrogen-chloride,50 +, product,gas-hydrogen-chloride-barrel,1 +empty-gas-puffer-atmosphere-barrel,angels-fluid-control-bio-puffer-1 +, recipe,gas-canister,1,gas-puffer-atmosphere,50 +, product,gas-puffer-atmosphere-barrel,1 +empty-gas-sulfur-dioxide-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-canister,1,gas-sulfur-dioxide,50 +, product,gas-sulfur-dioxide-barrel,1 +empty-hydrogen-chloride-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-hydrogen-chloride,50 +, product,hydrogen-chloride-barrel,1 +empty-liquid-brown-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,empty-barrel,1,liquid-brown-liquor,50 +, product,liquid-brown-liquor-barrel,1 +empty-pure-water-barrel,angels-fluid-control-angels-fluid-converter-water-treatment-fluid +, recipe,empty-barrel,1,water-purified,50 +, product,pure-water-barrel,1 +empty-sulfur-dioxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-sulfur-dioxide,50 +, product,sulfur-dioxide-barrel,1 +empty-water-greenyellow-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,empty-barrel,1,water-greenyellow-waste,50 +, product,water-greenyellow-waste-barrel,1 +empty-water-heavy-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,empty-barrel,1,water-heavy-mud,50 +, product,water-heavy-mud-barrel,1 +empty-water-purified-barrel,angels-fluid-control-water-treatment-fluid +, recipe,empty-barrel,1,water-purified,50 +, product,water-purified-barrel,1 +power-armor,angels-personal-equipment-armor +, recipe,power-armor,1 +, product,steel-plate,40,electric-engine-unit,20,processing-unit,40 +power-armor-mk2,angels-personal-equipment-armor +, recipe,power-armor-mk2,1 +, product,electric-engine-unit,40,low-density-structure,30,processing-unit,60,speed-module-2,25,effectivity-module-2,25 +bob-power-armor-mk3,angels-personal-equipment-armor +, recipe,bob-power-armor-mk3,1 +, product,aluminium-plate,25,invar-alloy,25,alien-artifact-orange,25,alien-artifact-blue,25,processing-unit,50,power-armor-mk2,1,speed-module-4,5,effectivity-module-4,5 +bob-power-armor-mk4,angels-personal-equipment-armor +, recipe,bob-power-armor-mk4,1 +, product,silicon-nitride,25,titanium-plate,25,alien-artifact-yellow,25,alien-artifact-purple,25,processing-unit,40,advanced-processing-unit,20,bob-power-armor-mk3,1,speed-module-6,5,effectivity-module-6,5 +bob-power-armor-mk5,angels-personal-equipment-armor +, recipe,bob-power-armor-mk5,1 +, product,copper-tungsten-alloy,25,nitinol-alloy,25,alien-artifact-red,25,alien-artifact-green,25,processing-unit,50,advanced-processing-unit,50,bob-power-armor-mk4,1,speed-module-8,5,effectivity-module-8,5 +angels-bio-yield-module,bio-yield-module +, recipe,angels-bio-yield-module,1 +, product,solder,1,token-bio,1,effectivity-module,1,productivity-module,1 +angels-bio-yield-module-2,bio-yield-module +, recipe,angels-bio-yield-module-2,1 +, product,solder,2,token-bio,1,effectivity-module-2,1,productivity-module-2,1 +angels-bio-yield-module-3,bio-yield-module +, recipe,angels-bio-yield-module-3,1 +, product,solder,3,token-bio,1,effectivity-module-3,1,productivity-module-3,1 +angels-bio-yield-module-4,bio-yield-module +, recipe,angels-bio-yield-module-4,1 +, product,solder,4,token-bio,1,effectivity-module-4,1,productivity-module-4,1 +angels-bio-yield-module-5,bio-yield-module +, recipe,angels-bio-yield-module-5,1 +, product,solder,6,token-bio,1,effectivity-module-5,1,productivity-module-5,1 +angels-bio-yield-module-6,bio-yield-module +, recipe,angels-bio-yield-module-6,1 +, product,solder,7,token-bio,1,effectivity-module-6,1,productivity-module-6,1 +angels-bio-yield-module-7,bio-yield-module +, recipe,angels-bio-yield-module-7,1 +, product,solder,8,token-bio,1,effectivity-module-7,1,productivity-module-7,1 +angels-bio-yield-module-8,bio-yield-module +, recipe,angels-bio-yield-module-8,1 +, product,solder,10,token-bio,1,effectivity-module-8,1,productivity-module-8,1 +converter-angels-liquid-sulfuric-acid,angels-converter +, recipe,liquid-sulfuric-acid,50 +, product,sulfuric-acid,50 +converter-angels-gas-sulfur-dioxide,angels-converter +, recipe,gas-sulfur-dioxide,50 +, product,sulfur-dioxide,50 +converter-angels-liquid-nitric-acid,angels-converter +, recipe,liquid-nitric-acid,50 +, product,nitric-acid,50 +converter-angels-gas-nitrogen-dioxide,angels-converter +, recipe,gas-nitrogen-dioxide,50 +, product,nitrogen-dioxide,50 +converter-angels-gas-compressed-air,angels-converter +, recipe,gas-compressed-air,50 +, product,liquid-air,50 +converter-angels-liquid-ferric-chloride-solution,angels-converter +, recipe,liquid-ferric-chloride-solution,50 +, product,ferric-chloride-solution,50 +converter-angels-gas-hydrogen-sulfide,angels-converter +, recipe,gas-hydrogen-sulfide,50 +, product,hydrogen-sulfide,50 +converter-angels-gas-ammonia,angels-converter +, recipe,gas-ammonia,50 +, product,ammonia,50 +converter-angels-gas-nitrogen-monoxide,angels-converter +, recipe,gas-nitrogen-monoxide,50 +, product,nitric-oxide,50 +converter-angels-gas-dinitrogen-tetroxide,angels-converter +, recipe,gas-dinitrogen-tetroxide,50 +, product,dinitrogen-tetroxide,50 +converter-angels-gas-hydrazine,angels-converter +, recipe,gas-hydrazine,50 +, product,hydrazine,50 +converter-angels-liquid-naphtha,angels-converter +, recipe,liquid-naphtha,50 +, product,heavy-oil,50 +converter-angels-liquid-tungstic-acid,angels-converter +, recipe,liquid-tungstic-acid,50 +, product,tungstic-acid,50 +converter-angels-liquid-fuel-oil,angels-converter +, recipe,liquid-fuel-oil,50 +, product,light-oil,50 +converter-angels-gas-methane,angels-converter +, recipe,gas-methane,50 +, product,petroleum-gas,50 +converter-angels-gas-chlorine,angels-converter +, recipe,gas-chlorine,50 +, product,chlorine,50 +converter-angels-gas-oxygen,angels-converter +, recipe,gas-oxygen,50 +, product,oxygen,50 +converter-angels-gas-hydrogen,angels-converter +, recipe,gas-hydrogen,50 +, product,hydrogen,50 +converter-angels-gas-hydrogen-chloride,angels-converter +, recipe,gas-hydrogen-chloride,50 +, product,hydrogen-chloride,50 +converter-angels-gas-nitrogen,angels-converter +, recipe,gas-nitrogen,50 +, product,nitrogen,50 +angels-mixed-oxide-cell,angels-power-nuclear-fuel-cell +, recipe,AMOX-cell,20 +, product,lead-plate,20,uranium-238,38,plutonium-239,2 +angels-plutonium-synthesis,angels-power-nuclear-processing +, recipe,plutonium-239,5 +, product,neptunium-240,8 +angels-mixed-oxide-reprocessing,angels-power-nuclear-fuel-cell +, recipe,americium-241,1,americium-241,1,curium-245,1,uranium-238,1,slag,5 +, product,used-up-AMOX-cell,5 +angels-americium-regeneration,angels-power-nuclear-processing +, recipe,plutonium-239,6,uranium-238,15,lead-oxide,5 +, product,uranium-238,60,plutonium-239,1,americium-241,5 +angels-advanced-mixed-oxide-reprocessing,angels-power-nuclear-fuel-cell +, recipe,plutonium-239,2,slag,10,curium-245,3,uranium-235,1,water-greenyellow-waste,60 +, product,used-up-AMOX-cell,10,liquid-hydrofluoric-acid,60 +bobingabout-enrichment-process,angels-power-nuclear-processing +, recipe,plutonium-239,41,uranium-238,2 +, product,uranium-238,5,plutonium-239,40 +advanced-chemical-plant,petrochem-buildings-chemical-plant +, recipe,advanced-chemical-plant,1 +, product,clay-brick,20,bronze-alloy,6,electronic-circuit,4,bronze-pipe,36 +advanced-chemical-plant-2,petrochem-buildings-chemical-plant +, recipe,advanced-chemical-plant-2,1 +, product,reinforced-concrete-brick,20,titanium-plate,8,advanced-chemical-plant,1,processing-unit,4,titanium-pipe,36 +air-separation,petrochem-nitrogen +, recipe,gas-nitrogen,50,gas-oxygen,50 +, product,gas-compressed-air,100 +solid-sodium-nitrate-processing,petrochem-nitrogen +, recipe,gas-nitrogen-monoxide,40,gas-nitrogen-dioxide,20 +, product,solid-sodium-nitrate,5,gas-compressed-air,60 +algae-brown-burning-wash,bio-processing-brown +, recipe,solid-sodium-carbonate,1 +, product,algae-brown,20,water-purified,50 +algae-brown-burning,bio-processing-brown +, recipe,solid-lithium,2 +, product,algae-brown,20 +angels-air-filter,petrochem-buildings-electrolyser +, recipe,angels-air-filter,1 +, product,stone-brick,25,iron-plate,12,basic-circuit-board,5,pipe,24 +angels-air-filter-2,petrochem-buildings-electrolyser +, recipe,angels-air-filter-2,1 +, product,clay-brick,25,bronze-alloy,12,angels-air-filter,1,electronic-circuit,5,bronze-pipe,24 +angels-air-filter-3,petrochem-buildings-electrolyser +, recipe,angels-air-filter-3,1 +, product,aluminium-plate,16,concrete-brick,25,angels-air-filter-2,1,advanced-circuit,5,brass-pipe,24 +angels-chemical-furnace-2,angels-chemical-furnace +, recipe,angels-chemical-furnace-2,1 +, product,angels-chemical-furnace,1,aluminium-plate,8,concrete-brick,25,advanced-circuit,5,brass-pipe,30 +angels-flare-stack,petrochem-buildings-steam +, recipe,angels-flare-stack,1 +, product,stone-brick,5,iron-plate,3,basic-circuit-board,1,pipe,3 +angels-fusion-reactor-vequip,angels-vehicle-equipment +, recipe,angels-fusion-reactor-vequip,1 +, product,iron-plate,20,steel-plate,20,advanced-circuit,20 +cargo-robot,angels-cargo-bots +, recipe,cargo-robot,1 +, product,steel-plate,5,engine-unit,1,iron-gear-wheel,5,electronic-circuit,2 +cargo-robot-2,angels-cargo-bots +, recipe,cargo-robot-2,1 +, product,steel-plate,5,electric-engine-unit,5,iron-gear-wheel,5,advanced-circuit,5,cargo-robot,1 +angelsore-crushed-mix2-processing,ore-sorting-advanced +, recipe,copper-ore,4 +, product,catalysator-brown,1,angels-ore3-crushed,2,angels-ore4-crushed,2 +angelsore2-chunk-processing,ore-sorting-t2 +, recipe,slag,1,iron-ore,2,copper-ore,1,bauxite-ore,1,zinc-ore,1 +, product,angels-ore2-chunk,6 +angelsore2-chunk,ore-processing-b +, recipe,angels-ore2-chunk,2,geode-purple,1,water-greenyellow-waste,50 +, product,angels-ore2-crushed,2,water-purified,50 +angelsore2-crushed-processing,ore-sorting-t1 +, recipe,slag,1,iron-ore,2,copper-ore,1 +, product,angels-ore2-crushed,4 +angelsore2-crushed,ore-processing-a +, recipe,angels-ore2-crushed,2,stone-crushed,1 +, product,angels-ore2,2 +angelsore2-crystal-processing,ore-sorting-t3 +, recipe,slag,1,iron-ore,3,copper-ore,1,bauxite-ore,1,zinc-ore,1,cobalt-ore,1 +, product,angels-ore2-crystal,8 +angelsore2-crystal,ore-processing-c +, recipe,angels-ore2-crystal,2 +, product,angels-ore2-chunk,2,liquid-hydrofluoric-acid,10 +angelsore2-pure-processing,ore-sorting-t4 +, recipe,iron-ore,3,copper-ore,2,bauxite-ore,1,zinc-ore,1,cobalt-ore,1,tungsten-ore,1 +, product,angels-ore2-pure,9 +angelsore2-pure,ore-processing-d +, recipe,angels-ore2-pure,4 +, product,angels-ore2-crystal,4 +angelsore3-crushed-hand,processing-crafting +, recipe,angels-ore3-crushed,2,stone-crushed,1 +, product,angels-ore3,2 +desert-tree-arboretum-0,bio-arboretum-desert +, recipe,desert-tree,1 +, product,solid-alienated-fertilizer,2,tree-desert-seed,2,token-bio,16,water-saline,50 +desert-tree-arboretum-1,bio-arboretum-desert +, recipe,bio-rubber,4,solid-tree,2 +, product,solid-sand,5,tree-desert-seed,2,water-saline,50 +swamp-tree-arboretum-0,bio-arboretum-swamp +, recipe,swamp-tree,1 +, product,solid-alienated-fertilizer,2,tree-swamp-seed,2,token-bio,16,water-light-mud,50 +temperate-tree-arboretum-0,bio-arboretum-temperate +, recipe,temperate-tree,1 +, product,solid-alienated-fertilizer,2,tree-temperate-seed,2,token-bio,16,water,50 +tree-arboretum-0,bio-arboretum +, recipe,temperate-tree,1,swamp-tree,1,desert-tree,1 +, product,solid-alienated-fertilizer,2,tree-seed,2,token-bio,16,water,50 +desert-tree-arboretum-2,bio-arboretum-desert +, recipe,bio-rubber,7,solid-tree,3 +, product,solid-sand,5,solid-fertilizer,1,tree-desert-seed,2,water-saline,50 +swamp-tree-arboretum-1,bio-arboretum-swamp +, recipe,bio-plastic,4,solid-tree,2 +, product,solid-mud,5,tree-swamp-seed,2,water-light-mud,50 +temperate-tree-arboretum-1,bio-arboretum-temperate +, recipe,bio-resin,4,solid-tree,2 +, product,solid-soil,5,tree-temperate-seed,2,water,50 +bob-basic-greenhouse-cycle,bio-arboretum +, recipe,solid-tree,2 - 4 +, product,seedling,10,water,20 +swamp-tree-arboretum-2,bio-arboretum-swamp +, recipe,bio-plastic,7,solid-tree,3 +, product,solid-mud,5,solid-fertilizer,1,tree-swamp-seed,2,water-light-mud,50 +temperate-tree-arboretum-2,bio-arboretum-temperate +, recipe,bio-resin,7,solid-tree,3 +, product,solid-soil,5,solid-fertilizer,1,tree-temperate-seed,2,water,50 +bob-advanced-greenhouse-cycle,bio-arboretum +, recipe,solid-tree,4 - 8 +, product,solid-fertilizer,5,seedling,10,water,20 +tree-arboretum-1,bio-arboretum +, recipe,solid-tree,4 +, product,solid-soil,5,tree-seed,2,water,50 +tree-arboretum-2,bio-arboretum +, recipe,solid-tree,6 +, product,solid-soil,5,solid-fertilizer,1,tree-seed,2,water,50 +tree-arboretum-3,bio-arboretum +, recipe,solid-tree,8 +, product,solid-soil,5,solid-fertilizer,1,tree-seed,2,water,50,liquid-nutrient-pulp,10 +bio-plastic-tree,bio-arboretum-swamp +, recipe,bio-plastic,10 +, product,swamp-tree,1 +bio-resin-tree,bio-arboretum-temperate +, recipe,bio-resin,10 +, product,temperate-tree,1 +bio-rubber-tree,bio-arboretum-desert +, recipe,bio-rubber,10 +, product,desert-tree,1 +assembling-machine-2,bob-assembly-machine +, recipe,assembling-machine-2,1 +, product,assembling-machine-1,1,steel-plate,2,iron-gear-wheel,5,electronic-circuit,3 +blast-furnace-2,angels-blast-furnace +, recipe,blast-furnace-2,1 +, product,clay-brick,50,blast-furnace,1,steel-plate,12,electronic-circuit,3,steel-pipe,15 +blue-fiber-algae,bio-processing-blue +, recipe,blue-cellulose-fiber,5 +, product,algae-blue,10 +angels-brass-smelting-1,angels-alloys-casting +, recipe,liquid-molten-brass,240 +, product,ingot-copper,18,ingot-zinc,6 +angels-brass-smelting-2,angels-alloys-casting +, recipe,liquid-molten-brass,360 +, product,ingot-copper,18,ingot-tin,6,ingot-zinc,12 +angels-brass-smelting-3,angels-alloys-casting +, recipe,liquid-molten-brass,360 +, product,ingot-copper,18,ingot-lead,6,ingot-zinc,12 +angels-plate-brass,angels-alloys-casting +, recipe,brass-alloy,4 +, product,liquid-molten-brass,40 +brass-alloy,angels-alloys-casting +, recipe,brass-alloy,5 +, product,copper-plate,3,zinc-plate,2 +carbon-separation-1,petrochem-basics +, recipe,gas-carbon-monoxide,50 +, product,solid-carbon,1,water-purified,50 +casting-machine-2,angels-casting-machine +, recipe,casting-machine-2,1 +, product,clay-brick,5,steel-plate,9,casting-machine,1,steel-gear-wheel,3,electronic-circuit,1,steel-pipe,6 +cellulose-fiber-algae,bio-processing-green +, recipe,cellulose-fiber,5 +, product,algae-green,10 +fluid-chemical-furnace,bob-smelting-machine +, recipe,fluid-chemical-furnace,1 +, product,steel-furnace,1,steel-pipe,2 +solid-coke,petrochem-coal +, recipe,solid-coke,2 +, product,coal-crushed,2 +robot-brain-construction,angels-robot-a +, recipe,robot-brain-construction,1 +, product,solder,5,circuit-board,1,basic-electronic-components,8,electronic-components,3 +robot-brain-construction-2,angels-robot-b +, recipe,robot-brain-construction-2,1 +, product,solder,5,circuit-board,1,basic-electronic-components,12,electronic-components,4 +robot-brain-construction-3,angels-robot-c +, recipe,robot-brain-construction-3,1 +, product,solder,5,superior-circuit-board,1,basic-electronic-components,4,electronic-components,8,intergrated-electronics,4 +robot-brain-construction-4,angels-robot-d +, recipe,robot-brain-construction-4,1 +, product,solder,5,multi-layer-circuit-board,1,basic-electronic-components,2,electronic-components,6,intergrated-electronics,6,processing-electronics,4 +robot-tool-construction,angels-robot-a +, recipe,robot-tool-construction,1 +, product,steel-plate,1,steel-gear-wheel,2 +robot-tool-construction-2,angels-robot-b +, recipe,robot-tool-construction-2,1 +, product,aluminium-plate,1,brass-gear-wheel,2,steel-bearing,2 +robot-tool-construction-3,angels-robot-c +, recipe,robot-tool-construction-3,1 +, product,titanium-plate,1,titanium-gear-wheel,2,titanium-bearing,2 +robot-tool-construction-4,angels-robot-d +, recipe,robot-tool-construction-4,1 +, product,silicon-nitride,1,tungsten-carbide,1,nitinol-gear-wheel,2,ceramic-bearing,2 +bob-construction-robot-2,angels-robot-b +, recipe,bob-construction-robot-2,1 +, product,construction-robot,1,flying-robot-frame-2,1,robot-brain-construction-2,1,robot-tool-construction-2,1 +bob-construction-robot-3,angels-robot-c +, recipe,bob-construction-robot-3,1 +, product,bob-construction-robot-2,1,flying-robot-frame-3,1,robot-brain-construction-3,1,robot-tool-construction-3,1 +bob-construction-robot-4,angels-robot-d +, recipe,bob-construction-robot-4,1 +, product,bob-construction-robot-3,1,flying-robot-frame-4,1,robot-brain-construction-4,1,robot-tool-construction-4,1 +construction-robot,angels-robot-a +, recipe,construction-robot,1 +, product,flying-robot-frame,1,robot-brain-construction,1,robot-tool-construction,1 +angels-copper-pebbles,ore-sorting-advanced +, recipe,angels-copper-pebbles,4 +, product,copper-ore,2 +angels-crawler,angels-vehicle-car +, recipe,angels-crawler,1 +, product,steel-plate,75,engine-unit,20,iron-gear-wheel,25,electronic-circuit,20 +angels-cab,angels-vehicle-car +, recipe,angels-cab,1 +, product,steel-plate,75,engine-unit,20,iron-gear-wheel,25,electronic-circuit,20 +angels-cab-deploy-charge,angels-vehicle-car +, recipe,angels-cab-deploy-charge,1 +, product,iron-plate,1,steel-plate,1,iron-gear-wheel,1,electronic-circuit,1 +angels-cab-undeploy-charge,angels-vehicle-car +, recipe,angels-cab-undeploy-charge,1 +, product,iron-plate,1,steel-plate,1,iron-gear-wheel,1,electronic-circuit,1 +angels-cab-energy-interface-mk1,angels-vehicle-car +, recipe,angels-cab-energy-interface-mk1,1 +, product,red-wire,10,green-wire,10,electronic-circuit,20,medium-electric-pole,1 +fill-angels-ore9-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore9-sludge-barrel,1 +, product,empty-barrel,1,angels-ore9-sludge,50 +empty-angels-ore9-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore9-sludge,50 +, product,angels-ore9-sludge-barrel,1 +fill-angels-ore9-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore9-solution-barrel,1 +, product,empty-barrel,1,angels-ore9-solution,50 +empty-angels-ore9-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore9-solution,50 +, product,angels-ore9-solution-barrel,1 +fill-angels-ore9-anode-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore9-anode-sludge-barrel,1 +, product,empty-barrel,1,angels-ore9-anode-sludge,50 +empty-angels-ore9-anode-sludge-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore9-anode-sludge,50 +, product,angels-ore9-anode-sludge-barrel,1 +fill-angels-ore9-slime-barrel,angels-fluid-control-ore-processing-fluid +, recipe,angels-ore9-slime-barrel,1 +, product,empty-barrel,1,angels-ore9-slime,50 +empty-angels-ore9-slime-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-barrel,1,angels-ore9-slime,50 +, product,angels-ore9-slime-barrel,1 +fill-liquid-cupric-chloride-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,liquid-cupric-chloride-solution-barrel,1 +, product,empty-canister,1,liquid-cupric-chloride-solution,50 +empty-liquid-cupric-chloride-solution-barrel,angels-fluid-control-ore-processing-fluid +, recipe,empty-canister,1,liquid-cupric-chloride-solution,50 +, product,liquid-cupric-chloride-solution-barrel,1 +petri-dish,bio-processing-alien-intermediate +, recipe,petri-dish,2 +, product,glass,1 +substrate-dish,bio-processing-alien-intermediate +, recipe,substrate-dish,3 +, product,paste-cellulose,1,petri-dish,3 +seeded-dish,bio-processing-alien-intermediate +, recipe,seeded-dish,5 +, product,alien-bacteria,1,substrate-dish,5 +crystal-seed,bio-processing-alien-intermediate +, recipe,crystal-seed,1 +, product,crystal-dust,1,seeded-dish,1 +egg-shell-seed,bio-processing-alien-intermediate +, recipe,egg-shell-seed,1 +, product,bio-puffer-egg-shell-powder,1,seeded-dish,1 +angels-relay-station,angels-cargo-expander +, recipe,angels-relay-station,1 +, product,iron-plate,5,electronic-circuit,2 +angels-relay-station-2,angels-cargo-expander +, recipe,angels-relay-station-2,1 +, product,iron-plate,5,steel-plate,5,advanced-circuit,2,angels-relay-station,4 +angels-relay-station-3,angels-cargo-expander +, recipe,angels-relay-station-3,1 +, product,steel-plate,5,low-density-structure,5,processing-unit,2,angels-relay-station-2,4 +angels-zone-expander,angels-cargo-expander +, recipe,angels-zone-expander,1 +, product,iron-plate,5,electronic-circuit,2 +angels-zone-expander-2,angels-cargo-expander +, recipe,angels-zone-expander-2,1 +, product,iron-plate,5,steel-plate,5,advanced-circuit,2,angels-zone-expander,4 +angels-zone-expander-3,angels-cargo-expander +, recipe,angels-zone-expander-3,1 +, product,steel-plate,5,low-density-structure,5,processing-unit,2,angels-zone-expander-2,4 +angels-construction-zone-expander,angels-cargo-expander +, recipe,angels-construction-zone-expander,1 +, product,iron-plate,5,electronic-circuit,2 +angels-construction-zone-expander-2,angels-cargo-expander +, recipe,angels-construction-zone-expander-2,1 +, product,iron-plate,5,steel-plate,5,advanced-circuit,2,angels-construction-zone-expander,4 +angels-construction-zone-expander-3,angels-cargo-expander +, recipe,angels-construction-zone-expander-3,1 +, product,steel-plate,5,low-density-structure,5,processing-unit,2,angels-construction-zone-expander-2,4 +filter-lime,petrochem-catalysts +, recipe,filter-lime,1 +, product,filter-frame,1,solid-lime,5 +crystal-slurry-filtering-1,filtering +, recipe,filter-frame,1,crystal-seedling,50,water-yellow-waste,40 +, product,filter-coal,1,crystal-slurry,50,water-purified,50 +crystal-slurry-filtering-2,filtering +, recipe,filter-ceramic-used,1,crystal-seedling,35,water-yellow-waste,20 +, product,filter-ceramic,1,crystal-slurry,35,water-purified,50 +filtration-unit,refining-buildings +, recipe,filtration-unit,1 +, product,clay-brick,25,steel-plate,6,electronic-circuit,5,steel-pipe,24 +filtration-unit-2,refining-buildings +, recipe,filtration-unit-2,1 +, product,filtration-unit,1,aluminium-plate,8,concrete-brick,25,advanced-circuit,5,brass-pipe,24 +filtration-unit-3,refining-buildings +, recipe,filtration-unit-3,1 +, product,filtration-unit-2,1,reinforced-concrete-brick,25,titanium-plate,8,processing-unit,5,titanium-pipe,24 +fluid-reactor,angels-power-nuclear-reactor-a +, recipe,fluid-reactor,1 +, product,burner-reactor,1,steel-pipe,5 +fluid-reactor-from-fluid-furnace,angels-power-nuclear-reactor-a +, recipe,fluid-reactor,1 +, product,fluid-furnace,1,steel-plate,6,heat-pipe,8,steel-pipe,3 +fluid-reactor-2,angels-power-nuclear-reactor-a +, recipe,fluid-reactor-2,1 +, product,concrete,10,invar-alloy,6,fluid-reactor,1,heat-pipe-2,8,brass-pipe,5 +coal-cracking,bob-fluid +, recipe,liquid-naphtha,12 +, product,coal,2,water-purified,15 +ferric-chloride-solution,bob-fluid +, recipe,liquid-ferric-chloride-solution,50 +, product,iron-ore,1,gas-hydrogen-chloride,30 +heavy-oil-cracking,fluid-recipes +, recipe,liquid-fuel-oil,30 +, product,water-purified,30,liquid-naphtha,40 +ammonia,bob-fluid +, recipe,gas-ammonia,20 +, product,gas-nitrogen,10,gas-hydrogen,24 +dinitrogen-tetroxide,bob-fluid +, recipe,gas-dinitrogen-tetroxide,8 +, product,gas-nitrogen-dioxide,20 +glycerol,bob-fluid +, recipe,liquid-glycerol,10 +, product,liquid-fuel-oil,10 +bob-heavy-water,bob-fluid +, recipe,liquid-water-heavy,0.5,water-purified,99.5 +, product,water,100,gas-hydrogen-sulfide,1 +hydrazine,bob-fluid +, recipe,gas-hydrazine,8,water-purified,4 +, product,gas-ammonia,20,gas-hydrogen-peroxide,4 +hydrogen-chloride,bob-fluid +, recipe,gas-hydrogen-chloride,25 +, product,gas-chlorine,13,gas-hydrogen,10 +hydrogen-peroxide,bob-fluid +, recipe,gas-hydrogen-peroxide,8 +, product,gas-hydrogen,16,gas-oxygen,20 +petroleum-gas-cracking,bob-fluid +, recipe,gas-hydrogen,250 +, product,water-purified,20,gas-methane,5 +light-oil-cracking,fluid-recipes +, recipe,gas-methane,20 +, product,water-purified,30,liquid-fuel-oil,30 +bob-liquid-air,bob-fluid-pump +, recipe,gas-oxygen,100 +, product, +nitric-acid,bob-fluid +, recipe,liquid-nitric-acid,20 +, product,gas-nitrogen-dioxide,20,gas-hydrogen-peroxide,20 +nitric-oxide,bob-fluid +, recipe,gas-nitrogen-monoxide,20,water-purified,12 +, product,gas-ammonia,20,gas-oxygen,25 +nitrogen-dioxide,bob-fluid +, recipe,gas-nitrogen-dioxide,20 +, product,gas-nitrogen-monoxide,20,gas-oxygen,10 +nitrogen,bob-fluid +, recipe,gas-nitrogen,20,gas-oxygen,5 +, product,gas-oxygen,25 +pure-water,bob-fluid +, recipe,water-purified,100 +, product,water,100 +pure-water-from-lithia,bob-fluid +, recipe,water-purified,100 +, product,lithia-water,100 +brine-electrolysis,bob-fluid-electrolysis +, recipe,solid-sodium-hydroxide,1,gas-chlorine,25,gas-hydrogen,20 +, product,water-saline,10 +salt-water-electrolysis,bob-fluid-electrolysis +, recipe,solid-sodium-hydroxide,1,gas-chlorine,25,gas-hydrogen,20 +, product,solid-salt,1,water-purified,10 +sodium-chlorate,bob-fluid-electrolysis +, recipe,solid-sodium-chlorate,1,gas-hydrogen,60 +, product,solid-salt,1,water-purified,30 +sodium-perchlorate,bob-fluid-electrolysis +, recipe,solid-sodium-perchlorate,1,gas-hydrogen,20 +, product,solid-sodium-chlorate,1,water-purified,10 +tungstic-acid,bob-fluid +, recipe,solid-calcium-chloride,1,liquid-tungstic-acid,20 +, product,tungsten-ore,2,gas-hydrogen-chloride,25 +water-electrolysis,bob-fluid-electrolysis +, recipe,gas-hydrogen,20,gas-oxygen,12.5 +, product,water-purified,10 +solid-fuel-from-sour-gas,bob-resource-chemical +, recipe,solid-fuel,1 +, product,sour-gas,20 +petroleum-gas-sweetening,bob-fluid +, recipe,gas-methane,20,gas-hydrogen-sulfide,10 +, product,sour-gas,20 +sulfuric-acid-2,bob-fluid +, recipe,liquid-sulfuric-acid,50 +, product,gas-sulfur-dioxide,50,gas-hydrogen-peroxide,50 +sulfuric-acid-3,bob-fluid +, recipe,liquid-sulfuric-acid,50 +, product,gas-hydrogen-sulfide,50,gas-oxygen,100 +pumpjack,extraction-machine +, recipe,pumpjack,1 +, product,steel-plate,5,iron-gear-wheel,10,electronic-circuit,5,pipe,10 +bob-pumpjack-1,extraction-machine +, recipe,bob-pumpjack-1,1 +, product,pumpjack,1,steel-plate,20,steel-gear-wheel,10,electronic-circuit,5,steel-pipe,10 +bob-pumpjack-2,extraction-machine +, recipe,bob-pumpjack-2,1 +, product,bob-pumpjack-1,1,aluminium-plate,20,brass-gear-wheel,10,advanced-circuit,5,brass-pipe,10 +bob-pumpjack-3,extraction-machine +, recipe,bob-pumpjack-3,1 +, product,bob-pumpjack-2,1,titanium-plate,20,titanium-gear-wheel,10,processing-unit,5,titanium-pipe,10 +bob-pumpjack-4,extraction-machine +, recipe,bob-pumpjack-4,1 +, product,bob-pumpjack-3,1,nitinol-alloy,20,nitinol-gear-wheel,10,advanced-processing-unit,5,nitinol-pipe,10 +water-miner-1,extraction-machine +, recipe,water-miner-1,1 +, product,iron-plate,10,iron-gear-wheel,10,basic-circuit-board,5,copper-pipe,10 +water-miner-2,extraction-machine +, recipe,water-miner-2,1 +, product,water-miner-1,1,steel-plate,10,steel-gear-wheel,10,electronic-circuit,5,bronze-pipe,10 +water-miner-3,extraction-machine +, recipe,water-miner-3,1 +, product,water-miner-2,1,aluminium-plate,10,brass-gear-wheel,10,advanced-circuit,5,brass-pipe,10 +water-miner-4,extraction-machine +, recipe,water-miner-4,1 +, product,water-miner-3,1,titanium-plate,10,titanium-gear-wheel,10,processing-unit,5,titanium-pipe,10 +water-miner-5,extraction-machine +, recipe,water-miner-5,1 +, product,water-miner-4,1,nitinol-alloy,10,nitinol-gear-wheel,10,advanced-processing-unit,5,nitinol-pipe,10 +gas-ethylene-oxide,petrochem-feedstock +, recipe,catalyst-metal-carrier,1,gas-ethylene-oxide,100 +, product,catalyst-metal-green,1,gas-ethylene,100,gas-oxygen,50 +gas-refinery,petrochem-buildings-gas-refinery +, recipe,gas-refinery,1 +, product,aluminium-plate,20,concrete-brick,50,advanced-circuit,10,brass-pipe,57 +gas-refinery-2,petrochem-buildings-gas-refinery +, recipe,gas-refinery-2,1 +, product,reinforced-concrete-brick,50,titanium-plate,20,gas-refinery,1,processing-unit,10,titanium-pipe,57 +gas-refinery-3,petrochem-buildings-gas-refinery +, recipe,gas-refinery-3,1 +, product,reinforced-concrete-brick,50,tungsten-plate,20,gas-refinery-2,1,advanced-processing-unit,10,tungsten-pipe,57 +gas-refinery-4,petrochem-buildings-gas-refinery +, recipe,gas-refinery-4,1 +, product,reinforced-concrete-brick,50,tungsten-carbide,40,gas-refinery-3,1,advanced-processing-unit,5,copper-tungsten-pipe,30 +gas-refining,petrochem-carbon-gas-feed +, recipe,gas-acid,20,liquid-ngl,80 +, product,gas-raw-1,100 +gas-synthesis-reforming,petrochem-carbon-synthesis +, recipe,gas-synthesis,100 +, product,gas-carbon-monoxide,60,gas-hydrogen,90 +bio-generator-temperate-1,bio-processing-buildings-nauvis-a +, recipe,bio-generator-temperate-1,1 +, product,clay-brick,5,steel-plate,6,temperate-tree,1,electronic-circuit,2,steel-pipe,9 +bio-generator-swamp-1,bio-processing-buildings-nauvis-a +, recipe,bio-generator-swamp-1,1 +, product,clay-brick,5,steel-plate,6,swamp-tree,1,electronic-circuit,2,steel-pipe,9 +bio-generator-desert-1,bio-processing-buildings-nauvis-a +, recipe,bio-generator-desert-1,1 +, product,clay-brick,5,steel-plate,6,desert-tree,1,electronic-circuit,2,steel-pipe,9 +geode-purple-liquify,liquifying +, recipe,crystal-slurry,40 +, product,geode-purple,5,liquid-sulfuric-acid,15 +geode-purple-processing,geode-processing-1 +, recipe,crystal-dust,2,stone-crushed,3 +, product,geode-purple,2 +grenade,angels-capsules-a +, recipe,grenade,1 +, product,iron-plate,5,coal,10 +cluster-grenade,angels-capsules-a +, recipe,cluster-grenade,1 +, product,steel-plate,5,explosives,5,grenade,7 +hydro-plant-2,water-treatment-building +, recipe,hydro-plant-2,1 +, product,clay-brick,60,steel-plate,12,hydro-plant,1,electronic-circuit,12,steel-pipe,48 +hydro-plant-3,water-treatment-building +, recipe,hydro-plant-3,1 +, product,aluminium-plate,16,concrete-brick,60,hydro-plant-2,1,advanced-circuit,12,brass-pipe,48 +induction-furnace-2,angels-induction-furnace +, recipe,induction-furnace-2,1 +, product,clay-brick,25,steel-plate,15,induction-furnace,1,steel-gear-wheel,9,electronic-circuit,5,steel-pipe,12 +liquid-ethylbenzene-catalyst,petrochem-chemistry +, recipe,liquid-ethylbenzene,80,gas-hydrogen-fluoride,20 +, product,gas-benzene,50,gas-ethylene,50,liquid-hydrofluoric-acid,20 +molten-glass-smelting,angels-glass-casting +, recipe,liquid-molten-glass,120 +, product,solid-glass-mixture,12 +angels-solder-smelting-1,angels-solder-casting +, recipe,liquid-molten-solder,120 +, product,angels-solder-mixture,12 +angels-solder-smelting-2,angels-solder-casting +, recipe,liquid-molten-solder,240 +, product,ingot-lead,12,ingot-tin,12 +angels-solder-smelting-3,angels-solder-casting +, recipe,liquid-molten-solder,240 +, product,ingot-tin,12,ingot-zinc,12 +angels-solder-smelting-4,angels-solder-casting +, recipe,liquid-molten-solder,360 +, product,ingot-copper,12,ingot-silver,12,ingot-tin,12 +liquifier,petrochem-buildings-electrolyser +, recipe,liquifier,1 +, product,stone-brick,10,iron-plate,6,basic-circuit-board,2,pipe,6 +liquifier-2,petrochem-buildings-electrolyser +, recipe,liquifier-2,1 +, product,clay-brick,10,bronze-alloy,6,liquifier,1,electronic-circuit,2,bronze-pipe,6 +liquifier-3,petrochem-buildings-electrolyser +, recipe,liquifier-3,1 +, product,aluminium-plate,8,concrete-brick,10,liquifier-2,1,advanced-circuit,2,brass-pipe,6 +liquifier-4,petrochem-buildings-electrolyser +, recipe,liquifier-4,1 +, product,reinforced-concrete-brick,10,titanium-plate,8,liquifier-3,1,processing-unit,2,titanium-pipe,6 +lithium-chloride,angels-alloys +, recipe,solid-lithium,1 +, product,lithia-water,25 +lithium,angels-alloys +, recipe,lithium,1 +, product,solid-lithium,1 +lithium-cobalt-oxide,angels-alloys +, recipe,lithium-cobalt-oxide,2 +, product,cobalt-oxide,1,lithium,1 +lithium-water-electrolysis,angels-alloys +, recipe,lithium-perchlorate,1,solid-salt,1,gas-hydrogen,20 +, product,solid-lithium,1,solid-sodium-perchlorate,1 +crawler-locomotive-wagon,angels-vehicle-train-crawler +, recipe,crawler-locomotive-wagon,1 +, product,steel-plate,35,engine-unit,25,electronic-circuit,15,locomotive,1 +crawler-locomotive-wagon-2,angels-vehicle-train-crawler +, recipe,crawler-locomotive-wagon-2,1 +, product,steel-plate,40,engine-unit,30,crawler-locomotive-wagon,1,speed-module,1,effectivity-module,1 +crawler-locomotive-wagon-3,angels-vehicle-train-crawler +, recipe,crawler-locomotive-wagon-3,1 +, product,electric-engine-unit,40,low-density-structure,40,crawler-locomotive-wagon-2,1,speed-module-2,1,effectivity-module-2,1 +crawler-locomotive-wagon-4,angels-vehicle-train-crawler +, recipe,crawler-locomotive-wagon-4,1 +, product,electric-engine-unit,45,low-density-structure,60,crawler-locomotive-wagon-3,1,speed-module-3,1,effectivity-module-3,1 +crawler-locomotive-wagon-5,angels-vehicle-train-crawler +, recipe,crawler-locomotive-wagon-5,1 +, product,electric-engine-unit,50,rocket-control-unit,2,low-density-structure,80,crawler-locomotive-wagon-4,1 +logistic-science-pack,science-pack +, recipe,logistic-science-pack,1 +, product,basic-transport-belt,1,inserter,1 +storage-tank,angels-fluid-tanks +, recipe,storage-tank,1 +, product,iron-plate,20,steel-plate,5,bob-small-inline-storage-tank,1 +bob-storage-tank-all-corners,angels-fluid-tanks +, recipe,bob-storage-tank-all-corners,1 +, product,iron-plate,20,steel-plate,5,bob-small-storage-tank,1,pipe,2 +storage-tank-2,angels-fluid-tanks +, recipe,storage-tank-2,1 +, product,invar-alloy,20,storage-tank,1 +bob-storage-tank-all-corners-2,angels-fluid-tanks +, recipe,bob-storage-tank-all-corners-2,1 +, product,invar-alloy,20,bob-storage-tank-all-corners,1,steel-pipe,4 +storage-tank-3,angels-fluid-tanks +, recipe,storage-tank-3,1 +, product,titanium-plate,20,storage-tank-2,1 +bob-storage-tank-all-corners-3,angels-fluid-tanks +, recipe,bob-storage-tank-all-corners-3,1 +, product,titanium-plate,20,bob-storage-tank-all-corners-2,1,titanium-pipe,4 +storage-tank-4,angels-fluid-tanks +, recipe,storage-tank-4,1 +, product,nitinol-alloy,20,storage-tank-3,1 +bob-storage-tank-all-corners-4,angels-fluid-tanks +, recipe,bob-storage-tank-all-corners-4,1 +, product,nitinol-alloy,20,bob-storage-tank-all-corners-3,1,nitinol-pipe,4 +biter-medium-eggsperiment,bio-biter-egg +, recipe,biter-medium-egg,1 +, product,bio-puffer-egg-4,1,crystal-seed,1,crystal-enhancer,1,crystal-splinter-raw,1 +biter-medium-keeping,bio-biter +, recipe,biter-medium,3,biter-medium,1,crystal-shard-raw,4 +, product,biter-medium,4,bio-alien-processed-meat,3,liquid-nutrient-pulp,40 +biter-medium-butchering,bio-biter-butchery +, recipe,bio-raw-meat,1,crystal-shard-raw,1 +, product,biter-medium,1 +biter-medium-breeding,bio-biter +, recipe,biter-queen-medium,1,biter-queen-medium,1,biter-medium-egg,1,biter-medium-egg,1 +, product,biter-queen-medium,2,bio-alien-processed-meat,2,liquid-nutrient-pulp,40 +biter-medium,bio-biter-egg +, recipe,biter-medium,1,biter-queen-medium,1 +, product,biter-medium-egg,1,bio-alien-processed-meat,1,liquid-nutrient-pulp,20 +biter-queen-medium-butchering,bio-biter-butchery +, recipe,bio-raw-meat,1 - 2,crystal-shard-raw,1 +, product,biter-queen-medium,1 +fill-mineral-sludge-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,mineral-sludge-barrel,1 +, product,empty-barrel,1,mineral-sludge,50 +empty-mineral-sludge-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,empty-barrel,1,mineral-sludge,50 +, product,mineral-sludge-barrel,1 +stone-mixing-furnace,bob-smelting-machine +, recipe,stone-mixing-furnace,1 +, product,stone,5 +steel-mixing-furnace,bob-smelting-machine +, recipe,steel-mixing-furnace,1 +, product,stone-brick,10,steel-plate,6 +fluid-mixing-furnace,bob-smelting-machine +, recipe,fluid-mixing-furnace,1 +, product,steel-mixing-furnace,1,steel-pipe,2 +mold-expendable,angels-mold-casting +, recipe,mold-expendable,1,slag,1 +, product,motor-casing-0,1,solid-sand,40 +engine-unit,angels-basic-intermediate +, recipe,engine-unit,1 +, product,steel-plate,1,iron-gear-wheel,1,pipe,2 +electric-engine-unit,angels-basic-intermediate +, recipe,electric-engine-unit,1 +, product,engine-unit,1,electronic-circuit,2,lubricant,15 +nutrients-refining-1,bio-processor-nutrient +, recipe,liquid-fuel-oil,40,gas-acetone,40,gas-synthesis,20 +, product,liquid-nutrient-pulp,100 +nutrients-refining-2,bio-processor-nutrient +, recipe,liquid-fuel-oil,60,liquid-glycerol,40 +, product,liquid-nutrient-pulp,100 +nutrients-refining-3,bio-processor-nutrient +, recipe,gas-acetone,60,gas-ethanol,30,gas-butane,10 +, product,liquid-nutrient-pulp,100 +liquid-raw-vegetable-oil-filtering-1,bio-processor-press-vegetables +, recipe,filter-frame,1,liquid-vegetable-oil,160,liquid-nutrient-pulp,40 +, product,filter-coal,1,liquid-raw-vegetable-oil,100,water-purified,100 +liquid-raw-fish-oil-filtering-1,bio-processor-press-fish +, recipe,filter-frame,1,liquid-fish-oil,100,liquid-mineral-oil,100 +, product,filter-coal,1,liquid-raw-fish-oil,150,thermal-water,50 +liquid-raw-vegetable-oil-filtering-2,bio-processor-press-vegetables +, recipe,filter-ceramic-used,1,liquid-vegetable-oil,180,liquid-nutrient-pulp,20 +, product,filter-ceramic,1,liquid-raw-vegetable-oil,100,water-purified,100 +liquid-raw-fish-oil-filtering-2,bio-processor-press-fish +, recipe,filter-ceramic-used,1,liquid-fish-oil,125,liquid-mineral-oil,75 +, product,filter-ceramic,1,liquid-raw-fish-oil,150,thermal-water,50 +liquid-vegetable-oil-refining,bio-processor-press-vegetables +, recipe,liquid-fuel-oil,70,liquid-mineral-oil,30 +, product,liquid-vegetable-oil,100 +liquid-fish-oil-refining,bio-processor-press-fish +, recipe,liquid-fermentation-raw,40,lubricant,60 +, product,liquid-fish-oil,100 +advanced-liquid-fish-oil-refining,bio-processor-press-fish +, recipe,liquid-fermentation-raw,75,liquid-mineral-oil,25 +, product,liquid-fish-oil,100 +oil-refinery,petrochem-buildings-oil-refinery +, recipe,oil-refinery,1 +, product,steel-plate,6,steel-gear-wheel,12,electronic-circuit,4,steel-pipe,36 +oil-refinery-2,petrochem-buildings-oil-refinery +, recipe,oil-refinery-2,1 +, product,aluminium-plate,8,oil-refinery,1,brass-gear-wheel,12,advanced-circuit,4,brass-pipe,36 +oil-refinery-3,petrochem-buildings-oil-refinery +, recipe,oil-refinery-3,1 +, product,titanium-plate,8,oil-refinery-2,1,titanium-gear-wheel,12,processing-unit,4,titanium-pipe,36 +oil-refinery-4,petrochem-buildings-oil-refinery +, recipe,oil-refinery-4,1 +, product,tungsten-plate,8,oil-refinery-3,1,tungsten-gear-wheel,12,advanced-processing-unit,4,tungsten-pipe,36 +oil-refining,petrochem-carbon-oil-feed +, recipe,solid-oil-residual,1,liquid-mineral-oil,20,liquid-fuel-oil,30,liquid-naphtha,50 +, product,crude-oil,100 +ore-crusher,ore-crusher +, recipe,ore-crusher,1 +, product,burner-ore-crusher,1,stone-brick,15,iron-plate,9,iron-gear-wheel,6 +ore-floatation-cell-2,ore-floatation +, recipe,ore-floatation-cell-2,1 +, product,ore-floatation-cell,1,aluminium-plate,16,concrete-brick,40,advanced-circuit,8,brass-pipe,12 +ore-leaching-plant-2,ore-leaching +, recipe,ore-leaching-plant-2,1 +, product,ore-leaching-plant,1,reinforced-concrete-brick,40,titanium-plate,16,processing-unit,8,titanium-pipe,12 +ore-processing-machine-2,angels-processing-machine +, recipe,ore-processing-machine-2,1 +, product,ore-processing-machine,1,aluminium-plate,8,concrete-brick,20,brass-gear-wheel,6 +ore-refinery-2,ore-refining +, recipe,ore-refinery-2,1 +, product,ore-refinery,1,reinforced-concrete-brick,100,tungsten-plate,48,advanced-processing-unit,12 +ore-sorting-facility-2,ore-sorter +, recipe,ore-sorting-facility-2,1 +, product,ore-sorting-facility,1,clay-brick,60,steel-plate,36,steel-gear-wheel,24,electronic-circuit,12 +pellet-press-2,angels-pellet-press +, recipe,pellet-press-2,1 +, product,pellet-press,1,reinforced-concrete-brick,10,titanium-plate,8,titanium-gear-wheel,12 +ap-bullet,angels-physical-ad +, recipe,ap-bullet,1 +, product,ap-bullet-projectile,1,cordite,1,bullet-casing,1 +ap-bullet-magazine,angels-physical-ae +, recipe,ap-bullet-magazine,1 +, product,ap-bullet,5,magazine,1 +ap-bullet-projectile,angels-physical-ac +, recipe,ap-bullet-projectile,2 +, product,copper-plate,1,alien-blue-alloy,1 +bob-piercing-rocket,angels-explosion-bb +, recipe,bob-piercing-rocket,1 +, product,piercing-rocket-warhead,1,rocket-body,1 +piercing-rocket-warhead,angels-explosion-ba +, recipe,piercing-rocket-warhead,1 +, product,steel-plate,1,alien-blue-alloy,2 +shotgun-ap-shell,angels-physical-bb +, recipe,shotgun-ap-shell,1 +, product,alien-blue-alloy,1,cordite,1,shotgun-shell-casing,1 +cannon-turret-shell-2,angels-physical-bc +, recipe,cannon-turret-shell-2,1 +, product,coal,4,piercing-shotgun-shell,1 +bob-roboport-2,angels-roboport-b +, recipe,bob-roboport-2,1 +, product,aluminium-plate,15,roboport,1,roboport-antenna-2,5,roboport-door-2,1,roboport-chargepad-2,4 +bob-roboport-3,angels-roboport-c +, recipe,bob-roboport-3,1 +, product,titanium-plate,15,bob-roboport-2,1,roboport-antenna-3,5,roboport-door-3,1,roboport-chargepad-3,4 +bob-roboport-4,angels-roboport-d +, recipe,bob-roboport-4,1 +, product,nitinol-alloy,15,bob-roboport-3,1,roboport-antenna-4,5,roboport-door-4,1,roboport-chargepad-4,4 +roboport,angels-roboport-a +, recipe,roboport,1 +, product,steel-plate,15,roboport-antenna-1,5,roboport-door-1,1,roboport-chargepad-1,4 +bob-logistic-zone-expander,angels-roboport-a +, recipe,bob-logistic-zone-expander,1 +, product,steel-plate,5,roboport-antenna-1,3 +bob-logistic-zone-expander-2,angels-roboport-b +, recipe,bob-logistic-zone-expander-2,1 +, product,aluminium-plate,5,bob-logistic-zone-expander,1,roboport-antenna-2,3 +bob-logistic-zone-expander-3,angels-roboport-c +, recipe,bob-logistic-zone-expander-3,1 +, product,titanium-plate,5,bob-logistic-zone-expander-2,1,roboport-antenna-3,3 +bob-logistic-zone-expander-4,angels-roboport-d +, recipe,bob-logistic-zone-expander-4,1 +, product,nitinol-alloy,5,bob-logistic-zone-expander-3,1,roboport-antenna-4,3 +bob-robochest,angels-roboport-a +, recipe,bob-robochest,1 +, product,steel-chest,1,roboport-antenna-1,1,roboport-door-1,1,roboport-chargepad-1,1 +bob-robochest-2,angels-roboport-b +, recipe,bob-robochest-2,1 +, product,aluminium-plate,8,bob-robochest,1,roboport-door-2,1,roboport-chargepad-2,1 +bob-robochest-3,angels-roboport-c +, recipe,bob-robochest-3,1 +, product,titanium-plate,8,bob-robochest-2,1,roboport-door-3,1,roboport-chargepad-3,1 +bob-robochest-4,angels-roboport-d +, recipe,bob-robochest-4,1 +, product,nitinol-alloy,8,bob-robochest-3,1,roboport-door-4,1,roboport-chargepad-4,1 +bob-robo-charge-port,angels-roboport-a +, recipe,bob-robo-charge-port,1 +, product,steel-plate,10,roboport-antenna-1,1,roboport-chargepad-1,4 +bob-robo-charge-port-2,angels-roboport-b +, recipe,bob-robo-charge-port-2,1 +, product,aluminium-plate,10,bob-robo-charge-port,1,roboport-chargepad-2,4 +bob-robo-charge-port-3,angels-roboport-c +, recipe,bob-robo-charge-port-3,1 +, product,titanium-plate,10,bob-robo-charge-port-2,1,roboport-chargepad-3,4 +bob-robo-charge-port-4,angels-roboport-d +, recipe,bob-robo-charge-port-4,1 +, product,nitinol-alloy,10,bob-robo-charge-port-3,1,roboport-chargepad-4,4 +bob-robo-charge-port-large,angels-roboport-a +, recipe,bob-robo-charge-port-large,1 +, product,steel-plate,15,roboport-antenna-1,1,roboport-chargepad-1,9 +bob-robo-charge-port-large-2,angels-roboport-b +, recipe,bob-robo-charge-port-large-2,1 +, product,aluminium-plate,15,bob-robo-charge-port-large,1,roboport-chargepad-2,9 +bob-robo-charge-port-large-3,angels-roboport-c +, recipe,bob-robo-charge-port-large-3,1 +, product,titanium-plate,15,bob-robo-charge-port-large-2,1,roboport-chargepad-3,9 +bob-robo-charge-port-large-4,angels-roboport-d +, recipe,bob-robo-charge-port-large-4,1 +, product,nitinol-alloy,15,bob-robo-charge-port-large-3,1,roboport-chargepad-4,9 +powder-mixer-2,angels-powder-mixer +, recipe,powder-mixer-2,1 +, product,powder-mixer,1,aluminium-plate,4,concrete-brick,5,brass-gear-wheel,3 +bauxite-ore-processing,angels-aluminium +, recipe,processed-aluminium,2 +, product,bauxite-ore,4 +chrome-ore-processing,angels-chrome +, recipe,processed-chrome,2 +, product,chrome-ore,4 +cobalt-ore-processing,angels-cobalt +, recipe,processed-cobalt,2 +, product,cobalt-ore,4 +copper-ore-processing,angels-copper +, recipe,processed-copper,2 +, product,copper-ore,4 +gold-ore-processing,angels-gold +, recipe,processed-gold,2 +, product,gold-ore,4 +iron-ore-processing,angels-iron +, recipe,processed-iron,2 +, product,iron-ore,4 +lead-ore-processing,angels-lead +, recipe,processed-lead,2 +, product,lead-ore,4 +manganese-ore-processing,angels-manganese +, recipe,processed-manganese,2 +, product,manganese-ore,4 +nickel-ore-processing,angels-nickel +, recipe,processed-nickel,2 +, product,nickel-ore,4 +platinum-ore-processing,angels-platinum +, recipe,processed-platinum,2 +, product,platinum-ore,4 +silica-ore-processing,angels-silicon +, recipe,processed-silica,2 +, product,quartz,4 +silver-ore-processing,angels-silver +, recipe,processed-silver,2 +, product,silver-ore,4 +tin-ore-processing,angels-tin +, recipe,processed-tin,2 +, product,tin-ore,4 +titanium-ore-processing,angels-titanium +, recipe,processed-titanium,2 +, product,rutile-ore,4 +tungsten-ore-processing,angels-tungsten +, recipe,processed-tungsten,2 +, product,tungsten-ore,4 +zinc-ore-processing,angels-zinc +, recipe,processed-zinc,2 +, product,zinc-ore,4 +fill-liquid-cellulose-acetate-mixture-barrel,angels-fluid-control-bio-plastic +, recipe,liquid-cellulose-acetate-mixture-barrel,1 +, product,empty-barrel,1,liquid-cellulose-acetate-mixture,50 +empty-liquid-cellulose-acetate-mixture-barrel,angels-fluid-control-bio-plastic +, recipe,empty-barrel,1,liquid-cellulose-acetate-mixture,50 +, product,liquid-cellulose-acetate-mixture-barrel,1 +fill-liquid-cellulose-acetate-barrel,angels-fluid-control-bio-plastic +, recipe,liquid-cellulose-acetate-barrel,1 +, product,empty-barrel,1,liquid-cellulose-acetate,50 +empty-liquid-cellulose-acetate-barrel,angels-fluid-control-bio-plastic +, recipe,empty-barrel,1,liquid-cellulose-acetate,50 +, product,liquid-cellulose-acetate-barrel,1 +fill-liquid-fermentation-raw-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,liquid-fermentation-raw-barrel,1 +, product,empty-barrel,1,liquid-fermentation-raw,50 +empty-liquid-fermentation-raw-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,empty-barrel,1,liquid-fermentation-raw,50 +, product,liquid-fermentation-raw-barrel,1 +fill-liquid-nutrient-pulp-barrel,angels-fluid-control-bio-processor-nutrient +, recipe,liquid-nutrient-pulp-barrel,1 +, product,empty-barrel,1,liquid-nutrient-pulp,50 +empty-liquid-nutrient-pulp-barrel,angels-fluid-control-bio-processor-nutrient +, recipe,empty-barrel,1,liquid-nutrient-pulp,50 +, product,liquid-nutrient-pulp-barrel,1 +fill-liquid-acetic-acid-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,liquid-acetic-acid-barrel,1 +, product,empty-canister,1,liquid-acetic-acid,50 +empty-liquid-acetic-acid-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,empty-canister,1,liquid-acetic-acid,50 +, product,liquid-acetic-acid-barrel,1 +fill-liquid-propionic-acid-barrel,angels-fluid-control-bio-plastic +, recipe,liquid-propionic-acid-barrel,1 +, product,empty-canister,1,liquid-propionic-acid,50 +empty-liquid-propionic-acid-barrel,angels-fluid-control-bio-plastic +, recipe,empty-canister,1,liquid-propionic-acid,50 +, product,liquid-propionic-acid-barrel,1 +fill-liquid-raw-vegetable-oil-barrel,angels-fluid-control-bio-processor-press-vegetables +, recipe,liquid-raw-vegetable-oil-barrel,1 +, product,empty-barrel,1,liquid-raw-vegetable-oil,50 +empty-liquid-raw-vegetable-oil-barrel,angels-fluid-control-bio-processor-press-vegetables +, recipe,empty-barrel,1,liquid-raw-vegetable-oil,50 +, product,liquid-raw-vegetable-oil-barrel,1 +fill-liquid-vegetable-oil-barrel,angels-fluid-control-bio-processor-press-vegetables +, recipe,liquid-vegetable-oil-barrel,1 +, product,empty-barrel,1,liquid-vegetable-oil,50 +empty-liquid-vegetable-oil-barrel,angels-fluid-control-bio-processor-press-vegetables +, recipe,empty-barrel,1,liquid-vegetable-oil,50 +, product,liquid-vegetable-oil-barrel,1 +fill-liquid-acetic-anhydride-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,liquid-acetic-anhydride-barrel,1 +, product,empty-barrel,1,liquid-acetic-anhydride,50 +empty-liquid-acetic-anhydride-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,empty-barrel,1,liquid-acetic-anhydride,50 +, product,liquid-acetic-anhydride-barrel,1 +fill-gas-ethanol-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,gas-ethanol-barrel,1 +, product,gas-canister,1,gas-ethanol,50 +empty-gas-ethanol-barrel,angels-fluid-control-bio-processor-fermentation +, recipe,gas-canister,1,gas-ethanol,50 +, product,gas-ethanol-barrel,1 +pump,angels-fluid-control +, recipe,pump,1 +, product,steel-plate,1,engine-unit,1,copper-pipe,1 +bob-pump-2,angels-fluid-control +, recipe,bob-pump-2,1 +, product,aluminium-plate,1,pump,1,bronze-pipe,1 +bob-pump-3,angels-fluid-control +, recipe,bob-pump-3,1 +, product,titanium-plate,1,bob-pump-2,1,brass-pipe,1 +bob-pump-4,angels-fluid-control +, recipe,bob-pump-4,1 +, product,nitinol-alloy,1,bob-pump-3,1,copper-tungsten-pipe,1 +red-fiber-algae,bio-processing-red +, recipe,red-cellulose-fiber,5 +, product,algae-red,10 +stone-wall,angels-exploration-walls +, recipe,stone-wall,1 +, product,stone-brick,5 +gate,angels-exploration-walls +, recipe,gate,1 +, product,steel-plate,2,electronic-circuit,2,stone-wall,1 +repair-pack,angels-chests-small-a +, recipe,repair-pack,1 +, product,iron-gear-wheel,2,basic-circuit-board,2 +repair-pack-2,angels-chests-small-a +, recipe,repair-pack-2,1 +, product,steel-gear-wheel,2,electronic-circuit,2 +repair-pack-3,angels-chests-small-a +, recipe,repair-pack-3,1 +, product,invar-alloy,2,brass-gear-wheel,2,advanced-circuit,2 +repair-pack-4,angels-chests-small-a +, recipe,repair-pack-4,1 +, product,titanium-plate,2,titanium-gear-wheel,2,titanium-bearing,1,processing-unit,2 +repair-pack-5,angels-chests-small-a +, recipe,repair-pack-5,1 +, product,tungsten-carbide,2,nitinol-gear-wheel,2,nitinol-bearing,1,advanced-processing-unit,2 +fill-liquid-resin-barrel,angels-fluid-control-petrochem-solids-fluids +, recipe,liquid-resin-barrel,1 +, product,empty-barrel,1,liquid-resin,50 +liquid-resin-1,petrochem-solids +, recipe,liquid-resin,10 +, product,gas-urea,20,gas-formaldehyde,20 +liquid-resin-2,petrochem-solids +, recipe,liquid-resin,20 +, product,gas-melamine,20,gas-formaldehyde,20 +liquid-resin-3,petrochem-solids +, recipe,liquid-resin,30 +, product,liquid-bisphenol-a,20,gas-epichlorhydrin,20 +empty-liquid-resin-barrel,angels-fluid-control-petrochem-solids-fluids +, recipe,empty-barrel,1,liquid-resin,50 +, product,liquid-resin-barrel,1 +bob-resin-wood,petrochem-solids +, recipe,resin,1 +, product,wood,9 +solid-resin,petrochem-solids +, recipe,resin,4 +, product,liquid-resin,40 +liquid-rubber-1,petrochem-solids-2 +, recipe,liquid-rubber,10 +, product,liquid-styrene,20,gas-butadiene,20 +bob-rubber,petrochem-solids-2 +, recipe,rubber,1 +, product,resin,3 +solid-rubber,petrochem-solids-2 +, recipe,rubber,4 +, product,liquid-rubber,40 +insulated-cable,petrochem-solids-2 +, recipe,insulated-cable,60 +, product,tinned-copper-cable,60,rubber,1 +laser-rifle-battery-ruby,angels-electric-c +, recipe,laser-rifle-battery-ruby,1 +, product,battery,4,laser-rifle-battery-case,1,ruby-5,1 +solid-saw,bio-wood +, recipe,solid-saw,1 +, product,iron-plate,1 +solid-crystal-tipped-saw,bio-wood +, recipe,solid-crystal-tipped-saw,1 +, product,solid-saw,1,crystal-splinter-harmonic,1 +solid-crystal-full-saw,bio-wood +, recipe,solid-crystal-full-saw,1 +, product,solid-crystal-tipped-saw,1,crystal-shard-harmonic,1 +sintering-oven-2,angels-sintering-oven +, recipe,sintering-oven-2,1 +, product,clay-brick,45,bronze-alloy,24,sintering-oven,1,electronic-circuit,5 +slow-accumulator,angels-power-accumulator +, recipe,slow-accumulator,1 +, product,iron-plate,2,battery,4,electronic-circuit,4 +slow-accumulator-2,angels-power-accumulator +, recipe,slow-accumulator-2,1 +, product,steel-plate,2,lithium-ion-battery,4,advanced-circuit,4,slow-accumulator,1 +slow-accumulator-3,angels-power-accumulator +, recipe,slow-accumulator-3,1 +, product,titanium-plate,2,silver-zinc-battery,4,processing-unit,4,slow-accumulator-2,1 +solid-sodium-carbonate,petrochem-sodium +, recipe,solid-sodium-carbonate,5 +, product,solid-sodium,5,gas-carbon-dioxide,50 +solid-sodium-cyanide,petrochem-sodium +, recipe,solid-sodium-cyanide,5,catalyst-metal-carrier,1,gas-hydrogen,30 +, product,solid-carbon,1,solid-sodium,5,catalyst-metal-green,1,gas-ammonia,30 +sodium-cobaltate,petrochem-sodium +, recipe,sodium-cobaltate,5,gas-oxygen,200,gas-carbon-dioxide,150 +, product,cobalt-oxide,5,solid-sodium-carbonate,6 +solid-fuel-naphtha,petrochem-fuel +, recipe,solid-fuel,2 +, product,solid-coke,1,liquid-naphtha,100 +solid-lime,angels-stone +, recipe,solid-lime,4,gas-carbon-dioxide,50 +, product,solid-limestone,4 +solid-salt-from-saline,water-salination +, recipe,solid-salt,25 +, product,water-saline,1000 +solid-sulfur,petrochem-sulfur +, recipe,sulfur,3 +, product,gas-hydrogen-sulfide,60,gas-oxygen,40 +antron,angels-vehicle-spidertron +, recipe,antron,1 +, product,mech-frame,1,mech-leg,6,gun-turret,2 +tankotron,angels-vehicle-spidertron +, recipe,tankotron,1 +, product,mech-armor-plate,5,mech-frame,1,mech-leg,6,spidertron-cannon,2 +spidertron,angels-vehicle-spidertron +, recipe,spidertron,1 +, product,rtg,2,mech-armor-plate,10,mech-frame,1,mech-leg,8,rocket-launcher,4 +heavy-spidertron,angels-vehicle-spidertron +, recipe,heavy-spidertron,1 +, product,rtg,3,mech-armor-plate,20,mech-frame,1,mech-leg,8,rocket-launcher,8 +logistic-spidertron,angels-vehicle-spidertron +, recipe,logistic-spidertron,1 +, product,titanium-chest,1,mech-armor-plate,5,mech-frame,1,mech-leg,8,gun-turret,2 +crystal-full-cutting,bio-biter-processing-crystal-full +, recipe,crystal-full-blue-cut,1,crystal-full-red-cut,1,crystal-full-green-cut,1,crystal-powder,1 +, product,crystal-full-raw,1 +crystal-shard-cutting,bio-biter-processing-crystal-shard +, recipe,crystal-shard-blue-cut,1,crystal-shard-red-cut,1,crystal-shard-green-cut,1,crystal-powder,1 +, product,crystal-shard-raw,1 +crystal-splinter-cutting,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-blue-cut,1,crystal-splinter-red-cut,1,crystal-splinter-green-cut,1,crystal-powder,1 +, product,crystal-splinter-raw,1 +steam-cracking-ethane,petrochem-cracking +, recipe,gas-ethylene,80,gas-residual,20 +, product,gas-ethane,60,steam,60 +steel-chemical-furnace,smelting-machine +, recipe,steel-furnace,1 +, product,stone-brick,10,steel-plate,6,steel-pipe,5 +steel-furnace,smelting-machine +, recipe,steel-furnace,1 +, product,stone-brick,10,steel-plate,6 +fluid-furnace,smelting-machine +, recipe,fluid-furnace,1 +, product,steel-furnace,1,steel-pipe,2 +strand-casting-machine-2,angels-strand-casting-machine +, recipe,strand-casting-machine-2,1 +, product,aluminium-plate,24,concrete-brick,15,strand-casting-machine,1,brass-gear-wheel,12,advanced-circuit,3,brass-pipe,18 +artillery-turret,angels-artillery-a +, recipe,artillery-turret,1 +, product,concrete,60,steel-plate,60,iron-gear-wheel,40,advanced-circuit,20 +flamethrower-turret,angels-fire +, recipe,flamethrower-turret,1 +, product,steel-plate,20,engine-unit,5,flamethrower,1,pipe,10 +angels-cannon-turret,angels-physical-ba +, recipe,angels-cannon-turret,1 +, product,steel-plate,15,electronic-circuit,10,shotgun,1 +bob-sniper-turret-1,angels-physical-ab +, recipe,bob-sniper-turret-1,1 +, product,copper-plate,5,iron-plate,10,rifle,1 +gun-turret,angels-physical-aa +, recipe,gun-turret,1 +, product,copper-plate,5,iron-plate,10,submachine-gun,1 +laser-turret,angels-electric-a +, recipe,laser-turret,1 +, product,steel-plate,20,battery,12,electronic-circuit,20 +bob-plasma-turret-1,angels-electric-b +, recipe,bob-plasma-turret-1,1 +, product,steel-plate,60,alien-artifact,20,battery,48,electronic-circuit,80,laser-rifle,1 +angels-rocket-turret,angels-explosion-a +, recipe,angels-rocket-turret,1 +, product,steel-plate,20,electronic-circuit,10,rocket-launcher,4 +bob-artillery-turret-2,angels-artillery-a +, recipe,bob-artillery-turret-2,1 +, product,silicon-nitride,60,titanium-plate,60,titanium-gear-wheel,40,processing-unit,20,artillery-turret,1 +bob-gun-turret-2,angels-physical-aa +, recipe,bob-gun-turret-2,1 +, product,steel-plate,20,steel-gear-wheel,10,gun-turret,1 +bob-sniper-turret-2,angels-physical-ab +, recipe,bob-sniper-turret-2,1 +, product,steel-plate,20,invar-alloy,20,cobalt-steel-gear-wheel,20,cobalt-steel-bearing,20,bob-sniper-turret-1,1 +bob-laser-turret-2,angels-electric-a +, recipe,bob-laser-turret-2,1 +, product,steel-plate,20,advanced-circuit,20,laser-turret,1,sapphire-5,1 +bob-plasma-turret-2,angels-electric-b +, recipe,bob-plasma-turret-2,1 +, product,steel-plate,80,alien-artifact,30,battery,48,advanced-circuit,80,bob-plasma-turret-1,1 +bob-artillery-turret-3,angels-artillery-a +, recipe,bob-artillery-turret-3,1 +, product,tungsten-carbide,60,nitinol-alloy,60,nitinol-gear-wheel,40,advanced-processing-unit,20,bob-artillery-turret-2,1 +angels-bio-turret,angels-fire +, recipe,angels-bio-turret,1 +, product,steel-plate,20,engine-unit,5,bio-gun,1,pipe,10 +bob-gun-turret-3,angels-physical-aa +, recipe,bob-gun-turret-3,1 +, product,invar-alloy,20,brass-gear-wheel,10,steel-bearing,10,bob-gun-turret-2,1 +bob-sniper-turret-3,angels-physical-ab +, recipe,bob-sniper-turret-3,1 +, product,titanium-plate,20,nitinol-alloy,20,titanium-gear-wheel,20,nitinol-bearing,20,bob-sniper-turret-2,1 +bob-laser-turret-3,angels-electric-a +, recipe,bob-laser-turret-3,1 +, product,invar-alloy,20,lithium-ion-battery,12,bob-laser-turret-2,1,emerald-5,1 +bob-plasma-turret-3,angels-electric-b +, recipe,bob-plasma-turret-3,1 +, product,invar-alloy,80,alien-artifact-orange,10,alien-artifact-blue,10,lithium-ion-battery,48,advanced-circuit,80,bob-plasma-turret-2,1 +bob-gun-turret-4,angels-physical-aa +, recipe,bob-gun-turret-4,1 +, product,titanium-plate,20,titanium-gear-wheel,10,titanium-bearing,10,bob-gun-turret-3,1 +bob-laser-turret-4,angels-electric-a +, recipe,bob-laser-turret-4,1 +, product,titanium-plate,20,lithium-ion-battery,12,processing-unit,20,bob-laser-turret-3,1,topaz-5,1 +bob-plasma-turret-4,angels-electric-b +, recipe,bob-plasma-turret-4,1 +, product,titanium-plate,80,alien-artifact-yellow,10,alien-artifact-purple,10,lithium-ion-battery,48,processing-unit,80,bob-plasma-turret-3,1 +bob-gun-turret-5,angels-physical-aa +, recipe,bob-gun-turret-5,1 +, product,nitinol-alloy,20,nitinol-gear-wheel,10,nitinol-bearing,10,bob-gun-turret-4,1 +bob-laser-turret-5,angels-electric-a +, recipe,bob-laser-turret-5,1 +, product,nitinol-alloy,20,silver-zinc-battery,12,advanced-processing-unit,20,bob-laser-turret-4,1,diamond-5,1 +bob-plasma-turret-5,angels-electric-b +, recipe,bob-plasma-turret-5,1 +, product,nitinol-alloy,80,alien-artifact-red,10,alien-artifact-green,10,silver-zinc-battery,48,advanced-processing-unit,80,bob-plasma-turret-4,1 +basic-underground-belt,bob-logistic-tier-0 +, recipe,basic-underground-belt,2 +, product,stone,2,wood,2,basic-transport-belt,5 +underground-belt,bob-logistic-tier-1 +, recipe,underground-belt,2 +, product,tin-plate,14,iron-gear-wheel,20,basic-underground-belt,2 +fast-underground-belt,bob-logistic-tier-2 +, recipe,fast-underground-belt,2 +, product,bronze-alloy,14,steel-gear-wheel,20,underground-belt,2 +express-underground-belt,bob-logistic-tier-3 +, recipe,express-underground-belt,2 +, product,aluminium-plate,14,cobalt-steel-gear-wheel,20,cobalt-steel-bearing,20,fast-underground-belt,2 +turbo-underground-belt,bob-logistic-tier-4 +, recipe,turbo-underground-belt,2 +, product,titanium-plate,14,titanium-gear-wheel,20,titanium-bearing,20,express-underground-belt,2 +ultimate-underground-belt,bob-logistic-tier-5 +, recipe,ultimate-underground-belt,2 +, product,nitinol-alloy,14,nitinol-gear-wheel,20,nitinol-bearing,20,turbo-underground-belt,2 +water-purification,water-treatment +, recipe,water-saline,20,water-purified,100 +, product,water,150 +red-wire,circuit-network +, recipe,red-wire,1 +, product,insulated-cable,1 +green-wire,circuit-network +, recipe,green-wire,1 +, product,insulated-cable,1 +alien-artifact-yellow-from-basic,bio-processing-alien-large-convert +, recipe,alien-artifact-yellow,5 +, product,alien-artifact-yellow,1,alien-artifact,5 +alien-artifact-yellow-from-small,bio-processing-alien-large +, recipe,alien-artifact-yellow,1 +, product,small-alien-artifact-yellow,25 +alien-pre-artifact-yellow,bio-processing-alien-pre +, recipe,alien-pre-artifact-yellow,1 +, product,seeded-dish,1,paste-gold,1,diamond-4,1 +small-alien-artifact-yellow,bio-processing-alien-small +, recipe,small-alien-artifact-yellow,1 +, product,alien-pre-artifact-yellow,1 +angels-gathering-turret,angels-electric-a +, recipe,angels-gathering-turret,1 +, product,steel-plate,30,engine-unit,5,iron-gear-wheel,15,pipe,10 +boiler-2,angels-power-steam-boiler +, recipe,boiler-2,1 +, product,steel-plate,5,boiler,1,steel-pipe,4 +desert-garden-cultivating-b,farming-desert-seed +, recipe,desert-garden,2 +, product,solid-alienated-fertilizer,2,desert-garden,1,token-bio,30,water-mineralized,50 +heat-exchanger-2,angels-power-nuclear-heat-exchanger +, recipe,heat-exchanger-2,1 +, product,invar-alloy,10,heat-pipe-2,4,heat-exchanger,1,brass-pipe,4 +liquid-pulping-liquor,bio-liquor +, recipe,liquid-pulping-liquor,100 +, product,gas-sulfur-dioxide,100,gas-oxygen,40,water,50 +paper-bleaching-1,bio-paper +, recipe,solid-paper,4 +, product,solid-wood-pulp,2 +sorting-desert-1,farming-desert +, recipe,solid-beans,12 +, product,desert-1,20 +sorting-swamp-1,farming-swamp +, recipe,solid-nuts,16 +, product,swamp-1,20 +sorting-temperate-1,farming-temperate +, recipe,solid-corn,10 +, product,temperate-1,20 +swamp-garden-cultivating-b,farming-swamp-seed +, recipe,swamp-garden,2 +, product,solid-alienated-fertilizer,2,swamp-garden,1,token-bio,30,water-mineralized,50 +temperate-farm,bio-processing-buildings-vegetabilis-a +, recipe,temperate-farm,1 +, product,aluminium-plate,32,concrete-brick,45,temperate-upgrade,1,crop-farm,1,advanced-circuit,2,brass-pipe,9 +temperate-garden-cultivating-b,farming-temperate-seed +, recipe,temperate-garden,2 +, product,solid-alienated-fertilizer,2,temperate-garden,1,token-bio,30,water-mineralized,50 +fill-gas-methane-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-methane-barrel,1 +, product,gas-canister,1,gas-methane,50 +fill-liquid-fish-atmosphere-barrel,angels-fluid-control-bio-fish +, recipe,liquid-fish-atmosphere-barrel,1 +, product,empty-barrel,1,liquid-fish-atmosphere,50 +fill-liquid-multi-phase-oil-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,liquid-multi-phase-oil-barrel,1 +, product,empty-barrel,1,liquid-multi-phase-oil,50 +empty-gas-methane-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-methane,50 +, product,gas-methane-barrel,1 +empty-liquid-fish-atmosphere-barrel,angels-fluid-control-bio-fish +, recipe,empty-barrel,1,liquid-fish-atmosphere,50 +, product,liquid-fish-atmosphere-barrel,1 +empty-liquid-multi-phase-oil-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,empty-barrel,1,liquid-multi-phase-oil,50 +, product,liquid-multi-phase-oil-barrel,1 +steel-gear-wheel,bob-gears +, recipe,steel-gear-wheel,1 +, product,steel-plate,1 +steel-bearing-ball,bob-bearings +, recipe,steel-bearing-ball,12 +, product,steel-plate,1 +cobalt-steel-bearing-ball,bob-bearings +, recipe,cobalt-steel-bearing-ball,12 +, product,cobalt-steel-alloy,1 +titanium-bearing-ball,bob-bearings +, recipe,titanium-bearing-ball,12 +, product,titanium-plate,1 +ceramic-bearing-ball,bob-bearings +, recipe,ceramic-bearing-ball,12 +, product,silicon-nitride,1 +nitinol-bearing-ball,bob-bearings +, recipe,nitinol-bearing-ball,12 +, product,nitinol-alloy,1 +brown-liquor-recovery,bio-liquor +, recipe,solid-sodium-sulfate,1,water-red-waste,50 +, product,solid-sodium-hydroxide,2,liquid-brown-liquor,50 +desert-garden-cultivating-a,farming-desert-seed +, recipe,token-bio,32 +, product,desert-garden,1 +paper-bleaching-2,bio-paper +, recipe,solid-paper,5,solid-sodium-hypochlorite,2 +, product,solid-sodium-hydroxide,2,solid-wood-pulp,2,gas-chlorine,60 +sorting-desert-2,farming-desert +, recipe,solid-corn,12 +, product,desert-2,20 +sorting-swamp-2,farming-swamp +, recipe,solid-beans,14 +, product,swamp-2,20 +sorting-temperate-2,farming-temperate +, recipe,cellulose-fiber,22 +, product,temperate-2,20 +swamp-farm,bio-processing-buildings-vegetabilis-a +, recipe,swamp-farm,1 +, product,aluminium-plate,32,concrete-brick,45,swamp-upgrade,1,crop-farm,1,advanced-circuit,2,brass-pipe,9 +swamp-garden-cultivating-a,farming-swamp-seed +, recipe,token-bio,32 +, product,swamp-garden,1 +temperate-garden-cultivating-a,farming-temperate-seed +, recipe,token-bio,32 +, product,temperate-garden,1 +fill-crude-oil-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,crude-oil-barrel,1 +, product,empty-barrel,1,crude-oil,50 +fill-gas-ethane-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-ethane-barrel,1 +, product,gas-canister,1,gas-ethane,50 +fill-liquid-polluted-fish-atmosphere-barrel,angels-fluid-control-bio-fish +, recipe,liquid-polluted-fish-atmosphere-barrel,1 +, product,empty-barrel,1,liquid-polluted-fish-atmosphere,50 +empty-crude-oil-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,empty-barrel,1,crude-oil,50 +, product,crude-oil-barrel,1 +empty-gas-ethane-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-ethane,50 +, product,gas-ethane-barrel,1 +empty-liquid-polluted-fish-atmosphere-barrel,angels-fluid-control-bio-fish +, recipe,empty-barrel,1,liquid-polluted-fish-atmosphere,50 +, product,liquid-polluted-fish-atmosphere-barrel,1 +brass-gear-wheel,bob-gears +, recipe,brass-gear-wheel,1 +, product,brass-alloy,1 +steel-bearing,bob-bearings +, recipe,steel-bearing,2 +, product,steel-plate,1,steel-bearing-ball,16 +cobalt-steel-bearing,bob-bearings +, recipe,cobalt-steel-bearing,2 +, product,cobalt-steel-alloy,1,cobalt-steel-bearing-ball,16 +titanium-bearing,bob-bearings +, recipe,titanium-bearing,2 +, product,titanium-plate,1,titanium-bearing-ball,16,lubricant,10 +ceramic-bearing,bob-bearings +, recipe,ceramic-bearing,2 +, product,silicon-nitride,1,ceramic-bearing-ball,16,lubricant,10 +nitinol-bearing,bob-bearings +, recipe,nitinol-bearing,2 +, product,nitinol-alloy,1,nitinol-bearing-ball,16,lubricant,10 +desert-farm,bio-processing-buildings-vegetabilis-a +, recipe,desert-farm,1 +, product,aluminium-plate,32,concrete-brick,45,desert-upgrade,1,crop-farm,1,advanced-circuit,2,brass-pipe,9 +desert-garden-a,farming-desert-seed +, recipe,token-bio,16,desert-1-seed,5,desert-2-seed,5,desert-3-seed,5,desert-4-seed,5,desert-5-seed,5 +, product,desert-garden,1 +paper-bleaching-3,bio-paper +, recipe,solid-paper,6,solid-sodium-carbonate,2,water-yellow-waste,100 +, product,solid-sodium-hydroxide,2,solid-wood-pulp,2,gas-oxygen,60,gas-sulfur-dioxide,40,water,100 +sorting-desert-3,farming-desert +, recipe,solid-pips,24,crystal-dust,4 +, product,desert-3,20 +sorting-swamp-3,farming-swamp +, recipe,solid-leafs,36,solid-nuts,6 +, product,swamp-3,20 +sorting-temperate-3,farming-temperate +, recipe,solid-leafs,32,cellulose-fiber,10 +, product,temperate-3,20 +swamp-garden-a,farming-swamp-seed +, recipe,token-bio,16,swamp-1-seed,5,swamp-2-seed,5,swamp-3-seed,5,swamp-4-seed,5,swamp-5-seed,5 +, product,swamp-garden,1 +temperate-garden-a,farming-temperate-seed +, recipe,token-bio,16,temperate-1-seed,5,temperate-2-seed,5,temperate-3-seed,5,temperate-4-seed,5,temperate-5-seed,5 +, product,temperate-garden,1 +fill-gas-butane-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-butane-barrel,1 +, product,gas-canister,1,gas-butane,50 +empty-gas-butane-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-butane,50 +, product,gas-butane-barrel,1 +cobalt-steel-gear-wheel,bob-gears +, recipe,cobalt-steel-gear-wheel,1 +, product,cobalt-steel-alloy,1 +desert-garden-b,farming-desert-seed +, recipe,desert-1-seed,5,desert-2-seed,5,desert-3-seed,5,desert-4-seed,5,desert-5-seed,5 +, product,desert-garden,1 +sorting-desert-4,farming-desert +, recipe,solid-fruit,12,cellulose-fiber,14 +, product,desert-4,20 +sorting-swamp-4,farming-swamp +, recipe,solid-leafs,24,crystal-dust,6 +, product,swamp-4,20 +sorting-temperate-4,farming-temperate +, recipe,solid-fruit,10,solid-pips,28 +, product,temperate-4,20 +swamp-garden-b,farming-swamp-seed +, recipe,swamp-1-seed,5,swamp-2-seed,5,swamp-3-seed,5,swamp-4-seed,5,swamp-5-seed,5 +, product,swamp-garden,1 +temperate-garden-b,farming-temperate-seed +, recipe,temperate-1-seed,5,temperate-2-seed,5,temperate-3-seed,5,temperate-4-seed,5,temperate-5-seed,5 +, product,temperate-garden,1 +fill-gas-propene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-propene-barrel,1 +, product,gas-canister,1,gas-propene,50 +empty-gas-propene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-propene,50 +, product,gas-propene-barrel,1 +titanium-gear-wheel,bob-gears +, recipe,titanium-gear-wheel,1 +, product,titanium-plate,1 +garden-cultivating,farming-temperate-seed +, recipe,temperate-garden,1,desert-garden,1,swamp-garden,1 +, product,solid-wood-pulp,5,token-bio,1,water-mineralized,50 +sorting-desert-5,farming-desert +, recipe,solid-nuts,4,solid-corn,12,crystal-dust,4 +, product,desert-5,20 +sorting-swamp-5,farming-swamp +, recipe,solid-fruit,16,solid-pips,12,alien-bacteria,4 +, product,swamp-5,20 +sorting-temperate-5,farming-temperate +, recipe,solid-corn,10,cellulose-fiber,8,crystal-dust,4 +, product,temperate-5,20 +tungsten-gear-wheel,bob-gears +, recipe,tungsten-gear-wheel,1 +, product,tungsten-plate,1 +nitinol-gear-wheel,bob-gears +, recipe,nitinol-gear-wheel,1 +, product,nitinol-alloy,1 +aerobic-fermentation,bio-processor-fermentation +, recipe,solid-compost,1,liquid-acetic-acid,50 +, product,liquid-fermentation-raw,100 +angels-logistic-chest-passive-provider,angels-chests-big +, recipe,angels-logistic-chest-passive-provider,1 +, product,iron-plate,10,electronic-circuit,5,angels-big-chest,1 +angels-warehouse-passive-provider,angels-warehouse +, recipe,angels-warehouse-passive-provider,1 +, product,steel-plate,20,electronic-circuit,20,angels-warehouse,1 +angelsore7-crystallization-4,bob-gems-crystallization +, recipe,emerald-ore,1 +, product,catalysator-green,1,crystal-seedling,50 +battery-mk3-equipment,angels-personal-equipment-power-c +, recipe,battery-mk3-equipment,1 +, product,lithium-ion-battery,5,battery-mk2-equipment,2 +big-electric-pole-3,angels-big-power-poles +, recipe,big-electric-pole-3,1 +, product,titanium-plate,5,insulated-cable,5,big-electric-pole-2,1 +bio-hatchery,bio-processing-buildings-alien-a +, recipe,bio-hatchery,1 +, product,small-lamp,3,aluminium-plate,8,concrete-brick,10,advanced-circuit,4 +bio-processor,bio-processing-buildings-vegetabilis-b +, recipe,bio-processor,1 +, product,clay-brick,25,steel-plate,15,steel-gear-wheel,12,electronic-circuit,8 +bob-artillery-wagon-3,angels-artillery +, recipe,bob-artillery-wagon-3,1 +, product,silicon-nitride,10,tungsten-carbide,10,nitinol-alloy,20,nitinol-gear-wheel,12,nitinol-bearing,8,advanced-processing-unit,20,bob-artillery-wagon-2,1,nitinol-pipe,16 +energy-shield-mk3-equipment,angels-personal-equipment-combat-a +, recipe,energy-shield-mk3-equipment,1 +, product,alien-artifact,10,advanced-processing-unit,5,energy-shield-mk2-equipment,2,productivity-module-2,1 +exoskeleton-equipment-3,angels-personal-equipment-combat-c +, recipe,exoskeleton-equipment-3,1 +, product,titanium-plate,20,titanium-gear-wheel,30,titanium-bearing,30,advanced-processing-unit,10,exoskeleton-equipment-2,1 +fluid-generator-2,angels-power-fluid-generator +, recipe,fluid-generator-2,1 +, product,aluminium-plate,10,invar-alloy,5,brass-gear-wheel,10,steel-bearing,5,advanced-circuit,5,fluid-generator,1,brass-pipe,5 +fusion-reactor-equipment-3,angels-personal-equipment-power-b +, recipe,fusion-reactor-equipment-3,1 +, product,alien-artifact-yellow,15,alien-artifact-purple,15,advanced-processing-unit,50,fusion-reactor-equipment-2,1,speed-module-6,2,effectivity-module-6,2,productivity-module-6,2 +gas-methylamine,petrochem-rocket +, recipe,gas-methylamine,200,water-purified,50 +, product,gas-methanol,50,gas-ammonia,250 +heat-pipe-3,angels-power-nuclear-heat-pipe +, recipe,heat-pipe-3,1 +, product,silver-plate,10,titanium-plate,5 +hogger-breeding-3,bio-hogger-breeding +, recipe,bio-hogger-3,2,bio-hogger-1,1,bio-hogger-2,1,bio-hogger-3,1,bio-hogger-4,1,bio-hogger-5,1 +, product,iron-plate,1,bio-hogger-3,2,liquid-nutrient-pulp,20 +hogger-butchery-3,bio-hogger-butchery +, recipe,bio-raw-meat,1 +, product,bio-hogger-3,1 +hogger-hogging-3,bio-hogger +, recipe,bio-hogger-3,3 - 5,copper-ore,10 +, product,iron-ore,10,iron-plate,1,bio-hogger-3,4,liquid-nutrient-pulp,20 +liquid-acetate-mixture,bio-plastic +, recipe,liquid-cellulose-acetate-mixture,100 +, product,cellulose-fiber,10,liquid-acetic-acid,40,liquid-acetic-anhydride,40,liquid-sulfuric-acid,20 +logistic-chest-passive-provider,angels-chests-small-b +, recipe,logistic-chest-passive-provider,1 +, product,electronic-circuit,3,advanced-circuit,1,steel-chest,1 +logistic-chest-passive-provider-2,angels-chests-small-c +, recipe,logistic-chest-passive-provider-2,1 +, product,advanced-circuit,3,processing-unit,1,brass-chest,1 +logistic-chest-passive-provider-3,angels-chests-small-d +, recipe,logistic-chest-passive-provider-3,1 +, product,processing-unit,3,advanced-processing-unit,1,titanium-chest,1 +medium-electric-pole-3,angels-medium-power-poles +, recipe,medium-electric-pole-3,1 +, product,titanium-plate,2,insulated-cable,2,medium-electric-pole-2,1 +night-vision-equipment-3,angels-personal-equipment-power-d +, recipe,night-vision-equipment-3,1 +, product,alien-artifact,10,advanced-processing-unit,5,night-vision-equipment-2,1,diamond-5,2 +nuclear-reactor-3,angels-power-nuclear-reactor-b +, recipe,nuclear-reactor-3,1 +, product,lead-plate,500,tungsten-carbide,250,advanced-processing-unit,500,heat-pipe-4,25 +ore-powderizer-3,ore-powderizer +, recipe,ore-powderizer-3,1 +, product,ore-powderizer-2,1,reinforced-concrete-brick,5,titanium-plate,4,titanium-gear-wheel,3 +paste-gold,bio-processing-paste +, recipe,paste-gold,1 +, product,powder-gold,2,paste-cellulose,1 +personal-laser-defense-equipment-3,angels-personal-equipment-combat-b +, recipe,personal-laser-defense-equipment-3,1 +, product,invar-alloy,5,lithium-ion-battery,3,personal-laser-defense-equipment-2,1,emerald-5,1 +personal-roboport-antenna-equipment-3,angels-personal-equipment-robot-c +, recipe,personal-roboport-antenna-equipment-3,1 +, product,roboport-antenna-3,2,roboport-door-3,1,personal-roboport-antenna-equipment-2,1 +personal-roboport-chargepad-equipment-3,angels-personal-equipment-robot-b +, recipe,personal-roboport-chargepad-equipment-3,1 +, product,roboport-chargepad-3,2,personal-roboport-chargepad-equipment-2,1 +personal-roboport-mk3-equipment,angels-personal-equipment-robot-d +, recipe,personal-roboport-mk3-equipment,1 +, product,titanium-plate,5,roboport-antenna-3,2,roboport-door-3,1,roboport-chargepad-3,2,personal-roboport-mk2-equipment,1 +personal-roboport-robot-equipment-3,angels-personal-equipment-robot-a +, recipe,personal-roboport-robot-equipment-3,1 +, product,solder,4,superior-circuit-board,1,basic-electronic-components,10,electronic-components,20,intergrated-electronics,10,personal-roboport-robot-equipment-2,1 +slag-processing-3,slag-processing-1 +, recipe,quartz,1,silver-ore,1 +, product,mineral-sludge,50 +solar-panel-equipment-3,angels-personal-equipment-power-a +, recipe,solar-panel-equipment-3,1 +, product,gold-plate,2,silicon-wafer,8,titanium-plate,2,processing-unit,5,solar-panel-equipment-2,1 +solid-clay,water-washing-filtering +, recipe,solid-clay,3 +, product,water-concentrated-mud,30,water,25 +steam-engine-3,angels-power-steam-generator +, recipe,steam-engine-3,1 +, product,brass-alloy,5,brass-gear-wheel,5,steel-bearing,5,steam-engine-2,1,brass-pipe,5 +substation-3,angels-sub-power-poles +, recipe,substation-3,1 +, product,titanium-plate,10,insulated-cable,5,processing-unit,5,substation-2,1 +vehicle-battery-3,angels-vehicle-equipment-bobpower-d +, recipe,vehicle-battery-3,1 +, product,lithium-ion-battery,5,vehicle-battery-2,2 +vehicle-big-turret-3,angels-vehicle-equipment-bobcombat-c +, recipe,vehicle-big-turret-3,1 +, product,invar-alloy,20,alien-artifact,30,lithium-ion-battery,12,advanced-circuit,20,vehicle-big-turret-2,1 +vehicle-fusion-cell-3,angels-vehicle-equipment-bobpower-b +, recipe,vehicle-fusion-cell-3,1 +, product,alien-artifact,15,processing-unit,25,vehicle-fusion-cell-2,1,speed-module-3,1,effectivity-module-3,1,productivity-module-3,1 +vehicle-fusion-reactor-3,angels-vehicle-equipment-bobpower-c +, recipe,vehicle-fusion-reactor-3,1 +, product,alien-artifact,30,processing-unit,50,vehicle-fusion-reactor-2,1,speed-module-3,2,effectivity-module-3,2,productivity-module-3,2 +vehicle-laser-defense-3,angels-vehicle-equipment-bobcombat-b +, recipe,vehicle-laser-defense-3,1 +, product,invar-alloy,5,lithium-ion-battery,3,vehicle-laser-defense-2,1,emerald-5,1 +vehicle-roboport-3,angels-vehicle-equipment-bobrobot-d +, recipe,vehicle-roboport-3,1 +, product,titanium-plate,5,roboport-antenna-3,2,roboport-door-3,1,roboport-chargepad-3,2,vehicle-roboport-2,1 +vehicle-roboport-antenna-equipment-3,angels-vehicle-equipment-bobrobot-c +, recipe,vehicle-roboport-antenna-equipment-3,1 +, product,roboport-antenna-3,2,roboport-door-3,1,vehicle-roboport-antenna-equipment-2,1 +vehicle-roboport-chargepad-equipment-3,angels-vehicle-equipment-bobrobot-b +, recipe,vehicle-roboport-chargepad-equipment-3,1 +, product,roboport-chargepad-3,2,vehicle-roboport-chargepad-equipment-2,1 +vehicle-roboport-robot-equipment-3,angels-vehicle-equipment-bobrobot-a +, recipe,vehicle-roboport-robot-equipment-3,1 +, product,solder,4,superior-circuit-board,1,basic-electronic-components,10,electronic-components,20,intergrated-electronics,10,vehicle-roboport-robot-equipment-2,1 +vehicle-shield-3,angels-vehicle-equipment-bobcombat-a +, recipe,vehicle-shield-3,1 +, product,alien-artifact,10,advanced-processing-unit,5,vehicle-shield-2,2,productivity-module-2,1 +vehicle-solar-panel-3,angels-vehicle-equipment-bobpower-a +, recipe,vehicle-solar-panel-3,1 +, product,aluminium-plate,2,gold-plate,2,processing-unit,5,vehicle-solar-panel-2,1 +washing-2,water-washing +, recipe,solid-mud,0 - 3,water-concentrated-mud,200 +, product,water-heavy-mud,200,water,50 +washing-plant-2,washing-building +, recipe,washing-plant-2,1 +, product,clay-brick,25,bronze-alloy,12,washing-plant,1,electronic-circuit,4,bronze-pipe,27 +wood-pellets,bio-processing-wood +, recipe,wood-pellets,2 +, product,cellulose-fiber,12 +module-case,module-intermediates +, recipe,module-case,1 +, product,aluminium-plate,5,plastic-bar,2 +module-contact,module-intermediates-2 +, recipe,module-contact,5 +, product,copper-plate,1,silver-plate,1 +bob-emerald-3,bob-gems-raw +, recipe,emerald-3,1 +, product,emerald-ore,1 +bob-emerald-4,bob-gems-cut +, recipe,emerald-4,1 +, product,emerald-3,1,grinding-wheel,1,water,10 +bob-emerald-5,bob-gems-polished +, recipe,emerald-5,1 +, product,emerald-4,1,polishing-wheel,1,polishing-compound,1 +fill-gas-nitrogen-monoxide-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-nitrogen-monoxide-barrel,1 +, product,gas-canister,1,gas-nitrogen-monoxide,50 +fill-liquid-hydrochloric-acid-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,liquid-hydrochloric-acid-barrel,1 +, product,empty-canister,1,liquid-hydrochloric-acid,50 +fill-liquid-white-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,liquid-white-liquor-barrel,1 +, product,empty-barrel,1,liquid-white-liquor,50 +fill-water-concentrated-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,water-concentrated-mud-barrel,1 +, product,empty-barrel,1,water-concentrated-mud,50 +fill-water-green-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,water-green-waste-barrel,1 +, product,empty-barrel,1,water-green-waste,50 +fill-water-saline-barrel,angels-fluid-control-water-treatment-fluid +, recipe,water-saline-barrel,1 +, product,empty-barrel,1,water-saline,50 +bob-nickel-plate,bob-material-electrolysis +, recipe,nickel-plate,1,gas-sulfur-dioxide,10 +, product,nickel-ore,1,gas-oxygen,8 +cobalt-plate,bob-material-chemical +, recipe,cobalt-plate,1 +, product,cobalt-oxide,1,liquid-sulfuric-acid,10 +empty-gas-nitrogen-monoxide-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-nitrogen-monoxide,50 +, product,gas-nitrogen-monoxide-barrel,1 +empty-liquid-hydrochloric-acid-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,empty-canister,1,liquid-hydrochloric-acid,50 +, product,liquid-hydrochloric-acid-barrel,1 +empty-liquid-white-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,empty-barrel,1,liquid-white-liquor,50 +, product,liquid-white-liquor-barrel,1 +empty-water-concentrated-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,empty-barrel,1,water-concentrated-mud,50 +, product,water-concentrated-mud-barrel,1 +empty-water-green-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,empty-barrel,1,water-green-waste,50 +, product,water-green-waste-barrel,1 +empty-water-saline-barrel,angels-fluid-control-water-treatment-fluid +, recipe,empty-barrel,1,water-saline,50 +, product,water-saline-barrel,1 +solder-alloy,bob-alloy +, recipe,solder-alloy,11 +, product,copper-plate,1,silver-plate,1,tin-plate,9 +solder-alloy-lead,bob-alloy +, recipe,solder-alloy,11 +, product,lead-plate,7,tin-plate,4 +module-circuit-board,module-intermediates-3 +, recipe,module-circuit-board,1 +, product,copper-plate,1,tin-plate,1,phenolic-board,1,liquid-ferric-chloride-solution,5 +module-processor-board,module-intermediates +, recipe,module-processor-board,4 +, product,copper-plate,1,tin-plate,1,phenolic-board,1,liquid-ferric-chloride-solution,5 +module-processor-board-2,module-intermediates-2 +, recipe,module-processor-board-2,4 +, product,copper-plate,1,silver-plate,1,fibreglass-board,1,liquid-ferric-chloride-solution,5 +module-processor-board-3,module-intermediates-3 +, recipe,module-processor-board-3,4 +, product,copper-plate,2,gold-plate,2,fibreglass-board,1,liquid-ferric-chloride-solution,10 +cobalt-oxide-from-copper,bob-material-chemical +, recipe,copper-plate,7 - 11,cobalt-oxide,1 - 3 +, product,copper-ore,7,solid-limestone,1,solid-carbon,1,gas-hydrogen,5 +silver-from-lead,bob-material-chemical +, recipe,lead-plate,7 - 11,silver-ore,1 - 3 +, product,lead-oxide,7,nickel-plate,1,solid-carbon,3 +speed-processor,module-intermediates +, recipe,speed-processor,1 +, product,solder,1,basic-electronic-components,2,electronic-components,2,crystal-splinter-blue,1,module-processor-board,1 +speed-processor-2,module-intermediates-2 +, recipe,speed-processor-2,1 +, product,solder,2,electronic-components,2,intergrated-electronics,2,crystal-shard-blue,1,module-processor-board-2,1 +speed-processor-3,module-intermediates-3 +, recipe,speed-processor-3,1 +, product,solder,3,intergrated-electronics,2,processing-electronics,1,crystal-full-blue,1,module-processor-board-3,1 +effectivity-processor,module-intermediates +, recipe,effectivity-processor,1 +, product,solder,1,basic-electronic-components,2,electronic-components,2,crystal-splinter-green,1,module-processor-board,1 +effectivity-processor-2,module-intermediates-2 +, recipe,effectivity-processor-2,1 +, product,solder,2,electronic-components,2,intergrated-electronics,2,crystal-shard-green,1,module-processor-board-2,1 +effectivity-processor-3,module-intermediates-3 +, recipe,effectivity-processor-3,1 +, product,solder,3,intergrated-electronics,2,processing-electronics,1,crystal-full-green,1,module-processor-board-3,1 +productivity-processor,module-intermediates +, recipe,productivity-processor,1 +, product,solder,1,basic-electronic-components,2,electronic-components,2,crystal-splinter-red,1,module-processor-board,1 +productivity-processor-2,module-intermediates-2 +, recipe,productivity-processor-2,1 +, product,solder,2,electronic-components,2,intergrated-electronics,2,crystal-shard-red,1,module-processor-board-2,1 +productivity-processor-3,module-intermediates-3 +, recipe,productivity-processor-3,1 +, product,solder,3,intergrated-electronics,2,processing-electronics,1,crystal-full-red,1,module-processor-board-3,1 +pollution-clean-processor,module-intermediates +, recipe,pollution-clean-processor,1 +, product,solder,1,basic-electronic-components,2,electronic-components,2,crystal-splinter-harmonic,1,module-processor-board,1 +pollution-clean-processor-2,module-intermediates-2 +, recipe,pollution-clean-processor-2,1 +, product,solder,2,electronic-components,2,intergrated-electronics,2,crystal-shard-harmonic,1,module-processor-board-2,1 +pollution-clean-processor-3,module-intermediates-3 +, recipe,pollution-clean-processor-3,1 +, product,solder,3,intergrated-electronics,2,processing-electronics,1,crystal-full-harmonic,1,module-processor-board-3,1 +pollution-create-processor,module-intermediates +, recipe,pollution-create-processor,1 +, product,solder,1,basic-electronic-components,2,electronic-components,2,crystal-splinter-harmonic,1,module-processor-board,1 +pollution-create-processor-2,module-intermediates-2 +, recipe,pollution-create-processor-2,1 +, product,solder,2,electronic-components,2,intergrated-electronics,2,crystal-shard-harmonic,1,module-processor-board-2,1 +pollution-create-processor-3,module-intermediates-3 +, recipe,pollution-create-processor-3,1 +, product,solder,3,intergrated-electronics,2,processing-electronics,1,crystal-full-harmonic,1,module-processor-board-3,1 +advanced-oil-refining,petrochem-carbon-oil-feed +, recipe,solid-oil-residual,1,liquid-mineral-oil,20,liquid-fuel-oil,20,liquid-naphtha,70 +, product,crude-oil,90,gas-hydrogen,20 +artillery-shell,angels-artillery-b +, recipe,artillery-shell,1 +, product,explosives,8,explosive-cannon-shell,3 +cannon-shell,angels-exploration-tank-a +, recipe,cannon-shell,1 +, product,steel-plate,2,plastic-bar,2,explosives,1 +heavy-cannon-shell,angels-exploration-tank-b +, recipe,heavy-cannon-shell,1 +, product,cannon-shell,3 +flamethrower-ammo,angels-fire +, recipe,flamethrower-ammo,1 +, product,steel-plate,5,liquid-fuel-oil,50,liquid-naphtha,50 +rocket,angels-explosion-a +, recipe,rocket,1 +, product,rocket-booster,1,explosives,1,electronic-circuit,1 +firearm-magazine,angels-physical-aa +, recipe,firearm-magazine,1 +, product,iron-plate,4 +shotgun-shell,angels-physical-ba +, recipe,shotgun-shell,1 +, product,copper-plate,2,iron-plate,2 +distractor-artillery-shell,angels-artillery-b +, recipe,distractor-artillery-shell,1 +, product,steel-plate,6,plastic-bar,6,explosives,3,distractor-robot,15 +explosive-rocket,angels-explosion-a +, recipe,explosive-rocket,1 +, product,explosives,2,rocket,1 +explosive-cannon-shell,angels-exploration-tank-a +, recipe,explosive-cannon-shell,1 +, product,steel-plate,2,plastic-bar,2,explosives,2 +heavy-explosive-cannon-shell,angels-exploration-tank-b +, recipe,heavy-explosive-cannon-shell,1 +, product,explosive-cannon-shell,3 +piercing-rounds-magazine,angels-physical-aa +, recipe,piercing-rounds-magazine,1 +, product,copper-plate,5,steel-plate,1,firearm-magazine,1 +piercing-shotgun-shell,angels-physical-ba +, recipe,piercing-shotgun-shell,1 +, product,copper-plate,5,steel-plate,2,shotgun-shell,2 +atomic-bomb,angels-explosion-a +, recipe,atomic-bomb,1 +, product,rocket-booster,1,explosives,10,rocket-control-unit,10,uranium-235,15 +poison-artillery-shell,angels-artillery-b +, recipe,poison-artillery-shell,1 +, product,steel-plate,6,plastic-bar,6,explosives,3,alien-poison,150 +heavy-uranium-cannon-shell,angels-exploration-tank-b +, recipe,heavy-uranium-cannon-shell,1 +, product,uranium-cannon-shell,3 +uranium-cannon-shell,angels-exploration-tank-a +, recipe,uranium-cannon-shell,1 +, product,uranium-238,1,cannon-shell,1 +explosive-uranium-cannon-shell,angels-exploration-tank-a +, recipe,explosive-uranium-cannon-shell,1 +, product,uranium-238,1,explosive-cannon-shell,1 +heavy-explosive-uranium-cannon-shell,angels-exploration-tank-b +, recipe,heavy-explosive-uranium-cannon-shell,1 +, product,explosive-uranium-cannon-shell,3 +fire-artillery-shell,angels-artillery-b +, recipe,fire-artillery-shell,1 +, product,steel-plate,6,plastic-bar,6,explosives,3,alien-fire,150 +explosive-artillery-shell,angels-artillery-b +, recipe,explosive-artillery-shell,1 +, product,steel-plate,6,plastic-bar,6,explosives,3,alien-explosive,180 +scatter-cannon-shell,angels-exploration-tank-a +, recipe,scatter-cannon-shell,1 +, product,steel-plate,2,plastic-bar,2,explosives,1,shot,5 +atomic-artillery-shell,angels-artillery-b +, recipe,atomic-artillery-shell,1 +, product,steel-plate,6,plastic-bar,6,explosives,15,plutonium-239,30 +angels-chemical-furnace-3,angels-chemical-furnace +, recipe,angels-chemical-furnace-3,1 +, product,angels-chemical-furnace-2,1,reinforced-concrete-brick,25,titanium-plate,8,processing-unit,5,titanium-pipe,30 +angels-coil-glass-fiber,angels-glass-casting +, recipe,angels-coil-glass-fiber,4 +, product,liquid-molten-glass,80 +angels-construction-roboport-vequip,angels-vehicle-equipment +, recipe,angels-construction-roboport-vequip,1 +, product,iron-plate,20,electronic-circuit,20 +roll-solder-casting,angels-solder-casting +, recipe,angels-roll-solder,4 +, product,liquid-molten-solder,80,water,40 +roll-solder-casting-fast,angels-solder-casting +, recipe,angels-roll-solder,8,liquid-coolant-used,40 +, product,liquid-molten-solder,140,liquid-coolant,40 +angelsore-crushed-mix3-processing,ore-sorting-advanced +, recipe,lead-ore,4 +, product,catalysator-brown,1,angels-ore4-crushed,2,angels-ore5-crushed,2 +angelsore3-chunk-processing,ore-sorting-t2 +, recipe,slag,1,copper-ore,2,iron-ore,1,silver-ore,1,tin-ore,1 +, product,angels-ore3-chunk,6 +angelsore3-chunk,ore-processing-b +, recipe,angels-ore3-chunk,2,geode-yellow,1,water-yellow-waste,50 +, product,angels-ore3-crushed,2,water-purified,50 +angelsore3-crushed-processing,ore-sorting-t1 +, recipe,slag,1,copper-ore,2,iron-ore,1 +, product,angels-ore3-crushed,4 +angelsore3-crushed,ore-processing-a +, recipe,angels-ore3-crushed,2,stone-crushed,1 +, product,angels-ore3,2 +angelsore3-crystal-processing,ore-sorting-t3 +, recipe,slag,1,copper-ore,3,iron-ore,1,silver-ore,1,tin-ore,1,uranium-ore,1 +, product,angels-ore3-crystal,8 +angelsore3-crystal,ore-processing-c +, recipe,angels-ore3-crystal,2 +, product,angels-ore3-chunk,2,liquid-sulfuric-acid,10 +angelsore3-pure-processing,ore-sorting-t4 +, recipe,copper-ore,3,iron-ore,2,silver-ore,1,tin-ore,1,uranium-ore,1,tungsten-ore,1 +, product,angels-ore3-pure,9 +angelsore3-pure,ore-processing-d +, recipe,angels-ore3-pure,4 +, product,angels-ore3-crystal,4 +bio-arboretum-1,bio-processing-buildings-nauvis-a +, recipe,bio-arboretum-1,1 +, product,clay-brick,30,glass,6,steel-plate,18,electronic-circuit,2,steel-pipe,24 +bob-greenhouse,bio-processing-buildings-nauvis-a +, recipe,bob-greenhouse,1 +, product,stone,2,glass,4,iron-plate,5 +assembling-machine-3,bob-assembly-machine +, recipe,assembling-machine-3,1 +, product,assembling-machine-2,1,steel-plate,9,steel-gear-wheel,5,advanced-circuit,3 +assembling-machine-4,bob-assembly-machine +, recipe,assembling-machine-4,1 +, product,assembling-machine-3,1,aluminium-plate,9,brass-gear-wheel,5,steel-bearing,5,advanced-circuit,3 +assembling-machine-5,bob-assembly-machine +, recipe,assembling-machine-5,1 +, product,assembling-machine-4,1,titanium-plate,9,titanium-gear-wheel,5,titanium-bearing,5,processing-unit,3 +assembling-machine-6,bob-assembly-machine +, recipe,assembling-machine-6,1 +, product,assembling-machine-5,1,tungsten-carbide,5,nitinol-alloy,5,nitinol-gear-wheel,5,nitinol-bearing,5,advanced-processing-unit,3 +barreling-pump,angels-fluid-control +, recipe,barreling-pump,1 +, product,steel-plate,6,steel-gear-wheel,9,electronic-circuit,2,steel-pipe,6 +bio-ammo,angels-fire +, recipe,bio-ammo,1 +, product,copper-plate,10,sulfur,5,crude-oil,60 +battery,angels-basic-intermediate +, recipe,battery,1 +, product,lead-plate,2,plastic-bar,1,liquid-sulfuric-acid,20 +lithium-ion-battery,angels-basic-intermediate +, recipe,lithium-ion-battery,1 +, product,lithium-cobalt-oxide,1,lithium-perchlorate,2,solid-carbon,1,plastic-bar,1 +silver-zinc-battery,angels-basic-intermediate +, recipe,silver-zinc-battery,1 +, product,silver-oxide,1,zinc-plate,1,solid-sodium-hydroxide,2,plastic-bar,1 +biter-big-eggsperiment,bio-biter-egg +, recipe,biter-big-egg,1 +, product,bio-puffer-egg-5,1,crystal-seed,1,crystal-enhancer,1,crystal-shard-raw,1 +biter-big-keeping,bio-biter +, recipe,biter-big,3,biter-big,1,crystal-full-raw,4 +, product,biter-big,4,bio-alien-processed-meat,4,liquid-nutrient-pulp,60 +biter-big-butchering,bio-biter-butchery +, recipe,bio-raw-meat,1,crystal-full-raw,1 +, product,biter-big,1 +biter-big-breeding,bio-biter +, recipe,biter-queen-big,1,biter-queen-big,1,biter-big-egg,1,biter-big-egg,1 +, product,biter-queen-big,2,bio-alien-processed-meat,2,liquid-nutrient-pulp,60 +biter-big,bio-biter-egg +, recipe,biter-big,1,biter-queen-big,1 +, product,biter-big-egg,1,bio-alien-processed-meat,1,liquid-nutrient-pulp,30 +biter-queen-big-butchering,bio-biter-butchery +, recipe,bio-raw-meat,1 - 2,crystal-full-raw,1 +, product,biter-queen-big,1 +blast-furnace-3,angels-blast-furnace +, recipe,blast-furnace-3,1 +, product,blast-furnace-2,1,aluminium-plate,16,concrete-brick,50,advanced-circuit,3,brass-pipe,15 +bob-construction-robot-5,angels-cargo-bots +, recipe,bob-construction-robot-5,1 +, product,rtg,1,bob-construction-robot-4,1 +bob-logistic-robot-5,angels-cargo-bots +, recipe,bob-logistic-robot-5,1 +, product,rtg,1,bob-logistic-robot-4,1 +casting-machine-3,angels-casting-machine +, recipe,casting-machine-3,1 +, product,aluminium-plate,12,concrete-brick,5,casting-machine-2,1,brass-gear-wheel,3,advanced-circuit,1,brass-pipe,6 +catalyst-metal-carrier,petrochem-catalysts +, recipe,catalyst-metal-carrier,10 +, product,iron-plate,5 +catalyst-metal-red,petrochem-catalysts +, recipe,catalyst-metal-red,10 +, product,copper-ore,1,iron-ore,1,catalyst-metal-carrier,10 +catalyst-metal-green,petrochem-catalysts +, recipe,catalyst-metal-green,10 +, product,bauxite-ore,1,silver-ore,1,catalyst-metal-carrier,10 +catalyst-metal-blue,petrochem-catalysts +, recipe,catalyst-metal-blue,10 +, product,cobalt-ore,1,rutile-ore,1,catalyst-metal-carrier,10 +catalyst-metal-yellow,petrochem-catalysts +, recipe,catalyst-metal-yellow,10 +, product,nickel-ore,1,tungsten-ore,1,catalyst-metal-carrier,10 +clarifier,water-treatment-building +, recipe,clarifier,1 +, product,stone-brick,30,iron-plate,12,basic-circuit-board,4,pipe,33 +poison-capsule,angels-capsules-a +, recipe,poison-capsule,1 +, product,steel-plate,3,coal,10,electronic-circuit,3 +slowdown-capsule,angels-capsules-a +, recipe,slowdown-capsule,1 +, product,steel-plate,2,coal,5,electronic-circuit,2 +fire-capsule,angels-capsules-a +, recipe,fire-capsule,1 +, product,steel-plate,3,electronic-circuit,3,liquid-fuel,100 +arithmetic-combinator,circuit-network +, recipe,arithmetic-combinator,1 +, product,copper-cable,5,electronic-circuit,5 +decider-combinator,circuit-network +, recipe,decider-combinator,1 +, product,copper-cable,5,electronic-circuit,5 +constant-combinator,circuit-network +, recipe,constant-combinator,1 +, product,copper-cable,5,electronic-circuit,2 +fill-crystal-slurry-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,crystal-slurry-barrel,1 +, product,empty-barrel,1,crystal-slurry,50 +empty-crystal-slurry-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,empty-barrel,1,crystal-slurry,50 +, product,crystal-slurry-barrel,1 +crystal-enhancer,bio-processing-alien-intermediate +, recipe,crystal-enhancer,1 +, product,catalysator-green,1,seeded-dish,1,crystal-powder,1 +fill-crystal-seedling-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,crystal-seedling-barrel,1 +, product,empty-barrel,1,crystal-seedling,50 +empty-crystal-seedling-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,empty-barrel,1,crystal-seedling,50 +, product,crystal-seedling-barrel,1 +fill-crystal-matrix-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,crystal-matrix-barrel,1 +, product,empty-barrel,1,crystal-matrix,50 +empty-crystal-matrix-barrel,angels-fluid-control-ore-sorting-fluid +, recipe,empty-barrel,1,crystal-matrix,50 +, product,crystal-matrix-barrel,1 +crystallizer,refining-buildings +, recipe,crystallizer,1 +, product,clay-brick,50,steel-plate,30,electronic-circuit,5,steel-pipe,15 +crystallizer-2,refining-buildings +, recipe,crystallizer-2,1 +, product,crystallizer,1,aluminium-plate,40,concrete-brick,50,advanced-circuit,5,brass-pipe,15 +crystallizer-3,refining-buildings +, recipe,crystallizer-3,1 +, product,crystallizer-2,1,reinforced-concrete-brick,50,titanium-plate,40,processing-unit,5,titanium-pipe,15 +angels-electric-boiler,boiler-building +, recipe,angels-electric-boiler,1 +, product,clay-brick,5,bronze-alloy,3,electronic-circuit,2,bronze-pipe,15 +angels-electric-boiler-2,boiler-building +, recipe,angels-electric-boiler-2,1 +, product,aluminium-plate,4,concrete-brick,5,angels-electric-boiler,1,advanced-circuit,2,brass-pipe,15 +angels-electric-boiler-3,boiler-building +, recipe,angels-electric-boiler-3,1 +, product,reinforced-concrete-brick,5,tungsten-plate,4,angels-electric-boiler-2,1,advanced-processing-unit,2,tungsten-pipe,15 +electric-chemical-furnace,smelting-machine +, recipe,electric-furnace,1 +, product,stone-brick,10,steel-plate,10,advanced-circuit,5,steel-pipe,5 +electric-furnace,smelting-machine +, recipe,electric-furnace,1 +, product,stone-brick,10,steel-plate,10,advanced-circuit,5 +electric-furnace-2,smelting-machine +, recipe,electric-furnace-2,1 +, product,electric-furnace,1,tungsten-plate,10,invar-alloy,10,processing-unit,5 +electric-furnace-3,smelting-machine +, recipe,electric-furnace-3,1 +, product,electric-furnace-2,1,tungsten-carbide,10,copper-tungsten-alloy,10,advanced-processing-unit,5 +electric-mixing-furnace,bob-smelting-machine +, recipe,electric-mixing-furnace,1 +, product,stone-brick,10,steel-plate,10,advanced-circuit,5 +liquid-ethylene-carbonate,petrochem-chemistry +, recipe,liquid-ethylene-carbonate,90 +, product,gas-ethylene-oxide,100,gas-carbon-dioxide,100 +bob-explosive-rocket,angels-explosion-bb +, recipe,bob-explosive-rocket,1 +, product,explosive-rocket-warhead,1,rocket-body,1 +explosive-rocket-warhead,angels-explosion-ba +, recipe,explosive-rocket-warhead,1 +, product,steel-plate,1,alien-explosive,20 +he-bullet,angels-physical-ad +, recipe,he-bullet,1 +, product,he-bullet-projectile,1,cordite,1,bullet-casing,1 +he-bullet-magazine,angels-physical-ae +, recipe,he-bullet-magazine,1 +, product,he-bullet,5,magazine,1 +he-bullet-projectile,angels-physical-ac +, recipe,he-bullet-projectile,2 +, product,copper-plate,1,alien-explosive,10 +shotgun-explosive-shell,angels-physical-bb +, recipe,shotgun-explosive-shell,1 +, product,cordite,1,shotgun-shell-casing,1,alien-explosive,10 +fast-accumulator,angels-power-accumulator +, recipe,fast-accumulator,1 +, product,iron-plate,2,battery,4,electronic-circuit,4 +fast-accumulator-2,angels-power-accumulator +, recipe,fast-accumulator-2,1 +, product,steel-plate,2,lithium-ion-battery,4,advanced-circuit,4,fast-accumulator,1 +fast-accumulator-3,angels-power-accumulator +, recipe,fast-accumulator-3,1 +, product,titanium-plate,2,silver-zinc-battery,4,processing-unit,4,fast-accumulator-2,1 +gas-ammonia-from-blue-fiber,bio-processing-blue +, recipe,gas-ammonia,100 +, product,blue-cellulose-fiber,20 +gas-fractioning,petrochem-carbon-gas-feed +, recipe,gas-methane,50,gas-ethane,30,gas-butane,20 +, product,liquid-ngl,100 +gas-hydrogen-chloride,petrochem-chlorine +, recipe,gas-hydrogen-chloride,100 +, product,gas-chlorine,50,gas-hydrogen,50 +gas-nitrogen-monoxide,petrochem-nitrogen +, recipe,catalyst-metal-carrier,1,gas-nitrogen-monoxide,100 +, product,catalyst-metal-green,1,gas-ammonia,60,gas-oxygen,40 +gas-synthesis-methanation,petrochem-carbon-synthesis +, recipe,catalyst-metal-carrier,1,gas-methane,60,gas-ethane,20,gas-butane,20 +, product,catalyst-metal-blue,1,gas-synthesis,100,gas-hydrogen,40 +geode-yellow-liquify,liquifying +, recipe,crystal-slurry,30 +, product,geode-yellow,5,liquid-sulfuric-acid,15 +geode-yellow-processing,geode-processing-1 +, recipe,crystal-dust,2,stone-crushed,1 +, product,geode-yellow,2 +angels-gunmetal-smelting-1,angels-alloys-casting +, recipe,liquid-molten-gunmetal,360 +, product,ingot-copper,18,ingot-tin,6,ingot-zinc,12 +angels-plate-gunmetal,angels-alloys-casting +, recipe,gunmetal-alloy,4 +, product,liquid-molten-gunmetal,40 +gunmetal-alloy,angels-alloys-casting +, recipe,gunmetal-alloy,10 +, product,copper-plate,8,tin-plate,1,zinc-plate,1 +induction-furnace-3,angels-induction-furnace +, recipe,induction-furnace-3,1 +, product,aluminium-plate,20,concrete-brick,25,induction-furnace-2,1,brass-gear-wheel,9,advanced-circuit,5,brass-pipe,12 +bob-logistic-zone-interface,angels-roboport-a +, recipe,bob-logistic-zone-interface,1 +, product,steel-plate,5,advanced-circuit,2,roboport-antenna-1,1 +angels-storage-tank-3,angels-fluid-tanks +, recipe,angels-storage-tank-3,1 +, product,stone-brick,5,iron-plate,3,bob-small-inline-storage-tank,1,pipe,6 +angels-storage-tank-2,angels-fluid-tanks +, recipe,angels-storage-tank-2,1 +, product,clay-brick,40,steel-plate,12,steel-pipe,39 +angels-storage-tank-1,angels-fluid-tanks +, recipe,angels-storage-tank-1,1 +, product,clay-brick,20,steel-plate,6,steel-pipe,30 +angels-pressure-tank-1,angels-fluid-tanks +, recipe,angels-pressure-tank-1,1 +, product,stone-brick,20,steel-plate,20,pipe,50 +liquid-polyethylene-catalyst,petrochem-feedstock +, recipe,catalyst-metal-carrier,1,liquid-polyethylene,50 +, product,catalyst-metal-blue,1,gas-ethylene,100 +robot-brain-logistic,angels-robot-a +, recipe,robot-brain-logistic,1 +, product,solder,5,circuit-board,1,basic-electronic-components,6,electronic-components,4 +robot-brain-logistic-2,angels-robot-b +, recipe,robot-brain-logistic-2,1 +, product,solder,5,circuit-board,1,basic-electronic-components,10,electronic-components,6 +robot-brain-logistic-3,angels-robot-c +, recipe,robot-brain-logistic-3,1 +, product,solder,5,superior-circuit-board,1,basic-electronic-components,4,electronic-components,6,intergrated-electronics,6 +robot-brain-logistic-4,angels-robot-d +, recipe,robot-brain-logistic-4,1 +, product,solder,5,multi-layer-circuit-board,1,basic-electronic-components,2,electronic-components,4,intergrated-electronics,8,processing-electronics,4 +robot-tool-logistic,angels-robot-a +, recipe,robot-tool-logistic,1 +, product,steel-plate,1,steel-gear-wheel,2 +robot-tool-logistic-2,angels-robot-b +, recipe,robot-tool-logistic-2,1 +, product,aluminium-plate,1,brass-gear-wheel,2,steel-bearing,2 +robot-tool-logistic-3,angels-robot-c +, recipe,robot-tool-logistic-3,1 +, product,titanium-plate,1,titanium-gear-wheel,2,titanium-bearing,2 +robot-tool-logistic-4,angels-robot-d +, recipe,robot-tool-logistic-4,1 +, product,silicon-nitride,1,nitinol-gear-wheel,2,ceramic-bearing,2 +bob-logistic-robot-2,angels-robot-b +, recipe,bob-logistic-robot-2,1 +, product,logistic-robot,1,flying-robot-frame-2,1,robot-brain-logistic-2,1,robot-tool-logistic-2,1 +bob-logistic-robot-3,angels-robot-c +, recipe,bob-logistic-robot-3,1 +, product,bob-logistic-robot-2,1,flying-robot-frame-3,1,robot-brain-logistic-3,1,robot-tool-logistic-3,1 +bob-logistic-robot-4,angels-robot-d +, recipe,bob-logistic-robot-4,1 +, product,bob-logistic-robot-3,1,flying-robot-frame-4,1,robot-brain-logistic-4,1,robot-tool-logistic-4,1 +logistic-robot,angels-robot-a +, recipe,logistic-robot,1 +, product,flying-robot-frame,1,robot-brain-logistic,1,robot-tool-logistic,1 +military-science-pack,science-pack +, recipe,military-science-pack,2 +, product,piercing-rounds-magazine,1,grenade,1,stone-wall,2 +mold-non-expendable,angels-mold-casting +, recipe,mold-non-expendable,1,slag,1 +, product,motor-casing-0,1,solid-clay,50 +mold-non-expendable-wash,angels-mold-casting +, recipe,mold-non-expendable,1,water-red-waste,20 +, product,spent-mold-non-expendable,1,liquid-nitric-acid,20 +fish-pulp-nutrients,bio-processor-press-fish +, recipe,liquid-nutrient-pulp,20 +, product,fish-pulp,5 +alien-artifact-orange-from-basic,bio-processing-alien-large-convert +, recipe,alien-artifact-orange,5 +, product,alien-artifact-orange,1,alien-artifact,5 +alien-artifact-orange-from-small,bio-processing-alien-large +, recipe,alien-artifact-orange,1 +, product,small-alien-artifact-orange,25 +alien-pre-artifact-orange,bio-processing-alien-pre +, recipe,alien-pre-artifact-orange,1 +, product,seeded-dish,1,paste-tungsten,1,topaz-4,1 +small-alien-artifact-orange,bio-processing-alien-small +, recipe,small-alien-artifact-orange,1 +, product,alien-pre-artifact-orange,1 +ore-crusher-2,ore-crusher +, recipe,ore-crusher-2,1 +, product,ore-crusher,1,clay-brick,15,steel-plate,9,steel-gear-wheel,6 +ore-floatation-cell-3,ore-floatation +, recipe,ore-floatation-cell-3,1 +, product,ore-floatation-cell-2,1,reinforced-concrete-brick,40,titanium-plate,16,processing-unit,8,titanium-pipe,12 +ore-leaching-plant-3,ore-leaching +, recipe,ore-leaching-plant-3,1 +, product,ore-leaching-plant-2,1,reinforced-concrete-brick,40,tungsten-plate,16,advanced-processing-unit,8,tungsten-pipe,12 +ore-processing-machine-3,angels-processing-machine +, recipe,ore-processing-machine-3,1 +, product,ore-processing-machine-2,1,reinforced-concrete-brick,20,titanium-plate,8,titanium-gear-wheel,6 +ore-sorting-facility-3,ore-sorter +, recipe,ore-sorting-facility-3,1 +, product,ore-sorting-facility-2,1,aluminium-plate,48,concrete-brick,60,brass-gear-wheel,24,advanced-circuit,12 +paste-cellulose,bio-processing-green +, recipe,paste-cellulose,10 +, product,solid-sodium-hydroxide,3,cellulose-fiber,5,gas-chlor-methane,10 +aluminium-processed-processing,angels-aluminium +, recipe,pellet-aluminium,4 +, product,processed-aluminium,3 +chrome-processed-processing,angels-chrome +, recipe,pellet-chrome,4 +, product,processed-chrome,3 +cobalt-processed-processing,angels-cobalt +, recipe,pellet-cobalt,4 +, product,processed-cobalt,3 +copper-processed-processing,angels-copper +, recipe,pellet-copper,4 +, product,processed-copper,3 +gold-processed-processing,angels-gold +, recipe,pellet-gold,4 +, product,processed-gold,3 +iron-processed-processing,angels-iron +, recipe,pellet-iron,4 +, product,processed-iron,3 +lead-processed-processing,angels-lead +, recipe,pellet-lead,4 +, product,processed-lead,3 +manganese-processed-processing,angels-manganese +, recipe,pellet-manganese,4 +, product,processed-manganese,3 +nickel-processed-processing,angels-nickel +, recipe,pellet-nickel,4 +, product,processed-nickel,3 +platinum-processed-processing,angels-platinum +, recipe,pellet-platinum,4 +, product,processed-platinum,3 +pellet-press-3,angels-pellet-press +, recipe,pellet-press-3,1 +, product,pellet-press-2,1,reinforced-concrete-brick,10,tungsten-plate,8,tungsten-gear-wheel,12 +silica-processed-processing,angels-silicon +, recipe,pellet-silica,4 +, product,processed-silica,3 +silver-processed-processing,angels-silver +, recipe,pellet-silver,4 +, product,processed-silver,3 +tin-processed-processing,angels-tin +, recipe,pellet-tin,4 +, product,processed-tin,3 +titanium-processed-processing,angels-titanium +, recipe,pellet-titanium,4 +, product,processed-titanium,3 +tungsten-processed-processing,angels-tungsten +, recipe,pellet-tungsten,4 +, product,processed-tungsten,3 +zinc-processed-processing,angels-zinc +, recipe,pellet-zinc,4 +, product,processed-zinc,3 +crystal-full-blue,bio-biter-processing-crystal-full +, recipe,crystal-full-blue,1,crystal-grindstone,1 +, product,crystal-grindstone,1,crystal-full-blue-cut,1,crystal-slurry,2 +crystal-shard-blue,bio-biter-processing-crystal-shard +, recipe,crystal-shard-blue,1,crystal-grindstone,1 +, product,crystal-grindstone,1,crystal-shard-blue-cut,1,crystal-slurry,2 +crystal-splinter-blue,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-blue,1,crystal-grindstone,1 +, product,crystal-splinter-blue-cut,1,crystal-grindstone,1,crystal-slurry,2 +crystal-full-red,bio-biter-processing-crystal-full +, recipe,crystal-full-red,1,crystal-grindstone,1 +, product,crystal-grindstone,1,crystal-full-red-cut,1,crystal-slurry,2 +crystal-shard-red,bio-biter-processing-crystal-shard +, recipe,crystal-shard-red,1,crystal-grindstone,1 +, product,crystal-grindstone,1,crystal-shard-red-cut,1,crystal-slurry,2 +crystal-splinter-red,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-red,1,crystal-grindstone,1 +, product,crystal-splinter-red-cut,1,crystal-grindstone,1,crystal-slurry,2 +crystal-full-green,bio-biter-processing-crystal-full +, recipe,crystal-full-green,1,crystal-grindstone,1 +, product,crystal-grindstone,1,crystal-full-green-cut,1,crystal-slurry,2 +crystal-shard-green,bio-biter-processing-crystal-shard +, recipe,crystal-shard-green,1,crystal-grindstone,1 +, product,crystal-grindstone,1,crystal-shard-green-cut,1,crystal-slurry,2 +crystal-splinter-green,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-green,1,crystal-grindstone,1 +, product,crystal-splinter-green-cut,1,crystal-grindstone,1,crystal-slurry,2 +powder-mixer-3,angels-powder-mixer +, recipe,powder-mixer-3,1 +, product,powder-mixer-2,1,reinforced-concrete-brick,5,titanium-plate,4,titanium-gear-wheel,3 +bio-plastic,bio-arboretum-swamp +, recipe,liquid-plastic,10 +, product,bio-plastic,1,gas-acetone,40 +bio-rubber,bio-arboretum-desert +, recipe,liquid-rubber,10 +, product,bio-rubber,1,gas-acetone,40 +bio-resin,bio-arboretum-temperate +, recipe,liquid-resin,10 +, product,bio-resin,1,gas-ethanol,40 +bio-resin-resin-liquification,bio-arboretum-temperate +, recipe,liquid-resin,10 - 40 +, product,resin,4,gas-ethanol,100 +bio-resin-wood-reprocessing,bio-arboretum-temperate +, recipe,resin,1 +, product,wood,10 +reinforced-wall,angels-exploration-walls +, recipe,reinforced-wall,1 +, product,stone-brick,3,steel-plate,3 +reinforced-gate,angels-exploration-walls +, recipe,reinforced-gate,1 +, product,steel-plate,2,electronic-circuit,2,reinforced-wall,1 +fill-liquid-rubber-barrel,angels-fluid-control-petrochem-solids-fluids +, recipe,liquid-rubber-barrel,1 +, product,empty-barrel,1,liquid-rubber,50 +empty-liquid-rubber-barrel,angels-fluid-control-petrochem-solids-fluids +, recipe,empty-barrel,1,liquid-rubber,50 +, product,liquid-rubber-barrel,1 +laser-rifle-battery-sapphire,angels-electric-c +, recipe,laser-rifle-battery-sapphire,1 +, product,battery,4,laser-rifle-battery-case,1,sapphire-5,1 +bob-seedling,bio-wood +, recipe,seedling,1 - 9 +, product,wood,1 +sintering-oven-3,angels-sintering-oven +, recipe,sintering-oven-3,1 +, product,aluminium-plate,32,concrete-brick,45,sintering-oven-2,1,advanced-circuit,5 +slag-processing-stone,processing-crafting +, recipe,stone-crushed,2 +, product,slag,1 +solid-sodium-hydroxide,petrochem-sodium +, recipe,solid-sodium-hydroxide,5 +, product,solid-sodium,5,water-purified,50 +liquid-aqueous-sodium-hydroxide-reverse,petrochem-sodium +, recipe,solid-sodium-hydroxide,5,water-purified,50 +, product,liquid-aqueous-sodium-hydroxide,50 +solid-alginic-acid,bio-processing-brown +, recipe,solid-alginic-acid,2 +, product,algae-brown,10 +solid-calcium-carbonate,bio-processing-red +, recipe,solid-calcium-carbonate,5 +, product,red-cellulose-fiber,20 +cement-mixture-1,angels-stone +, recipe,solid-cement,1 +, product,quartz,1,solid-lime,1 +cement-mixture-2,angels-stone +, recipe,solid-cement,2 +, product,alumina,1,iron-ore,1,quartz,1,solid-lime,1 +solid-coke-sulfur,petrochem-coal +, recipe,solid-coke,2,water-yellow-waste,50 +, product,coal-crushed,2,water-purified,50 +solid-fuel-fuel-oil,petrochem-fuel +, recipe,solid-fuel,2 +, product,solid-coke,1,liquid-fuel-oil,50 +solid-salt,water-salination +, recipe,solid-salt,10 +, product,water,1000 +basic-splitter,bob-logistic-tier-0 +, recipe,basic-splitter,1 +, product,copper-cable,4,wood,4,iron-gear-wheel,2,basic-transport-belt,5 +splitter,bob-logistic-tier-1 +, recipe,splitter,1 +, product,tin-plate,8,iron-gear-wheel,14,basic-circuit-board,5,basic-splitter,1 +fast-splitter,bob-logistic-tier-2 +, recipe,fast-splitter,1 +, product,bronze-alloy,8,steel-gear-wheel,14,electronic-circuit,5,splitter,1 +express-splitter,bob-logistic-tier-3 +, recipe,express-splitter,1 +, product,aluminium-plate,8,cobalt-steel-gear-wheel,14,cobalt-steel-bearing,12,advanced-circuit,5,fast-splitter,1 +turbo-splitter,bob-logistic-tier-4 +, recipe,turbo-splitter,1 +, product,titanium-plate,8,titanium-gear-wheel,14,titanium-bearing,12,processing-unit,5,express-splitter,1 +ultimate-splitter,bob-logistic-tier-5 +, recipe,ultimate-splitter,1 +, product,nitinol-alloy,8,nitinol-gear-wheel,14,nitinol-bearing,12,advanced-processing-unit,5,turbo-splitter,1 +steam-cracking-butane,petrochem-cracking +, recipe,gas-benzene,80,gas-residual,20 +, product,gas-butane,60,steam,60 +strand-casting-machine-3,angels-strand-casting-machine +, recipe,strand-casting-machine-3,1 +, product,reinforced-concrete-brick,15,titanium-plate,24,strand-casting-machine-2,1,titanium-gear-wheel,12,processing-unit,3,titanium-pipe,18 +thermal-water-purification,water-treatment +, recipe,mineral-sludge,20,water-purified,30 +, product,thermal-water,50 +angels-thorium-fuel-cell,angels-power-nuclear-fuel-cell +, recipe,angels-thorium-fuel-cell,15 +, product,zinc-plate,15,plutonium-239,8,curium-245,1,thorium-232,17 +angels-thorium-processing,angels-power-nuclear-processing +, recipe,thorium-232,4,plutonium-239,1 +, product,thorium-ore,5 +angels-thorium-fuel-cell-reprocessing,angels-power-nuclear-fuel-cell +, recipe,slag,5,neptunium-240,1,thorium-232,2,uranium-234,1,curium-245,1 +, product,used-up-angels-thorium-fuel-cell,5 +angels-advanced-thorium-fuel-cell-reprocessing,angels-power-nuclear-fuel-cell +, recipe,slag,10,neptunium-240,2,uranium-234,2,angels-muon-fusion-catalyst,1,water-greenyellow-waste,60 +, product,used-up-angels-thorium-fuel-cell,10,liquid-hydrofluoric-acid,60 +cannon-turret-shell-3,angels-physical-bc +, recipe,cannon-turret-shell-3,1 +, product,coal,4,uranium-238,2,cannon-turret-shell-2,1 +crawler-wagon,angels-vehicle-train-crawler +, recipe,crawler-wagon,1 +, product,steel-plate,20,iron-gear-wheel,25,electronic-circuit,15,cargo-wagon,1 +crawler-wagon-2,angels-vehicle-train-crawler +, recipe,crawler-wagon-2,1 +, product,steel-plate,25,iron-chest,5,crawler-wagon,1,effectivity-module,2 +crawler-wagon-3,angels-vehicle-train-crawler +, recipe,crawler-wagon-3,1 +, product,low-density-structure,25,iron-chest,10,crawler-wagon-2,1,effectivity-module-2,2 +crawler-wagon-4,angels-vehicle-train-crawler +, recipe,crawler-wagon-4,1 +, product,low-density-structure,35,steel-chest,5,crawler-wagon-3,1,effectivity-module-3,2 +crawler-wagon-5,angels-vehicle-train-crawler +, recipe,crawler-wagon-5,1 +, product,low-density-structure,50,steel-chest,10,crawler-wagon-4,1 +boiler-3,angels-power-steam-boiler +, recipe,boiler-3,1 +, product,invar-alloy,5,boiler-2,1,brass-pipe,4 +heat-exchanger-3,angels-power-nuclear-heat-exchanger +, recipe,heat-exchanger-3,1 +, product,tungsten-plate,10,heat-pipe-3,4,heat-exchanger-2,1,ceramic-pipe,4 +sulfuric-acid,fluid-recipes +, recipe,liquid-sulfuric-acid,50 +, product,iron-plate,1,sulfur,5,water-purified,100 +fill-gas-methanol-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-methanol-barrel,1 +, product,gas-canister,1,gas-methanol,50 +fill-liquid-condensates-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,liquid-condensates-barrel,1 +, product,empty-barrel,1,liquid-condensates,50 +fill-liquid-sulfuric-acid-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,liquid-sulfuric-acid-barrel,1 +, product,empty-canister,1,liquid-sulfuric-acid,50 +empty-gas-methanol-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-methanol,50 +, product,gas-methanol-barrel,1 +empty-liquid-condensates-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,empty-barrel,1,liquid-condensates,50 +, product,liquid-condensates-barrel,1 +empty-liquid-sulfuric-acid-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,empty-canister,1,liquid-sulfuric-acid,50 +, product,liquid-sulfuric-acid-barrel,1 +gas-sulfur-dioxide,petrochem-sulfur +, recipe,gas-sulfur-dioxide,60 +, product,sulfur,1,gas-oxygen,60 +liquid-white-liquor,bio-liquor +, recipe,liquid-white-liquor,40 +, product,solid-sodium-hydroxide,2,solid-sodium-sulfate,2,water,40 +kraft-causting,bio-liquor +, recipe,solid-limestone,4,liquid-white-liquor,55 +, product,solid-lime,4,liquid-green-liquor,60,water,60 +void-carbon-dioxide,void +, recipe,void,1 +, product,gas-carbon-dioxide,25 +kraft-recovery,bio-liquor +, recipe,liquid-green-liquor,40 +, product,liquid-black-liquor,40 +fill-gas-ethylene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-ethylene-barrel,1 +, product,gas-canister,1,gas-ethylene,50 +fill-gas-residual-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,gas-residual-barrel,1 +, product,gas-canister,1,gas-residual,50 +empty-gas-ethylene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-ethylene,50 +, product,gas-ethylene-barrel,1 +empty-gas-residual-barrel,angels-fluid-control-petrochem-raw-fluids +, recipe,gas-canister,1,gas-residual,50 +, product,gas-residual-barrel,1 +gas-sulfur-dioxide-calcium-sulfate,petrochem-sulfur +, recipe,solid-lime,1,gas-sulfur-dioxide,50 +, product,solid-calcium-sulfate,2,water-purified,50 +fill-gas-benzene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-benzene-barrel,1 +, product,gas-canister,1,gas-benzene,50 +empty-gas-benzene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-benzene,50 +, product,gas-benzene-barrel,1 +void-chlorine,void +, recipe,void,1 +, product,gas-chlorine,25 +anaerobic-fermentation,bio-processor-fermentation +, recipe,solid-compost,1,gas-ethanol,50 +, product,liquid-fermentation-raw,100 +angels-logistic-chest-storage,angels-chests-big +, recipe,angels-logistic-chest-storage,1 +, product,iron-plate,10,electronic-circuit,5,angels-big-chest,1 +angels-warehouse-storage,angels-warehouse +, recipe,angels-warehouse-storage,1 +, product,steel-plate,20,electronic-circuit,20,angels-warehouse,1 +angelsore7-crystallization-5,bob-gems-crystallization +, recipe,amethyst-ore,1 +, product,catalysator-green,1,crystal-seedling,50 +battery-mk4-equipment,angels-personal-equipment-power-c +, recipe,battery-mk4-equipment,1 +, product,alien-artifact-orange,5,alien-artifact-blue,5,advanced-processing-unit,5,battery-mk3-equipment,2 +belt-immunity-equipment,angels-personal-equipment-power-d +, recipe,belt-immunity-equipment,1 +, product,steel-plate,10,advanced-circuit,5 +big-electric-pole-4,angels-big-power-poles +, recipe,big-electric-pole-4,1 +, product,gilded-copper-cable,5,nitinol-alloy,5,big-electric-pole-3,1 +bio-press,bio-processing-buildings-vegetabilis-b +, recipe,bio-press,1 +, product,clay-brick,5,bronze-alloy,6,steel-gear-wheel,6,electronic-circuit,2,bronze-pipe,3 +bio-refugium-puffer,bio-processing-buildings-alien-a +, recipe,bio-refugium-puffer,1 +, product,aluminium-plate,16,glass,5,concrete-brick,15,advanced-circuit,4,brass-pipe,33 +coolant-used-filtration-1,coolant +, recipe,filter-frame,1,liquid-coolant,160 +, product,filter-coal,1,liquid-coolant-used,200 +coolant-used-filtration-2,coolant +, recipe,filter-ceramic-used,1,liquid-coolant,160 +, product,filter-ceramic,1,liquid-coolant-used,200 +discharge-defense-remote,angels-personal-equipment-combat-c +, recipe,discharge-defense-remote,1 +, product,electronic-circuit,1 +electro-whinning-cell,ore-whinning +, recipe,electro-whinning-cell,1 +, product,aluminium-plate,16,concrete-brick,20,advanced-circuit,8,brass-pipe,18 +energy-shield-mk4-equipment,angels-personal-equipment-combat-a +, recipe,energy-shield-mk4-equipment,1 +, product,alien-artifact-orange,5,alien-artifact-blue,5,advanced-processing-unit,5,energy-shield-mk3-equipment,2,effectivity-module-4,1,productivity-module-4,1 +fluid-generator-3,angels-power-fluid-generator +, recipe,fluid-generator-3,1 +, product,titanium-plate,10,tungsten-plate,5,titanium-gear-wheel,10,titanium-bearing,10,processing-unit,5,fluid-generator-2,1,ceramic-pipe,5 +fusion-reactor-equipment-4,angels-personal-equipment-power-b +, recipe,fusion-reactor-equipment-4,1 +, product,alien-artifact-red,15,alien-artifact-green,15,advanced-processing-unit,50,fusion-reactor-equipment-3,1,speed-module-8,2,effectivity-module-8,2,productivity-module-8,2 +gas-dimethylamine,petrochem-rocket +, recipe,gas-dimethylamine,200,water-purified,50 +, product,gas-methylamine,200,gas-methanol,50 +gas-fractioning-synthesis,petrochem-carbon-gas-feed +, recipe,gas-methane,90,gas-ethane,30,gas-butane,20,gas-carbon-monoxide,10 +, product,liquid-ngl,100,gas-synthesis,50 +gas-nitrogen-dioxide,petrochem-nitrogen +, recipe,gas-nitrogen-dioxide,100 +, product,gas-oxygen,60,gas-nitrogen-monoxide,40 +heat-pipe-4,angels-power-nuclear-heat-pipe +, recipe,heat-pipe-4,1 +, product,gold-plate,10,copper-tungsten-alloy,5 +hogger-breeding-4,bio-hogger-breeding +, recipe,bio-hogger-4,2,bio-hogger-1,1,bio-hogger-2,1,bio-hogger-3,1,bio-hogger-4,1,bio-hogger-5,1 +, product,iron-plate,1,bio-hogger-4,2,liquid-nutrient-pulp,20 +hogger-breeding-5,bio-hogger-breeding +, recipe,bio-hogger-5,2,bio-hogger-1,1,bio-hogger-2,1,bio-hogger-3,1,bio-hogger-4,1,bio-hogger-5,1 +, product,iron-plate,1,bio-hogger-5,2,liquid-nutrient-pulp,20 +hogger-butchery-4,bio-hogger-butchery +, recipe,bio-raw-meat,1 +, product,bio-hogger-4,1 +hogger-butchery-5,bio-hogger-butchery +, recipe,bio-raw-meat,1 +, product,bio-hogger-5,1 +hogger-hogging-4,bio-hogger +, recipe,bio-hogger-4,3 - 5,copper-ore,10 +, product,iron-ore,10,iron-plate,1,bio-hogger-4,4,liquid-nutrient-pulp,20 +hogger-hogging-5,bio-hogger +, recipe,bio-hogger-5,3 - 5,copper-ore,10 +, product,iron-ore,10,iron-plate,1,bio-hogger-5,4,liquid-nutrient-pulp,20 +liquid-cellulose-acetate,bio-plastic +, recipe,liquid-cellulose-acetate,50,water-yellow-waste,20 +, product,liquid-cellulose-acetate-mixture,50,water-purified,20 +logistic-chest-storage,angels-chests-small-b +, recipe,logistic-chest-storage,1 +, product,electronic-circuit,3,advanced-circuit,1,steel-chest,1 +logistic-chest-storage-2,angels-chests-small-c +, recipe,logistic-chest-storage-2,1 +, product,advanced-circuit,3,processing-unit,1,brass-chest,1 +logistic-chest-storage-3,angels-chests-small-d +, recipe,logistic-chest-storage-3,1 +, product,processing-unit,3,advanced-processing-unit,1,titanium-chest,1 +medium-electric-pole-4,angels-medium-power-poles +, recipe,medium-electric-pole-4,1 +, product,gilded-copper-cable,2,nitinol-alloy,2,medium-electric-pole-3,1 +nutrient-extractor,bio-processing-buildings-vegetabilis-b +, recipe,nutrient-extractor,1 +, product,clay-brick,5,bronze-alloy,3,steel-gear-wheel,6,electronic-circuit,2,bronze-pipe,6 +offshore-pump,washing-building +, recipe,offshore-pump,1 +, product,iron-gear-wheel,1,basic-circuit-board,2,pipe,1 +paste-tungsten,bio-processing-paste +, recipe,paste-tungsten,1 +, product,powdered-tungsten,2,paste-cellulose,1 +personal-laser-defense-equipment-4,angels-personal-equipment-combat-b +, recipe,personal-laser-defense-equipment-4,1 +, product,titanium-plate,5,lithium-ion-battery,3,processing-unit,5,personal-laser-defense-equipment-3,1,amethyst-5,1 +personal-roboport-antenna-equipment-4,angels-personal-equipment-robot-c +, recipe,personal-roboport-antenna-equipment-4,1 +, product,roboport-antenna-4,2,roboport-door-4,1,personal-roboport-antenna-equipment-3,1 +personal-roboport-chargepad-equipment-4,angels-personal-equipment-robot-b +, recipe,personal-roboport-chargepad-equipment-4,1 +, product,roboport-chargepad-4,2,personal-roboport-chargepad-equipment-3,1 +personal-roboport-mk4-equipment,angels-personal-equipment-robot-d +, recipe,personal-roboport-mk4-equipment,1 +, product,nitinol-alloy,5,roboport-antenna-4,2,roboport-door-4,1,roboport-chargepad-4,2,personal-roboport-mk3-equipment,1 +personal-roboport-robot-equipment-4,angels-personal-equipment-robot-a +, recipe,personal-roboport-robot-equipment-4,1 +, product,solder,6,multi-layer-circuit-board,1,basic-electronic-components,5,electronic-components,10,intergrated-electronics,20,processing-electronics,8,personal-roboport-robot-equipment-3,1 +slag-processing-4,slag-processing-1 +, recipe,gold-ore,1,nickel-ore,1 +, product,mineral-sludge,50 +solar-panel-equipment-4,angels-personal-equipment-power-a +, recipe,solar-panel-equipment-4,1 +, product,gilded-copper-cable,5,nitinol-alloy,2,alien-artifact,10,advanced-processing-unit,5,solar-panel-equipment-3,1 +solder,angels-solder-casting +, recipe,solder,8 +, product,solder-alloy,4,resin,1 +solid-limestone,water-washing-filtering +, recipe,solid-limestone,3 +, product,water-light-mud,20,water,25 +steam-engine-4,angels-power-steam-generator +, recipe,steam-engine-4,1 +, product,titanium-plate,5,titanium-gear-wheel,5,titanium-bearing,5,steam-engine-3,1,titanium-pipe,5 +substation-4,angels-sub-power-poles +, recipe,substation-4,1 +, product,gilded-copper-cable,5,nitinol-alloy,10,advanced-processing-unit,5,substation-3,1 +vehicle-battery-4,angels-vehicle-equipment-bobpower-d +, recipe,vehicle-battery-4,1 +, product,alien-artifact-orange,5,alien-artifact-blue,5,advanced-processing-unit,5,vehicle-battery-3,2 +vehicle-big-turret-4,angels-vehicle-equipment-bobcombat-c +, recipe,vehicle-big-turret-4,1 +, product,titanium-plate,20,alien-artifact-orange,15,alien-artifact-blue,15,lithium-ion-battery,12,processing-unit,20,vehicle-big-turret-3,1 +vehicle-fusion-cell-4,angels-vehicle-equipment-bobpower-b +, recipe,vehicle-fusion-cell-4,1 +, product,alien-artifact-orange,8,alien-artifact-blue,8,advanced-processing-unit,25,vehicle-fusion-cell-3,1,speed-module-5,1,effectivity-module-5,1,productivity-module-5,1 +vehicle-fusion-reactor-4,angels-vehicle-equipment-bobpower-c +, recipe,vehicle-fusion-reactor-4,1 +, product,alien-artifact-orange,15,alien-artifact-blue,15,advanced-processing-unit,50,vehicle-fusion-reactor-3,1,speed-module-5,2,effectivity-module-5,2,productivity-module-5,2 +vehicle-laser-defense-4,angels-vehicle-equipment-bobcombat-b +, recipe,vehicle-laser-defense-4,1 +, product,titanium-plate,5,lithium-ion-battery,3,processing-unit,5,vehicle-laser-defense-3,1,amethyst-5,1 +vehicle-roboport-4,angels-vehicle-equipment-bobrobot-d +, recipe,vehicle-roboport-4,1 +, product,nitinol-alloy,5,roboport-antenna-4,2,roboport-door-4,1,roboport-chargepad-4,2,vehicle-roboport-3,1 +vehicle-roboport-antenna-equipment-4,angels-vehicle-equipment-bobrobot-c +, recipe,vehicle-roboport-antenna-equipment-4,1 +, product,roboport-antenna-4,2,roboport-door-4,1,vehicle-roboport-antenna-equipment-3,1 +vehicle-roboport-chargepad-equipment-4,angels-vehicle-equipment-bobrobot-b +, recipe,vehicle-roboport-chargepad-equipment-4,1 +, product,roboport-chargepad-4,2,vehicle-roboport-chargepad-equipment-3,1 +vehicle-roboport-robot-equipment-4,angels-vehicle-equipment-bobrobot-a +, recipe,vehicle-roboport-robot-equipment-4,1 +, product,solder,6,multi-layer-circuit-board,1,basic-electronic-components,5,electronic-components,10,intergrated-electronics,20,processing-electronics,8,vehicle-roboport-robot-equipment-3,1 +vehicle-shield-4,angels-vehicle-equipment-bobcombat-a +, recipe,vehicle-shield-4,1 +, product,alien-artifact-orange,5,alien-artifact-blue,5,advanced-processing-unit,5,vehicle-shield-3,2,effectivity-module-4,1,productivity-module-4,1 +vehicle-solar-panel-4,angels-vehicle-equipment-bobpower-a +, recipe,vehicle-solar-panel-4,1 +, product,gilded-copper-cable,5,silicon-wafer,10,titanium-plate,2,advanced-processing-unit,5,vehicle-solar-panel-3,1 +washing-3,water-washing +, recipe,solid-mud,0 - 3,water-light-mud,200 +, product,water-concentrated-mud,200,water,50 +wood-bricks,bio-processing-wood +, recipe,wood-bricks,4 +, product,wood-pellets,8 +bob-amethyst-3,bob-gems-raw +, recipe,amethyst-3,1 +, product,amethyst-ore,1 +bob-amethyst-4,bob-gems-cut +, recipe,amethyst-4,1 +, product,amethyst-3,1,grinding-wheel,1,water,10 +bob-amethyst-5,bob-gems-polished +, recipe,amethyst-5,1 +, product,amethyst-4,1,polishing-wheel,1,polishing-compound,1 +fill-gas-acid-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-acid-barrel,1 +, product,gas-canister,1,gas-acid,50 +fill-gas-allylchlorid-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-allylchlorid-barrel,1 +, product,gas-canister,1,gas-allylchlorid,50 +fill-gas-nitrogen-dioxide-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-nitrogen-dioxide-barrel,1 +, product,gas-canister,1,gas-nitrogen-dioxide,50 +fill-gas-oxygen-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-oxygen-barrel,1 +, product,gas-canister,1,gas-oxygen,50 +fill-liquid-black-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,liquid-black-liquor-barrel,1 +, product,empty-barrel,1,liquid-black-liquor,50 +fill-liquid-hexachloroplatinic-acid-barrel,angels-fluid-control-angels-platinum +, recipe,liquid-hexachloroplatinic-acid-barrel,1 +, product,empty-canister,1,liquid-hexachloroplatinic-acid,50 +fill-liquid-titanium-tetrachloride-barrel,angels-fluid-control-angels-titanium +, recipe,liquid-titanium-tetrachloride-barrel,1 +, product,empty-barrel,1,liquid-titanium-tetrachloride,50 +fill-liquid-trichlorosilane-barrel,angels-fluid-control-angels-silicon +, recipe,liquid-trichlorosilane-barrel,1 +, product,empty-barrel,1,liquid-trichlorosilane,50 +fill-liquid-tungstic-acid-barrel,angels-fluid-control-angels-tungsten +, recipe,liquid-tungstic-acid-barrel,1 +, product,empty-canister,1,liquid-tungstic-acid,50 +fill-nitrogen-dioxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,nitrogen-dioxide-barrel,1 +, product,gas-canister,1,gas-nitrogen-dioxide,50 +fill-oxygen-barrel,angels-fluid-control-bob-gas-bottle +, recipe,oxygen-barrel,1 +, product,gas-canister,1,gas-oxygen,50 +fill-tungstic-acid-barrel,angels-fluid-control-bob-canister +, recipe,tungstic-acid-barrel,1 +, product,empty-canister,1,liquid-tungstic-acid,50 +fill-water-light-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,water-light-mud-barrel,1 +, product,empty-barrel,1,water-light-mud,50 +fill-water-mineralized-barrel,angels-fluid-control-water-treatment-fluid +, recipe,water-mineralized-barrel,1 +, product,empty-barrel,1,water-mineralized,50 +fill-water-red-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,water-red-waste-barrel,1 +, product,empty-barrel,1,water-red-waste,50 +empty-gas-acid-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-canister,1,gas-acid,50 +, product,gas-acid-barrel,1 +empty-gas-allylchlorid-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-canister,1,gas-allylchlorid,50 +, product,gas-allylchlorid-barrel,1 +empty-gas-nitrogen-dioxide-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-nitrogen-dioxide,50 +, product,gas-nitrogen-dioxide-barrel,1 +empty-gas-oxygen-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-oxygen,50 +, product,gas-oxygen-barrel,1 +empty-liquid-black-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,empty-barrel,1,liquid-black-liquor,50 +, product,liquid-black-liquor-barrel,1 +empty-liquid-hexachloroplatinic-acid-barrel,angels-fluid-control-angels-platinum +, recipe,empty-canister,1,liquid-hexachloroplatinic-acid,50 +, product,liquid-hexachloroplatinic-acid-barrel,1 +empty-liquid-titanium-tetrachloride-barrel,angels-fluid-control-angels-titanium +, recipe,empty-barrel,1,liquid-titanium-tetrachloride,50 +, product,liquid-titanium-tetrachloride-barrel,1 +empty-liquid-trichlorosilane-barrel,angels-fluid-control-angels-silicon +, recipe,empty-barrel,1,liquid-trichlorosilane,50 +, product,liquid-trichlorosilane-barrel,1 +empty-liquid-tungstic-acid-barrel,angels-fluid-control-angels-tungsten +, recipe,empty-canister,1,liquid-tungstic-acid,50 +, product,liquid-tungstic-acid-barrel,1 +empty-nitrogen-dioxide-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-nitrogen-dioxide,50 +, product,nitrogen-dioxide-barrel,1 +empty-oxygen-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-oxygen,50 +, product,oxygen-barrel,1 +empty-tungstic-acid-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,liquid-tungstic-acid,50 +, product,tungstic-acid-barrel,1 +empty-water-light-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,empty-barrel,1,water-light-mud,50 +, product,water-light-mud-barrel,1 +empty-water-mineralized-barrel,angels-fluid-control-water-treatment-fluid +, recipe,empty-barrel,1,water-mineralized,50 +, product,water-mineralized-barrel,1 +empty-water-red-waste-barrel,angels-fluid-control-water-cleaning-fluid +, recipe,empty-barrel,1,water-red-waste,50 +, product,water-red-waste-barrel,1 +angels-chemical-furnace-4,angels-chemical-furnace +, recipe,angels-chemical-furnace-4,1 +, product,angels-chemical-furnace-3,1,reinforced-concrete-brick,25,tungsten-plate,8,advanced-processing-unit,5,tungsten-pipe,30 +quartz-glass,angels-glass-casting +, recipe,glass,3 +, product,quartz,4 +angels-plate-glass-1,angels-glass-casting +, recipe,glass,3 +, product,liquid-molten-glass,40 +angels-plate-glass-2,angels-glass-casting +, recipe,glass,4,lead-oxide,2 +, product,liquid-molten-glass,40,liquid-molten-lead,20 +angels-plate-glass-3,angels-glass-casting +, recipe,glass,5,ingot-tin,2 +, product,liquid-molten-glass,40,liquid-molten-tin,20,gas-nitrogen,20 +angels-repair-roboport-vequip,angels-vehicle-equipment +, recipe,angels-repair-roboport-vequip,1 +, product,iron-plate,20,steel-plate,20,advanced-circuit,20 +angels-solder-mixture-smelting,angels-solder-casting +, recipe,solder,2 +, product,angels-solder-mixture,2 +angels-solder,angels-solder-casting +, recipe,solder,6 +, product,liquid-molten-solder,40 +angels-roll-solder-converting,angels-solder-casting +, recipe,solder,12 +, product,angels-roll-solder,4 +angelsore-crushed-mix4-processing,ore-sorting-advanced +, recipe,tin-ore,4 +, product,catalysator-brown,1,angels-ore3-crushed,2,angels-ore6-crushed,2 +angelsore4-chunk-processing,ore-sorting-t2 +, recipe,slag,1,copper-ore,2,iron-ore,1,lead-ore,1,bauxite-ore,1 +, product,angels-ore4-chunk,6 +angelsore4-chunk,ore-processing-b +, recipe,angels-ore4-chunk,2,geode-lightgreen,1,water-green-waste,50 +, product,angels-ore4-crushed,2,water-purified,50 +angelsore4-crushed-processing,ore-sorting-t1 +, recipe,slag,1,copper-ore,2,iron-ore,1 +, product,angels-ore4-crushed,4 +angelsore4-crushed,ore-processing-a +, recipe,angels-ore4-crushed,2,stone-crushed,1 +, product,angels-ore4,2 +angelsore4-crystal-processing,ore-sorting-t3 +, recipe,slag,1,copper-ore,3,iron-ore,1,lead-ore,1,bauxite-ore,1,rutile-ore,1 +, product,angels-ore4-crystal,8 +angelsore4-crystal,ore-processing-c +, recipe,angels-ore4-crystal,2 +, product,angels-ore4-chunk,2,liquid-hydrochloric-acid,10 +angelsore4-pure-processing,ore-sorting-t4 +, recipe,copper-ore,3,iron-ore,2,lead-ore,1,bauxite-ore,1,rutile-ore,1,cobalt-ore,1 +, product,angels-ore4-pure,9 +angelsore4-pure,ore-processing-d +, recipe,angels-ore4-pure,4 +, product,angels-ore4-crystal,4 +pellet-copper-smelting,angels-copper +, recipe,anode-copper,24 +, product,pellet-copper,8,gas-oxygen,60 +blast-furnace-4,angels-blast-furnace +, recipe,blast-furnace-4,1 +, product,blast-furnace-3,1,reinforced-concrete-brick,50,titanium-plate,16,processing-unit,3,titanium-pipe,15 +alien-artifact-blue-from-basic,bio-processing-alien-large-convert +, recipe,alien-artifact-blue,5 +, product,alien-artifact-blue,1,alien-artifact,5 +alien-artifact-blue-from-small,bio-processing-alien-large +, recipe,alien-artifact-blue,1 +, product,small-alien-artifact-blue,25 +alien-pre-artifact-blue,bio-processing-alien-pre +, recipe,alien-pre-artifact-blue,1 +, product,seeded-dish,1,paste-cobalt,1,sapphire-4,1 +small-alien-artifact-blue,bio-processing-alien-small +, recipe,small-alien-artifact-blue,1 +, product,alien-pre-artifact-blue,1 +crawler-bot-wagon,angels-vehicle-train-crawler +, recipe,crawler-bot-wagon,1 +, product,steel-plate,20,iron-gear-wheel,25,electronic-circuit,15,cargo-wagon,1 +crawler-bot-wagon-2,angels-vehicle-train-crawler +, recipe,crawler-bot-wagon-2,1 +, product,steel-plate,25,iron-chest,5,crawler-bot-wagon,1,effectivity-module,2 +crawler-bot-wagon-3,angels-vehicle-train-crawler +, recipe,crawler-bot-wagon-3,1 +, product,low-density-structure,25,steel-chest,5,crawler-bot-wagon-2,1,effectivity-module-2,2 +crawler-bot-wagon-4,angels-vehicle-train-crawler +, recipe,crawler-bot-wagon-4,1 +, product,low-density-structure,35,logistic-chest-storage,5,crawler-bot-wagon-3,1,effectivity-module-3,2 +crawler-bot-wagon-5,angels-vehicle-train-crawler +, recipe,crawler-bot-wagon-5,1 +, product,rocket-control-unit,2,low-density-structure,50,logistic-chest-buffer,5,crawler-bot-wagon-4,1 +carbon-separation-2,petrochem-basics +, recipe,gas-carbon-dioxide,50 +, product,coal,1 +casting-machine-4,angels-casting-machine +, recipe,casting-machine-4,1 +, product,reinforced-concrete-brick,5,titanium-plate,12,casting-machine-3,1,titanium-gear-wheel,3,processing-unit,1,titanium-pipe,6 +catalyst-steam-cracking-butane,petrochem-cracking +, recipe,catalyst-metal-carrier,1,gas-butadiene,80,gas-residual,20 +, product,catalyst-metal-green,1,liquid-naphtha,60,steam,60 +processed-nickel-smelting,angels-nickel +, recipe,cathode-nickel,12 +, product,processed-nickel,4,liquid-sulfuric-acid,60 +chemical-science-pack,science-pack +, recipe,chemical-science-pack,2 +, product,solid-sodium-hydroxide,2,sulfur,1,engine-unit,2,advanced-circuit,3 +angels-clay-brick-raw,angels-stone +, recipe,clay-brick-raw,4 +, product,solid-lime,2,solid-clay,4,solid-sand,2 +coke-purification,petrochem-coal +, recipe,solid-carbon,3 +, product,solid-coke,2,steam,30 +coke-purification-2,petrochem-coal +, recipe,solid-carbon,6,solid-sodium-carbonate,1,water,10 +, product,solid-coke,4,solid-sodium-hydroxide,1,gas-nitrogen,30 +robot-brain-combat,angels-robot-a +, recipe,robot-brain-combat,1 +, product,solder,5,basic-circuit-board,1,basic-electronic-components,8 +robot-brain-combat-2,angels-robot-b +, recipe,robot-brain-combat-2,1 +, product,solder,5,circuit-board,1,basic-electronic-components,10,electronic-components,2 +robot-brain-combat-3,angels-robot-c +, recipe,robot-brain-combat-3,1 +, product,solder,5,superior-circuit-board,1,basic-electronic-components,4,electronic-components,2,intergrated-electronics,1 +robot-brain-combat-4,angels-robot-d +, recipe,robot-brain-combat-4,1 +, product,solder,5,multi-layer-circuit-board,1,basic-electronic-components,2,electronic-components,4,intergrated-electronics,2,processing-electronics,1 +robot-tool-combat,angels-robot-a +, recipe,robot-tool-combat,1 +, product,steel-plate,1,steel-gear-wheel,5 +robot-tool-combat-2,angels-robot-b +, recipe,robot-tool-combat-2,1 +, product,glass,1,brass-alloy,1,battery,1,brass-gear-wheel,2 +robot-tool-combat-3,angels-robot-c +, recipe,robot-tool-combat-3,1 +, product,titanium-plate,1,lithium-ion-battery,1,titanium-gear-wheel,2,emerald-5,1 +robot-tool-combat-4,angels-robot-d +, recipe,robot-tool-combat-4,1 +, product,silicon-nitride,1,silver-zinc-battery,1,nitinol-gear-wheel,2,diamond-5,1 +bob-laser-robot,angels-robot-d +, recipe,bob-laser-robot,1 +, product,destroyer-robot,1,flying-robot-frame-4,1,robot-brain-combat-4,1,robot-tool-combat-4,1 +defender-robot,angels-robot-a +, recipe,defender-robot,1 +, product,flying-robot-frame,1,robot-brain-combat,1,robot-tool-combat,1 +destroyer-robot,angels-robot-c +, recipe,destroyer-robot,1 +, product,distractor-robot,1,flying-robot-frame-3,1,robot-brain-combat-3,1,robot-tool-combat-3,1 +distractor-robot,angels-robot-b +, recipe,distractor-robot,1 +, product,defender-robot,1,flying-robot-frame-2,1,robot-brain-combat-2,1,robot-tool-combat-2,1 +condensates-oil-refining,petrochem-carbon-oil-feed +, recipe,solid-oil-residual,1,liquid-mineral-oil,40,liquid-fuel-oil,30,liquid-naphtha,30 +, product,crude-oil,40,liquid-condensates,60 +angels-deuterium-fuel-cell,angels-power-nuclear-fuel-cell +, recipe,angels-deuterium-fuel-cell,1 +, product,zinc-plate,1,angels-muon-fusion-catalyst,1,gas-deuterium,600 +angels-deuterium-fuel-cell-reprocessing,angels-power-nuclear-fuel-cell +, recipe,slag,5,angels-muon-fusion-catalyst,4,angels-muon-fusion-catalyst,1 +, product,used-up-angels-deuterium-fuel-cell,5 +angels-advanced-deuterium-fuel-cell-reprocessing,angels-power-nuclear-fuel-cell +, recipe,slag,5,angels-muon-fusion-catalyst,10,water-greenyellow-waste,60 +, product,used-up-angels-deuterium-fuel-cell,10,liquid-hydrofluoric-acid,60 +electric-chemical-mixing-furnace,bob-smelting-machine +, recipe,electric-chemical-mixing-furnace,1 +, product,electric-mixing-furnace,1,tungsten-plate,10,invar-alloy,10,processing-unit,5,tungsten-pipe,5 +electric-chemical-mixing-furnace-2,bob-smelting-machine +, recipe,electric-chemical-mixing-furnace-2,1 +, product,electric-chemical-mixing-furnace,1,tungsten-carbide,10,copper-tungsten-alloy,10,advanced-processing-unit,5,copper-tungsten-pipe,5 +electronics-machine-1,bob-assembly-machine +, recipe,electronics-machine-1,1 +, product,iron-plate,5,iron-gear-wheel,5,basic-circuit-board,5 +electronics-machine-2,bob-assembly-machine +, recipe,electronics-machine-2,1 +, product,electronics-machine-1,1,steel-plate,5,steel-gear-wheel,5,steel-bearing,5,advanced-circuit,5 +electronics-machine-3,bob-assembly-machine +, recipe,electronics-machine-3,1 +, product,electronics-machine-2,1,titanium-plate,5,titanium-gear-wheel,5,titanium-bearing,5,processing-unit,5 +laser-rifle-battery-emerald,angels-electric-c +, recipe,laser-rifle-battery-emerald,1 +, product,lithium-ion-battery,4,laser-rifle-battery-case,1,emerald-5,1 +enriched-fuel-from-hydrazine,bob-resource-chemical +, recipe,enriched-fuel,1 +, product,solid-fuel,1,gas-hydrazine,100 +bob-flame-rocket,angels-explosion-bb +, recipe,bob-flame-rocket,1 +, product,flame-rocket-warhead,1,rocket-body,1 +flame-bullet,angels-physical-ad +, recipe,flame-bullet,1 +, product,flame-bullet-projectile,1,cordite,1,bullet-casing,1 +flame-bullet-magazine,angels-physical-ae +, recipe,flame-bullet-magazine,1 +, product,flame-bullet,5,magazine,1 +flame-bullet-projectile,angels-physical-ac +, recipe,flame-bullet-projectile,2 +, product,copper-plate,1,alien-fire,10 +flame-rocket-warhead,angels-explosion-ba +, recipe,flame-rocket-warhead,1 +, product,steel-plate,1,alien-fire,20 +shotgun-flame-shell,angels-physical-bb +, recipe,shotgun-flame-shell,1 +, product,cordite,1,shotgun-shell-casing,1,alien-fire,10 +gas-benzene-catalyst,petrochem-feedstock +, recipe,catalyst-metal-carrier,1,gas-benzene,100 +, product,catalyst-metal-green,1,gas-methane,100 +gas-hydrogen-chloride-separation,petrochem-chlorine +, recipe,gas-chlorine,50,gas-hydrogen,50 +, product,gas-hydrogen-chloride,100 +geode-lightgreen-liquify,liquifying +, recipe,crystal-slurry,50 +, product,geode-lightgreen,5,liquid-sulfuric-acid,15 +geode-lightgreen-processing,geode-processing-1 +, recipe,crystal-dust,3,stone-crushed,2 +, product,geode-lightgreen,2 +crystal-full-harmonic,bio-biter-processing-crystal-full +, recipe,crystal-full-harmonic,1 +, product,crystal-full-blue,1,crystal-full-red,1,crystal-full-green,1 +crystal-shard-harmonic,bio-biter-processing-crystal-shard +, recipe,crystal-shard-harmonic,1 +, product,crystal-shard-blue,1,crystal-shard-red,1,crystal-shard-green,1 +crystal-splinter-harmonic,bio-biter-processing-crystal-splinter +, recipe,crystal-splinter-harmonic,1 +, product,crystal-splinter-blue,1,crystal-splinter-red,1,crystal-splinter-green,1 +induction-furnace-4,angels-induction-furnace +, recipe,induction-furnace-4,1 +, product,reinforced-concrete-brick,25,titanium-plate,20,induction-furnace-3,1,titanium-gear-wheel,9,processing-unit,5,titanium-pipe,12 +tin-ore-smelting,angels-tin +, recipe,ingot-tin,24 +, product,tin-ore,24 +processed-tin-smelting,angels-tin +, recipe,ingot-tin,24 +, product,processed-tin,8,solid-coke,2 +pellet-tin-smelting,angels-tin +, recipe,ingot-tin,24 +, product,pellet-tin,8,solid-carbon,2 +angels-invar-smelting-1,angels-alloys-casting +, recipe,liquid-molten-invar,360 +, product,ingot-steel,24,ingot-nickel,12 +angels-plate-invar,angels-alloys-casting +, recipe,invar-alloy,4 +, product,liquid-molten-invar,40 +invar-alloy,angels-alloys-casting +, recipe,invar-alloy,5 +, product,iron-plate,3,nickel-plate,2 +pellet-platinum-smelting,angels-platinum +, recipe,liquid-hexachloroplatinic-acid,60 +, product,pellet-platinum,4,liquid-hydrochloric-acid,30,liquid-nitric-acid,30 +liquid-naphtha-catalyst,petrochem-carbon-synthesis +, recipe,catalyst-metal-carrier,1,liquid-naphtha,100 +, product,catalyst-metal-red,1,gas-synthesis,150,gas-carbon-monoxide,50 +liquid-phenol-catalyst,petrochem-chemistry +, recipe,catalyst-metal-carrier,1,liquid-phenol,100 +, product,catalyst-metal-yellow,1,gas-benzene,100,gas-oxygen,100 +cumene-process,petrochem-chemistry +, recipe,catalyst-metal-carrier,1,liquid-phenol,60,gas-acetone,60 +, product,catalyst-metal-blue,1,gas-benzene,50,gas-propene,50,gas-oxygen,20 +liquid-sulfuric-acid,petrochem-sulfur +, recipe,liquid-sulfuric-acid,60 +, product,gas-sulfur-dioxide,90,water-purified,40 +titanium-ore-smelting,angels-titanium +, recipe,liquid-titanium-tetrachloride,120 +, product,rutile-ore,24,solid-carbon,6,gas-chlorine,60 +processed-titanium-smelting,angels-titanium +, recipe,liquid-titanium-tetrachloride,120 +, product,processed-titanium,8,solid-carbon,6,gas-chlorine,60 +processed-silicon-smelting,angels-silicon +, recipe,liquid-trichlorosilane,120,gas-hydrogen,30 +, product,processed-silica,8,gas-hydrogen-chloride,60 +tungsten-ore-smelting,angels-tungsten +, recipe,solid-calcium-chloride,2,liquid-tungstic-acid,60 +, product,tungsten-ore,12,gas-hydrogen-chloride,30 +loader,belt +, recipe,loader,1 +, product,iron-plate,5,iron-gear-wheel,5,electronic-circuit,5,transport-belt,5,inserter,5 +fast-loader,belt +, recipe,fast-loader,1 +, product,loader,1,fast-transport-belt,5 +express-loader,belt +, recipe,express-loader,1 +, product,fast-loader,1,express-transport-belt,5 +alien-processed-meat,bio-biter-butchery +, recipe,bio-alien-processed-meat,1 +, product,bio-raw-meat,1,alien-goo,2 +ore-crusher-3,ore-crusher +, recipe,ore-crusher-3,1 +, product,ore-crusher-2,1,aluminium-plate,12,concrete-brick,15,brass-gear-wheel,6 +ore-processing-machine-4,angels-processing-machine +, recipe,ore-processing-machine-4,1 +, product,ore-processing-machine-3,1,reinforced-concrete-brick,20,tungsten-plate,8,tungsten-gear-wheel,6 +ore-sorting-facility-4,ore-sorter +, recipe,ore-sorting-facility-4,1 +, product,ore-sorting-facility-3,1,reinforced-concrete-brick,60,titanium-plate,48,titanium-gear-wheel,24,processing-unit,12 +power-switch,circuit-network +, recipe,power-switch,1 +, product,copper-cable,5,iron-plate,5,electronic-circuit,2 +programmable-speaker,circuit-network +, recipe,programmable-speaker,1 +, product,copper-cable,5,iron-plate,3,iron-stick,4,electronic-circuit,4 +pellet-press-4,angels-pellet-press +, recipe,pellet-press-4,1 +, product,pellet-press-3,1,reinforced-concrete-brick,10,tungsten-carbide,8,nitinol-gear-wheel,12 +powder-mixer-4,angels-powder-mixer +, recipe,powder-mixer-4,1 +, product,powder-mixer-3,1,reinforced-concrete-brick,5,tungsten-plate,4,tungsten-gear-wheel,3 +radar,angels-artillery-a +, recipe,radar,1 +, product,iron-plate,10,iron-gear-wheel,5,basic-circuit-board,5 +radar-2,angels-artillery-a +, recipe,radar-2,1 +, product,steel-plate,10,steel-gear-wheel,5,electronic-circuit,5,radar,1 +radar-3,angels-artillery-a +, recipe,radar-3,1 +, product,aluminium-plate,10,brass-gear-wheel,5,steel-bearing,5,advanced-circuit,5,radar-2,1 +radar-4,angels-artillery-a +, recipe,radar-4,1 +, product,titanium-plate,10,titanium-gear-wheel,5,titanium-bearing,5,processing-unit,5,radar-3,1 +radar-5,angels-artillery-a +, recipe,radar-5,1 +, product,nitinol-alloy,10,nitinol-gear-wheel,5,nitinol-bearing,5,advanced-processing-unit,5,radar-4,1 +angels-atomic-bomb,angels-explosion-a +, recipe,atomic-bomb,1 +, product,rocket-booster,1,explosives,10,rocket-control-unit,10,plutonium-239,30 +angels-atomic-bomb-2,angels-explosion-a +, recipe,atomic-bomb,2 +, product,rocket-booster,1,explosives,20,rocket-control-unit,20,angels-muon-fusion-catalyst,1,gas-deuterium,3600 +salination-plant,water-treatment-building +, recipe,salination-plant,1 +, product,aluminium-plate,56,concrete-brick,75,advanced-circuit,12,brass-pipe,24 +sintering-oven-4,angels-sintering-oven +, recipe,sintering-oven-4,1 +, product,reinforced-concrete-brick,45,titanium-plate,32,processing-unit,5 +sintering-oven-5,angels-sintering-oven +, recipe,sintering-oven-5,1 +, product,reinforced-concrete-brick,45,tungsten-plate,32,sintering-oven-4,1,advanced-processing-unit,5 +solid-sodium-hydroxide-solid-sodium-sulfate,petrochem-sodium +, recipe,solid-sodium-sulfate,2,water-purified,60 +, product,solid-sodium-hydroxide,4,liquid-sulfuric-acid,80 +pellet-chrome-smelting,angels-chrome +, recipe,solid-chromate,24 +, product,pellet-chrome,8,solid-sodium-carbonate,7,gas-oxygen,60 +pellet-cobalt-smelting,angels-cobalt +, recipe,solid-cobalt-hydroxide,6 +, product,pellet-cobalt,2,liquid-sulfuric-acid,20 +solid-fuel-synthesis,petrochem-fuel +, recipe,solid-fuel,2 +, product,solid-coke,1,gas-synthesis,100 +processed-lead-smelting,angels-lead +, recipe,lead-oxide,24,gas-sulfur-dioxide,120 +, product,processed-lead,8,gas-oxygen,120 +solid-lithium,water-salination +, recipe,solid-lithium,20 +, product,thermal-water,1000 +manganese-processed-processing-alt,angels-manganese +, recipe,solid-manganese-oxide,6 +, product,processed-manganese,4,gas-synthesis,60 +pellet-manganese-smelting,angels-manganese +, recipe,solid-manganese-oxide,24 +, product,pellet-manganese,8,gas-natural-1,60 +processed-silver-smelting,angels-silver +, recipe,silver-nitrate,12 +, product,processed-silver,4,liquid-nitric-acid,60 +pellet-aluminium-smelting,angels-aluminium +, recipe,solid-sodium-aluminate,18 +, product,pellet-aluminium,6,solid-coke,3,solid-sodium-carbonate,3 +pellet-gold-smelting,angels-gold +, recipe,solid-sodium-gold-cyanide,18,solid-sodium-hydroxide,4 +, product,pellet-gold,6,solid-sodium-cyanide,4,water-purified,40,gas-oxygen,40 +zinc-ore-processing-alt,angels-zinc +, recipe,solid-zinc-oxide,8,gas-sulfur-dioxide,30 +, product,zinc-ore,8,gas-oxygen,60 +pellet-zinc-smelting,angels-zinc +, recipe,solid-zinc-oxide,24,gas-sulfur-dioxide,30 +, product,pellet-zinc,8,gas-oxygen,60 +stone-crushed,processing-crafting +, recipe,stone,1 +, product,stone-crushed,2 +strand-casting-machine-4,angels-strand-casting-machine +, recipe,strand-casting-machine-4,1 +, product,reinforced-concrete-brick,15,tungsten-plate,24,strand-casting-machine-3,1,tungsten-gear-wheel,12,advanced-processing-unit,3,tungsten-pipe,18 +defender-capsule,angels-exploration-troups +, recipe,defender-capsule,1 +, product,defender-robot,1 +distractor-capsule,angels-exploration-troups +, recipe,distractor-capsule,1 +, product,distractor-robot,3 +destroyer-capsule,angels-exploration-troups +, recipe,destroyer-capsule,1 +, product,destroyer-robot,5 +bob-laser-robot-capsule,angels-exploration-troups +, recipe,bob-laser-robot-capsule,1 +, product,bob-laser-robot,5 +yellow-waste-water-purification,water-cleaning +, recipe,sulfur,1,water-mineralized,20,water-purified,70 +, product,water-yellow-waste,100 +boiler-4,angels-power-steam-boiler +, recipe,boiler-4,1 +, product,tungsten-plate,5,boiler-3,1,ceramic-pipe,4 +heat-exchanger-4,angels-power-nuclear-heat-exchanger +, recipe,heat-exchanger-4,1 +, product,copper-tungsten-alloy,10,heat-pipe-4,4,heat-exchanger-3,1,copper-tungsten-pipe,4 +fill-liquid-raw-fish-oil-barrel,angels-fluid-control-bio-fish +, recipe,liquid-raw-fish-oil-barrel,1 +, product,empty-barrel,1,liquid-raw-fish-oil,50 +empty-liquid-raw-fish-oil-barrel,angels-fluid-control-bio-fish +, recipe,empty-barrel,1,liquid-raw-fish-oil,50 +, product,liquid-raw-fish-oil-barrel,1 +fill-liquid-fuel-oil-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-fuel-oil-barrel,1 +, product,empty-barrel,1,liquid-fuel-oil,50 +empty-liquid-fuel-oil-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-fuel-oil,50 +, product,liquid-fuel-oil-barrel,1 +fill-liquid-fuel-barrel,angels-fluid-control-bob-canister +, recipe,liquid-fuel-barrel,1 +, product,empty-canister,1,liquid-fuel,50 +empty-liquid-fuel-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,liquid-fuel,50 +, product,liquid-fuel-barrel,1 +fill-liquid-fish-oil-barrel,angels-fluid-control-bio-fish +, recipe,liquid-fish-oil-barrel,1 +, product,empty-barrel,1,liquid-fish-oil,50 +empty-liquid-fish-oil-barrel,angels-fluid-control-bio-fish +, recipe,empty-barrel,1,liquid-fish-oil,50 +, product,liquid-fish-oil-barrel,1 +fill-liquid-naphtha-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-naphtha-barrel,1 +, product,empty-barrel,1,liquid-naphtha,50 +empty-liquid-naphtha-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-naphtha,50 +, product,liquid-naphtha-barrel,1 +fill-liquid-mineral-oil-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-mineral-oil-barrel,1 +, product,empty-barrel,1,liquid-mineral-oil,50 +empty-liquid-mineral-oil-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-mineral-oil,50 +, product,liquid-mineral-oil-barrel,1 +lubricant,fluid-recipes +, recipe,lubricant,10 +, product,liquid-naphtha,10 +fill-lubricant-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,lubricant-barrel,1 +, product,empty-barrel,1,lubricant,50 +empty-lubricant-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,lubricant,50 +, product,lubricant-barrel,1 +fill-gas-synthesis-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-synthesis-barrel,1 +, product,gas-canister,1,gas-synthesis,50 +empty-gas-synthesis-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-synthesis,50 +, product,gas-synthesis-barrel,1 +void-deuterium,void +, recipe,void,1 +, product,gas-deuterium,20 +angels-logistic-chest-buffer,angels-chests-big +, recipe,angels-logistic-chest-buffer,1 +, product,iron-plate,10,advanced-circuit,5,angels-big-chest,1 +angels-warehouse-buffer,angels-warehouse +, recipe,angels-warehouse-buffer,1 +, product,steel-plate,20,advanced-circuit,20,angels-warehouse,1 +angelsore7-crystallization-2,bob-gems-crystallization +, recipe,topaz-ore,1 +, product,catalysator-green,1,crystal-seedling,50 +battery-mk5-equipment,angels-personal-equipment-power-c +, recipe,battery-mk5-equipment,1 +, product,alien-artifact-yellow,5,alien-artifact-purple,5,silver-zinc-battery,5,battery-mk4-equipment,2 +bio-plastic-1,bio-plastic +, recipe,liquid-plastic,15 +, product,liquid-cellulose-acetate,25,gas-acetone,25 +bio-refugium-biter,bio-processing-buildings-alien-a +, recipe,bio-refugium-biter,1 +, product,reinforced-concrete-brick,95,titanium-plate,40,processing-unit,4,stone-wall,4,titanium-pipe,33 +cobalt-oxide,bob-material-chemical +, recipe,cobalt-oxide,2 +, product,cobalt-ore,2,solid-limestone,1 +discharge-defense-equipment,angels-personal-equipment-combat-c +, recipe,discharge-defense-equipment,1 +, product,steel-plate,20,processing-unit,5,laser-turret,10 +electro-whinning-cell-2,ore-whinning +, recipe,electro-whinning-cell-2,1 +, product,electro-whinning-cell,1,reinforced-concrete-brick,20,titanium-plate,16,processing-unit,8,titanium-pipe,18 +energy-shield-mk5-equipment,angels-personal-equipment-combat-a +, recipe,energy-shield-mk5-equipment,1 +, product,alien-artifact-yellow,5,alien-artifact-purple,5,advanced-processing-unit,5,energy-shield-mk4-equipment,2,effectivity-module-6,1,productivity-module-6,1 +ethanol-to-ethylene-synthesis,bio-processor-fermentation +, recipe,gas-ethylene,50,water-yellow-waste,50 +, product,gas-ethanol,50,liquid-sulfuric-acid,50 +gas-ammonia,petrochem-nitrogen +, recipe,catalyst-metal-carrier,1,gas-ammonia,100 +, product,catalyst-metal-red,1,gas-hydrogen,50,gas-nitrogen,50 +gas-carbon-dioxide-from-wood,bio-processing-wood +, recipe,gas-carbon-dioxide,70 +, product,wood-pellets,1 +gas-dimethylhydrazine,petrochem-rocket +, recipe,gas-dimethylhydrazine,200,water-purified,50 +, product,gas-dimethylamine,200,gas-monochloramine,50 +gas-fractioning-condensates,petrochem-carbon-gas-feed +, recipe,gas-methane,30,gas-ethane,30,gas-butane,70,liquid-naphtha,20 +, product,liquid-ngl,100,liquid-condensates,50 +ground-water-pump,washing-building +, recipe,ground-water-pump,1 +, product,stone-brick,5,basic-circuit-board,2,pipe,6 +hydrazine-generator,angels-power-fluid-generator +, recipe,hydrazine-generator,1 +, product,copper-tungsten-alloy,5,nitinol-alloy,10,nitinol-gear-wheel,10,nitinol-bearing,10,advanced-processing-unit,5,fluid-generator-3,1,copper-tungsten-pipe,5 +liquid-bisphenol-a,petrochem-chemistry +, recipe,liquid-bisphenol-a,100 +, product,liquid-phenol,60,gas-acetone,40,liquid-hydrochloric-acid,20 +logistic-chest-buffer,angels-chests-small-b +, recipe,logistic-chest-buffer,1 +, product,electronic-circuit,3,advanced-circuit,1,steel-chest,1 +logistic-chest-buffer-2,angels-chests-small-c +, recipe,logistic-chest-buffer-2,1 +, product,advanced-circuit,3,processing-unit,1,brass-chest,1 +logistic-chest-buffer-3,angels-chests-small-d +, recipe,logistic-chest-buffer-3,1 +, product,processing-unit,3,advanced-processing-unit,1,titanium-chest,1 +paste-cobalt,bio-processing-paste +, recipe,paste-cobalt,1 +, product,powder-cobalt,2,paste-cellulose,1 +personal-laser-defense-equipment-5,angels-personal-equipment-combat-b +, recipe,personal-laser-defense-equipment-5,1 +, product,nitinol-alloy,5,silver-zinc-battery,3,processing-unit,5,personal-laser-defense-equipment-4,1,topaz-5,1 +residual-oil-refining,petrochem-carbon-oil-feed +, recipe,solid-oil-residual,1,liquid-mineral-oil,60,liquid-fuel-oil,30,liquid-naphtha,10 +, product,crude-oil,60,gas-residual,40 +slag-processing-5,slag-processing-1 +, recipe,zinc-ore,1,rutile-ore,1 +, product,mineral-sludge,50 +solid-sand,water-washing-filtering +, recipe,solid-sand,5 +, product,water-thin-mud,10,water,25 +steam-engine-5,angels-power-steam-generator +, recipe,steam-engine-5,1 +, product,nitinol-alloy,5,nitinol-gear-wheel,5,nitinol-bearing,5,steam-engine-4,1,nitinol-pipe,5 +tungsten-oxide,bob-material-chemical +, recipe,tungsten-oxide,1 +, product,liquid-tungstic-acid,10 +vehicle-battery-5,angels-vehicle-equipment-bobpower-d +, recipe,vehicle-battery-5,1 +, product,alien-artifact-yellow,5,alien-artifact-purple,5,silver-zinc-battery,5,vehicle-battery-4,2 +vehicle-big-turret-5,angels-vehicle-equipment-bobcombat-c +, recipe,vehicle-big-turret-5,1 +, product,nitinol-alloy,20,alien-artifact-yellow,15,alien-artifact-purple,15,silver-zinc-battery,12,processing-unit,20,vehicle-big-turret-4,1 +vehicle-fusion-cell-5,angels-vehicle-equipment-bobpower-b +, recipe,vehicle-fusion-cell-5,1 +, product,alien-artifact-yellow,8,alien-artifact-purple,8,advanced-processing-unit,25,vehicle-fusion-cell-4,1,speed-module-6,1,effectivity-module-6,1,productivity-module-6,1 +vehicle-fusion-reactor-5,angels-vehicle-equipment-bobpower-c +, recipe,vehicle-fusion-reactor-5,1 +, product,alien-artifact-yellow,15,alien-artifact-purple,15,advanced-processing-unit,50,vehicle-fusion-reactor-4,1,speed-module-6,2,effectivity-module-6,2,productivity-module-6,2 +vehicle-laser-defense-5,angels-vehicle-equipment-bobcombat-b +, recipe,vehicle-laser-defense-5,1 +, product,nitinol-alloy,5,silver-zinc-battery,3,processing-unit,5,vehicle-laser-defense-4,1,topaz-5,1 +vehicle-shield-5,angels-vehicle-equipment-bobcombat-a +, recipe,vehicle-shield-5,1 +, product,alien-artifact-yellow,5,alien-artifact-purple,5,advanced-processing-unit,5,vehicle-shield-4,2,effectivity-module-6,1,productivity-module-6,1 +vehicle-solar-panel-5,angels-vehicle-equipment-bobpower-a +, recipe,vehicle-solar-panel-5,1 +, product,gilded-copper-cable,5,silicon-wafer,10,nitinol-alloy,2,alien-artifact,10,advanced-processing-unit,5,vehicle-solar-panel-4,1 +washing-4,water-washing +, recipe,solid-mud,0 - 3,water-thin-mud,200 +, product,water-light-mud,200,water,50 +bob-topaz-3,bob-gems-raw +, recipe,topaz-3,1 +, product,topaz-ore,1 +bob-topaz-4,bob-gems-cut +, recipe,topaz-4,1 +, product,topaz-3,1,grinding-wheel,1,water,10 +bob-topaz-5,bob-gems-polished +, recipe,topaz-5,1 +, product,topaz-4,1,polishing-wheel,1,polishing-compound,1 +fill-gas-dinitrogen-tetroxide-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-dinitrogen-tetroxide-barrel,1 +, product,gas-canister,1,gas-dinitrogen-tetroxide,50 +fill-gas-epichlorhydrin-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-epichlorhydrin-barrel,1 +, product,gas-canister,1,gas-epichlorhydrin,50 +fill-gas-hydrogen-fluoride-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-hydrogen-fluoride-barrel,1 +, product,gas-canister,1,gas-hydrogen-fluoride,50 +fill-gas-hydrogen-peroxide-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-hydrogen-peroxide-barrel,1 +, product,gas-canister,1,gas-hydrogen-peroxide,50 +fill-gas-silane-barrel,angels-fluid-control-angels-silicon +, recipe,gas-silane-barrel,1 +, product,gas-canister,1,gas-silane,50 +fill-liquid-chlorauric-acid-barrel,angels-fluid-control-angels-gold +, recipe,liquid-chlorauric-acid-barrel,1 +, product,empty-canister,1,liquid-chlorauric-acid,50 +fill-liquid-green-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,liquid-green-liquor-barrel,1 +, product,empty-barrel,1,liquid-green-liquor,50 +fill-water-thin-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,water-thin-mud-barrel,1 +, product,empty-barrel,1,water-thin-mud,50 +empty-gas-dinitrogen-tetroxide-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-dinitrogen-tetroxide,50 +, product,gas-dinitrogen-tetroxide-barrel,1 +empty-gas-epichlorhydrin-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-canister,1,gas-epichlorhydrin,50 +, product,gas-epichlorhydrin-barrel,1 +empty-gas-hydrogen-fluoride-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,gas-canister,1,gas-hydrogen-fluoride,50 +, product,gas-hydrogen-fluoride-barrel,1 +empty-gas-hydrogen-peroxide-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-hydrogen-peroxide,50 +, product,gas-hydrogen-peroxide-barrel,1 +empty-gas-silane-barrel,angels-fluid-control-angels-silicon +, recipe,gas-canister,1,gas-silane,50 +, product,gas-silane-barrel,1 +empty-liquid-chlorauric-acid-barrel,angels-fluid-control-angels-gold +, recipe,empty-canister,1,liquid-chlorauric-acid,50 +, product,liquid-chlorauric-acid-barrel,1 +empty-liquid-green-liquor-barrel,angels-fluid-control-bio-liquor +, recipe,empty-barrel,1,liquid-green-liquor,50 +, product,liquid-green-liquor-barrel,1 +empty-water-thin-mud-barrel,angels-fluid-control-water-washing-fluid +, recipe,empty-barrel,1,water-thin-mud,50 +, product,water-thin-mud-barrel,1 +acid-bullet,angels-physical-ad +, recipe,acid-bullet,1 +, product,acid-bullet-projectile,1,cordite,1,bullet-casing,1 +acid-bullet-magazine,angels-physical-ae +, recipe,acid-bullet-magazine,1 +, product,acid-bullet,5,magazine,1 +acid-bullet-projectile,angels-physical-ac +, recipe,acid-bullet-projectile,2 +, product,copper-plate,1,alien-acid,10 +acid-rocket-warhead,angels-explosion-ba +, recipe,acid-rocket-warhead,1 +, product,steel-plate,1,alien-acid,20 +bob-acid-rocket,angels-explosion-bb +, recipe,bob-acid-rocket,1 +, product,acid-rocket-warhead,1,rocket-body,1 +shotgun-acid-shell,angels-physical-bb +, recipe,shotgun-acid-shell,1 +, product,cordite,1,shotgun-shell-casing,1,alien-acid,10 +advanced-logistic-science-pack,science-pack +, recipe,advanced-logistic-science-pack,3 +, product,brass-chest,2,flying-robot-frame,1,express-transport-belt,1,filter-inserter,1 +air-pump,bob-pump +, recipe,air-pump,1 +, product,iron-plate,2,iron-gear-wheel,2,electronic-circuit,2,copper-pipe,2 +air-pump-2,bob-pump +, recipe,air-pump-2,1 +, product,air-pump,1,steel-plate,2,steel-gear-wheel,4,advanced-circuit,3,bronze-pipe,2 +air-pump-3,bob-pump +, recipe,air-pump-3,1 +, product,air-pump-2,1,titanium-plate,2,titanium-gear-wheel,4,titanium-bearing,4,processing-unit,3,brass-pipe,2 +air-pump-4,bob-pump +, recipe,air-pump-4,1 +, product,air-pump-3,1,nitinol-alloy,2,electric-engine-unit,1,nitinol-gear-wheel,4,nitinol-bearing,4,advanced-processing-unit,3 +laser-rifle-battery-amethyst,angels-electric-c +, recipe,laser-rifle-battery-amethyst,1 +, product,lithium-ion-battery,4,laser-rifle-battery-case,1,amethyst-5,1 +angels-heavy-energy-shield-vequip,angels-vehicle-equipment +, recipe,angels-heavy-energy-shield-vequip,1 +, product,iron-plate,20,steel-plate,20,advanced-circuit,20 +angels-glass-fiber-board,angels-glass-casting +, recipe,fibreglass-board,4 +, product,angels-coil-glass-fiber,1,liquid-resin,40 +angelsore-chunk-mix1-processing,ore-sorting-advanced +, recipe,quartz,4 +, product,catalysator-green,1,angels-ore5-chunk,2,angels-ore6-chunk,2 +angelsore5-chunk-processing,ore-sorting-t2 +, recipe,slag,1,lead-ore,2,nickel-ore,1,bauxite-ore,1,quartz,1 +, product,angels-ore5-chunk,6 +angelsore5-chunk,ore-processing-b +, recipe,angels-ore5-chunk,2,geode-cyan,1,water-red-waste,50 +, product,angels-ore5-crushed,2,water-purified,50 +angelsore5-crushed-processing,ore-sorting-t1 +, recipe,slag,1,lead-ore,2,nickel-ore,1 +, product,angels-ore5-crushed,4 +angelsore5-crushed,ore-processing-a +, recipe,angels-ore5-crushed,2,stone-crushed,1 +, product,angels-ore5,2 +angelsore5-crystal-processing,ore-sorting-t3 +, recipe,slag,1,lead-ore,3,nickel-ore,1,bauxite-ore,1,quartz,1,gold-ore,1 +, product,angels-ore5-crystal,8 +angelsore5-crystal,ore-processing-c +, recipe,angels-ore5-crystal,2 +, product,angels-ore5-chunk,2,liquid-nitric-acid,10 +angelsore5-pure-processing,ore-sorting-t4 +, recipe,lead-ore,3,nickel-ore,2,bauxite-ore,1,quartz,1,gold-ore,1,uranium-ore,1 +, product,angels-ore5-pure,9 +angelsore5-pure,ore-processing-d +, recipe,angels-ore5-pure,4 +, product,angels-ore5-crystal,4 +pellet-lead-smelting,angels-lead +, recipe,anode-lead,24,gas-sulfur-dioxide,60 +, product,pellet-lead,8,solid-limestone,2,solid-coke,2,gas-oxygen,60 +solid-fuel-from-light-oil,petrochem-fuel +, recipe,solid-fuel,1 +, product,liquid-fuel-oil,10 +solid-fuel-from-petroleum-gas,petrochem-fuel +, recipe,solid-fuel,1 +, product,gas-methane,20 +solid-fuel-from-heavy-oil,petrochem-fuel +, recipe,solid-fuel,1 +, product,liquid-naphtha,20 +solid-fuel-from-hydrogen,petrochem-fuel +, recipe,solid-fuel,1 +, product,coal,1,gas-hydrogen,175 +catalyst-steam-cracking-naphtha,petrochem-cracking +, recipe,catalyst-metal-carrier,1,gas-propene,100 +, product,catalyst-metal-red,1,liquid-naphtha,100,steam,100 +processed-manganese-smelting,angels-manganese +, recipe,cathode-manganese,12 +, product,processed-manganese,4,liquid-sulfuric-acid,40 +solid-manganese-oxide-smelting,angels-manganese +, recipe,cathode-manganese,12,solid-iron-hydroxide,4 +, product,ingot-iron,4,solid-manganese-oxide,12,liquid-sulfuric-acid,40 +solid-zinc-oxide-smelting,angels-zinc +, recipe,cathode-zinc,12 +, product,solid-zinc-oxide,12,liquid-sulfuric-acid,40 +angels-clay-brick,angels-stone +, recipe,clay-brick,4 +, product,clay-brick-raw,4 +angels-cobalt-steel-smelting-1,angels-alloys-casting +, recipe,liquid-molten-cobalt-steel,360 +, product,ingot-cobalt,12,ingot-steel,24 +angels-plate-cobalt-steel,angels-alloys-casting +, recipe,cobalt-steel-alloy,4 +, product,liquid-molten-cobalt-steel,40 +cobalt-steel-alloy,angels-alloys-casting +, recipe,cobalt-steel-alloy,10 +, product,cobalt-plate,1,iron-plate,14 +bob-robot-gun-drone,angels-exploration-troups +, recipe,bob-robot-gun-drone,1 +, product,robot-brain-combat,1,gun-turret,1,robot-drone-frame,1 +bob-robot-laser-drone,angels-exploration-troups +, recipe,bob-robot-laser-drone,1 +, product,robot-brain-combat,1,laser-turret,1,robot-drone-frame,1 +bob-robot-flamethrower-drone,angels-exploration-troups +, recipe,bob-robot-flamethrower-drone,1 +, product,robot-brain-combat,1,flamethrower-turret,1,robot-drone-frame,1 +bob-robot-plasma-drone,angels-exploration-troups +, recipe,bob-robot-plasma-drone,1 +, product,robot-brain-combat,1,bob-plasma-turret-1,1,robot-drone-frame-large,1 +gas-chlor-methane,petrochem-chlorine +, recipe,gas-chlor-methane,100 +, product,gas-chlorine,60,gas-methane,40 +gas-propene-synthesis,petrochem-chemistry +, recipe,gas-propene,80,gas-residual,20 +, product,gas-methanol,100,steam,50 +pellet-silicon-smelting,angels-silicon +, recipe,alumina,6,gas-silane,120 +, product,ingot-aluminium,6,pellet-silica,8,gas-hydrogen,60 +gas-synthesis-methanol,petrochem-carbon-synthesis +, recipe,catalyst-metal-carrier,1,water-purified,20,gas-methanol,80 +, product,catalyst-metal-green,1,gas-synthesis,100,gas-carbon-dioxide,40 +geode-cyan-liquify,liquifying +, recipe,crystal-slurry,50 +, product,geode-cyan,5,liquid-sulfuric-acid,15 +geode-cyan-processing,geode-processing-1 +, recipe,crystal-dust,3,stone-crushed,2 +, product,geode-cyan,2 +greenyellow-waste-water-purification,water-cleaning +, recipe,fluorite-ore,1,water-mineralized,20,water-purified,70 +, product,water-greenyellow-waste,100 +copper-ore-smelting,angels-copper +, recipe,ingot-copper,24 +, product,copper-ore,24 +processed-copper-smelting,angels-copper +, recipe,ingot-copper,24 +, product,processed-copper,8,gas-oxygen,60 +anode-copper-smelting,angels-copper +, recipe,ingot-copper,12 +, product,anode-copper,12,liquid-sulfuric-acid,30 +iron-ore-smelting,angels-iron +, recipe,ingot-iron,24 +, product,iron-ore,24 +processed-iron-smelting,angels-iron +, recipe,ingot-iron,24 +, product,processed-iron,8,solid-coke,2 +pellet-iron-smelting,angels-iron +, recipe,ingot-iron,24 +, product,pellet-iron,8,solid-limestone,2,solid-coke,2 +solid-iron-hydroxide-smelting,angels-iron +, recipe,ingot-iron,6,gas-carbon-dioxide,20 +, product,solid-iron-hydroxide,6,solid-coke,2 +burner-inserter,bob-logistic-tier-0 +, recipe,burner-inserter,1 +, product,iron-plate,1,iron-gear-wheel,1 +steam-inserter,bob-logistic-tier-0 +, recipe,steam-inserter,1 +, product,burner-inserter,1,pipe,1 +inserter,bob-logistic-tier-1 +, recipe,inserter,1 +, product,iron-plate,1,iron-gear-wheel,1,basic-circuit-board,1 +yellow-filter-inserter,bob-logistic-tier-1 +, recipe,yellow-filter-inserter,1 +, product,electronic-circuit,4,inserter,1 +long-handed-inserter,bob-logistic-tier-2 +, recipe,long-handed-inserter,1 +, product,bronze-alloy,1,steel-gear-wheel,1,electronic-circuit,1,inserter,1 +red-filter-inserter,bob-logistic-tier-2 +, recipe,red-filter-inserter,1 +, product,bronze-alloy,1,steel-gear-wheel,1,electronic-circuit,1,yellow-filter-inserter,1 +red-stack-inserter,bob-logistic-tier-2 +, recipe,red-stack-inserter,1 +, product,bronze-alloy,3,steel-gear-wheel,5,long-handed-inserter,1 +red-stack-filter-inserter,bob-logistic-tier-2 +, recipe,red-stack-filter-inserter,1 +, product,electronic-circuit,5,red-stack-inserter,1 +fast-inserter,bob-logistic-tier-3 +, recipe,fast-inserter,1 +, product,aluminium-plate,1,cobalt-steel-gear-wheel,1,cobalt-steel-bearing,1,advanced-circuit,1,long-handed-inserter,1 +filter-inserter,bob-logistic-tier-3 +, recipe,filter-inserter,1 +, product,aluminium-plate,1,cobalt-steel-gear-wheel,1,cobalt-steel-bearing,1,advanced-circuit,5,red-filter-inserter,1 +stack-inserter,bob-logistic-tier-3 +, recipe,stack-inserter,1 +, product,aluminium-plate,4,cobalt-steel-gear-wheel,6,cobalt-steel-bearing,5,advanced-circuit,1,red-stack-inserter,1 +stack-filter-inserter,bob-logistic-tier-3 +, recipe,stack-filter-inserter,1 +, product,aluminium-plate,4,cobalt-steel-gear-wheel,6,cobalt-steel-bearing,6,advanced-circuit,6,red-stack-filter-inserter,1 +turbo-inserter,bob-logistic-tier-4 +, recipe,turbo-inserter,1 +, product,titanium-plate,1,titanium-gear-wheel,1,titanium-bearing,1,processing-unit,1,fast-inserter,1 +turbo-filter-inserter,bob-logistic-tier-4 +, recipe,turbo-filter-inserter,1 +, product,titanium-plate,1,titanium-gear-wheel,1,titanium-bearing,1,processing-unit,5,filter-inserter,1 +turbo-stack-inserter,bob-logistic-tier-4 +, recipe,turbo-stack-inserter,1 +, product,titanium-plate,4,titanium-gear-wheel,6,titanium-bearing,6,processing-unit,1,stack-inserter,1 +turbo-stack-filter-inserter,bob-logistic-tier-4 +, recipe,turbo-stack-filter-inserter,1 +, product,titanium-plate,4,titanium-gear-wheel,6,titanium-bearing,6,processing-unit,6,stack-filter-inserter,1 +express-inserter,bob-logistic-tier-5 +, recipe,express-inserter,1 +, product,nitinol-alloy,1,nitinol-gear-wheel,1,nitinol-bearing,1,advanced-processing-unit,1,turbo-inserter,1 +express-filter-inserter,bob-logistic-tier-5 +, recipe,express-filter-inserter,1 +, product,nitinol-alloy,1,nitinol-gear-wheel,1,nitinol-bearing,1,advanced-processing-unit,5,turbo-filter-inserter,1 +express-stack-inserter,bob-logistic-tier-5 +, recipe,express-stack-inserter,1 +, product,nitinol-alloy,4,nitinol-gear-wheel,6,nitinol-bearing,6,advanced-processing-unit,1,turbo-stack-inserter,1 +express-stack-filter-inserter,bob-logistic-tier-5 +, recipe,express-stack-filter-inserter,1 +, product,nitinol-alloy,4,nitinol-gear-wheel,6,nitinol-bearing,6,advanced-processing-unit,6,turbo-stack-filter-inserter,1 +landfill,processing-crafting +, recipe,landfill,1 +, product,stone,20 +liquid-chlorauric-acid,angels-gold +, recipe,liquid-chlorauric-acid,120 +, product,ingot-gold,12,liquid-nitric-acid,30,liquid-hydrochloric-acid,30 +liquid-hydrofluoric-acid,petrochem-sulfur +, recipe,solid-calcium-sulfate,1,liquid-hydrofluoric-acid,50 +, product,fluorite-ore,5,liquid-sulfuric-acid,50 +liquid-hydrogen-fluoride,petrochem-sulfur +, recipe,liquid-hydrofluoric-acid,60 +, product,gas-hydrogen-fluoride,90,water-purified,40 +gas-hydrogen-fluoride,petrochem-sulfur +, recipe,gas-hydrogen-fluoride,55,water-greenyellow-waste,50 +, product,liquid-hydrofluoric-acid,50 +solid-sodium-carbonate-electrolysis,petrochem-sodium +, recipe,angels-electrode-used,1,liquid-aqueous-sodium-hydroxide,50,gas-carbon-dioxide,50 +, product,solid-sodium-carbonate,5,angels-electrode,1,water-purified,50 +liquid-aqueous-sodium-hydroxide,petrochem-sodium +, recipe,liquid-aqueous-sodium-hydroxide,50 +, product,solid-sodium-hydroxide,5,water-purified,50 +pellet-coke,petrochem-coal +, recipe,pellet-coke,1 +, product,solid-coke,5 +powder-tin,angels-tin +, recipe,powder-tin,1 +, product,ingot-tin,1 +crystal-powder-full-blue,bio-biter-processing-crystal-full +, recipe,crystal-powder,15,milling-drum-used,1 +, product,milling-drum,1,crystal-full-blue-cut,5 +crystal-powder-shard-blue,bio-biter-processing-crystal-shard +, recipe,crystal-powder,10,milling-drum-used,1 +, product,milling-drum,1,crystal-shard-blue-cut,5 +crystal-powder-splinter-blue,bio-biter-processing-crystal-splinter +, recipe,crystal-powder,5,milling-drum-used,1 +, product,milling-drum,1,crystal-splinter-blue-cut,5 +crystal-powder-full-red,bio-biter-processing-crystal-full +, recipe,crystal-powder,15,milling-drum-used,1 +, product,milling-drum,1,crystal-full-red-cut,5 +crystal-powder-shard-red,bio-biter-processing-crystal-shard +, recipe,crystal-powder,10,milling-drum-used,1 +, product,milling-drum,1,crystal-shard-red-cut,5 +crystal-powder-splinter-red,bio-biter-processing-crystal-splinter +, recipe,crystal-powder,5,milling-drum-used,1 +, product,milling-drum,1,crystal-splinter-red-cut,5 +crystal-powder-full-green,bio-biter-processing-crystal-full +, recipe,crystal-powder,15,milling-drum-used,1 +, product,milling-drum,1,crystal-full-green-cut,5 +crystal-powder-shard-green,bio-biter-processing-crystal-shard +, recipe,crystal-powder,10,milling-drum-used,1 +, product,milling-drum,1,crystal-shard-green-cut,5 +crystal-powder-splinter-green,bio-biter-processing-crystal-splinter +, recipe,crystal-powder,5,milling-drum-used,1 +, product,milling-drum,1,crystal-splinter-green-cut,5 +production-science-pack,science-pack +, recipe,production-science-pack,3 +, product,electric-furnace,1,assembling-machine-2,1,angels-chemical-plant,1 +alien-artifact-purple-from-basic,bio-processing-alien-large-convert +, recipe,alien-artifact-purple,5 +, product,alien-artifact-purple,1,alien-artifact,5 +alien-artifact-purple-from-small,bio-processing-alien-large +, recipe,alien-artifact-purple,1 +, product,small-alien-artifact-purple,25 +alien-pre-artifact-purple,bio-processing-alien-pre +, recipe,alien-pre-artifact-purple,1 +, product,seeded-dish,1,paste-titanium,1,amethyst-4,1 +small-alien-artifact-purple,bio-processing-alien-small +, recipe,small-alien-artifact-purple,1 +, product,alien-pre-artifact-purple,1 +salination-plant-2,water-treatment-building +, recipe,salination-plant-2,1 +, product,reinforced-concrete-brick,75,titanium-plate,56,salination-plant,1,processing-unit,12,titanium-pipe,24 +silver-oxide,angels-silver +, recipe,silver-oxide,1 +, product,silver-nitrate,1,solid-sodium-hydroxide,1 +bauxite-ore-smelting,angels-aluminium +, recipe,solid-aluminium-hydroxide,12 +, product,bauxite-ore,12,solid-sodium-hydroxide,3 +processed-aluminium-smelting,angels-aluminium +, recipe,solid-aluminium-hydroxide,12 +, product,processed-aluminium,4,solid-sodium-hydroxide,3 +liquid-hexachloroplatinic-acid-smelting,angels-platinum +, recipe,solid-ammonium-chloroplatinate,24 +, product,liquid-hexachloroplatinic-acid,120,gas-ammonium-chloride,60 +solid-calcium-chloride,petrochem-basics +, recipe,solid-calcium-chloride,3 +, product,stone-crushed,6,gas-hydrogen-chloride,30 +cobalt-ore-processing-alt,angels-cobalt +, recipe,cobalt-oxide,8 +, product,cobalt-ore,8,solid-limestone,3 +processed-cobalt-smelting,angels-cobalt +, recipe,cobalt-oxide,24 +, product,processed-cobalt,8,solid-limestone,6 +solid-cobalt-hydroxide-smelting,angels-cobalt +, recipe,cobalt-oxide,24 +, product,solid-cobalt-hydroxide,24,solid-calcium-chloride,6 +solid-chromate-smelting,angels-chrome +, recipe,solid-dichromate,12,solid-sodium-sulfate,1,water-purified,40 +, product,solid-chromate,12,liquid-sulfuric-acid,40 +solid-fuel-hydrazine,petrochem-fuel +, recipe,solid-fuel,2 +, product,gas-hydrazine,50 +pellet-nickel-smelting,angels-nickel +, recipe,solid-nickel-carbonyl,24 +, product,pellet-nickel,8,sulfur,1,gas-carbon-monoxide,60 +liquid-tungstic-acid-smelting,angels-tungsten +, recipe,tungsten-oxide,24,water-purified,60 +, product,liquid-tungstic-acid,120 +pellet-tungsten-smelting,angels-tungsten +, recipe,tungsten-oxide,12 +, product,pellet-tungsten,4,gas-ammonia,60 +liquid-titanium-tetrachloride-smelting,angels-titanium +, recipe,sponge-titanium,24 +, product,liquid-titanium-tetrachloride,120 +steam-cracking-naphtha,petrochem-cracking +, recipe,gas-synthesis,150,gas-residual,10 +, product,liquid-naphtha,100,steam,100 +liquid-toluene-from-naphtha,petrochem-feedstock +, recipe,catalyst-metal-carrier,1,liquid-toluene,100 +, product,catalyst-metal-green,1,liquid-naphtha,100,gas-hydrogen,100 +liquid-toluene-from-benzene,petrochem-feedstock +, recipe,catalyst-metal-carrier,1,liquid-toluene,100,gas-hydrogen-chloride,50 +, product,catalyst-metal-green,1,gas-benzene,100,gas-chlor-methane,50 +water-pump,bob-pump +, recipe,water-pump,1 +, product,iron-plate,2,iron-gear-wheel,2,electronic-circuit,2,copper-pipe,2 +water-pump-2,bob-pump +, recipe,water-pump-2,1 +, product,water-pump,1,steel-plate,2,steel-gear-wheel,4,advanced-circuit,3,bronze-pipe,2 +water-pump-3,bob-pump +, recipe,water-pump-3,1 +, product,water-pump-2,1,titanium-plate,2,titanium-gear-wheel,4,titanium-bearing,4,processing-unit,3,brass-pipe,2 +water-pump-4,bob-pump +, recipe,water-pump-4,1 +, product,water-pump-3,1,nitinol-alloy,2,electric-engine-unit,1,nitinol-gear-wheel,4,nitinol-bearing,4,advanced-processing-unit,3 +boiler-5,angels-power-steam-boiler +, recipe,boiler-5,1 +, product,copper-tungsten-alloy,5,boiler-4,1,copper-tungsten-pipe,4 +fill-liquid-toluene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-toluene-barrel,1 +, product,empty-barrel,1,liquid-toluene,50 +fill-lithia-water-barrel,angels-fluid-control-water-treatment-fluid +, recipe,lithia-water-barrel,1 +, product,empty-barrel,1,lithia-water,50 +empty-liquid-toluene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-toluene,50 +, product,liquid-toluene-barrel,1 +empty-lithia-water-barrel,angels-fluid-control-water-treatment-fluid +, recipe,empty-barrel,1,lithia-water,50 +, product,lithia-water-barrel,1 +fill-gas-butadiene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-butadiene-barrel,1 +, product,gas-canister,1,gas-butadiene,50 +empty-gas-butadiene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-butadiene,50 +, product,gas-butadiene-barrel,1 +fill-liquid-phenol-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-phenol-barrel,1 +, product,empty-barrel,1,liquid-phenol,50 +empty-liquid-phenol-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-phenol,50 +, product,liquid-phenol-barrel,1 +fill-liquid-ethylbenzene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-ethylbenzene-barrel,1 +, product,empty-barrel,1,liquid-ethylbenzene,50 +empty-liquid-ethylbenzene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-ethylbenzene,50 +, product,liquid-ethylbenzene-barrel,1 +fill-liquid-styrene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-styrene-barrel,1 +, product,empty-barrel,1,liquid-styrene,50 +empty-liquid-styrene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-styrene,50 +, product,liquid-styrene-barrel,1 +fill-gas-formaldehyde-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-formaldehyde-barrel,1 +, product,gas-canister,1,gas-formaldehyde,50 +fill-liquid-polyethylene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-polyethylene-barrel,1 +, product,empty-barrel,1,liquid-polyethylene,50 +empty-gas-formaldehyde-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-formaldehyde,50 +, product,gas-formaldehyde-barrel,1 +empty-liquid-polyethylene-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-polyethylene,50 +, product,liquid-polyethylene-barrel,1 +fill-liquid-glycerol-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-glycerol-barrel,1 +, product,empty-barrel,1,liquid-glycerol,50 +empty-liquid-glycerol-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-glycerol,50 +, product,liquid-glycerol-barrel,1 +fill-liquid-bisphenol-a-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-bisphenol-a-barrel,1 +, product,empty-barrel,1,liquid-bisphenol-a,50 +empty-liquid-bisphenol-a-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-bisphenol-a,50 +, product,liquid-bisphenol-a-barrel,1 +fill-gas-acetone-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-acetone-barrel,1 +, product,gas-canister,1,gas-acetone,50 +empty-gas-acetone-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-acetone,50 +, product,gas-acetone-barrel,1 +fill-gas-ethylene-oxide-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-ethylene-oxide-barrel,1 +, product,gas-canister,1,gas-ethylene-oxide,50 +empty-gas-ethylene-oxide-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,gas-canister,1,gas-ethylene-oxide,50 +, product,gas-ethylene-oxide-barrel,1 +fill-liquid-ethylene-carbonate-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,liquid-ethylene-carbonate-barrel,1 +, product,empty-barrel,1,liquid-ethylene-carbonate,50 +empty-liquid-ethylene-carbonate-barrel,angels-fluid-control-petrochem-carbon-fluids +, recipe,empty-barrel,1,liquid-ethylene-carbonate,50 +, product,liquid-ethylene-carbonate-barrel,1 +angels-logistic-chest-requester,angels-chests-big +, recipe,angels-logistic-chest-requester,1 +, product,iron-plate,10,electronic-circuit,5,angels-big-chest,1 +angels-warehouse-requester,angels-warehouse +, recipe,angels-warehouse-requester,1 +, product,steel-plate,20,electronic-circuit,20,angels-warehouse,1 +angelsore7-crystallization-6,bob-gems-crystallization +, recipe,diamond-ore,1 +, product,catalysator-green,1,crystal-seedling,50 +battery-mk6-equipment,angels-personal-equipment-power-c +, recipe,battery-mk6-equipment,1 +, product,alien-artifact-red,5,alien-artifact-green,5,advanced-processing-unit,5,battery-mk5-equipment,2 +bio-puffer-egg-shell-powder,bio-puffer-egg +, recipe,bio-puffer-egg-shell-powder,2,milling-drum-used,1 +, product,milling-drum,1,bio-puffer-egg-shell,2 +bio-refugium-hogger,bio-processing-buildings-alien-a +, recipe,bio-refugium-hogger,1 +, product,clay-brick,15,steel-plate,12,electronic-circuit,4,steel-pipe,33 +bio-tile,angels-stone +, recipe,bio-tile,5 - 10 +, product,solid-glass-mixture,1,concrete-brick,2,solid-soil,2,token-bio,1 +coolant-cool-100,coolant +, recipe,liquid-coolant-used,200,steam,50 +, product,liquid-coolant-used,200,water,50 +electro-whinning-cell-3,ore-whinning +, recipe,electro-whinning-cell-3,1 +, product,electro-whinning-cell-2,1,reinforced-concrete-brick,20,tungsten-plate,16,advanced-processing-unit,8,tungsten-pipe,18 +energy-shield-mk6-equipment,angels-personal-equipment-combat-a +, recipe,energy-shield-mk6-equipment,1 +, product,alien-artifact-red,5,alien-artifact-green,5,advanced-processing-unit,5,energy-shield-mk5-equipment,2,effectivity-module-8,1,productivity-module-8,1 +gas-ammonium-chloride,petrochem-nitrogen +, recipe,gas-ammonium-chloride,100 +, product,gas-ammonia,50,gas-hydrogen-chloride,50 +gas-dinitrogen-tetroxide,petrochem-rocket +, recipe,catalyst-metal-carrier,1,gas-dinitrogen-tetroxide,50 +, product,catalyst-metal-yellow,1,gas-nitrogen-dioxide,100 +gas-fractioning-residual,petrochem-carbon-gas-feed +, recipe,gas-methane,40,gas-ethane,40,gas-butane,50,liquid-toluene,20 +, product,liquid-ngl,100,gas-residual,50 +liquid-mineral-oil-catalyst,petrochem-carbon-oil-feed +, recipe,liquid-mineral-oil,100 +, product,liquid-naphtha,60,thermal-water,20,gas-carbon-monoxide,20 +liquid-propionic-acid-catalyst,bio-plastic +, recipe,catalyst-metal-carrier,1,liquid-propionic-acid,50 +, product,catalyst-metal-green,1,gas-ethylene,50,gas-carbon-monoxide,50,water-purified,50 +logistic-chest-requester,angels-chests-small-b +, recipe,logistic-chest-requester,1 +, product,electronic-circuit,3,advanced-circuit,1,steel-chest,1 +logistic-chest-requester-2,angels-chests-small-c +, recipe,logistic-chest-requester-2,1 +, product,advanced-circuit,3,processing-unit,1,brass-chest,1 +logistic-chest-requester-3,angels-chests-small-d +, recipe,logistic-chest-requester-3,1 +, product,processing-unit,3,advanced-processing-unit,1,titanium-chest,1 +paste-titanium,bio-processing-paste +, recipe,paste-titanium,1 +, product,powder-titanium,2,paste-cellulose,1 +personal-laser-defense-equipment-6,angels-personal-equipment-combat-b +, recipe,personal-laser-defense-equipment-6,1 +, product,nitinol-alloy,5,alien-artifact-red,5,alien-artifact-green,5,silver-zinc-battery,3,advanced-processing-unit,5,personal-laser-defense-equipment-5,1,diamond-5,1 +slag-processing-6,slag-processing-1 +, recipe,bauxite-ore,1,manganese-ore,1,chrome-ore,1 +, product,mineral-sludge,50 +steam-turbine,angels-power-steam-generator +, recipe,steam-turbine,1 +, product,aluminium-plate,25,cobalt-steel-gear-wheel,20,cobalt-steel-bearing,10,advanced-circuit,5,steam-engine-3,1 +vehicle-battery-6,angels-vehicle-equipment-bobpower-d +, recipe,vehicle-battery-6,1 +, product,alien-artifact-red,5,alien-artifact-green,5,advanced-processing-unit,5,vehicle-battery-5,2 +vehicle-big-turret-6,angels-vehicle-equipment-bobcombat-c +, recipe,vehicle-big-turret-6,1 +, product,nitinol-alloy,20,alien-artifact-red,15,alien-artifact-green,15,silver-zinc-battery,12,advanced-processing-unit,20,vehicle-big-turret-5,1 +vehicle-fusion-cell-6,angels-vehicle-equipment-bobpower-b +, recipe,vehicle-fusion-cell-6,1 +, product,alien-artifact-red,8,alien-artifact-green,8,advanced-processing-unit,25,vehicle-fusion-cell-5,1,speed-module-8,1,effectivity-module-8,1,productivity-module-8,1 +vehicle-fusion-reactor-6,angels-vehicle-equipment-bobpower-c +, recipe,vehicle-fusion-reactor-6,1 +, product,alien-artifact-red,15,alien-artifact-green,15,advanced-processing-unit,50,vehicle-fusion-reactor-5,1,speed-module-8,2,effectivity-module-8,2,productivity-module-8,2 +vehicle-laser-defense-6,angels-vehicle-equipment-bobcombat-b +, recipe,vehicle-laser-defense-6,1 +, product,nitinol-alloy,5,silver-zinc-battery,3,advanced-processing-unit,5,vehicle-laser-defense-5,1,diamond-5,1 +vehicle-shield-6,angels-vehicle-equipment-bobcombat-a +, recipe,vehicle-shield-6,1 +, product,alien-artifact-red,5,alien-artifact-green,5,advanced-processing-unit,5,vehicle-shield-5,2,effectivity-module-8,1,productivity-module-8,1 +vehicle-solar-panel-6,angels-vehicle-equipment-bobpower-a +, recipe,vehicle-solar-panel-6,1 +, product,gilded-copper-cable,5,silicon-wafer,10,nitinol-alloy,2,alien-artifact,10,advanced-processing-unit,5,vehicle-solar-panel-5,1,diamond-5,1 +washing-5,water-washing +, recipe,solid-mud,0 - 3,water-saline,200 +, product,water-thin-mud,200,water,50 +water-gas-shift-1,petrochem-basics +, recipe,gas-carbon-dioxide,50,gas-hydrogen,50 +, product,gas-carbon-monoxide,50,steam,50 +wood-charcoal,bio-processing-wood +, recipe,wood-charcoal,3 +, product,wood-pellets,2 +bob-diamond-3,bob-gems-raw +, recipe,diamond-3,1 +, product,diamond-ore,1 +bob-diamond-4,bob-gems-cut +, recipe,diamond-4,1 +, product,diamond-3,1,grinding-wheel,1,water,10 +bob-diamond-5,bob-gems-polished +, recipe,diamond-5,1 +, product,diamond-4,1,polishing-wheel,1,polishing-compound,1 +fill-gas-ammonium-chloride-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-ammonium-chloride-barrel,1 +, product,gas-canister,1,gas-ammonium-chloride,50 +fill-gas-carbon-monoxide-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-carbon-monoxide-barrel,1 +, product,gas-canister,1,gas-carbon-monoxide,50 +fill-gas-chlor-methane-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-chlor-methane-barrel,1 +, product,gas-canister,1,gas-chlor-methane,50 +fill-gas-tungsten-hexafluoride-barrel,angels-fluid-control-angels-tungsten +, recipe,gas-tungsten-hexafluoride-barrel,1 +, product,gas-canister,1,gas-tungsten-hexafluoride,50 +fill-liquid-hexafluorosilicic-acid-barrel,angels-fluid-control-angels-lead +, recipe,liquid-hexafluorosilicic-acid-barrel,1 +, product,empty-canister,1,liquid-hexafluorosilicic-acid,50 +fill-liquid-hydrofluoric-acid-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,liquid-hydrofluoric-acid-barrel,1 +, product,empty-canister,1,liquid-hydrofluoric-acid,50 +empty-gas-ammonium-chloride-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-ammonium-chloride,50 +, product,gas-ammonium-chloride-barrel,1 +empty-gas-carbon-monoxide-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-carbon-monoxide,50 +, product,gas-carbon-monoxide-barrel,1 +empty-gas-chlor-methane-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-canister,1,gas-chlor-methane,50 +, product,gas-chlor-methane-barrel,1 +empty-gas-tungsten-hexafluoride-barrel,angels-fluid-control-angels-tungsten +, recipe,gas-canister,1,gas-tungsten-hexafluoride,50 +, product,gas-tungsten-hexafluoride-barrel,1 +empty-liquid-hexafluorosilicic-acid-barrel,angels-fluid-control-angels-lead +, recipe,empty-canister,1,liquid-hexafluorosilicic-acid,50 +, product,liquid-hexafluorosilicic-acid-barrel,1 +empty-liquid-hydrofluoric-acid-barrel,angels-fluid-control-petrochem-sulfer-fluids +, recipe,empty-canister,1,liquid-hydrofluoric-acid,50 +, product,liquid-hydrofluoric-acid-barrel,1 +alien-blue-alloy,bob-alien-resource +, recipe,alien-blue-alloy,10 +, product,tungsten-plate,10,alien-artifact-blue,1 +alien-orange-alloy,bob-alien-resource +, recipe,alien-orange-alloy,10 +, product,steel-plate,10,alien-artifact-orange,1 +alien-acid,bob-alien-resource +, recipe,alien-acid,100 +, product,alien-artifact-purple,1,liquid-sulfuric-acid,100 +fill-alien-acid-barrel,angels-fluid-control-bob-canister +, recipe,alien-acid-barrel,1 +, product,empty-canister,1,alien-acid,50 +empty-alien-acid-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,alien-acid,50 +, product,alien-acid-barrel,1 +alien-explosive,bob-alien-resource +, recipe,alien-explosive,100 +, product,coal,6,sulfur,6,alien-artifact-yellow,1 +fill-alien-explosive-barrel,angels-fluid-control-bob-canister +, recipe,alien-explosive-barrel,1 +, product,empty-canister,1,alien-explosive,50 +empty-alien-explosive-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,alien-explosive,50 +, product,alien-explosive-barrel,1 +alien-poison,bob-alien-resource +, recipe,alien-poison,100 +, product,coal,6,alien-artifact-green,1,liquid-nitric-acid,60 +fill-alien-poison-barrel,angels-fluid-control-bob-canister +, recipe,alien-poison-barrel,1 +, product,empty-canister,1,alien-poison,50 +empty-alien-poison-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,alien-poison,50 +, product,alien-poison-barrel,1 +alien-fire,bob-alien-resource +, recipe,alien-fire,100 +, product,alien-artifact-red,1,liquid-naphtha,60,liquid-fuel-oil,60 +fill-alien-fire-barrel,angels-fluid-control-bob-canister +, recipe,alien-fire-barrel,1 +, product,empty-canister,1,alien-fire,50 +empty-alien-fire-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,alien-fire,50 +, product,alien-fire-barrel,1 +alumina,bob-material-chemical +, recipe,alumina,1 +, product,bauxite-ore,1,solid-sodium-hydroxide,1 +ammoniated-brine,bob-fluid +, recipe,ammoniated-brine,10 +, product,water-saline,10,gas-ammonia,25 +ammonium-chloride-recycling,bob-resource-chemical +, recipe,solid-calcium-chloride,1,gas-ammonia,50,water-purified,10 +, product,ammonium-chloride,2,solid-limestone,1 +angelsore-chunk-mix2-processing,ore-sorting-advanced +, recipe,nickel-ore,4 +, product,catalysator-green,1,angels-ore1-chunk,2,angels-ore5-chunk,2 +angelsore6-chunk-processing,ore-sorting-t2 +, recipe,slag,1,tin-ore,2,quartz,1,silver-ore,1,zinc-ore,1 +, product,angels-ore6-chunk,6 +angelsore6-chunk,ore-processing-b +, recipe,angels-ore6-chunk,2,geode-red,1,water-yellow-waste,50 +, product,angels-ore6-crushed,2,water-purified,50 +angelsore6-crushed-processing,ore-sorting-t1 +, recipe,slag,1,tin-ore,2,quartz,1 +, product,angels-ore6-crushed,4 +angelsore6-crushed,ore-processing-a +, recipe,angels-ore6-crushed,2,stone-crushed,1 +, product,angels-ore6,2 +angelsore6-crystal-processing,ore-sorting-t3 +, recipe,slag,1,tin-ore,3,quartz,1,silver-ore,1,zinc-ore,1,gold-ore,1 +, product,angels-ore6-crystal,8 +angelsore6-crystal,ore-processing-c +, recipe,angels-ore6-crystal,2 +, product,angels-ore6-chunk,2,liquid-sulfuric-acid,10 +angelsore6-pure-processing,ore-sorting-t4 +, recipe,tin-ore,3,quartz,2,silver-ore,1,zinc-ore,1,gold-ore,1,cobalt-ore,1 +, product,angels-ore6-pure,9 +angelsore6-pure,ore-processing-d +, recipe,angels-ore6-pure,4 +, product,angels-ore6-crystal,4 +brine,bob-fluid +, recipe,water-saline,10 +, product,solid-salt,1,water-purified,10 +calcium-chloride,bob-resource-chemical +, recipe,solid-calcium-chloride,1,gas-hydrogen,20 +, product,solid-limestone,1,gas-hydrogen-chloride,50 +steam-cracking-mineral-oil,petrochem-cracking +, recipe,gas-synthesis,100,gas-residual,10 +, product,liquid-mineral-oil,100,steam,100 +processed-gold-smelting,angels-gold +, recipe,cathode-gold,12 +, product,processed-gold,2,liquid-chlorauric-acid,60 +solid-sodium-gold-cyanide-smelting,angels-gold +, recipe,cathode-gold,12 +, product,solid-sodium-gold-cyanide,12 +coal-cracking-1,petrochem-coal +, recipe,solid-coke,6,gas-hydrogen-sulfide,50,gas-benzene,30,gas-methane,70 +, product,coal,5 +cooling-tower,boiler-building +, recipe,cooling-tower,1 +, product,clay-brick,50,bronze-alloy,30,electronic-circuit,5,bronze-pipe,15 +robot-drone-frame,angels-exploration-troups +, recipe,robot-drone-frame,1 +, product,steel-plate,10,electric-engine-unit,2,battery,6,steel-gear-wheel,10,steel-bearing,10,electronic-circuit,10 +robot-drone-frame-large,angels-exploration-troups +, recipe,robot-drone-frame-large,1 +, product,steel-plate,20,electric-engine-unit,2,battery,12,steel-gear-wheel,10,steel-bearing,10,electronic-circuit,10 +solid-tungsten-oxide-smelting,angels-tungsten +, recipe,gas-tungsten-hexafluoride,60 +, product,tungsten-oxide,12,gas-hydrogen-fluoride,30 +geode-red-liquify,liquifying +, recipe,crystal-slurry,20 +, product,geode-red,5,liquid-sulfuric-acid,15 +geode-red-processing,geode-processing-1 +, recipe,crystal-dust,1,stone-crushed,2 +, product,geode-red,2 +green-waste-water-purification,water-cleaning +, recipe,solid-salt,1,water-saline,20,water-purified,70 +, product,water-green-waste,100 +alien-artifact-green-from-basic,bio-processing-alien-large-convert +, recipe,alien-artifact-green,5 +, product,alien-artifact-green,1,alien-artifact,5 +alien-artifact-green-from-small,bio-processing-alien-large +, recipe,alien-artifact-green,1 +, product,small-alien-artifact-green,25 +alien-pre-artifact-green,bio-processing-alien-pre +, recipe,alien-pre-artifact-green,1 +, product,seeded-dish,1,paste-zinc,1,emerald-4,1 +small-alien-artifact-green,bio-processing-alien-small +, recipe,small-alien-artifact-green,1 +, product,alien-pre-artifact-green,1 +cobalt-ore-smelting,angels-cobalt +, recipe,ingot-cobalt,24 +, product,cobalt-ore,24,solid-carbon,6 +solid-cobalt-oxide-smelting,angels-cobalt +, recipe,ingot-cobalt,24 +, product,cobalt-oxide,24,solid-carbon,6 +manganese-ore-smelting,angels-manganese +, recipe,ingot-manganese,24 +, product,manganese-ore,24,solid-coke,6 +cathode-manganese-smelting,angels-manganese +, recipe,ingot-manganese,24 +, product,cathode-manganese,24 +nickel-ore-smelting,angels-nickel +, recipe,ingot-nickel,24 +, product,nickel-ore,24,gas-carbon-monoxide,60 +cathode-nickel-smelting,angels-nickel +, recipe,ingot-nickel,24 +, product,cathode-nickel,24 +solid-nickel-carbonyl-smelting,angels-nickel +, recipe,ingot-nickel,24 +, product,solid-nickel-carbonyl,18,ingot-nickel,6 +platinum-ore-smelting,angels-platinum +, recipe,ingot-platinum,24 +, product,platinum-ore,24 +processed-platinum-smelting,angels-platinum +, recipe,ingot-platinum,24 +, product,processed-platinum,8,liquid-sulfuric-acid,60 +solid-ammonium-chloroplatinate-smelting,angels-platinum +, recipe,ingot-platinum,24 +, product,solid-ammonium-chloroplatinate,24 +silicon-ore-smelting,angels-silicon +, recipe,ingot-silicon,24 +, product,quartz,24,solid-carbon,6 +liquid-trichlorosilane-smelting,angels-silicon +, recipe,ingot-silicon,24 +, product,ingot-silicon,6,liquid-trichlorosilane,90 +gas-silane-smelting,angels-silicon +, recipe,ingot-silicon,24 +, product,ingot-silicon,6,gas-silane,90 +ingot-iron-smelting,angels-iron +, recipe,ingot-steel,6 +, product,ingot-iron,24,gas-oxygen,60 +sponge-titanium-smelting,angels-titanium +, recipe,ingot-titanium,24 +, product,sponge-titanium,24 +pellet-titanium-smelting,angels-titanium +, recipe,ingot-titanium,24,solid-limestone,6 +, product,pellet-titanium,8,solid-carbon,6,solid-calcium-chloride,6 +zinc-ore-smelting,angels-zinc +, recipe,ingot-zinc,24,ingot-lead,6,gas-sulfur-dioxide,30 +, product,zinc-ore,24,gas-oxygen,60,liquid-molten-lead,60 +processed-zinc-smelting,angels-zinc +, recipe,ingot-zinc,24,gas-sulfur-dioxide,30 +, product,processed-zinc,8,solid-carbon,6,gas-oxygen,60 +cathode-zinc-smelting,angels-zinc +, recipe,ingot-zinc,24 +, product,cathode-zinc,24 +lead-oxide,bob-resource-chemical +, recipe,lead-oxide,1,gas-sulfur-dioxide,10 +, product,lead-ore,1,gas-oxygen,10 +lead-oxide-2,bob-resource-chemical +, recipe,lead-oxide,1,gas-hydrogen-sulfide,10 +, product,lead-ore,1,water,4 +silver-nitrate,bob-resource-chemical +, recipe,silver-nitrate,1 +, product,silver-plate,1,gas-nitrogen-dioxide,10 +limestone,bob-resource-chemical +, recipe,solid-limestone,1,gas-carbon-dioxide,25 +, product,stone,1 +liquid-hexafluorosilicic-acid,angels-lead +, recipe,liquid-hexafluorosilicic-acid,60 +, product,quartz,3,liquid-hydrofluoric-acid,30 +liquid-hydrochloric-acid,petrochem-chlorine +, recipe,liquid-hydrochloric-acid,50 +, product,gas-hydrogen-chloride,100,water-purified,50 +molten-tin-smelting,angels-tin-casting +, recipe,liquid-molten-tin,120 +, product,ingot-tin,12 +solid-sodium-hypochlorite,petrochem-sodium +, recipe,solid-sodium-hypochlorite,5 +, product,liquid-aqueous-sodium-hydroxide,50,gas-chlorine,200 +solid-sodium-chlorate,petrochem-sodium +, recipe,solid-sodium-chlorate,5 +, product,liquid-aqueous-sodium-hydroxide,50,gas-hydrogen-chloride,50 +solid-sodium-perchlorate,petrochem-sodium +, recipe,solid-sodium-perchlorate,5,catalyst-metal-carrier,1 +, product,solid-sodium-chlorate,5,catalyst-metal-blue,1,water-purified,50 +angels-nitinol-smelting-1,angels-alloys-casting +, recipe,liquid-molten-nitinol,360 +, product,ingot-nickel,12,ingot-titanium,24 +angels-plate-nitinol,angels-alloys-casting +, recipe,nitinol-alloy,4 +, product,liquid-molten-nitinol,40 +nitinol-alloy,angels-alloys-casting +, recipe,nitinol-alloy,5 +, product,nickel-plate,3,titanium-plate,2 +bob-poison-rocket,angels-explosion-bb +, recipe,bob-poison-rocket,1 +, product,poison-rocket-warhead,1,rocket-body,1 +poison-bullet,angels-physical-ad +, recipe,poison-bullet,1 +, product,poison-bullet-projectile,1,cordite,1,bullet-casing,1 +poison-bullet-magazine,angels-physical-ae +, recipe,poison-bullet-magazine,1 +, product,poison-bullet,5,magazine,1 +poison-bullet-projectile,angels-physical-ac +, recipe,poison-bullet-projectile,2 +, product,copper-plate,1,alien-poison,10 +poison-rocket-warhead,angels-explosion-ba +, recipe,poison-rocket-warhead,1 +, product,steel-plate,1,alien-poison,20 +shotgun-poison-shell,angels-physical-bb +, recipe,shotgun-poison-shell,1 +, product,cordite,1,shotgun-shell-casing,1,alien-poison,10 +powder-copper,angels-copper +, recipe,powder-copper,1 +, product,ingot-copper,1 +angels-rocket-defense-equipment-vequip,angels-vehicle-equipment +, recipe,angels-rocket-defense-equipment-vequip,1 +, product,iron-plate,20,steel-plate,20,advanced-circuit,20 +sodium-bicarbonate,bob-resource-chemical +, recipe,sodium-bicarbonate,1,ammonium-chloride,1 +, product,ammoniated-brine,10,gas-carbon-dioxide,25 +sodium-carbonate,bob-resource-chemical +, recipe,solid-sodium-carbonate,1,gas-carbon-dioxide,25,water-purified,10 +, product,sodium-bicarbonate,2 +solid-aluminium-hydroxide-smelting,angels-aluminium +, recipe,alumina,24 +, product,solid-aluminium-hydroxide,24 +solid-sodium-aluminate-smelting,angels-aluminium +, recipe,alumina,24,solid-sodium-carbonate,2 +, product,solid-sodium-aluminate,24,solid-sodium-hydroxide,3,gas-carbon-dioxide,60 +solid-dichromate-smelting,angels-chrome +, recipe,solid-chrome-oxide,24,solid-sodium-carbonate,3,gas-carbon-monoxide,30 +, product,solid-dichromate,24,solid-carbon,3 +pellet-silver-smelting,angels-silver +, recipe,solid-sodium-silver-cyanide,24,solid-sodium-hydroxide,4 +, product,pellet-silver,8,solid-sodium-cyanide,6,water-purified,60,gas-oxygen,60 +steam-cracking-gas-residual,petrochem-carbon-synthesis +, recipe,gas-synthesis,150 +, product,gas-residual,100,steam,100 +stone-brick,angels-stone +, recipe,stone-brick,1 +, product,stone,2 +sulfur-2,bob-resource-chemical +, recipe,sulfur,5 +, product,gas-sulfur-dioxide,50,gas-hydrogen,80 +sulfur-3,bob-resource-chemical +, recipe,sulfur,5 +, product,gas-hydrogen-sulfide,50,gas-oxygen,25 +laser-rifle-battery-topaz,angels-electric-c +, recipe,laser-rifle-battery-topaz,1 +, product,silver-zinc-battery,4,laser-rifle-battery-case,1,topaz-5,1 +utility-science-pack,science-pack +, recipe,utility-science-pack,4 +, product,silicon-nitride,4,electric-engine-unit,1,lithium-ion-battery,4,low-density-structure,3,titanium-bearing,4,processing-unit,6 +oil-boiler,angels-power-steam-boiler +, recipe,oil-boiler,1 +, product,boiler-2,1,steel-pipe,2 +fill-liquid-coolant-barrel,angels-fluid-control-water-treatment-fluid +, recipe,liquid-coolant-barrel,1 +, product,empty-barrel,1,liquid-coolant,50 +empty-liquid-coolant-barrel,angels-fluid-control-water-treatment-fluid +, recipe,empty-barrel,1,liquid-coolant,50 +, product,liquid-coolant-barrel,1 +angels-sulfur-scrubber,petrochem-sulfur +, recipe,filter-lime-used,1,water-yellow-waste,20 +, product,filter-lime,1,water,20 +angelsore8-anode-sludge,ore-processing-d +, recipe,slag,1,angels-ore8-anode-sludge,60,water-yellow-waste,20 +, product,angels-ore8-slime,60,liquid-ferric-chloride-solution,10 +angelsore8-crushed,ore-processing-a +, recipe,angels-ore8-crushed,6 +, product,angels-ore1-crushed,2,angels-ore2-crushed,2,angels-ore5-crushed,2 +angelsore8-crushed-processing,ore-sorting-t1 +, recipe,iron-ore,2,manganese-ore,2 +, product,angels-ore8-crushed,4 +angelsore8-crystal-processing,ore-sorting-t4 +, recipe,iron-ore,4,manganese-ore,2,nickel-ore,1,cobalt-ore,1,chrome-ore,1 +, product,angels-ore8-crystal,9 +angelsore8-powder-processing,ore-sorting-t2 +, recipe,iron-ore,3,manganese-ore,2,nickel-ore,1 +, product,angels-ore8-powder,6 +angelsore8-sludge,ore-processing-b +, recipe,angels-ore8-sludge,6 +, product,angels-ore8-powder,3,angels-ore1-chunk,1,angels-ore2-chunk,1,angels-ore5-chunk,1,thermal-water,20,liquid-sulfuric-acid,20 +angelsore8-solution,ore-processing-c +, recipe,angels-ore8-solution,60 +, product,angels-ore8-dust,3,angels-ore1-crystal,1,angels-ore2-crystal,1,angels-ore5-crystal,1,liquid-sulfuric-acid,20 +bio-plastic-2,bio-plastic +, recipe,liquid-plastic,25 +, product,cellulose-fiber,10,liquid-acetic-acid,25,liquid-propionic-acid,25 +carbon-dioxide,bob-fluid +, recipe,gas-carbon-dioxide,25 +, product,solid-carbon,1,gas-oxygen,25 +carbon-from-charcoal,bio-processing-wood +, recipe,solid-carbon,2 +, product,wood-charcoal,1,gas-oxygen,20 +condensates-refining,petrochem-carbon-gas-feed +, recipe,solid-coke,2,liquid-naphtha,50,gas-methane,30 +, product,liquid-condensates,60,thermal-water,20,gas-carbon-monoxide,20 +coolant-cool-200,coolant +, recipe,liquid-coolant-used,200,steam,50 +, product,liquid-coolant-used,200,water,50 +crystal-dust-liquify,liquifying +, recipe,crystal-slurry,50 +, product,crystal-dust,10,liquid-sulfuric-acid,15 +enriched-fuel-from-liquid-fuel,petrochem-fuel +, recipe,enriched-fuel,1 +, product,liquid-fuel,100 +gas-urea,petrochem-nitrogen +, recipe,gas-urea,80,water-purified,20 +, product,gas-ammonia,60,gas-carbon-dioxide,40 +liquid-hydrochloric-acid-solid-sodium-sulfate,petrochem-chlorine +, recipe,solid-sodium-sulfate,3,liquid-hydrochloric-acid,70 +, product,solid-salt,6,liquid-sulfuric-acid,120 +mineral-oil-lubricant,petrochem-carbon-oil-feed +, recipe,lubricant,50 +, product,liquid-mineral-oil,40,gas-residual,10 +paste-zinc,bio-processing-paste +, recipe,paste-zinc,1 +, product,powder-zinc,2,paste-cellulose,1 +slag-processing-7,slag-processing-1 +, recipe,angels-void,1 +, product,mineral-sludge,50 +solid-ammonium-nitrate,petrochem-rocket +, recipe,solid-ammonium-nitrate,3 +, product,gas-ammonia,100,liquid-nitric-acid,100 +steam-turbine-2,angels-power-steam-generator +, recipe,steam-turbine-2,1 +, product,titanium-plate,25,titanium-gear-wheel,25,titanium-bearing,15,processing-unit,5,steam-turbine,1,titanium-pipe,5 +water-gas-shift-2,petrochem-basics +, recipe,water-purified,50,gas-carbon-monoxide,50 +, product,gas-hydrogen,50,gas-carbon-dioxide,50 +grinding-wheel,bob-gems-cut +, recipe,grinding-wheel,2 +, product,silicon-carbide,5,steel-plate,1 +polishing-wheel,bob-gems-polished +, recipe,polishing-wheel,2 +, product,steel-plate,1,wood,5 +polishing-compound,bob-gems-polished +, recipe,polishing-compound,2 +, product,alumina,1,liquid-mineral-oil,15 +fill-gas-carbon-dioxide-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-carbon-dioxide-barrel,1 +, product,gas-canister,1,gas-carbon-dioxide,50 +fill-gas-urea-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-urea-barrel,1 +, product,gas-canister,1,gas-urea,50 +fill-liquid-perchloric-acid-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,liquid-perchloric-acid-barrel,1 +, product,empty-canister,1,liquid-perchloric-acid,50 +empty-gas-carbon-dioxide-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-carbon-dioxide,50 +, product,gas-carbon-dioxide-barrel,1 +empty-gas-urea-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-urea,50 +, product,gas-urea-barrel,1 +empty-liquid-perchloric-acid-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,empty-canister,1,liquid-perchloric-acid,50 +, product,liquid-perchloric-acid-barrel,1 +roll-tin-casting,angels-tin-casting +, recipe,angels-roll-tin,2 +, product,liquid-molten-tin,80,water,40 +roll-tin-casting-fast,angels-tin-casting +, recipe,angels-roll-tin,4,liquid-coolant-used,40 +, product,liquid-molten-tin,140,liquid-coolant,40 +angelsore-chunk-mix3-processing,ore-sorting-advanced +, recipe,bauxite-ore,4 +, product,catalysator-green,1,angels-ore2-chunk,2,angels-ore4-chunk,2 +alien-artifact-from-small,bio-processing-alien-large +, recipe,alien-artifact,1 +, product,small-alien-artifact,25 +alien-pre-artifact-base,bio-processing-alien-pre +, recipe,alien-pre-artifact-base,1 +, product,seeded-dish,1,paste-iron,1 +small-alien-artifact,bio-processing-alien-small +, recipe,small-alien-artifact,1 +, product,alien-pre-artifact-base,1 +silicon-powder,angels-silicon +, recipe,silicon-powder,1 +, product,ingot-silicon,1 +steam-cracking-fuel-oil,petrochem-cracking +, recipe,gas-synthesis,100,gas-residual,10 +, product,liquid-fuel-oil,100,steam,100 +solid-sodium-silver-cyanide-smelting,angels-silver +, recipe,cathode-silver,12 +, product,solid-sodium-silver-cyanide,12 +centrifuge,production-machine +, recipe,centrifuge,1 +, product,concrete,100,steel-plate,50,iron-gear-wheel,100,advanced-circuit,100 +centrifuge-2,production-machine +, recipe,centrifuge-2,1 +, product,centrifuge,1,silicon-nitride,100,titanium-plate,50,titanium-gear-wheel,100,titanium-bearing,50,processing-unit,100 +centrifuge-3,production-machine +, recipe,centrifuge-3,1 +, product,centrifuge-2,1,tungsten-carbide,100,nitinol-alloy,50,nitinol-gear-wheel,100,nitinol-bearing,50,advanced-processing-unit,100 +coal-cracking-2,petrochem-coal +, recipe,solid-coke,6,catalyst-metal-carrier,1,liquid-naphtha,60,liquid-ngl,30,liquid-mineral-oil,20 +, product,coal,5,catalyst-metal-red,1,gas-hydrogen,50 +laser-rifle-battery-diamond,angels-electric-c +, recipe,laser-rifle-battery-diamond,1 +, product,silver-zinc-battery,4,laser-rifle-battery-case,1,diamond-5,1 +bob-electric-rocket,angels-explosion-bb +, recipe,bob-electric-rocket,1 +, product,electric-rocket-warhead,1,rocket-body,1 +electric-bullet,angels-physical-ad +, recipe,electric-bullet,1 +, product,electric-bullet-projectile,1,cordite,1,bullet-casing,1 +electric-bullet-magazine,angels-physical-ae +, recipe,electric-bullet-magazine,1 +, product,electric-bullet,5,magazine,1 +electric-bullet-projectile,angels-physical-ac +, recipe,electric-bullet-projectile,2 +, product,copper-plate,1,alien-orange-alloy,1 +electric-rocket-warhead,angels-explosion-ba +, recipe,electric-rocket-warhead,1 +, product,steel-plate,1,alien-orange-alloy,2 +shotgun-electric-shell,angels-physical-bb +, recipe,shotgun-electric-shell,1 +, product,alien-orange-alloy,1,cordite,1,shotgun-shell-casing,1 +solid-aluminium-oxide-smelting,angels-aluminium +, recipe,ingot-aluminium,24 +, product,alumina,24,solid-carbon,3 +chrome-ore-smelting,angels-chrome +, recipe,ingot-chrome,24,gas-carbon-monoxide,60 +, product,chrome-ore,24,solid-carbon,3 +processed-chrome-smelting,angels-chrome +, recipe,ingot-chrome,24,gas-carbon-monoxide,60 +, product,processed-chrome,8,solid-carbon,3 +solid-chrome-oxide-smelting,angels-chrome +, recipe,ingot-chrome,24,solid-chrome-oxide,6 +, product,solid-chrome-oxide,24,ingot-chrome,6 +gold-ore-smelting,angels-gold +, recipe,ingot-gold,24 +, product,gold-ore,24,gas-chlorine,60 +cathode-gold-smelting,angels-gold +, recipe,ingot-gold,24 +, product,cathode-gold,24 +lead-ore-smelting,angels-lead +, recipe,ingot-lead,24,gas-sulfur-dioxide,60 +, product,lead-ore,24,gas-oxygen,60 +solid-lead-oxide-smelting,angels-lead +, recipe,ingot-lead,24 +, product,lead-oxide,24,solid-carbon,2 +anode-lead-smelting,angels-lead +, recipe,ingot-lead,12,slag,1 +, product,anode-lead,12,liquid-hexafluorosilicic-acid,30 +lab-2,production-machine +, recipe,lab-2,1 +, product,lab,1,advanced-circuit,10,express-transport-belt,4,filter-inserter,4 +lab-alien,production-machine +, recipe,lab-alien,1 +, product,lab,1,alien-artifact-orange,5,alien-artifact-blue,5,alien-artifact,10 +lab,production-machine +, recipe,lab,1 +, product,iron-gear-wheel,10,basic-circuit-board,10,basic-transport-belt,4 +lab-module,production-machine +, recipe,lab-module,1 +, product,lab,1,speed-processor,5,effectivity-processor,5,productivity-processor,5 +concrete-mixture-1,angels-stone-casting +, recipe,liquid-concrete,100 +, product,slag,4,solid-cement,8,water,100 +concrete-mixture-2,angels-stone-casting +, recipe,liquid-concrete,120 +, product,stone,3,solid-cement,6,solid-sand,3,water,100 +molten-copper-smelting,angels-copper-casting +, recipe,liquid-molten-copper,120 +, product,ingot-copper,12 +powder-cobalt,angels-cobalt +, recipe,powder-cobalt,1 +, product,ingot-cobalt,1 +powder-iron,angels-iron +, recipe,powder-iron,1 +, product,ingot-iron,1 +powder-manganese,angels-manganese +, recipe,powder-manganese,1 +, product,ingot-manganese,1 +powder-nickel,angels-nickel +, recipe,powder-nickel,1 +, product,ingot-nickel,1 +powder-platinum,angels-platinum +, recipe,powder-platinum,1 +, product,ingot-platinum,1 +powder-silicon,angels-silicon +, recipe,silicon-powder,1 +, product,ingot-silicon,1 +powder-titanium,angels-titanium +, recipe,powder-titanium,1 +, product,ingot-titanium,1 +powder-zinc,angels-zinc +, recipe,powder-zinc,1 +, product,ingot-zinc,1 +red-waste-water-purification,water-cleaning +, recipe,solid-sodium-nitrate,1,water-mineralized,20,water-purified,70 +, product,water-red-waste,100 +science-pack-gold,science-pack +, recipe,science-pack-gold,1 +, product,automation-science-pack,1,logistic-science-pack,1,military-science-pack,1,chemical-science-pack,1 +alien-science-pack,science-pack +, recipe,alien-science-pack,10 +, product,alien-artifact,1 +alien-science-pack-blue,science-pack +, recipe,alien-science-pack-blue,10 +, product,alien-artifact-blue,1 +alien-science-pack-orange,science-pack +, recipe,alien-science-pack-orange,10 +, product,alien-artifact-orange,1 +alien-science-pack-purple,science-pack +, recipe,alien-science-pack-purple,10 +, product,alien-artifact-purple,1 +alien-science-pack-yellow,science-pack +, recipe,alien-science-pack-yellow,10 +, product,alien-artifact-yellow,1 +alien-science-pack-green,science-pack +, recipe,alien-science-pack-green,10 +, product,alien-artifact-green,1 +alien-science-pack-red,science-pack +, recipe,alien-science-pack-red,10 +, product,alien-artifact-red,1 +processed-tungsten-smelting,angels-tungsten +, recipe,solid-ammonium-paratungstate,24 +, product,processed-tungsten,8,gas-ammonia,60 +steam-cracking-oil-residual,petrochem-carbon-synthesis +, recipe,gas-residual,100 +, product,solid-oil-residual,10,steam,100 +water-thermal-lithia,water-treatment +, recipe,lithia-water,40,water-purified,60 +, product,thermal-water,100 +oil-boiler-2,angels-power-steam-boiler +, recipe,oil-boiler-2,1 +, product,invar-alloy,5,oil-boiler,1,brass-pipe,6 +angelsore8-anode-sludge-filtering,ore-processing-c +, recipe,filter-ceramic-used,1,angels-ore8-slime,60,water-yellow-waste,10 +, product,filter-ceramic,1,angels-ore8-solution,60,water-purified,50 +angelsore8-crystal,ore-processing-d +, recipe,angels-ore8-crystal,6 +, product,angels-ore8-anode-sludge,60 +angelsore8-dust,ore-processing-b +, recipe,angels-ore8-dust,4,water-yellow-waste,20 +, product,solid-sodium-hydroxide,1,angels-ore8-sludge,4 +angelsore8-dust-processing,ore-sorting-t3 +, recipe,iron-ore,4,manganese-ore,2,nickel-ore,1,cobalt-ore,1 +, product,angels-ore8-dust,8 +angelsore8-powder,ore-processing-a +, recipe,angels-ore8-powder,3,milling-drum-used,1 +, product,angels-ore8-crushed,3,milling-drum,1 +angelsore9-crushed-processing,ore-sorting-t1 +, recipe,copper-ore,2,tin-ore,2 +, product,angels-ore9-crushed,4 +angelsore9-crystal-processing,ore-sorting-t4 +, recipe,copper-ore,4,tin-ore,2,silver-ore,1,gold-ore,1,quartz,1 +, product,angels-ore9-crystal,9 +angelsore9-powder-processing,ore-sorting-t2 +, recipe,copper-ore,3,tin-ore,2,silver-ore,1 +, product,angels-ore9-powder,6 +coolant-cool-300,coolant +, recipe,liquid-coolant-used,200,steam,50 +, product,liquid-coolant-used,200,water,50 +empty-barrel,angels-fluid-control +, recipe,empty-barrel,1 +, product,steel-plate,1 +filter-lime-used,petrochem-sulfur +, recipe,filter-frame,1,gas-acid,20 +, product,filter-lime-used,1 +liquid-ferric-chloride-solution,petrochem-chlorine +, recipe,liquid-ferric-chloride-solution,40 +, product,iron-ore,2,gas-hydrogen-chloride,40 +liquid-fuel,petrochem-carbon-oil-feed +, recipe,liquid-fuel,50 +, product,liquid-fuel-oil,40,gas-residual,10 +paste-iron,bio-processing-paste +, recipe,paste-iron,1 +, product,powder-iron,2,paste-cellulose,1 +powdered-tungsten,bob-material-chemical +, recipe,powdered-tungsten,1 +, product,tungsten-oxide,1,gas-hydrogen,15 +slag-processing-8,slag-processing-1 +, recipe,cobalt-ore,1,tungsten-ore,1 +, product,mineral-sludge,50 +solid-ammonium-perchlorate,petrochem-rocket +, recipe,solid-ammonium-perchlorate,3,solid-salt,1 +, product,gas-ammonia,100,liquid-perchloric-acid,100 +steam-turbine-3,angels-power-steam-generator +, recipe,steam-turbine-3,1 +, product,nitinol-alloy,25,nitinol-gear-wheel,25,nitinol-bearing,15,advanced-processing-unit,5,steam-turbine-2,1,nitinol-pipe,5 +crystal-grindstone,bob-gems-cut +, recipe,crystal-grindstone,1 +, product,grinding-wheel,1,crystal-powder,1 +fill-gas-hydrogen-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-hydrogen-barrel,1 +, product,gas-canister,1,gas-hydrogen,50 +fill-gas-melamine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-melamine-barrel,1 +, product,gas-canister,1,gas-melamine,50 +fill-gas-phosgene-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-phosgene-barrel,1 +, product,gas-canister,1,gas-phosgene,50 +fill-hydrogen-barrel,angels-fluid-control-bob-gas-bottle +, recipe,hydrogen-barrel,1 +, product,gas-canister,1,gas-hydrogen,50 +empty-gas-hydrogen-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-hydrogen,50 +, product,gas-hydrogen-barrel,1 +empty-gas-melamine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-melamine,50 +, product,gas-melamine-barrel,1 +empty-gas-phosgene-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,gas-canister,1,gas-phosgene,50 +, product,gas-phosgene-barrel,1 +empty-hydrogen-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-hydrogen,50 +, product,hydrogen-barrel,1 +roll-copper-casting,angels-copper-casting +, recipe,angels-roll-copper,2 +, product,liquid-molten-copper,80,water,40 +roll-copper-casting-fast,angels-copper-casting +, recipe,angels-roll-copper,4,liquid-coolant-used,40 +, product,liquid-molten-copper,140,liquid-coolant,40 +angels-wire-coil-tin-casting,angels-tin-casting +, recipe,angels-wire-coil-tin,4 +, product,liquid-molten-tin,40,liquid-molten-copper,40,water,40 +angels-wire-coil-tin-casting-fast,angels-tin-casting +, recipe,angels-wire-coil-tin,8,liquid-coolant-used,40 +, product,liquid-molten-tin,70,liquid-molten-copper,70,liquid-coolant,40 +angelsore-chunk-mix4-processing,ore-sorting-advanced +, recipe,zinc-ore,4 +, product,catalysator-green,1,angels-ore2-chunk,2,angels-ore6-chunk,2 +coal-cracking-3,petrochem-coal +, recipe,gas-synthesis,100,gas-carbon-dioxide,20,gas-hydrogen-sulfide,30 +, product,coal,5,steam,50,gas-oxygen,50 +concrete,angels-stone-casting +, recipe,concrete,10 +, product,iron-ore,1,stone-brick,5,water,100 +angels-concrete,angels-stone-casting +, recipe,concrete,4 +, product,liquid-concrete,40 +hazard-concrete,angels-stone-casting +, recipe,hazard-concrete,10 +, product,concrete,10 +refined-concrete,angels-stone-casting +, recipe,refined-concrete,10 +, product,concrete,20,steel-plate,1,iron-stick,8,water,100 +gas-allylchlorid,petrochem-chlorine-2 +, recipe,gas-allylchlorid,50,gas-hydrogen-chloride,50 +, product,gas-propene,50,gas-chlorine,50 +silver-ore-smelting,angels-silver +, recipe,ingot-silver,24 +, product,silver-ore,24 +solid-silver-nitrate-smelting,angels-silver +, recipe,ingot-silver,24 +, product,silver-nitrate,24 +cathode-silver-smelting,angels-silver +, recipe,ingot-silver,24 +, product,cathode-silver,24 +molten-cobalt-smelting,angels-cobalt-casting +, recipe,liquid-molten-cobalt,120 +, product,ingot-cobalt,12 +molten-manganese-smelting,angels-manganese-casting +, recipe,liquid-molten-manganese,120 +, product,ingot-manganese,12 +molten-nickel-smelting,angels-nickel-casting +, recipe,liquid-molten-nickel,120 +, product,ingot-nickel,12 +molten-platinum-smelting,angels-platinum-casting +, recipe,liquid-molten-platinum,120 +, product,ingot-platinum,12 +molten-silicon-smelting,angels-silicon-casting +, recipe,liquid-molten-silicon,120 +, product,ingot-silicon,12 +molten-titanium-smelting-1,angels-titanium-casting +, recipe,liquid-molten-titanium,120 +, product,ingot-titanium,12 +molten-titanium-smelting-2,angels-titanium-casting +, recipe,liquid-molten-titanium,240 +, product,ingot-manganese,12,ingot-titanium,12 +molten-titanium-smelting-3,angels-titanium-casting +, recipe,liquid-molten-titanium,240 +, product,ingot-nickel,12,ingot-titanium,12 +molten-titanium-smelting-4,angels-titanium-casting +, recipe,liquid-molten-titanium,360 +, product,ingot-aluminium,12,ingot-tin,12,ingot-titanium,12 +molten-titanium-smelting-5,angels-titanium-casting +, recipe,liquid-molten-titanium,360 +, product,ingot-chrome,12,ingot-cobalt,12,ingot-titanium,12 +molten-zinc-smelting,angels-zinc-casting +, recipe,liquid-molten-zinc,120 +, product,ingot-zinc,12 +liquid-nitric-acid,petrochem-nitrogen +, recipe,liquid-nitric-acid,50 +, product,gas-nitrogen-dioxide,100,water-purified,50 +sodium-nitrate-acid-processing,petrochem-nitrogen +, recipe,liquid-nitric-acid,40 +, product,solid-sodium-nitrate,5,liquid-sulfuric-acid,40 +bob-plasma-rocket,angels-explosion-bb +, recipe,bob-plasma-rocket,1 +, product,plasma-rocket-warhead,1,rocket-body,1 +plasma-bullet,angels-physical-ad +, recipe,plasma-bullet,1 +, product,plasma-bullet-projectile,1,cordite,1,bullet-casing,1 +plasma-bullet-magazine,angels-physical-ae +, recipe,plasma-bullet-magazine,1 +, product,plasma-bullet,5,magazine,1 +plasma-bullet-projectile,angels-physical-ac +, recipe,plasma-bullet-projectile,12 +, product,copper-plate,6,alien-artifact-red,1,alien-artifact-yellow,1,alien-artifact-orange,1,alien-artifact-blue,1,alien-artifact-purple,1,alien-artifact-green,1,gas-deuterium,10 +plasma-rocket-warhead,angels-explosion-ba +, recipe,plasma-rocket-warhead,6 +, product,steel-plate,6,alien-artifact-red,1,alien-artifact-yellow,1,alien-artifact-orange,1,alien-artifact-blue,1,alien-artifact-purple,1,alien-artifact-green,1,gas-deuterium,10 +shotgun-plasma-shell,angels-physical-bb +, recipe,shotgun-plasma-shell,6 +, product,alien-artifact-red,1,alien-artifact-yellow,1,alien-artifact-orange,1,alien-artifact-blue,1,alien-artifact-purple,1,alien-artifact-green,1,cordite,6,shotgun-shell-casing,6,gas-deuterium,10 +powder-aluminium,angels-aluminium +, recipe,powder-aluminium,1 +, product,ingot-aluminium,1 +powder-chrome,angels-chrome +, recipe,powder-chrome,1 +, product,ingot-chrome,1 +powder-gold,angels-gold +, recipe,powder-gold,1 +, product,ingot-gold,1 +powder-lead,angels-lead +, recipe,powder-lead,1 +, product,ingot-lead,1 +powder-steel,angels-iron +, recipe,powder-steel,1 +, product,ingot-steel,1 +gas-tungsten-hexafluoride-smelting,angels-tungsten +, recipe,powdered-tungsten,24,fluorite-ore,3 +, product,gas-tungsten-hexafluoride,120 +solid-ammonium-paratungstate-smelting,angels-tungsten +, recipe,powdered-tungsten,24 +, product,solid-ammonium-paratungstate,24,gas-hydrogen,60 +fill-liquid-water-semiheavy-1-barrel,angels-fluid-control-water-enrichment +, recipe,liquid-water-semiheavy-1-barrel,1 +, product,empty-barrel,1,liquid-water-semiheavy-1,50 +empty-liquid-water-semiheavy-1-barrel,angels-fluid-control-water-enrichment +, recipe,empty-barrel,1,liquid-water-semiheavy-1,50 +, product,liquid-water-semiheavy-1-barrel,1 +fill-liquid-water-semiheavy-2-barrel,angels-fluid-control-water-enrichment +, recipe,liquid-water-semiheavy-2-barrel,1 +, product,empty-barrel,1,liquid-water-semiheavy-2,50 +empty-liquid-water-semiheavy-2-barrel,angels-fluid-control-water-enrichment +, recipe,empty-barrel,1,liquid-water-semiheavy-2,50 +, product,liquid-water-semiheavy-2-barrel,1 +fill-liquid-water-semiheavy-3-barrel,angels-fluid-control-water-enrichment +, recipe,liquid-water-semiheavy-3-barrel,1 +, product,empty-barrel,1,liquid-water-semiheavy-3,50 +empty-liquid-water-semiheavy-3-barrel,angels-fluid-control-water-enrichment +, recipe,empty-barrel,1,liquid-water-semiheavy-3,50 +, product,liquid-water-semiheavy-3-barrel,1 +fill-heavy-water-barrel,angels-fluid-control-angels-fluid-converter-water-enrichment +, recipe,heavy-water-barrel,1 +, product,empty-barrel,1,liquid-water-heavy,50 +fill-liquid-water-heavy-barrel,angels-fluid-control-water-enrichment +, recipe,liquid-water-heavy-barrel,1 +, product,empty-barrel,1,liquid-water-heavy,50 +empty-heavy-water-barrel,angels-fluid-control-angels-fluid-converter-water-enrichment +, recipe,empty-barrel,1,liquid-water-heavy,50 +, product,heavy-water-barrel,1 +empty-liquid-water-heavy-barrel,angels-fluid-control-water-enrichment +, recipe,empty-barrel,1,liquid-water-heavy,50 +, product,liquid-water-heavy-barrel,1 +oil-boiler-3,angels-power-steam-boiler +, recipe,oil-boiler-3,1 +, product,tungsten-plate,5,oil-boiler-2,1,ceramic-pipe,6 +rocket-oxidizer-capsule,petrochem-fuel +, recipe,rocket-oxidizer-capsule,2 +, product,liquid-nitric-acid,10,gas-dinitrogen-tetroxide,10 +rocket-fuel-capsule,petrochem-fuel +, recipe,rocket-fuel-capsule,2 +, product,gas-dimethylhydrazine,30,gas-hydrazine,30 +rocket-fuel,petrochem-fuel +, recipe,rocket-fuel,1 +, product,rocket-oxidizer-capsule,10,rocket-fuel-capsule,10 +refined-hazard-concrete,angels-stone-casting +, recipe,refined-hazard-concrete,10 +, product,refined-concrete,10 +void-hydrogen,void +, recipe,void,1 +, product,gas-hydrogen,20 +void-hydrogen-chloride,void +, recipe,void,1 +, product,gas-hydrogen-chloride,25 +void-hydrogen-sulfide,void +, recipe,void,1 +, product,gas-hydrogen-sulfide,25 +angelsore9-anode-sludge,ore-processing-d +, recipe,slag,1,angels-ore9-anode-sludge,60,water-yellow-waste,20 +, product,angels-ore9-slime,60,liquid-cupric-chloride-solution,10 +angelsore9-crushed,ore-processing-a +, recipe,angels-ore9-crushed,6 +, product,angels-ore3-crushed,2,angels-ore4-crushed,2,angels-ore6-crushed,2 +angelsore9-sludge,ore-processing-b +, recipe,angels-ore9-sludge,6 +, product,angels-ore9-powder,3,angels-ore3-chunk,1,angels-ore4-chunk,1,angels-ore6-chunk,1,thermal-water,20,liquid-sulfuric-acid,20 +angelsore9-solution,ore-processing-c +, recipe,angels-ore9-solution,60 +, product,angels-ore9-dust,3,angels-ore3-crystal,1,angels-ore4-crystal,1,angels-ore6-crystal,1,liquid-sulfuric-acid,20 +empty-canister,angels-fluid-control +, recipe,empty-canister,5 +, product,iron-plate,1,plastic-bar,1,empty-barrel,5 +gas-melamine,petrochem-nitrogen +, recipe,catalyst-metal-carrier,1,gas-melamine,100 +, product,catalyst-metal-blue,1,gas-urea,100 +liquid-cupric-chloride-solution,petrochem-chlorine +, recipe,liquid-cupric-chloride-solution,40 +, product,copper-ore,2,gas-hydrogen-chloride,40 +paste-silver,bio-processing-paste +, recipe,paste-silver,1 +, product,powder-silver,2,paste-cellulose,1 +slag-processing-9,slag-processing-1 +, recipe,uranium-ore,1,fluorite-ore,1,thorium-ore,1 +, product,mineral-sludge,50 +slag-processing-dissolution,liquifying +, recipe,slag-slurry,50 +, product,slag,5,liquid-sulfuric-acid,15 +fill-deuterium-barrel,angels-fluid-control-bob-gas-bottle +, recipe,deuterium-barrel,1 +, product,gas-canister,1,gas-deuterium,50 +fill-gas-deuterium-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-deuterium-barrel,1 +, product,gas-canister,1,gas-deuterium,50 +fill-liquid-nitric-acid-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,liquid-nitric-acid-barrel,1 +, product,empty-canister,1,liquid-nitric-acid,50 +fill-nitric-acid-barrel,angels-fluid-control-bob-canister +, recipe,nitric-acid-barrel,1 +, product,empty-canister,1,liquid-nitric-acid,50 +empty-deuterium-barrel,angels-fluid-control-bob-gas-bottle +, recipe,gas-canister,1,gas-deuterium,50 +, product,deuterium-barrel,1 +empty-gas-deuterium-barrel,angels-fluid-control-petrochem-basic-fluids +, recipe,gas-canister,1,gas-deuterium,50 +, product,gas-deuterium-barrel,1 +empty-liquid-nitric-acid-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,empty-canister,1,liquid-nitric-acid,50 +, product,liquid-nitric-acid-barrel,1 +empty-nitric-acid-barrel,angels-fluid-control-bob-canister +, recipe,empty-canister,1,liquid-nitric-acid,50 +, product,nitric-acid-barrel,1 +angels-mono-silicon-seed,angels-silicon-casting +, recipe,angels-mono-silicon-seed,5 +, product,liquid-molten-silicon,5,gas-nitrogen,10 +angelsore6-crushed-smelting,angels-tin-casting +, recipe,tin-plate,1 +, product,angels-ore6-crushed,3 +tin-plate,angels-tin-casting +, recipe,tin-plate,3 +, product,tin-ore,4 +angels-plate-tin,angels-tin-casting +, recipe,tin-plate,4 +, product,liquid-molten-tin,40 +angels-roll-tin-converting,angels-tin-casting +, recipe,tin-plate,4 +, product,angels-roll-tin,1 +roll-cobalt-casting,angels-cobalt-casting +, recipe,angels-roll-cobalt,2 +, product,liquid-molten-cobalt,80,water,40 +roll-cobalt-casting-fast,angels-cobalt-casting +, recipe,angels-roll-cobalt,4,liquid-coolant-used,40 +, product,liquid-molten-cobalt,140,liquid-coolant,40 +roll-manganese-casting,angels-manganese-casting +, recipe,angels-roll-manganese,2 +, product,liquid-molten-manganese,80,water,40 +roll-manganese-casting-fast,angels-manganese-casting +, recipe,angels-roll-manganese,4,liquid-coolant-used,40 +, product,liquid-molten-manganese,140,liquid-coolant,40 +roll-nickel-casting,angels-nickel-casting +, recipe,angels-roll-nickel,2 +, product,liquid-molten-nickel,80,water,40 +roll-nickel-casting-fast,angels-nickel-casting +, recipe,angels-roll-nickel,4,liquid-coolant-used,40 +, product,liquid-molten-nickel,140,liquid-coolant,40 +roll-platinum-casting,angels-platinum-casting +, recipe,angels-roll-platinum,2 +, product,liquid-molten-platinum,80,water,40 +roll-platinum-casting-fast,angels-platinum-casting +, recipe,angels-roll-platinum,4,liquid-coolant-used,40 +, product,liquid-molten-platinum,140,liquid-coolant,40 +roll-titanium-casting,angels-titanium-casting +, recipe,angels-roll-titanium,2 +, product,liquid-molten-titanium,80,water,40 +roll-titanium-casting-fast,angels-titanium-casting +, recipe,angels-roll-titanium,4,liquid-coolant-used,40 +, product,liquid-molten-titanium,140,liquid-coolant,40 +roll-zinc-casting,angels-zinc-casting +, recipe,angels-roll-zinc,2 +, product,liquid-molten-zinc,80,water,40 +roll-zinc-casting-fast,angels-zinc-casting +, recipe,angels-roll-zinc,4,liquid-coolant-used,40 +, product,liquid-molten-zinc,140,liquid-coolant,40 +angels-wire-coil-copper-casting,angels-copper-casting +, recipe,angels-wire-coil-copper,4 +, product,liquid-molten-copper,80,water,40 +angels-wire-coil-copper-casting-fast,angels-copper-casting +, recipe,angels-wire-coil-copper,8,liquid-coolant-used,40 +, product,liquid-molten-copper,140,liquid-coolant,40 +angelsore-chunk-mix5-processing,ore-sorting-advanced +, recipe,silver-ore,4 +, product,catalysator-green,1,angels-ore3-chunk,2,angels-ore6-chunk,2 +casting-powder-tungsten-1,angels-tungsten-casting +, recipe,casting-powder-tungsten,24 +, product,powder-cobalt,12,powdered-tungsten,12 +casting-powder-tungsten-2,angels-tungsten-casting +, recipe,casting-powder-tungsten,24 +, product,powder-nickel,12,powdered-tungsten,12 +catalysator-brown,geode-crystallization +, recipe,catalysator-brown,2 +, product,mineral-sludge,25 +angels-concrete-brick,angels-stone-casting +, recipe,concrete-brick,4 +, product,stone-brick,4,liquid-concrete,40 +angels-hydrogen-sulfide-enrichment,petrochem-sulfur +, recipe,water-purified,50,gas-enriched-hydrogen-sulfide,50 +, product,steam,50,gas-hydrogen-sulfide,50 +gas-epichlorhydrin,petrochem-chlorine-2 +, recipe,gas-epichlorhydrin,90 +, product,solid-sodium-hydroxide,5,gas-allylchlorid,100,liquid-hydrochloric-acid,50 +molten-aluminium-smelting-1,angels-aluminium-casting +, recipe,liquid-molten-aluminium,120 +, product,ingot-aluminium,12 +molten-aluminium-smelting-2,angels-aluminium-casting +, recipe,liquid-molten-aluminium,240 +, product,ingot-aluminium,12,ingot-manganese,12 +molten-aluminium-smelting-3,angels-aluminium-casting +, recipe,liquid-molten-aluminium,360 +, product,ingot-aluminium,12,ingot-copper,12,ingot-silicon,12 +molten-chrome-smelting,angels-chrome-casting +, recipe,liquid-molten-chrome,120 +, product,ingot-chrome,12 +molten-gold-smelting,angels-gold-casting +, recipe,liquid-molten-gold,120 +, product,ingot-gold,12 +molten-iron-smelting-1,angels-iron-casting +, recipe,liquid-molten-iron,120 +, product,ingot-iron,12 +molten-iron-smelting-2,angels-iron-casting +, recipe,liquid-molten-iron,240 +, product,ingot-iron,12,ingot-manganese,12 +molten-iron-smelting-3,angels-iron-casting +, recipe,liquid-molten-iron,240 +, product,ingot-iron,12,ingot-silicon,12 +molten-iron-smelting-4,angels-iron-casting +, recipe,liquid-molten-iron,360 +, product,ingot-cobalt,12,ingot-iron,12,ingot-nickel,12 +molten-iron-smelting-5,angels-iron-casting +, recipe,liquid-molten-iron,360 +, product,ingot-chrome,12,ingot-iron,12,ingot-nickel,12 +molten-lead-smelting,angels-lead-casting +, recipe,liquid-molten-lead,120 +, product,ingot-lead,12 +molten-steel-smelting-1,angels-steel-casting +, recipe,liquid-molten-steel,120 +, product,ingot-steel,12 +molten-steel-smelting-2,angels-steel-casting +, recipe,liquid-molten-steel,240 +, product,ingot-steel,12,ingot-silicon,12 +molten-steel-smelting-3,angels-steel-casting +, recipe,liquid-molten-steel,240 +, product,ingot-steel,12,ingot-manganese,12 +molten-steel-smelting-4,angels-steel-casting +, recipe,liquid-molten-steel,360 +, product,ingot-cobalt,12,ingot-steel,12,ingot-nickel,12 +molten-steel-smelting-5,angels-steel-casting +, recipe,liquid-molten-steel,360 +, product,ingot-chrome,12,ingot-steel,12,powdered-tungsten,12 +shotgun-uranium-shell,angels-physical-bb +, recipe,shotgun-uranium-shell,1 +, product,uranium-238,1,cordite,1,shotgun-shell-casing,1 +uranium-bullet,angels-physical-ad +, recipe,uranium-bullet,1 +, product,uranium-bullet-projectile,1,cordite,1,bullet-casing,1 +uranium-bullet-projectile,angels-physical-ac +, recipe,uranium-bullet-projectile,2 +, product,copper-plate,1,uranium-238,1 +uranium-rounds-magazine,angels-physical-ae +, recipe,uranium-rounds-magazine,1 +, product,uranium-bullet,5,magazine,1 +powder-silver,angels-silver +, recipe,powder-silver,1 +, product,ingot-silver,1 +oil-boiler-4,angels-power-steam-boiler +, recipe,oil-boiler-4,1 +, product,copper-tungsten-alloy,5,oil-boiler-3,1,copper-tungsten-pipe,6 +rocket-booster-1,petrochem-fuel +, recipe,rocket-booster,2 +, product,solid-ammonium-nitrate,3,pipe,1 +sulfuric-nitric-acid,petrochem-rocket +, recipe,sulfuric-nitric-acid,20 +, product,liquid-sulfuric-acid,10,liquid-nitric-acid,10 +nitroglycerin,petrochem-rocket +, recipe,nitroglycerin,10 +, product,liquid-glycerol,10,liquid-sulfuric-acid,15,liquid-nitric-acid,15 +rocket-booster-2,petrochem-fuel +, recipe,rocket-booster,3 +, product,solid-ammonium-perchlorate,3,pipe,1 +angelsore-chunk-mix6-processing,ore-sorting-advanced +, recipe,fluorite-ore,2 +, product,catalysator-green,1,angels-ore8-powder,2,angels-ore2-chunk,2 +angelsore-chunk-mix7-processing,ore-sorting-advanced +, recipe,angels-void,1 +, product,catalysator-green,1,angels-ore1-chunk,2,angels-ore2-chunk,2 +angelsore9-anode-sludge-filtering,ore-processing-c +, recipe,filter-ceramic-used,1,angels-ore9-slime,60,water-yellow-waste,10 +, product,filter-ceramic,1,angels-ore9-solution,60,water-purified,50 +angelsore9-crystal,ore-processing-d +, recipe,angels-ore9-crystal,6 +, product,angels-ore9-anode-sludge,60 +angelsore9-dust,ore-processing-b +, recipe,angels-ore9-dust,4,water-yellow-waste,20 +, product,solid-sodium-hydroxide,1,angels-ore9-sludge,4 +angelsore9-dust-processing,ore-sorting-t3 +, recipe,copper-ore,4,tin-ore,2,silver-ore,1,gold-ore,1 +, product,angels-ore9-dust,8 +angelsore9-powder,ore-processing-a +, recipe,angels-ore9-powder,3,milling-drum-used,1 +, product,angels-ore9-crushed,3,milling-drum,1 +bob-titanium-plate,bob-material-electrolysis +, recipe,titanium-plate,2 +, product,rutile-ore,2,solid-carbon,1,solid-calcium-chloride,2 +bob-tungsten-plate,bob-alloy +, recipe,tungsten-plate,5 +, product,powdered-tungsten,4,nickel-plate,1 +bob-zinc-plate,bob-material-electrolysis +, recipe,zinc-plate,1 +, product,zinc-ore,1,liquid-sulfuric-acid,10 +gas-canister,angels-fluid-control +, recipe,gas-canister,5 +, product,steel-plate,1,empty-canister,5 +nuclear-fuel,petrochem-fuel +, recipe,nuclear-fuel,1 +, product,rocket-fuel,1,uranium-235,1 +tinned-copper-cable,angels-tin-casting +, recipe,tinned-copper-cable,3 +, product,copper-cable,3,tin-plate,1 +stone-crushed-dissolution,liquifying +, recipe,slag-slurry,50 +, product,stone-crushed,25,liquid-sulfuric-acid,15 +fill-gas-monochloramine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-monochloramine-barrel,1 +, product,gas-canister,1,gas-monochloramine,50 +fill-liquid-aqueous-sodium-hydroxide-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,liquid-aqueous-sodium-hydroxide-barrel,1 +, product,empty-barrel,1,liquid-aqueous-sodium-hydroxide,50 +empty-gas-monochloramine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-monochloramine,50 +, product,gas-monochloramine-barrel,1 +empty-liquid-aqueous-sodium-hydroxide-barrel,angels-fluid-control-petrochem-chlorine-fluids +, recipe,empty-barrel,1,liquid-aqueous-sodium-hydroxide,50 +, product,liquid-aqueous-sodium-hydroxide-barrel,1 +angels-plate-cobalt,angels-cobalt-casting +, recipe,angels-plate-cobalt,4 +, product,liquid-molten-cobalt,40 +angels-roll-cobalt-converting,angels-cobalt-casting +, recipe,angels-plate-cobalt,4 +, product,angels-roll-cobalt,1 +angelsore3-crushed-smelting,angels-copper-casting +, recipe,copper-plate,2 +, product,angels-ore3-crushed,3 +angels-copper-pebbles-smelting,angels-copper-casting +, recipe,copper-plate,2 +, product,angels-copper-pebbles,4 +angels-copper-nugget-smelting,angels-copper-casting +, recipe,copper-plate,3 +, product,angels-copper-nugget,2 +copper-plate,angels-copper-casting +, recipe,copper-plate,3 +, product,copper-ore,4 +angels-plate-copper,angels-copper-casting +, recipe,copper-plate,4 +, product,liquid-molten-copper,40 +angels-roll-copper-converting,angels-copper-casting +, recipe,copper-plate,4 +, product,angels-roll-copper,1 +angels-plate-manganese,angels-manganese-casting +, recipe,angels-plate-manganese,4 +, product,liquid-molten-manganese,40 +angels-roll-manganese-converting,angels-manganese-casting +, recipe,angels-plate-manganese,4 +, product,angels-roll-manganese,1 +angels-plate-nickel,angels-nickel-casting +, recipe,nickel-plate,4 +, product,liquid-molten-nickel,40 +angels-roll-nickel-converting,angels-nickel-casting +, recipe,nickel-plate,4 +, product,angels-roll-nickel,1 +angels-plate-titanium,angels-titanium-casting +, recipe,titanium-plate,4 +, product,liquid-molten-titanium,40 +angels-roll-titanium-converting,angels-titanium-casting +, recipe,titanium-plate,4 +, product,angels-roll-titanium,1 +angels-plate-tungsten,angels-tungsten-casting +, recipe,tungsten-plate,12 +, product,casting-powder-tungsten,12 +angels-plate-zinc,angels-zinc-casting +, recipe,zinc-plate,4 +, product,liquid-molten-zinc,40 +angels-roll-zinc-converting,angels-zinc-casting +, recipe,zinc-plate,4 +, product,angels-roll-zinc,1 +angels-quartz-crucible,angels-silicon-casting +, recipe,angels-quartz-crucible,1 +, product,quartz,1 +roll-aluminium-casting,angels-aluminium-casting +, recipe,angels-roll-aluminium,2 +, product,liquid-molten-aluminium,80,water,40 +roll-aluminium-casting-fast,angels-aluminium-casting +, recipe,angels-roll-aluminium,4,liquid-coolant-used,40 +, product,liquid-molten-aluminium,140,liquid-coolant,40 +roll-chrome-casting,angels-chrome-casting +, recipe,angels-roll-chrome,2 +, product,liquid-molten-chrome,80,water,40 +roll-chrome-casting-fast,angels-chrome-casting +, recipe,angels-roll-chrome,4,liquid-coolant-used,40 +, product,liquid-molten-chrome,140,liquid-coolant,40 +roll-gold-casting,angels-gold-casting +, recipe,angels-roll-gold,2 +, product,liquid-molten-gold,80,water,40 +roll-gold-casting-fast,angels-gold-casting +, recipe,angels-roll-gold,4,liquid-coolant-used,40 +, product,liquid-molten-gold,140,liquid-coolant,40 +roll-iron-casting,angels-iron-casting +, recipe,angels-roll-iron,2 +, product,liquid-molten-iron,80,water,40 +roll-iron-casting-fast,angels-iron-casting +, recipe,angels-roll-iron,4,liquid-coolant-used,40 +, product,liquid-molten-iron,140,liquid-coolant,40 +roll-lead-casting,angels-lead-casting +, recipe,angels-roll-lead,2 +, product,liquid-molten-lead,80,water,40 +roll-lead-casting-fast,angels-lead-casting +, recipe,angels-roll-lead,4,liquid-coolant-used,40 +, product,liquid-molten-lead,140,liquid-coolant,40 +angels-roll-steel-casting,angels-steel-casting +, recipe,angels-roll-steel,2 +, product,liquid-molten-steel,80,water,40 +angels-roll-steel-casting-fast,angels-steel-casting +, recipe,angels-roll-steel,4,liquid-coolant-used,40 +, product,liquid-molten-steel,140,liquid-coolant,40 +angels-wire-coil-platinum-casting,angels-platinum-casting +, recipe,angels-wire-coil-platinum,4 +, product,liquid-molten-platinum,40,liquid-molten-copper,40,water,40 +angels-wire-coil-platinum-casting-fast,angels-platinum-casting +, recipe,angels-wire-coil-platinum,8,liquid-coolant-used,40 +, product,liquid-molten-platinum,70,liquid-molten-copper,70,liquid-coolant,40 +basic-tinned-copper-wire,angels-tin-casting +, recipe,tinned-copper-cable,5 +, product,copper-cable,10,tin-plate,4 +angels-wire-coil-tin-converting,angels-tin-casting +, recipe,tinned-copper-cable,16 +, product,angels-wire-coil-tin,4 +catalysator-green,geode-crystallization +, recipe,catalysator-green,2 +, product,crystal-seedling,25 +bullet-casing,angels-physical-ad +, recipe,bullet-casing,1 +, product,gunmetal-alloy,1 +cordite,angels-physical-ac +, recipe,cordite,5 +, product,gun-cotton,13,petroleum-jelly,1,nitroglycerin,60 +laser-rifle-battery-case,angels-electric-c +, recipe,laser-rifle-battery-case,2 +, product,plastic-bar,1 +magazine,angels-physical-ae +, recipe,magazine,2 +, product,steel-plate,1 +rocket-body,angels-explosion-bb +, recipe,rocket-body,1 +, product,aluminium-plate,1,processing-unit,1,rocket-engine,1,liquid-fuel,10 +rocket-engine,angels-explosion-ba +, recipe,rocket-engine,1 +, product,tungsten-plate,1,tungsten-gear-wheel,1 +shotgun-shell-casing,angels-physical-bb +, recipe,shotgun-shell-casing,1 +, product,gunmetal-alloy,1 +liquid-glycerol,petrochem-chlorine-2 +, recipe,liquid-glycerol,50 +, product,gas-epichlorhydrin,100,water-purified,50 +molten-silver-smelting,angels-silver-casting +, recipe,liquid-molten-silver,120 +, product,ingot-silver,12 +angels-reinforced-concrete-brick,angels-stone-casting +, recipe,reinforced-concrete-brick,4 +, product,stone-brick,4,steel-plate,4,liquid-concrete,40 +angels-nuclear-fuel,petrochem-fuel +, recipe,angels-nuclear-fuel,1 +, product,rocket-fuel,1,plutonium-239,1 +angelsore-crystal-mix1-processing,ore-sorting-advanced +, recipe,rutile-ore,6 +, product,catalysator-orange,1,angels-ore1-crystal,2,angels-ore4-crystal,2,angels-ore5-crystal,2 +bob-aluminium-plate,bob-material-electrolysis +, recipe,aluminium-plate,2 +, product,alumina,2,solid-carbon,1 +bob-lead-plate,bob-material-chemical +, recipe,lead-plate,2 +, product,lead-oxide,2,solid-carbon,1 +bob-silicon-plate,bob-material-electrolysis +, recipe,angels-mono-silicon,2 +, product,quartz,2,solid-carbon,1,solid-calcium-chloride,2 +fill-gas-hydrazine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-hydrazine-barrel,1 +, product,gas-canister,1,gas-hydrazine,50 +empty-gas-hydrazine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-hydrazine,50 +, product,gas-hydrazine-barrel,1 +angels-mono-silicon-1,angels-silicon-casting +, recipe,angels-mono-silicon,4 +, product,angels-mono-silicon-seed,1,liquid-molten-silicon,40 +angels-mono-silicon-2,angels-silicon-casting +, recipe,angels-mono-silicon,6,angels-quartz-crucible,1 +, product,angels-mono-silicon-seed,1,angels-quartz-crucible,1,liquid-molten-silicon,40 +angels-plate-aluminium,angels-aluminium-casting +, recipe,aluminium-plate,4 +, product,liquid-molten-aluminium,40 +angels-roll-aluminium-converting,angels-aluminium-casting +, recipe,aluminium-plate,4 +, product,angels-roll-aluminium,1 +angels-plate-chrome,angels-chrome-casting +, recipe,angels-plate-chrome,4 +, product,liquid-molten-chrome,40 +angels-roll-chrome-converting,angels-chrome-casting +, recipe,angels-plate-chrome,4 +, product,angels-roll-chrome,1 +angelsore5-crushed-smelting,angels-lead-casting +, recipe,lead-plate,1 +, product,angels-ore5-crushed,3 +lead-plate,angels-lead-casting +, recipe,lead-plate,3 +, product,lead-ore,4 +angels-plate-lead,angels-lead-casting +, recipe,lead-plate,4 +, product,liquid-molten-lead,40 +angels-roll-lead-converting,angels-lead-casting +, recipe,lead-plate,4 +, product,angels-roll-lead,1 +angels-plate-platinum,angels-platinum-casting +, recipe,angels-plate-platinum,4 +, product,liquid-molten-platinum,40 +angels-roll-platinum-converting,angels-platinum-casting +, recipe,angels-plate-platinum,4 +, product,angels-roll-platinum,1 +rod-stack-iron-casting,angels-iron-casting +, recipe,angels-rod-stack-iron,1 +, product,liquid-molten-iron,60,water,40 +rod-stack-iron-casting-fast,angels-iron-casting +, recipe,angels-rod-stack-iron,2,liquid-coolant-used,40 +, product,liquid-molten-iron,110,liquid-coolant,40 +rod-stack-steel-casting,angels-steel-casting +, recipe,angels-rod-stack-steel,1 +, product,liquid-molten-steel,60,water,40 +rod-stack-steel-casting-fast,angels-steel-casting +, recipe,angels-rod-stack-steel,2,liquid-coolant-used,40 +, product,liquid-molten-steel,110,liquid-coolant,40 +roll-silver-casting,angels-silver-casting +, recipe,angels-roll-silver,2 +, product,liquid-molten-silver,80,water,40 +roll-silver-casting-fast,angels-silver-casting +, recipe,angels-roll-silver,4,liquid-coolant-used,40 +, product,liquid-molten-silver,140,liquid-coolant,40 +angels-wire-coil-gold-casting,angels-gold-casting +, recipe,angels-wire-coil-gold,4 +, product,liquid-molten-gold,40,liquid-molten-copper,40,water,40 +angels-wire-coil-gold-casting-fast,angels-gold-casting +, recipe,angels-wire-coil-gold,8,liquid-coolant-used,40 +, product,liquid-molten-gold,70,liquid-molten-copper,70,liquid-coolant,40 +copper-cable,angels-copper-casting +, recipe,copper-cable,2 +, product,copper-plate,1 +angels-wire-coil-copper-converting,angels-copper-casting +, recipe,copper-cable,16 +, product,angels-wire-coil-copper,4 +catalysator-orange,geode-crystallization +, recipe,catalysator-orange,2 +, product,catalysator-brown,2,catalysator-green,2 +gas-methanol-from-wood,bio-processing-green +, recipe,gas-methanol,100 +, product,cellulose-fiber,20 +liquid-perchloric-acid,petrochem-chlorine-2 +, recipe,liquid-perchloric-acid,50 +, product,solid-sodium-perchlorate,2,liquid-hydrochloric-acid,50 +tungsten-carbide,angels-tungsten-casting +, recipe,tungsten-carbide,2 +, product,tungsten-oxide,1,solid-carbon,1 +tungsten-carbide-2,angels-tungsten-casting +, recipe,tungsten-carbide,2 +, product,powdered-tungsten,1,solid-carbon,1 +angels-water-enrichment-1,water-enrichment +, recipe,gas-hydrogen-sulfide,100,liquid-water-semiheavy-1,50,water-green-waste,60 +, product,water-saline,60,water-purified,50,gas-enriched-hydrogen-sulfide,100 +angels-water-enrichment-2,water-enrichment +, recipe,gas-hydrogen-sulfide,100,liquid-water-semiheavy-2,50,water-green-waste,60 +, product,water-saline,60,liquid-water-semiheavy-1,50,gas-enriched-hydrogen-sulfide,100 +angels-water-enrichment-3,water-enrichment +, recipe,gas-hydrogen-sulfide,100,liquid-water-semiheavy-3,50,water-green-waste,60 +, product,water-saline,60,liquid-water-semiheavy-2,50,gas-enriched-hydrogen-sulfide,100 +angels-heavy-water-extraction,water-enrichment +, recipe,liquid-water-heavy,5,steam,95 +, product,liquid-water-semiheavy-3,100 +angels-water-enriched-cooling-1,water-enrichment +, recipe,liquid-water-semiheavy-1,200,steam,50 +, product,liquid-water-semiheavy-1,200,water-purified,50 +angels-water-enriched-cooling-2,water-enrichment +, recipe,liquid-water-semiheavy-2,200,steam,50 +, product,liquid-water-semiheavy-2,200,water-purified,50 +angels-water-enriched-cooling-3,water-enrichment +, recipe,liquid-water-semiheavy-3,200,steam,50 +, product,liquid-water-semiheavy-3,200,water-purified,50 +angels-heavy-water-cooling,water-enrichment +, recipe,liquid-water-heavy,100,steam,25 +, product,liquid-water-heavy,100,water-purified,25 +angels-nuclear-fuel-2,petrochem-fuel +, recipe,angels-nuclear-fuel-2,3 +, product,rocket-fuel,3,plutonium-239,2,thorium-232,1 +angelsore-crystal-mix2-processing,ore-sorting-advanced +, recipe,gold-ore,6 +, product,catalysator-orange,1,angels-ore1-crystal,2,angels-ore5-crystal,2,angels-ore6-crystal,2 +bob-gold-plate,bob-material-chemical +, recipe,gold-plate,1 +, product,gold-ore,1,gas-chlorine,3 +copper-tungsten-alloy,angels-tungsten-casting +, recipe,copper-tungsten-alloy,5 +, product,powdered-tungsten,3,copper-plate,2 +gas-phosgene,petrochem-chlorine-2 +, recipe,gas-phosgene,100 +, product,solid-carbon,1,gas-carbon-monoxide,60,gas-chlorine,40 +steel-plate,angels-steel-casting +, recipe,steel-plate,1 +, product,iron-plate,2,gas-oxygen,10 +fill-gas-methylamine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-methylamine-barrel,1 +, product,gas-canister,1,gas-methylamine,50 +empty-gas-methylamine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-methylamine,50 +, product,gas-methylamine-barrel,1 +angels-plate-gold,angels-gold-casting +, recipe,gold-plate,4 +, product,liquid-molten-gold,40 +angels-roll-gold-converting,angels-gold-casting +, recipe,gold-plate,4 +, product,angels-roll-gold,1 +angelsore1-crushed-smelting,angels-iron-casting +, recipe,iron-plate,2 +, product,angels-ore1-crushed,3 +angels-iron-pebbles-smelting,angels-iron-casting +, recipe,iron-plate,2 +, product,angels-iron-pebbles,4 +angels-iron-nugget-smelting,angels-iron-casting +, recipe,iron-plate,3 +, product,angels-iron-nugget,2 +iron-plate,angels-iron-casting +, recipe,iron-plate,3 +, product,iron-ore,4 +angels-plate-iron,angels-iron-casting +, recipe,iron-plate,4 +, product,liquid-molten-iron,40 +angels-roll-iron-converting,angels-iron-casting +, recipe,iron-plate,4 +, product,angels-roll-iron,1 +angels-plate-steel,angels-steel-casting +, recipe,steel-plate,4 +, product,liquid-molten-steel,40 +angels-roll-steel-converting,angels-steel-casting +, recipe,steel-plate,4 +, product,angels-roll-steel,1 +angels-silicon-wafer,angels-silicon-casting +, recipe,silicon-wafer,1 - 5 +, product,angels-mono-silicon,1 +silicon-wafer,angels-silicon-casting +, recipe,silicon-wafer,6 +, product,angels-mono-silicon,1 +angels-wire-coil-silver-casting,angels-silver-casting +, recipe,angels-wire-coil-silver,4 +, product,liquid-molten-silver,40,liquid-molten-copper,40,water,40 +angels-wire-coil-silver-casting-fast,angels-silver-casting +, recipe,angels-wire-coil-silver,8,liquid-coolant-used,40 +, product,liquid-molten-silver,70,liquid-molten-copper,70,liquid-coolant,40 +basic-platinated-copper-wire,angels-platinum-casting +, recipe,angels-wire-platinum,5 +, product,copper-cable,10,angels-plate-platinum,4 +angels-wire-coil-platinum-converting,angels-platinum-casting +, recipe,angels-wire-platinum,16 +, product,angels-wire-coil-platinum,4 +thorium-processing,bob-nuclear +, recipe,thorium-232,1 +, product,thorium-ore,10 +angels-water-void-thermal-water,angels-water-void +, recipe,water-void,1 +, product,thermal-water,400 +angels-water-void-slag-slurry,angels-water-void +, recipe,water-void,1 +, product,slag-slurry,400 +angels-water-void-mineral-sludge,angels-water-void +, recipe,water-void,1 +, product,mineral-sludge,400 +angels-water-void-crystal-slurry,angels-water-void +, recipe,water-void,1 +, product,crystal-slurry,400 +angels-water-void-crystal-seedling,angels-water-void +, recipe,water-void,1 +, product,crystal-seedling,400 +angels-water-void-crystal-matrix,angels-water-void +, recipe,water-void,1 +, product,crystal-matrix,400 +angels-chemical-void-liquid-chlorauric-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-chlorauric-acid,100 +angels-chemical-void-liquid-hexafluorosilicic-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-hexafluorosilicic-acid,100 +angels-chemical-void-liquid-hexachloroplatinic-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-hexachloroplatinic-acid,100 +angels-chemical-void-liquid-trichlorosilane,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-trichlorosilane,100 +angels-chemical-void-gas-silane,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-silane,100 +angels-chemical-void-liquid-titanium-tetrachloride,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-titanium-tetrachloride,100 +angels-chemical-void-liquid-tungstic-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-tungstic-acid,100 +angels-chemical-void-gas-tungsten-hexafluoride,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-tungsten-hexafluoride,100 +angels-water-void-water,angels-water-void +, recipe,water-void,1 +, product,water,400 +angels-water-void-water-purified,angels-water-void +, recipe,water-void,1 +, product,water-purified,400 +angels-water-void-water-saline,angels-water-void +, recipe,water-void,1 +, product,water-saline,400 +angels-water-void-water-mineralized,angels-water-void +, recipe,water-void,1 +, product,water-mineralized,400 +angels-water-void-lithia-water,angels-water-void +, recipe,water-void,1 +, product,lithia-water,400 +angels-water-void-liquid-coolant,angels-water-void +, recipe,water-void,1 +, product,liquid-coolant,400 +angels-water-void-water-yellow-waste,angels-water-void +, recipe,water-void,1 +, product,water-yellow-waste,400 +angels-water-void-water-greenyellow-waste,angels-water-void +, recipe,water-void,1 +, product,water-greenyellow-waste,400 +angels-water-void-water-green-waste,angels-water-void +, recipe,water-void,1 +, product,water-green-waste,400 +angels-water-void-water-red-waste,angels-water-void +, recipe,water-void,1 +, product,water-red-waste,400 +angels-water-void-water-viscous-mud,angels-water-void +, recipe,water-void,1 +, product,water-viscous-mud,400 +angels-water-void-water-heavy-mud,angels-water-void +, recipe,water-void,1 +, product,water-heavy-mud,400 +angels-water-void-water-concentrated-mud,angels-water-void +, recipe,water-void,1 +, product,water-concentrated-mud,400 +angels-water-void-water-light-mud,angels-water-void +, recipe,water-void,1 +, product,water-light-mud,400 +angels-water-void-water-thin-mud,angels-water-void +, recipe,water-void,1 +, product,water-thin-mud,400 +angels-chemical-void-gas-compressed-air,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-compressed-air,100 +angels-chemical-void-gas-oxygen,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-oxygen,100 +angels-chemical-void-gas-hydrogen-peroxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-hydrogen-peroxide,100 +angels-chemical-void-gas-carbon-monoxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-carbon-monoxide,100 +angels-chemical-void-gas-carbon-dioxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-carbon-dioxide,100 +angels-chemical-void-gas-hydrogen,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-hydrogen,100 +angels-chemical-void-gas-chlorine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-chlorine,100 +angels-chemical-void-gas-hydrogen-chloride,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-hydrogen-chloride,100 +angels-chemical-void-liquid-hydrochloric-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-hydrochloric-acid,100 +angels-chemical-void-gas-allylchlorid,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-allylchlorid,100 +angels-chemical-void-gas-epichlorhydrin,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-epichlorhydrin,100 +angels-chemical-void-gas-chlor-methane,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-chlor-methane,100 +angels-chemical-void-liquid-perchloric-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-perchloric-acid,100 +angels-chemical-void-gas-phosgene,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-phosgene,100 +angels-chemical-void-liquid-ferric-chloride-solution,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-ferric-chloride-solution,100 +angels-chemical-void-liquid-cupric-chloride-solution,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-cupric-chloride-solution,100 +angels-water-void-liquid-aqueous-sodium-hydroxide,angels-water-void +, recipe,water-void,1 +, product,liquid-aqueous-sodium-hydroxide,400 +angels-chemical-void-gas-nitrogen,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-nitrogen,100 +angels-chemical-void-gas-ammonia,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-ammonia,100 +angels-chemical-void-gas-nitrogen-monoxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-nitrogen-monoxide,100 +angels-chemical-void-gas-nitrogen-dioxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-nitrogen-dioxide,100 +angels-chemical-void-gas-dinitrogen-tetroxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-dinitrogen-tetroxide,100 +angels-chemical-void-gas-ammonium-chloride,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-ammonium-chloride,100 +angels-chemical-void-gas-urea,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-urea,100 +angels-chemical-void-gas-melamine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-melamine,100 +angels-chemical-void-liquid-nitric-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-nitric-acid,100 +angels-chemical-void-gas-monochloramine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-monochloramine,100 +angels-chemical-void-gas-hydrazine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-hydrazine,100 +angels-chemical-void-gas-methylamine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-methylamine,100 +angels-chemical-void-gas-dimethylamine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-dimethylamine,100 +angels-chemical-void-gas-dimethylhydrazine,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-dimethylhydrazine,100 +angels-chemical-void-gas-hydrogen-sulfide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-hydrogen-sulfide,100 +angels-chemical-void-gas-sulfur-dioxide,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-sulfur-dioxide,100 +angels-chemical-void-liquid-sulfuric-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-sulfuric-acid,100 +angels-chemical-void-gas-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-acid,100 +angels-chemical-void-gas-hydrogen-fluoride,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-hydrogen-fluoride,100 +angels-chemical-void-liquid-hydrofluoric-acid,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-hydrofluoric-acid,100 +angels-chemical-void-gas-natural-1,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-natural-1,100 +angels-chemical-void-gas-raw-1,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-raw-1,100 +angels-chemical-void-liquid-ngl,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-ngl,100 +angels-chemical-void-liquid-multi-phase-oil,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-multi-phase-oil,100 +angels-chemical-void-liquid-condensates,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-condensates,100 +angels-chemical-void-gas-residual,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-residual,100 +angels-chemical-void-gas-methane,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-methane,100 +angels-chemical-void-gas-ethane,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-ethane,100 +angels-chemical-void-gas-butane,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-butane,100 +angels-chemical-void-gas-propene,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-propene,100 +angels-chemical-void-gas-methanol,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-methanol,100 +angels-chemical-void-gas-ethylene,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-ethylene,100 +angels-chemical-void-gas-benzene,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-benzene,100 +angels-chemical-void-liquid-fuel-oil,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-fuel-oil,100 +angels-chemical-void-liquid-naphtha,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-naphtha,100 +angels-chemical-void-liquid-mineral-oil,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-mineral-oil,100 +angels-chemical-void-gas-synthesis,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-synthesis,100 +angels-chemical-void-liquid-toluene,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-toluene,100 +angels-chemical-void-gas-butadiene,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-butadiene,100 +angels-chemical-void-liquid-phenol,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-phenol,100 +angels-chemical-void-liquid-ethylbenzene,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-ethylbenzene,100 +angels-chemical-void-liquid-styrene,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-styrene,100 +angels-chemical-void-gas-formaldehyde,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-formaldehyde,100 +angels-chemical-void-liquid-polyethylene,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-polyethylene,100 +angels-chemical-void-liquid-glycerol,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-glycerol,100 +angels-chemical-void-liquid-bisphenol-a,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-bisphenol-a,100 +angels-chemical-void-gas-acetone,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-acetone,100 +angels-bio-void-algae-green,angels-bio-void +, recipe,solid-compost,1 +, product,algae-green,4 +angels-bio-void-algae-brown,angels-bio-void +, recipe,solid-compost,1 +, product,algae-brown,3 +angels-bio-void-algae-red,angels-bio-void +, recipe,solid-compost,1 +, product,algae-red,2 +angels-bio-void-algae-blue,angels-bio-void +, recipe,solid-compost,1 +, product,algae-blue,1 +angels-bio-void-wood,angels-bio-void +, recipe,solid-compost,1 +, product,wood,1 +angels-bio-void-cellulose-fiber,angels-bio-void +, recipe,solid-compost,1 +, product,cellulose-fiber,2 +angels-bio-void-temperate-garden,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-garden,2 +angels-bio-void-swamp-garden,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-garden,2 +angels-bio-void-desert-garden,angels-bio-void +, recipe,solid-compost,1 +, product,desert-garden,2 +angels-bio-void-temperate-1-seed,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-1-seed,20 +angels-bio-void-temperate-2-seed,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-2-seed,20 +angels-bio-void-temperate-3-seed,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-3-seed,20 +angels-bio-void-temperate-4-seed,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-4-seed,20 +angels-bio-void-temperate-5-seed,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-5-seed,20 +angels-bio-void-temperate-3-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-3-seed-dormant,20 +angels-bio-void-temperate-4-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-4-seed-dormant,20 +angels-bio-void-temperate-5-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-5-seed-dormant,20 +angels-bio-void-temperate-1,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-1,2 +angels-bio-void-temperate-2,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-2,2 +angels-bio-void-temperate-3,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-3,2 +angels-bio-void-temperate-4,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-4,2 +angels-bio-void-temperate-5,angels-bio-void +, recipe,solid-compost,1 +, product,temperate-5,2 +angels-bio-void-swamp-1-seed,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-1-seed,20 +angels-bio-void-swamp-2-seed,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-2-seed,20 +angels-bio-void-swamp-3-seed,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-3-seed,20 +angels-bio-void-swamp-4-seed,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-4-seed,20 +angels-bio-void-swamp-5-seed,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-5-seed,20 +angels-bio-void-swamp-3-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-3-seed-dormant,20 +angels-bio-void-swamp-4-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-4-seed-dormant,20 +angels-bio-void-swamp-5-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-5-seed-dormant,20 +angels-bio-void-swamp-1,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-1,2 +angels-bio-void-swamp-2,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-2,2 +angels-bio-void-swamp-3,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-3,2 +angels-bio-void-swamp-4,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-4,2 +angels-bio-void-swamp-5,angels-bio-void +, recipe,solid-compost,1 +, product,swamp-5,2 +angels-bio-void-desert-1-seed,angels-bio-void +, recipe,solid-compost,1 +, product,desert-1-seed,20 +angels-bio-void-desert-2-seed,angels-bio-void +, recipe,solid-compost,1 +, product,desert-2-seed,20 +angels-bio-void-desert-3-seed,angels-bio-void +, recipe,solid-compost,1 +, product,desert-3-seed,20 +angels-bio-void-desert-4-seed,angels-bio-void +, recipe,solid-compost,1 +, product,desert-4-seed,20 +angels-bio-void-desert-5-seed,angels-bio-void +, recipe,solid-compost,1 +, product,desert-5-seed,20 +angels-bio-void-desert-3-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,desert-3-seed-dormant,20 +angels-bio-void-desert-4-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,desert-4-seed-dormant,20 +angels-bio-void-desert-5-seed-dormant,angels-bio-void +, recipe,solid-compost,1 +, product,desert-5-seed-dormant,20 +angels-bio-void-desert-1,angels-bio-void +, recipe,solid-compost,1 +, product,desert-1,2 +angels-bio-void-desert-2,angels-bio-void +, recipe,solid-compost,1 +, product,desert-2,2 +angels-bio-void-desert-3,angels-bio-void +, recipe,solid-compost,1 +, product,desert-3,2 +angels-bio-void-desert-4,angels-bio-void +, recipe,solid-compost,1 +, product,desert-4,2 +angels-bio-void-desert-5,angels-bio-void +, recipe,solid-compost,1 +, product,desert-5,2 +angels-chemical-void-gas-ethanol,angels-chemical-void +, recipe,chemical-void,1 +, product,gas-ethanol,100 +angels-bio-void-bio-puffer-egg-shell,angels-bio-void +, recipe,solid-compost,1 +, product,bio-puffer-egg-shell,10 +angels-chemical-void-alien-spores,angels-chemical-void +, recipe,chemical-void,1 +, product,alien-spores,100 +angels-bio-void-alien-bacteria,angels-bio-void +, recipe,solid-compost,1 +, product,alien-bacteria,1 +angels-chemical-void-crude-oil,angels-chemical-void +, recipe,chemical-void,1 +, product,crude-oil,100 +angels-chemical-void-ferric-chloride-solution,angels-chemical-void +, recipe,chemical-void,1 +, product,liquid-ferric-chloride-solution,100 +angels-chemical-void-lubricant,angels-chemical-void +, recipe,chemical-void,1 +, product,lubricant,100 +angelsore-crystal-mix3-processing,ore-sorting-advanced +, recipe,cobalt-ore,6 +, product,catalysator-orange,1,angels-ore2-crystal,2,angels-ore4-crystal,2,angels-ore6-crystal,2 +gilded-copper-cable,angels-gold-casting +, recipe,gilded-copper-cable,3 +, product,copper-cable,3,gold-plate,1 +wooden-board-paper,bio-paper +, recipe,wooden-board,1 +, product,solid-paper,2 +fill-gas-dimethylamine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-dimethylamine-barrel,1 +, product,gas-canister,1,gas-dimethylamine,50 +empty-gas-dimethylamine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-dimethylamine,50 +, product,gas-dimethylamine-barrel,1 +effectivity-module,effectivity-module +, recipe,effectivity-module,1 +, product,module-case,1,effectivity-processor,1,module-contact,4,module-circuit-board,1 +effectivity-module-2,effectivity-module +, recipe,effectivity-module-2,1 +, product,solder,1,effectivity-processor,2,module-contact,5,effectivity-module,1 +effectivity-module-3,effectivity-module +, recipe,effectivity-module-3,1 +, product,solder,2,electronic-components,5,effectivity-processor-2,3,effectivity-module-2,1 +effectivity-module-4,effectivity-module +, recipe,effectivity-module-4,1 +, product,solder,3,intergrated-electronics,5,module-contact,5,effectivity-processor-2,4,effectivity-module-3,1 +effectivity-module-5,effectivity-module +, recipe,effectivity-module-5,1 +, product,solder,4,intergrated-electronics,5,ruby-5,1,module-contact,5,effectivity-processor-2,5,effectivity-module-4,1 +effectivity-module-6,effectivity-module +, recipe,effectivity-module-6,1 +, product,solder,5,intergrated-electronics,5,emerald-5,1,module-contact,5,effectivity-processor-3,6,effectivity-module-5,1 +effectivity-module-7,effectivity-module +, recipe,effectivity-module-7,1 +, product,solder,7,intergrated-electronics,5,processing-electronics,3,topaz-5,1,module-contact,5,effectivity-processor-3,8,effectivity-module-6,1 +effectivity-module-8,effectivity-module +, recipe,effectivity-module-8,1 +, product,solder,8,electronic-components,5,intergrated-electronics,5,processing-electronics,5,diamond-5,1,module-contact,5,effectivity-processor-3,10,effectivity-module-7,1 +god-module-1,god-module +, recipe,god-module-1,1 +, product,solder,2,module-case,1,speed-processor,2,effectivity-processor,6,productivity-processor,2,pollution-clean-processor,4,module-contact,5,module-circuit-board,1 +green-module-1,green-module +, recipe,green-module-1,1 +, product,module-case,1,effectivity-processor,1,pollution-clean-processor,1,module-contact,4,module-circuit-board,1 +green-module-1-combine,green-module-combine +, recipe,green-module-1,1 +, product,solder,1,effectivity-module,1,pollution-clean-module-1,1 +god-module-2,god-module +, recipe,god-module-2,1 +, product,solder,5,electronic-components,7,intergrated-electronics,7,module-contact,5,speed-processor-2,4,effectivity-processor-2,12,productivity-processor-2,4,pollution-clean-processor-2,8,god-module-1,1 +green-module-2,green-module +, recipe,green-module-2,1 +, product,solder,2,effectivity-processor,2,pollution-clean-processor,2,module-contact,5,green-module-1,1 +green-module-2-combine,green-module-combine +, recipe,green-module-2,1 +, product,solder,2,effectivity-module-2,1,pollution-clean-module-2,1 +god-module-3,god-module +, recipe,god-module-3,1 +, product,solder,7,intergrated-electronics,7,ruby-5,1,sapphire-5,1,module-contact,5,speed-processor-3,6,effectivity-processor-3,18,productivity-processor-3,6,pollution-clean-processor-3,12,god-module-2,1 +green-module-3,green-module +, recipe,green-module-3,1 +, product,solder,3,electronic-components,7,effectivity-processor-2,3,pollution-clean-processor-2,3,green-module-2,1 +green-module-3-combine,green-module-combine +, recipe,green-module-3,1 +, product,solder,3,effectivity-module-3,1,pollution-clean-module-3,1 +god-module-4,god-module +, recipe,god-module-4,1 +, product,solder,12,electronic-components,8,intergrated-electronics,8,processing-electronics,8,emerald-5,1,amethyst-5,1,module-contact,5,speed-processor-3,10,effectivity-processor-3,30,productivity-processor-3,10,pollution-clean-processor-3,20,god-module-3,1 +green-module-4,green-module +, recipe,green-module-4,1 +, product,solder,5,intergrated-electronics,7,module-contact,5,effectivity-processor-2,4,pollution-clean-processor-2,4,green-module-3,1 +green-module-4-combine,green-module-combine +, recipe,green-module-4,1 +, product,solder,4,effectivity-module-4,1,pollution-clean-module-4,1 +god-module-5,god-module +, recipe,god-module-5,1 +, product,solder,15,electronic-components,10,intergrated-electronics,10,processing-electronics,10,topaz-5,1,diamond-5,1,module-contact,5,speed-processor-3,15,effectivity-processor-3,45,productivity-processor-3,15,pollution-clean-processor-3,30,god-module-4,1 +green-module-5,green-module +, recipe,green-module-5,1 +, product,solder,6,intergrated-electronics,7,ruby-5,1,module-contact,5,effectivity-processor-2,5,pollution-clean-processor-2,5,green-module-4,1 +green-module-5-combine,green-module-combine +, recipe,green-module-5,1 +, product,solder,6,effectivity-module-5,1,pollution-clean-module-5,1 +green-module-6,green-module +, recipe,green-module-6,1 +, product,solder,7,intergrated-electronics,7,emerald-5,1,module-contact,5,effectivity-processor-3,6,pollution-clean-processor-3,6,green-module-5,1 +green-module-6-combine,green-module-combine +, recipe,green-module-6,1 +, product,solder,7,effectivity-module-6,1,pollution-clean-module-6,1 +green-module-7,green-module +, recipe,green-module-7,1 +, product,solder,10,intergrated-electronics,8,processing-electronics,5,topaz-5,1,module-contact,5,effectivity-processor-3,8,pollution-clean-processor-3,8,green-module-6,1 +green-module-7-combine,green-module-combine +, recipe,green-module-7,1 +, product,solder,8,effectivity-module-7,1,pollution-clean-module-7,1 +green-module-8,green-module +, recipe,green-module-8,1 +, product,solder,12,electronic-components,8,intergrated-electronics,8,processing-electronics,8,diamond-5,1,module-contact,5,effectivity-processor-3,10,pollution-clean-processor-3,10,green-module-7,1 +green-module-8-combine,green-module-combine +, recipe,green-module-8,1 +, product,solder,10,effectivity-module-8,1,pollution-clean-module-8,1 +productivity-module,productivity-module +, recipe,productivity-module,1 +, product,module-case,1,productivity-processor,1,module-contact,4,module-circuit-board,1 +productivity-module-2,productivity-module +, recipe,productivity-module-2,1 +, product,solder,1,productivity-processor,2,module-contact,5,productivity-module,1 +productivity-module-3,productivity-module +, recipe,productivity-module-3,1 +, product,solder,2,electronic-components,5,productivity-processor-2,3,productivity-module-2,1 +productivity-module-4,productivity-module +, recipe,productivity-module-4,1 +, product,solder,3,intergrated-electronics,5,module-contact,5,productivity-processor-2,4,productivity-module-3,1 +productivity-module-5,productivity-module +, recipe,productivity-module-5,1 +, product,solder,4,intergrated-electronics,5,ruby-5,1,module-contact,5,productivity-processor-2,5,productivity-module-4,1 +productivity-module-6,productivity-module +, recipe,productivity-module-6,1 +, product,solder,5,intergrated-electronics,5,emerald-5,1,module-contact,5,productivity-processor-3,6,productivity-module-5,1 +productivity-module-7,productivity-module +, recipe,productivity-module-7,1 +, product,solder,7,intergrated-electronics,5,processing-electronics,3,topaz-5,1,module-contact,5,productivity-processor-3,8,productivity-module-6,1 +productivity-module-8,productivity-module +, recipe,productivity-module-8,1 +, product,solder,8,electronic-components,5,intergrated-electronics,5,processing-electronics,5,diamond-5,1,module-contact,5,productivity-processor-3,10,productivity-module-7,1 +pollution-clean-module-1,pollution-clean-module +, recipe,pollution-clean-module-1,1 +, product,module-case,1,pollution-clean-processor,1,module-contact,4,module-circuit-board,1 +pollution-clean-module-2,pollution-clean-module +, recipe,pollution-clean-module-2,1 +, product,solder,1,pollution-clean-processor,2,module-contact,5,pollution-clean-module-1,1 +pollution-clean-module-3,pollution-clean-module +, recipe,pollution-clean-module-3,1 +, product,solder,2,electronic-components,5,pollution-clean-processor-2,3,pollution-clean-module-2,1 +pollution-clean-module-4,pollution-clean-module +, recipe,pollution-clean-module-4,1 +, product,solder,3,intergrated-electronics,5,module-contact,5,pollution-clean-processor-2,4,pollution-clean-module-3,1 +pollution-clean-module-5,pollution-clean-module +, recipe,pollution-clean-module-5,1 +, product,solder,4,intergrated-electronics,5,ruby-5,1,module-contact,5,pollution-clean-processor-2,5,pollution-clean-module-4,1 +pollution-clean-module-6,pollution-clean-module +, recipe,pollution-clean-module-6,1 +, product,solder,5,intergrated-electronics,5,emerald-5,1,module-contact,5,pollution-clean-processor-3,6,pollution-clean-module-5,1 +pollution-clean-module-7,pollution-clean-module +, recipe,pollution-clean-module-7,1 +, product,solder,7,intergrated-electronics,5,processing-electronics,3,topaz-5,1,module-contact,5,pollution-clean-processor-3,8,pollution-clean-module-6,1 +pollution-clean-module-8,pollution-clean-module +, recipe,pollution-clean-module-8,1 +, product,solder,8,electronic-components,5,intergrated-electronics,5,processing-electronics,5,diamond-5,1,module-contact,5,pollution-clean-processor-3,10,pollution-clean-module-7,1 +pollution-create-module-1,pollution-create-module +, recipe,pollution-create-module-1,1 +, product,module-case,1,pollution-create-processor,1,module-contact,4,module-circuit-board,1 +pollution-create-module-2,pollution-create-module +, recipe,pollution-create-module-2,1 +, product,solder,1,pollution-create-processor,2,module-contact,5,pollution-create-module-1,1 +pollution-create-module-3,pollution-create-module +, recipe,pollution-create-module-3,1 +, product,solder,2,electronic-components,5,pollution-create-processor-2,3,pollution-create-module-2,1 +pollution-create-module-4,pollution-create-module +, recipe,pollution-create-module-4,1 +, product,solder,3,intergrated-electronics,5,module-contact,5,pollution-create-processor-2,4,pollution-create-module-3,1 +pollution-create-module-5,pollution-create-module +, recipe,pollution-create-module-5,1 +, product,solder,4,intergrated-electronics,5,ruby-5,1,module-contact,5,pollution-create-processor-2,5,pollution-create-module-4,1 +pollution-create-module-6,pollution-create-module +, recipe,pollution-create-module-6,1 +, product,solder,5,intergrated-electronics,5,emerald-5,1,module-contact,5,pollution-create-processor-3,6,pollution-create-module-5,1 +pollution-create-module-7,pollution-create-module +, recipe,pollution-create-module-7,1 +, product,solder,7,intergrated-electronics,5,processing-electronics,3,topaz-5,1,module-contact,5,pollution-create-processor-3,8,pollution-create-module-6,1 +pollution-create-module-8,pollution-create-module +, recipe,pollution-create-module-8,1 +, product,solder,8,electronic-components,5,intergrated-electronics,5,processing-electronics,5,diamond-5,1,module-contact,5,pollution-create-processor-3,10,pollution-create-module-7,1 +raw-productivity-module-1,raw-productivity-module +, recipe,raw-productivity-module-1,1 +, product,module-case,1,effectivity-processor,1,productivity-processor,1,pollution-clean-processor,1,module-contact,4,module-circuit-board,1 +raw-productivity-module-1-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-1,1 +, product,solder,1,effectivity-module,1,productivity-module,1,pollution-clean-module-1,1 +raw-productivity-module-2,raw-productivity-module +, recipe,raw-productivity-module-2,1 +, product,solder,2,effectivity-processor,2,productivity-processor,2,pollution-clean-processor,2,module-contact,5,raw-productivity-module-1,1 +raw-productivity-module-2-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-2,1 +, product,solder,2,effectivity-module-2,1,productivity-module-2,1,pollution-clean-module-2,1 +raw-productivity-module-3,raw-productivity-module +, recipe,raw-productivity-module-3,1 +, product,solder,3,electronic-components,7,effectivity-processor-2,3,productivity-processor-2,3,pollution-clean-processor-2,3,raw-productivity-module-2,1 +raw-productivity-module-3-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-3,1 +, product,solder,3,effectivity-module-3,1,productivity-module-3,1,pollution-clean-module-3,1 +raw-productivity-module-4,raw-productivity-module +, recipe,raw-productivity-module-4,1 +, product,solder,5,intergrated-electronics,7,module-contact,5,effectivity-processor-2,4,productivity-processor-2,4,pollution-clean-processor-2,4,raw-productivity-module-3,1 +raw-productivity-module-4-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-4,1 +, product,solder,4,effectivity-module-4,1,productivity-module-4,1,pollution-clean-module-4,1 +raw-productivity-module-5,raw-productivity-module +, recipe,raw-productivity-module-5,1 +, product,solder,6,intergrated-electronics,7,ruby-5,1,module-contact,5,effectivity-processor-2,5,productivity-processor-2,5,pollution-clean-processor-2,5,raw-productivity-module-4,1 +raw-productivity-module-5-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-5,1 +, product,solder,6,effectivity-module-5,1,productivity-module-5,1,pollution-clean-module-5,1 +raw-productivity-module-6,raw-productivity-module +, recipe,raw-productivity-module-6,1 +, product,solder,7,intergrated-electronics,7,emerald-5,1,module-contact,5,effectivity-processor-3,6,productivity-processor-3,6,pollution-clean-processor-3,6,raw-productivity-module-5,1 +raw-productivity-module-6-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-6,1 +, product,solder,7,effectivity-module-6,1,productivity-module-6,1,pollution-clean-module-6,1 +raw-productivity-module-7,raw-productivity-module +, recipe,raw-productivity-module-7,1 +, product,solder,10,intergrated-electronics,8,processing-electronics,5,topaz-5,1,module-contact,5,effectivity-processor-3,8,productivity-processor-3,8,pollution-clean-processor-3,8,raw-productivity-module-6,1 +raw-productivity-module-7-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-7,1 +, product,solder,8,effectivity-module-7,1,productivity-module-7,1,pollution-clean-module-7,1 +raw-productivity-module-8,raw-productivity-module +, recipe,raw-productivity-module-8,1 +, product,solder,12,electronic-components,8,intergrated-electronics,8,processing-electronics,8,diamond-5,1,module-contact,5,effectivity-processor-3,10,productivity-processor-3,10,pollution-clean-processor-3,10,raw-productivity-module-7,1 +raw-productivity-module-8-combine,raw-productivity-module-combine +, recipe,raw-productivity-module-8,1 +, product,solder,10,effectivity-module-8,1,productivity-module-8,1,pollution-clean-module-8,1 +raw-speed-module-1,raw-speed-module +, recipe,raw-speed-module-1,1 +, product,module-case,1,speed-processor,1,effectivity-processor,1,module-contact,4,module-circuit-board,1 +raw-speed-module-1-combine,raw-speed-module-combine +, recipe,raw-speed-module-1,1 +, product,solder,1,speed-module,1,effectivity-module,1 +raw-speed-module-2,raw-speed-module +, recipe,raw-speed-module-2,1 +, product,solder,2,speed-processor,2,effectivity-processor,2,module-contact,5,raw-speed-module-1,1 +raw-speed-module-2-combine,raw-speed-module-combine +, recipe,raw-speed-module-2,1 +, product,solder,2,speed-module-2,1,effectivity-module-2,1 +raw-speed-module-3,raw-speed-module +, recipe,raw-speed-module-3,1 +, product,solder,3,electronic-components,7,speed-processor-2,3,effectivity-processor-2,3,raw-speed-module-2,1 +raw-speed-module-3-combine,raw-speed-module-combine +, recipe,raw-speed-module-3,1 +, product,solder,3,speed-module-3,1,effectivity-module-3,1 +raw-speed-module-4,raw-speed-module +, recipe,raw-speed-module-4,1 +, product,solder,5,intergrated-electronics,7,module-contact,5,speed-processor-2,4,effectivity-processor-2,4,raw-speed-module-3,1 +raw-speed-module-4-combine,raw-speed-module-combine +, recipe,raw-speed-module-4,1 +, product,solder,4,speed-module-4,1,effectivity-module-4,1 +raw-speed-module-5,raw-speed-module +, recipe,raw-speed-module-5,1 +, product,solder,6,intergrated-electronics,7,ruby-5,1,module-contact,5,speed-processor-2,5,effectivity-processor-2,5,raw-speed-module-4,1 +raw-speed-module-5-combine,raw-speed-module-combine +, recipe,raw-speed-module-5,1 +, product,solder,6,speed-module-5,1,effectivity-module-5,1 +raw-speed-module-6,raw-speed-module +, recipe,raw-speed-module-6,1 +, product,solder,7,intergrated-electronics,7,emerald-5,1,module-contact,5,speed-processor-3,6,effectivity-processor-3,6,raw-speed-module-5,1 +raw-speed-module-6-combine,raw-speed-module-combine +, recipe,raw-speed-module-6,1 +, product,solder,7,speed-module-6,1,effectivity-module-6,1 +raw-speed-module-7,raw-speed-module +, recipe,raw-speed-module-7,1 +, product,solder,10,intergrated-electronics,8,processing-electronics,5,topaz-5,1,module-contact,5,speed-processor-3,8,effectivity-processor-3,8,raw-speed-module-6,1 +raw-speed-module-7-combine,raw-speed-module-combine +, recipe,raw-speed-module-7,1 +, product,solder,8,speed-module-7,1,effectivity-module-7,1 +raw-speed-module-8,raw-speed-module +, recipe,raw-speed-module-8,1 +, product,solder,12,electronic-components,8,intergrated-electronics,8,processing-electronics,8,diamond-5,1,module-contact,5,speed-processor-3,10,effectivity-processor-3,10,raw-speed-module-7,1 +raw-speed-module-8-combine,raw-speed-module-combine +, recipe,raw-speed-module-8,1 +, product,solder,10,speed-module-8,1,effectivity-module-8,1 +speed-module,speed-module +, recipe,speed-module,1 +, product,module-case,1,speed-processor,1,module-contact,4,module-circuit-board,1 +speed-module-2,speed-module +, recipe,speed-module-2,1 +, product,solder,1,speed-processor,2,module-contact,5,speed-module,1 +speed-module-3,speed-module +, recipe,speed-module-3,1 +, product,solder,2,electronic-components,5,speed-processor-2,3,speed-module-2,1 +speed-module-4,speed-module +, recipe,speed-module-4,1 +, product,solder,3,intergrated-electronics,5,module-contact,5,speed-processor-2,4,speed-module-3,1 +speed-module-5,speed-module +, recipe,speed-module-5,1 +, product,solder,4,intergrated-electronics,5,ruby-5,1,module-contact,5,speed-processor-2,5,speed-module-4,1 +speed-module-6,speed-module +, recipe,speed-module-6,1 +, product,solder,5,intergrated-electronics,5,emerald-5,1,module-contact,5,speed-processor-3,6,speed-module-5,1 +speed-module-7,speed-module +, recipe,speed-module-7,1 +, product,solder,7,intergrated-electronics,5,processing-electronics,3,topaz-5,1,module-contact,5,speed-processor-3,8,speed-module-6,1 +speed-module-8,speed-module +, recipe,speed-module-8,1 +, product,solder,8,electronic-components,5,intergrated-electronics,5,processing-electronics,5,diamond-5,1,module-contact,5,speed-processor-3,10,speed-module-7,1 +silver-plate,angels-silver-casting +, recipe,silver-plate,3 +, product,silver-ore,4 +angels-plate-silver,angels-silver-casting +, recipe,silver-plate,4 +, product,liquid-molten-silver,40 +angels-roll-silver-converting,angels-silver-casting +, recipe,silver-plate,4 +, product,angels-roll-silver,1 +angels-rod-iron-plate,angels-iron-casting +, recipe,iron-stick,1 +, product,iron-plate,2 +angels-rod-stack-iron-converting,angels-iron-casting +, recipe,iron-stick,4 +, product,angels-rod-stack-iron,1 +angels-rod-steel-plate,angels-steel-casting +, recipe,angels-rod-steel,1 +, product,steel-plate,2 +angels-rod-stack-steel-converting,angels-steel-casting +, recipe,angels-rod-steel,4 +, product,angels-rod-stack-steel,1 +angels-wire-gold,angels-gold-casting +, recipe,gilded-copper-cable,5 +, product,copper-cable,10,gold-plate,4 +angels-wire-coil-gold-converting,angels-gold-casting +, recipe,gilded-copper-cable,16 +, product,angels-wire-coil-gold,4 +silicon-nitride,angels-silicon-casting +, recipe,silicon-nitride,1 +, product,silicon-powder,1,gas-nitrogen,13 +silicon-carbide,angels-silicon-casting +, recipe,silicon-carbide,2 +, product,silicon-powder,1,solid-carbon,1 +angelsore-crystal-mix4-processing,ore-sorting-advanced +, recipe,angels-void,1 +, product,catalysator-orange,1,angels-ore2-crystal,2,angels-ore4-crystal,2,angels-ore5-crystal,2 +fill-gas-dimethylhydrazine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-dimethylhydrazine-barrel,1 +, product,gas-canister,1,gas-dimethylhydrazine,50 +empty-gas-dimethylhydrazine-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,gas-canister,1,gas-dimethylhydrazine,50 +, product,gas-dimethylhydrazine-barrel,1 +basic-silvered-copper-wire,angels-silver-casting +, recipe,angels-wire-silver,5 +, product,copper-cable,10,silver-plate,4 +angels-wire-coil-silver-converting,angels-silver-casting +, recipe,angels-wire-silver,16 +, product,angels-wire-coil-silver,4 +void-nitrogen,void +, recipe,void,1 +, product,gas-nitrogen,25 +angelsore-crystal-mix5-processing,ore-sorting-advanced +, recipe,uranium-ore,3 +, product,catalysator-orange,1,angels-ore1-crystal,2,angels-ore3-crystal,2,angels-ore5-crystal,2 +fill-nitroglycerin-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,nitroglycerin-barrel,1 +, product,empty-barrel,1,nitroglycerin,50 +empty-nitroglycerin-barrel,angels-fluid-control-petrochem-nitrogen-fluids +, recipe,empty-barrel,1,nitroglycerin,50 +, product,nitroglycerin-barrel,1 +void-oxygen,void +, recipe,void,1 +, product,gas-oxygen,25 +angelsore-crystal-mix6-processing,ore-sorting-advanced +, recipe,thorium-ore,3 +, product,catalysator-green,1,angels-ore8-crystal,2,angels-ore9-crystal,2 +void-petroleum-gas,void +, recipe,void,1 +, product,gas-methane,10 +angelsore-pure-mix1-processing,ore-sorting-advanced +, recipe,tungsten-ore,6 +, product,catalysator-orange,1,angels-ore1-pure,2,angels-ore2-pure,2,angels-ore3-pure,2 +rocket-part,intermediate-product +, recipe,rocket-part,1 +, product,rocket-fuel,10,rocket-control-unit,10,low-density-structure,10,heat-shield-tile,10,rocket-engine,10 +angelsore-pure-mix2-processing,ore-sorting-advanced +, recipe,angels-void,1 +, product,catalysator-orange,1,angels-ore3-pure,2,angels-ore5-pure,2,angels-ore6-pure,2 +empty-nuclear-fuel-cell,bob-fuel-cells +, recipe,empty-nuclear-fuel-cell,10 +, product,lead-plate,5,steel-plate,2 +plutonium-fuel-cell,bob-fuel-cells +, recipe,plutonium-fuel-cell,10 +, product,empty-nuclear-fuel-cell,10,uranium-238,19,plutonium-239,1 +angelsore-pure-mix3-processing,ore-sorting-advanced +, recipe,angels-void,1 +, product,catalysator-orange,1,angels-ore2-pure,2,angels-ore4-pure,2,angels-ore5-pure,2 +mech-armor-plate,mech-parts +, recipe,mech-armor-plate,1 +, product,tungsten-carbide,2,low-density-structure,5 +mech-brain,mech-parts +, recipe,mech-brain,1 +, product,solder,120,multi-layer-circuit-board,40,basic-electronic-components,80,electronic-components,100,intergrated-electronics,100,processing-electronics,120,module-case,2 +mech-frame,mech-parts +, recipe,mech-frame,1 +, product,low-density-structure,50,mech-brain,1 +mech-leg,mech-parts +, recipe,mech-leg,1 +, product,insulated-cable,4,mech-foot,1,mech-hip,1,mech-knee,1,mech-leg-segment,2 +mech-foot,mech-parts +, recipe,mech-foot,1 +, product,rubber,1,low-density-structure,1 +mech-hip,mech-parts +, recipe,mech-hip,1 +, product,electric-engine-unit,5,low-density-structure,2,titanium-gear-wheel,4,titanium-bearing,4 +mech-knee,mech-parts +, recipe,mech-knee,1 +, product,electric-engine-unit,10,low-density-structure,2,titanium-gear-wheel,8,titanium-bearing,2 +mech-leg-segment,mech-parts +, recipe,mech-leg-segment,1 +, product,nitinol-alloy,2,titanium-pipe,3 +spidertron-cannon,mech-parts +, recipe,spidertron-cannon,1 +, product,steel-plate,15,iron-gear-wheel,5 +thorium-fuel-cell,bob-fuel-cells +, recipe,thorium-fuel-cell,10 +, product,empty-nuclear-fuel-cell,10,uranium-235,1,thorium-232,19 +thorium-plutonium-fuel-cell,bob-fuel-cells +, recipe,thorium-plutonium-fuel-cell,10 +, product,empty-nuclear-fuel-cell,10,plutonium-239,1,thorium-232,19 +thorium-fuel-reprocessing,bob-fuel-cells +, recipe,thorium-232,4,uranium-235,3,empty-nuclear-fuel-cell,10,angels-muon-fusion-catalyst,1 +, product,used-up-thorium-fuel-cell,10 +void-sour-gas,void +, recipe,void,1 +, product,sour-gas,25 +void-steam,void +, recipe,void,1 +, product,steam,10 +void-sulfur-dioxide,void +, recipe,void,1 +, product,gas-sulfur-dioxide,25 +deuterium-fuel-cell,bob-fuel-cells +, recipe,deuterium-fuel-cell,10 +, product,empty-nuclear-fuel-cell,10,angels-muon-fusion-catalyst,1,gas-deuterium,190 +deuterium-fuel-cell-2,bob-fuel-cells +, recipe,deuterium-fuel-cell-2,10 +, product,empty-nuclear-fuel-cell,10,angels-muon-fusion-catalyst,5,gas-deuterium,250 +deuterium-fuel-reprocessing,bob-fuel-cells +, recipe,empty-nuclear-fuel-cell,10,lithium,1,angels-muon-fusion-catalyst,1 +, product,used-up-deuterium-fuel-cell,10 +void-pump,bob-pump +, recipe,void-pump,1 +, product,iron-plate,2,iron-gear-wheel,2,electronic-circuit,2,copper-pipe,2 +filter-frame,geode-crystallization +, recipe,filter-frame,1 +, product,iron-plate,1,steel-plate,1 +filter-coal,geode-crystallization +, recipe,filter-coal,5 +, product,filter-frame,5,coal,1 +electronic-circuit,angels-loaded-circuit-board +, recipe,electronic-circuit,1 +, product,solder,1,basic-circuit-board,1,basic-electronic-components,5 +advanced-circuit,angels-loaded-circuit-board +, recipe,advanced-circuit,1 +, product,solder,1,circuit-board,1,basic-electronic-components,4,electronic-components,4 +processing-unit,angels-loaded-circuit-board +, recipe,processing-unit,1 +, product,solder,2,superior-circuit-board,1,basic-electronic-components,2,electronic-components,4,intergrated-electronics,2 +vehicle-belt-immunity-equipment,angels-vehicle-equipment-bobpower-e +, recipe,vehicle-belt-immunity-equipment,1 +, product,steel-plate,10,advanced-circuit,5 +smelting-locomotive-1,angels-smeltingtrain +, recipe,smelting-locomotive-1,1 +, product,steel-plate,40,engine-unit,25,electronic-circuit,20,locomotive,1 +smelting-locomotive-1-2,angels-smeltingtrain +, recipe,smelting-locomotive-1-2,1 +, product,steel-plate,50,engine-unit,30,smelting-locomotive-1,1,speed-module,2 +smelting-locomotive-1-3,angels-smeltingtrain +, recipe,smelting-locomotive-1-3,1 +, product,electric-engine-unit,40,low-density-structure,50,smelting-locomotive-1-2,1,speed-module-2,2 +smelting-locomotive-1-4,angels-smeltingtrain +, recipe,smelting-locomotive-1-4,1 +, product,electric-engine-unit,45,low-density-structure,75,smelting-locomotive-1-3,1,speed-module-3,2 +smelting-locomotive-1-5,angels-smeltingtrain +, recipe,smelting-locomotive-1-5,1 +, product,electric-engine-unit,50,rocket-control-unit,2,low-density-structure,100,smelting-locomotive-1-4,1 +smelting-locomotive-tender,angels-smeltingtrain +, recipe,smelting-locomotive-tender,1 +, product,steel-plate,35,engine-unit,25,electronic-circuit,15,locomotive,1 +smelting-locomotive-tender-2,angels-smeltingtrain +, recipe,smelting-locomotive-tender-2,1 +, product,steel-plate,40,engine-unit,30,smelting-locomotive-tender,1,speed-module,1,effectivity-module,1 +smelting-locomotive-tender-3,angels-smeltingtrain +, recipe,smelting-locomotive-tender-3,1 +, product,electric-engine-unit,40,low-density-structure,40,smelting-locomotive-tender-2,1,speed-module-2,1,effectivity-module-2,1 +smelting-locomotive-tender-4,angels-smeltingtrain +, recipe,smelting-locomotive-tender-4,1 +, product,electric-engine-unit,45,low-density-structure,60,smelting-locomotive-tender-3,1,speed-module-3,1,effectivity-module-3,1 +smelting-locomotive-tender-5,angels-smeltingtrain +, recipe,smelting-locomotive-tender-5,1 +, product,electric-engine-unit,50,rocket-control-unit,2,low-density-structure,80,smelting-locomotive-tender-4,1 +smelting-wagon-1,angels-smeltingtrain +, recipe,smelting-wagon-1,1 +, product,steel-plate,20,iron-gear-wheel,25,electronic-circuit,15,cargo-wagon,1 +smelting-wagon-1-2,angels-smeltingtrain +, recipe,smelting-wagon-1-2,1 +, product,steel-plate,25,iron-chest,5,smelting-wagon-1,1,effectivity-module,2 +smelting-wagon-1-3,angels-smeltingtrain +, recipe,smelting-wagon-1-3,1 +, product,low-density-structure,25,iron-chest,10,smelting-wagon-1-2,1,effectivity-module-2,2 +smelting-wagon-1-4,angels-smeltingtrain +, recipe,smelting-wagon-1-4,1 +, product,low-density-structure,35,steel-chest,5,smelting-wagon-1-3,1,effectivity-module-3,2 +smelting-wagon-1-5,angels-smeltingtrain +, recipe,smelting-wagon-1-5,1 +, product,low-density-structure,50,steel-chest,10,smelting-wagon-1-4,1,effectivity-module-3,2 +petro-locomotive-1,angels-petrotrain +, recipe,petro-locomotive-1,1 +, product,steel-plate,40,engine-unit,25,electronic-circuit,20,locomotive,1 +petro-locomotive-1-2,angels-petrotrain +, recipe,petro-locomotive-1-2,1 +, product,steel-plate,50,engine-unit,30,petro-locomotive-1,1,speed-module,2 +petro-locomotive-1-3,angels-petrotrain +, recipe,petro-locomotive-1-3,1 +, product,electric-engine-unit,40,low-density-structure,50,petro-locomotive-1-2,1,speed-module-2,2 +petro-locomotive-1-4,angels-petrotrain +, recipe,petro-locomotive-1-4,1 +, product,electric-engine-unit,45,low-density-structure,75,petro-locomotive-1-3,1,speed-module-3,2 +petro-locomotive-1-5,angels-petrotrain +, recipe,petro-locomotive-1-5,1 +, product,electric-engine-unit,50,rocket-control-unit,2,low-density-structure,100,petro-locomotive-1-4,1 +petro-tank1,angels-petrotrain +, recipe,petro-tank1,1 +, product,steel-plate,20,electronic-circuit,15,fluid-wagon,1,pipe,25 +petro-tank1-2,angels-petrotrain +, recipe,petro-tank1-2,1 +, product,steel-plate,25,angels-storage-tank-1,3,petro-tank1,1,effectivity-module,2 +petro-tank1-3,angels-petrotrain +, recipe,petro-tank1-3,1 +, product,angels-storage-tank-1,6,low-density-structure,25,petro-tank1-2,1,effectivity-module-2,2 +petro-tank1-4,angels-petrotrain +, recipe,petro-tank1-4,1 +, product,angels-storage-tank-1,9,low-density-structure,35,petro-tank1-3,1,effectivity-module-3,2 +petro-tank1-5,angels-petrotrain +, recipe,petro-tank1-5,1 +, product,angels-storage-tank-1,12,low-density-structure,50,petro-tank1-4,1,effectivity-module-3,2 +petro-tank2,angels-petrotrain +, recipe,petro-tank2,1 +, product,steel-plate,20,electronic-circuit,15,fluid-wagon,1,pipe,25 +petro-tank2-2,angels-petrotrain +, recipe,petro-tank2-2,1 +, product,steel-plate,25,angels-storage-tank-2,3,petro-tank2,1,effectivity-module,2 +petro-tank2-3,angels-petrotrain +, recipe,petro-tank2-3,1 +, product,angels-storage-tank-2,6,low-density-structure,25,petro-tank2-2,1,effectivity-module-2,2 +petro-tank2-4,angels-petrotrain +, recipe,petro-tank2-4,1 +, product,angels-storage-tank-2,9,low-density-structure,35,petro-tank2-3,1,effectivity-module-3,2 +petro-tank2-5,angels-petrotrain +, recipe,petro-tank2-5,1 +, product,angels-storage-tank-2,12,low-density-structure,50,petro-tank2-4,1,effectivity-module-3,2 +basic-circuit-board,angels-circuit-board +, recipe,basic-circuit-board,1 +, product,copper-cable,3,wooden-board,1 +basic-electronic-components,angels-circuit-components +, recipe,basic-electronic-components,5 +, product,tinned-copper-cable,1,solid-carbon,1 +wooden-board,angels-board +, recipe,wooden-board,2 +, product,wood,1 +circuit-board,angels-circuit-board +, recipe,circuit-board,1 +, product,copper-plate,1,tin-plate,1,phenolic-board,1,liquid-ferric-chloride-solution,5 +electronic-components,angels-circuit-components +, recipe,electronic-components,5 +, product,silicon-wafer,2,angels-wire-silver,1,plastic-bar,1 +phenolic-board,angels-board +, recipe,phenolic-board,2 +, product,resin,1,wood,1 +fibreglass-board,angels-board +, recipe,fibreglass-board,2 +, product,glass,1,plastic-bar,1 +intergrated-electronics,angels-circuit-components +, recipe,intergrated-electronics,5 +, product,silicon-wafer,4,plastic-bar,1,insulated-cable,1,liquid-sulfuric-acid,5 +superior-circuit-board,angels-circuit-board +, recipe,superior-circuit-board,1 +, product,copper-plate,1,silver-plate,1,fibreglass-board,1,liquid-ferric-chloride-solution,5 +advanced-processing-unit,angels-loaded-circuit-board +, recipe,advanced-processing-unit,1 +, product,solder,4,multi-layer-circuit-board,1,basic-electronic-components,1,electronic-components,2,intergrated-electronics,4,processing-electronics,1 +multi-layer-circuit-board,angels-circuit-board +, recipe,multi-layer-circuit-board,1 +, product,copper-plate,2,gold-plate,2,fibreglass-board,1,liquid-ferric-chloride-solution,10 +processing-electronics,angels-circuit-components +, recipe,processing-electronics,5 +, product,gilded-copper-cable,2,silicon-wafer,6,silicon-nitride,1,liquid-sulfuric-acid,5 +filter-ceramic,geode-crystallization +, recipe,filter-ceramic,1 +, product,filter-frame,1,alumina,1 +filter-ceramic-refurbish,geode-crystallization +, recipe,filter-ceramic,1 +, product,filter-ceramic-used,1,water-purified,50 +milling-drum,ore-powderizer +, recipe,milling-drum,1 +, product,steel-plate,1,lubricant,10 +milling-drum-used,ore-powderizer +, recipe,milling-drum,1 +, product,milling-drum-used,1,lubricant,10 +shot,angels-physical-ba +, recipe,shot,1 +, product,lead-plate,1 +gun-cotton,angels-physical-ba +, recipe,gun-cotton,1 +, product,wood,1,liquid-nitric-acid,10 +petroleum-jelly,angels-physical-ba +, recipe,petroleum-jelly,1 +, product,gas-residual,10 +rocket-control-unit,angels-basic-intermediate +, recipe,rocket-control-unit,1 +, product,solder,5,multi-layer-circuit-board,2,basic-electronic-components,4,electronic-components,6,intergrated-electronics,4,processing-electronics,8 +rocket-silo,production-machine +, recipe,rocket-silo,1 +, product,concrete,200,nitinol-alloy,500,electric-engine-unit,100,rocket-control-unit,25,low-density-structure,50,heat-shield-tile,100,advanced-processing-unit,50,titanium-pipe,50 +low-density-structure,angels-basic-intermediate +, recipe,low-density-structure,1 +, product,aluminium-plate,20,titanium-plate,2,plastic-bar,5 +heat-shield-tile,angels-basic-intermediate +, recipe,heat-shield-tile,1 +, product,silicon-nitride,10,tungsten-carbide,5 +rtg,angels-basic-intermediate +, recipe,rtg,1 +, product,aluminium-plate,5,lead-plate,1,sodium-cobaltate,2,plutonium-239,1 +satellite,angels-basic-intermediate +, recipe,satellite,1 +, product,rocket-fuel,50,silver-zinc-battery,50,rocket-control-unit,100,low-density-structure,100,rtg,10,radar-5,5 \ No newline at end of file diff --git a/mod-recipes/recipes.org b/mod-recipes/recipes.org new file mode 100644 index 0000000..a78141c --- /dev/null +++ b/mod-recipes/recipes.org @@ -0,0 +1,25310 @@ +#+title: AngelBob recipes + +* Notes :noexport: + +This file was generated using the following Lua script, with all of Angel's and Bob's mods enabled in Factorio: +#+begin_src lua +/c +local recipes = {} +for name, recipe in pairs(game.recipe_prototypes) do + local ingredients = {} + for _, ingredient in pairs(recipe.ingredients) do + ingredients[#ingredients+1] = ingredient.name .. "," .. ingredient.amount + end + local products = {} + for _, product in pairs(recipe.products) do + local amount = product.amount or product.amount_min .. "-" .. product.amount_max + products[#products+1] = product.name .. "," .. amount + end + recipes[#recipes+1] = "\n* " .. recipe.subgroup.name .. "\n** " .. name .. "\n*** products" .. "\n- " .. table.concat(products, "\n- ") .. "\n*** ingredients" .. "\n- " .. table.concat(ingredients, "\n- ") +end +game.write_file("recipes.org", table.concat(recipes, "\n"), false) +#+end_src + +The purpose of the file is to give an overview of the data structures used in the mods. + + +* angels-alloys +** angels-solder-mixture +*** products +- angels-solder-mixture,2 +*** ingredients +- lead-plate,2 +- tin-plate,2 + +* angels-alloys +** lithium-chloride +*** products +- solid-lithium,1 +*** ingredients +- lithia-water,25 + +* angels-alloys +** lithium +*** products +- lithium,1 +*** ingredients +- solid-lithium,1 + +* angels-alloys +** lithium-cobalt-oxide +*** products +- lithium-cobalt-oxide,2 +*** ingredients +- cobalt-oxide,1 +- lithium,1 + +* angels-alloys +** lithium-water-electrolysis +*** products +- lithium-perchlorate,1 +- solid-salt,1 +- gas-hydrogen,20 +*** ingredients +- solid-lithium,1 +- solid-sodium-perchlorate,1 + +* angels-alloys-casting +** angels-bronze-smelting-1 +*** products +- liquid-molten-bronze,240 +*** ingredients +- ingot-copper,18 +- ingot-tin,6 + +* angels-alloys-casting +** angels-bronze-smelting-2 +*** products +- liquid-molten-bronze,360 +*** ingredients +- ingot-copper,18 +- ingot-nickel,6 +- ingot-tin,12 + +* angels-alloys-casting +** angels-bronze-smelting-3 +*** products +- liquid-molten-bronze,360 +*** ingredients +- ingot-copper,18 +- ingot-tin,12 +- ingot-zinc,6 + +* angels-alloys-casting +** angels-plate-bronze +*** products +- bronze-alloy,4 +*** ingredients +- liquid-molten-bronze,40 + +* angels-alloys-casting +** bronze-alloy +*** products +- bronze-alloy,5 +*** ingredients +- copper-plate,3 +- tin-plate,2 + +* angels-alloys-casting +** angels-brass-smelting-1 +*** products +- liquid-molten-brass,240 +*** ingredients +- ingot-copper,18 +- ingot-zinc,6 + +* angels-alloys-casting +** angels-brass-smelting-2 +*** products +- liquid-molten-brass,360 +*** ingredients +- ingot-copper,18 +- ingot-tin,6 +- ingot-zinc,12 + +* angels-alloys-casting +** angels-brass-smelting-3 +*** products +- liquid-molten-brass,360 +*** ingredients +- ingot-copper,18 +- ingot-lead,6 +- ingot-zinc,12 + +* angels-alloys-casting +** angels-plate-brass +*** products +- brass-alloy,4 +*** ingredients +- liquid-molten-brass,40 + +* angels-alloys-casting +** brass-alloy +*** products +- brass-alloy,5 +*** ingredients +- copper-plate,3 +- zinc-plate,2 + +* angels-alloys-casting +** angels-gunmetal-smelting-1 +*** products +- liquid-molten-gunmetal,360 +*** ingredients +- ingot-copper,18 +- ingot-tin,6 +- ingot-zinc,12 + +* angels-alloys-casting +** angels-plate-gunmetal +*** products +- gunmetal-alloy,4 +*** ingredients +- liquid-molten-gunmetal,40 + +* angels-alloys-casting +** gunmetal-alloy +*** products +- gunmetal-alloy,10 +*** ingredients +- copper-plate,8 +- tin-plate,1 +- zinc-plate,1 + +* angels-alloys-casting +** angels-invar-smelting-1 +*** products +- liquid-molten-invar,360 +*** ingredients +- ingot-steel,24 +- ingot-nickel,12 + +* angels-alloys-casting +** angels-plate-invar +*** products +- invar-alloy,4 +*** ingredients +- liquid-molten-invar,40 + +* angels-alloys-casting +** invar-alloy +*** products +- invar-alloy,5 +*** ingredients +- iron-plate,3 +- nickel-plate,2 + +* angels-alloys-casting +** angels-cobalt-steel-smelting-1 +*** products +- liquid-molten-cobalt-steel,360 +*** ingredients +- ingot-cobalt,12 +- ingot-steel,24 + +* angels-alloys-casting +** angels-plate-cobalt-steel +*** products +- cobalt-steel-alloy,4 +*** ingredients +- liquid-molten-cobalt-steel,40 + +* angels-alloys-casting +** cobalt-steel-alloy +*** products +- cobalt-steel-alloy,10 +*** ingredients +- cobalt-plate,1 +- iron-plate,14 + +* angels-alloys-casting +** angels-nitinol-smelting-1 +*** products +- liquid-molten-nitinol,360 +*** ingredients +- ingot-nickel,12 +- ingot-titanium,24 + +* angels-alloys-casting +** angels-plate-nitinol +*** products +- nitinol-alloy,4 +*** ingredients +- liquid-molten-nitinol,40 + +* angels-alloys-casting +** nitinol-alloy +*** products +- nitinol-alloy,5 +*** ingredients +- nickel-plate,3 +- titanium-plate,2 + +* angels-aluminium +** bauxite-ore-processing +*** products +- processed-aluminium,2 +*** ingredients +- bauxite-ore,4 + +* angels-aluminium +** aluminium-processed-processing +*** products +- pellet-aluminium,4 +*** ingredients +- processed-aluminium,3 + +* angels-aluminium +** pellet-aluminium-smelting +*** products +- solid-sodium-aluminate,18 +*** ingredients +- pellet-aluminium,6 +- solid-coke,3 +- solid-sodium-carbonate,3 + +* angels-aluminium +** bauxite-ore-smelting +*** products +- solid-aluminium-hydroxide,12 +*** ingredients +- bauxite-ore,12 +- solid-sodium-hydroxide,3 + +* angels-aluminium +** processed-aluminium-smelting +*** products +- solid-aluminium-hydroxide,12 +*** ingredients +- processed-aluminium,4 +- solid-sodium-hydroxide,3 + +* angels-aluminium +** solid-aluminium-hydroxide-smelting +*** products +- alumina,24 +*** ingredients +- solid-aluminium-hydroxide,24 + +* angels-aluminium +** solid-sodium-aluminate-smelting +*** products +- alumina,24 +- solid-sodium-carbonate,2 +*** ingredients +- solid-sodium-aluminate,24 +- solid-sodium-hydroxide,3 +- gas-carbon-dioxide,60 + +* angels-aluminium +** solid-aluminium-oxide-smelting +*** products +- ingot-aluminium,24 +*** ingredients +- alumina,24 +- solid-carbon,3 + +* angels-aluminium +** powder-aluminium +*** products +- powder-aluminium,1 +*** ingredients +- ingot-aluminium,1 + +* angels-aluminium-casting +** molten-aluminium-smelting-1 +*** products +- liquid-molten-aluminium,120 +*** ingredients +- ingot-aluminium,12 + +* angels-aluminium-casting +** molten-aluminium-smelting-2 +*** products +- liquid-molten-aluminium,240 +*** ingredients +- ingot-aluminium,12 +- ingot-manganese,12 + +* angels-aluminium-casting +** molten-aluminium-smelting-3 +*** products +- liquid-molten-aluminium,360 +*** ingredients +- ingot-aluminium,12 +- ingot-copper,12 +- ingot-silicon,12 + +* angels-aluminium-casting +** roll-aluminium-casting +*** products +- angels-roll-aluminium,2 +*** ingredients +- liquid-molten-aluminium,80 +- water,40 + +* angels-aluminium-casting +** roll-aluminium-casting-fast +*** products +- angels-roll-aluminium,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-aluminium,140 +- liquid-coolant,40 + +* angels-aluminium-casting +** angels-plate-aluminium +*** products +- aluminium-plate,4 +*** ingredients +- liquid-molten-aluminium,40 + +* angels-aluminium-casting +** angels-roll-aluminium-converting +*** products +- aluminium-plate,4 +*** ingredients +- angels-roll-aluminium,1 + +* angels-artillery +** artillery-wagon +*** products +- artillery-wagon,1 +*** ingredients +- invar-alloy,40 +- engine-unit,64 +- iron-gear-wheel,10 +- advanced-circuit,20 +- pipe,16 + +* angels-artillery +** bob-artillery-wagon-2 +*** products +- bob-artillery-wagon-2,1 +*** ingredients +- titanium-plate,40 +- titanium-gear-wheel,12 +- titanium-bearing,8 +- processing-unit,20 +- artillery-wagon,1 +- titanium-pipe,16 + +* angels-artillery +** bob-artillery-wagon-3 +*** products +- bob-artillery-wagon-3,1 +*** ingredients +- silicon-nitride,10 +- tungsten-carbide,10 +- nitinol-alloy,20 +- nitinol-gear-wheel,12 +- nitinol-bearing,8 +- advanced-processing-unit,20 +- bob-artillery-wagon-2,1 +- nitinol-pipe,16 + +* angels-artillery-a +** artillery-targeting-remote +*** products +- artillery-targeting-remote,1 +*** ingredients +- processing-unit,1 +- radar,1 + +* angels-artillery-a +** artillery-turret +*** products +- artillery-turret,1 +*** ingredients +- concrete,60 +- steel-plate,60 +- iron-gear-wheel,40 +- advanced-circuit,20 + +* angels-artillery-a +** bob-artillery-turret-2 +*** products +- bob-artillery-turret-2,1 +*** ingredients +- silicon-nitride,60 +- titanium-plate,60 +- titanium-gear-wheel,40 +- processing-unit,20 +- artillery-turret,1 + +* angels-artillery-a +** bob-artillery-turret-3 +*** products +- bob-artillery-turret-3,1 +*** ingredients +- tungsten-carbide,60 +- nitinol-alloy,60 +- nitinol-gear-wheel,40 +- advanced-processing-unit,20 +- bob-artillery-turret-2,1 + +* angels-artillery-a +** radar +*** products +- radar,1 +*** ingredients +- iron-plate,10 +- iron-gear-wheel,5 +- basic-circuit-board,5 + +* angels-artillery-a +** radar-2 +*** products +- radar-2,1 +*** ingredients +- steel-plate,10 +- steel-gear-wheel,5 +- electronic-circuit,5 +- radar,1 + +* angels-artillery-a +** radar-3 +*** products +- radar-3,1 +*** ingredients +- aluminium-plate,10 +- brass-gear-wheel,5 +- steel-bearing,5 +- advanced-circuit,5 +- radar-2,1 + +* angels-artillery-a +** radar-4 +*** products +- radar-4,1 +*** ingredients +- titanium-plate,10 +- titanium-gear-wheel,5 +- titanium-bearing,5 +- processing-unit,5 +- radar-3,1 + +* angels-artillery-a +** radar-5 +*** products +- radar-5,1 +*** ingredients +- nitinol-alloy,10 +- nitinol-gear-wheel,5 +- nitinol-bearing,5 +- advanced-processing-unit,5 +- radar-4,1 + +* angels-artillery-b +** artillery-shell +*** products +- artillery-shell,1 +*** ingredients +- explosives,8 +- explosive-cannon-shell,3 + +* angels-artillery-b +** distractor-artillery-shell +*** products +- distractor-artillery-shell,1 +*** ingredients +- steel-plate,6 +- plastic-bar,6 +- explosives,3 +- distractor-robot,15 + +* angels-artillery-b +** poison-artillery-shell +*** products +- poison-artillery-shell,1 +*** ingredients +- steel-plate,6 +- plastic-bar,6 +- explosives,3 +- alien-poison,150 + +* angels-artillery-b +** fire-artillery-shell +*** products +- fire-artillery-shell,1 +*** ingredients +- steel-plate,6 +- plastic-bar,6 +- explosives,3 +- alien-fire,150 + +* angels-artillery-b +** explosive-artillery-shell +*** products +- explosive-artillery-shell,1 +*** ingredients +- steel-plate,6 +- plastic-bar,6 +- explosives,3 +- alien-explosive,180 + +* angels-artillery-b +** atomic-artillery-shell +*** products +- atomic-artillery-shell,1 +*** ingredients +- steel-plate,6 +- plastic-bar,6 +- explosives,15 +- plutonium-239,30 + +* angels-basic-intermediate +** iron-stick +*** products +- iron-stick,2 +*** ingredients +- iron-plate,1 + +* angels-basic-intermediate +** engine-unit +*** products +- engine-unit,1 +*** ingredients +- steel-plate,1 +- iron-gear-wheel,1 +- pipe,2 + +* angels-basic-intermediate +** electric-engine-unit +*** products +- electric-engine-unit,1 +*** ingredients +- engine-unit,1 +- electronic-circuit,2 +- lubricant,15 + +* angels-basic-intermediate +** battery +*** products +- battery,1 +*** ingredients +- lead-plate,2 +- plastic-bar,1 +- liquid-sulfuric-acid,20 + +* angels-basic-intermediate +** lithium-ion-battery +*** products +- lithium-ion-battery,1 +*** ingredients +- lithium-cobalt-oxide,1 +- lithium-perchlorate,2 +- solid-carbon,1 +- plastic-bar,1 + +* angels-basic-intermediate +** silver-zinc-battery +*** products +- silver-zinc-battery,1 +*** ingredients +- silver-oxide,1 +- zinc-plate,1 +- solid-sodium-hydroxide,2 +- plastic-bar,1 + +* angels-basic-intermediate +** rocket-control-unit +*** products +- rocket-control-unit,1 +*** ingredients +- solder,5 +- multi-layer-circuit-board,2 +- basic-electronic-components,4 +- electronic-components,6 +- intergrated-electronics,4 +- processing-electronics,8 + +* angels-basic-intermediate +** low-density-structure +*** products +- low-density-structure,1 +*** ingredients +- aluminium-plate,20 +- titanium-plate,2 +- plastic-bar,5 + +* angels-basic-intermediate +** heat-shield-tile +*** products +- heat-shield-tile,1 +*** ingredients +- silicon-nitride,10 +- tungsten-carbide,5 + +* angels-basic-intermediate +** rtg +*** products +- rtg,1 +*** ingredients +- aluminium-plate,5 +- lead-plate,1 +- sodium-cobaltate,2 +- plutonium-239,1 + +* angels-basic-intermediate +** satellite +*** products +- satellite,1 +*** ingredients +- rocket-fuel,50 +- silver-zinc-battery,50 +- rocket-control-unit,100 +- low-density-structure,100 +- rtg,10 +- radar-5,5 +* angels-big-power-poles +** big-electric-pole +*** products +- big-electric-pole,1 +*** ingredients +- copper-plate,5 +- steel-plate,5 +- iron-stick,8 + +* angels-big-power-poles +** big-electric-pole-2 +*** products +- big-electric-pole-2,1 +*** ingredients +- tinned-copper-cable,5 +- brass-alloy,5 +- big-electric-pole,1 + +* angels-big-power-poles +** big-electric-pole-3 +*** products +- big-electric-pole-3,1 +*** ingredients +- titanium-plate,5 +- insulated-cable,5 +- big-electric-pole-2,1 + +* angels-big-power-poles +** big-electric-pole-4 +*** products +- big-electric-pole-4,1 +*** ingredients +- gilded-copper-cable,5 +- nitinol-alloy,5 +- big-electric-pole-3,1 + +* angels-bio-void +** angels-bio-void-algae-green +*** products +- solid-compost,1 +*** ingredients +- algae-green,4 + +* angels-bio-void +** angels-bio-void-algae-brown +*** products +- solid-compost,1 +*** ingredients +- algae-brown,3 + +* angels-bio-void +** angels-bio-void-algae-red +*** products +- solid-compost,1 +*** ingredients +- algae-red,2 + +* angels-bio-void +** angels-bio-void-algae-blue +*** products +- solid-compost,1 +*** ingredients +- algae-blue,1 + +* angels-bio-void +** angels-bio-void-wood +*** products +- solid-compost,1 +*** ingredients +- wood,1 + +* angels-bio-void +** angels-bio-void-cellulose-fiber +*** products +- solid-compost,1 +*** ingredients +- cellulose-fiber,2 + +* angels-bio-void +** angels-bio-void-temperate-garden +*** products +- solid-compost,1 +*** ingredients +- temperate-garden,2 + +* angels-bio-void +** angels-bio-void-swamp-garden +*** products +- solid-compost,1 +*** ingredients +- swamp-garden,2 + +* angels-bio-void +** angels-bio-void-desert-garden +*** products +- solid-compost,1 +*** ingredients +- desert-garden,2 + +* angels-bio-void +** angels-bio-void-temperate-1-seed +*** products +- solid-compost,1 +*** ingredients +- temperate-1-seed,20 + +* angels-bio-void +** angels-bio-void-temperate-2-seed +*** products +- solid-compost,1 +*** ingredients +- temperate-2-seed,20 + +* angels-bio-void +** angels-bio-void-temperate-3-seed +*** products +- solid-compost,1 +*** ingredients +- temperate-3-seed,20 + +* angels-bio-void +** angels-bio-void-temperate-4-seed +*** products +- solid-compost,1 +*** ingredients +- temperate-4-seed,20 + +* angels-bio-void +** angels-bio-void-temperate-5-seed +*** products +- solid-compost,1 +*** ingredients +- temperate-5-seed,20 + +* angels-bio-void +** angels-bio-void-temperate-3-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- temperate-3-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-temperate-4-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- temperate-4-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-temperate-5-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- temperate-5-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-temperate-1 +*** products +- solid-compost,1 +*** ingredients +- temperate-1,2 + +* angels-bio-void +** angels-bio-void-temperate-2 +*** products +- solid-compost,1 +*** ingredients +- temperate-2,2 + +* angels-bio-void +** angels-bio-void-temperate-3 +*** products +- solid-compost,1 +*** ingredients +- temperate-3,2 + +* angels-bio-void +** angels-bio-void-temperate-4 +*** products +- solid-compost,1 +*** ingredients +- temperate-4,2 + +* angels-bio-void +** angels-bio-void-temperate-5 +*** products +- solid-compost,1 +*** ingredients +- temperate-5,2 + +* angels-bio-void +** angels-bio-void-swamp-1-seed +*** products +- solid-compost,1 +*** ingredients +- swamp-1-seed,20 + +* angels-bio-void +** angels-bio-void-swamp-2-seed +*** products +- solid-compost,1 +*** ingredients +- swamp-2-seed,20 + +* angels-bio-void +** angels-bio-void-swamp-3-seed +*** products +- solid-compost,1 +*** ingredients +- swamp-3-seed,20 + +* angels-bio-void +** angels-bio-void-swamp-4-seed +*** products +- solid-compost,1 +*** ingredients +- swamp-4-seed,20 + +* angels-bio-void +** angels-bio-void-swamp-5-seed +*** products +- solid-compost,1 +*** ingredients +- swamp-5-seed,20 + +* angels-bio-void +** angels-bio-void-swamp-3-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- swamp-3-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-swamp-4-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- swamp-4-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-swamp-5-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- swamp-5-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-swamp-1 +*** products +- solid-compost,1 +*** ingredients +- swamp-1,2 + +* angels-bio-void +** angels-bio-void-swamp-2 +*** products +- solid-compost,1 +*** ingredients +- swamp-2,2 + +* angels-bio-void +** angels-bio-void-swamp-3 +*** products +- solid-compost,1 +*** ingredients +- swamp-3,2 + +* angels-bio-void +** angels-bio-void-swamp-4 +*** products +- solid-compost,1 +*** ingredients +- swamp-4,2 + +* angels-bio-void +** angels-bio-void-swamp-5 +*** products +- solid-compost,1 +*** ingredients +- swamp-5,2 + +* angels-bio-void +** angels-bio-void-desert-1-seed +*** products +- solid-compost,1 +*** ingredients +- desert-1-seed,20 + +* angels-bio-void +** angels-bio-void-desert-2-seed +*** products +- solid-compost,1 +*** ingredients +- desert-2-seed,20 + +* angels-bio-void +** angels-bio-void-desert-3-seed +*** products +- solid-compost,1 +*** ingredients +- desert-3-seed,20 + +* angels-bio-void +** angels-bio-void-desert-4-seed +*** products +- solid-compost,1 +*** ingredients +- desert-4-seed,20 + +* angels-bio-void +** angels-bio-void-desert-5-seed +*** products +- solid-compost,1 +*** ingredients +- desert-5-seed,20 + +* angels-bio-void +** angels-bio-void-desert-3-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- desert-3-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-desert-4-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- desert-4-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-desert-5-seed-dormant +*** products +- solid-compost,1 +*** ingredients +- desert-5-seed-dormant,20 + +* angels-bio-void +** angels-bio-void-desert-1 +*** products +- solid-compost,1 +*** ingredients +- desert-1,2 + +* angels-bio-void +** angels-bio-void-desert-2 +*** products +- solid-compost,1 +*** ingredients +- desert-2,2 + +* angels-bio-void +** angels-bio-void-desert-3 +*** products +- solid-compost,1 +*** ingredients +- desert-3,2 + +* angels-bio-void +** angels-bio-void-desert-4 +*** products +- solid-compost,1 +*** ingredients +- desert-4,2 + +* angels-bio-void +** angels-bio-void-desert-5 +*** products +- solid-compost,1 +*** ingredients +- desert-5,2 + +* angels-bio-void +** angels-bio-void-bio-puffer-egg-shell +*** products +- solid-compost,1 +*** ingredients +- bio-puffer-egg-shell,10 + +* angels-bio-void +** angels-bio-void-alien-bacteria +*** products +- solid-compost,1 +*** ingredients +- alien-bacteria,1 + +* angels-blast-furnace +** blast-furnace +*** products +- blast-furnace,1 +*** ingredients +- stone-brick,50 +- iron-plate,12 +- basic-circuit-board,3 +- pipe,15 + +* angels-blast-furnace +** blast-furnace-2 +*** products +- blast-furnace-2,1 +*** ingredients +- clay-brick,50 +- blast-furnace,1 +- steel-plate,12 +- electronic-circuit,3 +- steel-pipe,15 + +* angels-blast-furnace +** blast-furnace-3 +*** products +- blast-furnace-3,1 +*** ingredients +- blast-furnace-2,1 +- aluminium-plate,16 +- concrete-brick,50 +- advanced-circuit,3 +- brass-pipe,15 + +* angels-blast-furnace +** blast-furnace-4 +*** products +- blast-furnace-4,1 +*** ingredients +- blast-furnace-3,1 +- reinforced-concrete-brick,50 +- titanium-plate,16 +- processing-unit,3 +- titanium-pipe,15 + +* angels-board +** wooden-board +*** products +- wooden-board,2 +*** ingredients +- wood,1 + +* angels-board +** phenolic-board +*** products +- phenolic-board,2 +*** ingredients +- resin,1 +- wood,1 + +* angels-board +** fibreglass-board +*** products +- fibreglass-board,2 +*** ingredients +- glass,1 +- plastic-bar,1 + +* angels-capsules-a +** land-mine +*** products +- land-mine,4 +*** ingredients +- steel-plate,1 +- explosives,2 + +* angels-capsules-a +** poison-mine +*** products +- poison-mine,4 +*** ingredients +- steel-plate,1 +- poison-capsule,4 + +* angels-capsules-a +** slowdown-mine +*** products +- slowdown-mine,4 +*** ingredients +- steel-plate,1 +- slowdown-capsule,4 + +* angels-capsules-a +** distractor-mine +*** products +- distractor-mine,3 +*** ingredients +- steel-plate,1 +- distractor-capsule,1 + +* angels-capsules-a +** grenade +*** products +- grenade,1 +*** ingredients +- iron-plate,5 +- coal,10 + +* angels-capsules-a +** cluster-grenade +*** products +- cluster-grenade,1 +*** ingredients +- steel-plate,5 +- explosives,5 +- grenade,7 + +* angels-capsules-a +** poison-capsule +*** products +- poison-capsule,1 +*** ingredients +- steel-plate,3 +- coal,10 +- electronic-circuit,3 + +* angels-capsules-a +** slowdown-capsule +*** products +- slowdown-capsule,1 +*** ingredients +- steel-plate,2 +- coal,5 +- electronic-circuit,2 + +* angels-capsules-a +** fire-capsule +*** products +- fire-capsule,1 +*** ingredients +- steel-plate,3 +- electronic-circuit,3 +- liquid-fuel,100 + +* angels-cargo-bots +** angels-construction-robot +*** products +- angels-construction-robot,1 +*** ingredients +- steel-plate,5 +- engine-unit,1 +- iron-gear-wheel,5 +- electronic-circuit,2 + +* angels-cargo-bots +** cargo-robot +*** products +- cargo-robot,1 +*** ingredients +- steel-plate,5 +- engine-unit,1 +- iron-gear-wheel,5 +- electronic-circuit,2 + +* angels-cargo-bots +** cargo-robot-2 +*** products +- cargo-robot-2,1 +*** ingredients +- steel-plate,5 +- electric-engine-unit,5 +- iron-gear-wheel,5 +- advanced-circuit,5 +- cargo-robot,1 + +* angels-cargo-bots +** bob-construction-robot-5 +*** products +- bob-construction-robot-5,1 +*** ingredients +- rtg,1 +- bob-construction-robot-4,1 + +* angels-cargo-bots +** bob-logistic-robot-5 +*** products +- bob-logistic-robot-5,1 +*** ingredients +- rtg,1 +- bob-logistic-robot-4,1 + +* angels-cargo-expander +** angels-relay-station +*** products +- angels-relay-station,1 +*** ingredients +- iron-plate,5 +- electronic-circuit,2 + +* angels-cargo-expander +** angels-relay-station-2 +*** products +- angels-relay-station-2,1 +*** ingredients +- iron-plate,5 +- steel-plate,5 +- advanced-circuit,2 +- angels-relay-station,4 + +* angels-cargo-expander +** angels-relay-station-3 +*** products +- angels-relay-station-3,1 +*** ingredients +- steel-plate,5 +- low-density-structure,5 +- processing-unit,2 +- angels-relay-station-2,4 + +* angels-cargo-expander +** angels-zone-expander +*** products +- angels-zone-expander,1 +*** ingredients +- iron-plate,5 +- electronic-circuit,2 + +* angels-cargo-expander +** angels-zone-expander-2 +*** products +- angels-zone-expander-2,1 +*** ingredients +- iron-plate,5 +- steel-plate,5 +- advanced-circuit,2 +- angels-zone-expander,4 + +* angels-cargo-expander +** angels-zone-expander-3 +*** products +- angels-zone-expander-3,1 +*** ingredients +- steel-plate,5 +- low-density-structure,5 +- processing-unit,2 +- angels-zone-expander-2,4 + +* angels-cargo-expander +** angels-construction-zone-expander +*** products +- angels-construction-zone-expander,1 +*** ingredients +- iron-plate,5 +- electronic-circuit,2 + +* angels-cargo-expander +** angels-construction-zone-expander-2 +*** products +- angels-construction-zone-expander-2,1 +*** ingredients +- iron-plate,5 +- steel-plate,5 +- advanced-circuit,2 +- angels-construction-zone-expander,4 + +* angels-cargo-expander +** angels-construction-zone-expander-3 +*** products +- angels-construction-zone-expander-3,1 +*** ingredients +- steel-plate,5 +- low-density-structure,5 +- processing-unit,2 +- angels-construction-zone-expander-2,4 + +* angels-cargo-ports +** cargo-roboport +*** products +- cargo-roboport,1 +*** ingredients +- stone-brick,40 +- steel-plate,60 +- iron-gear-wheel,60 +- electronic-circuit,60 + +* angels-cargo-ports +** cargo-box +*** products +- cargo-box,1 +*** ingredients +- stone-brick,40 +- steel-plate,60 +- iron-gear-wheel,60 +- electronic-circuit,60 + +* angels-cargo-ports +** cargo-hub +*** products +- cargo-hub,1 +*** ingredients +- stone-brick,40 +- steel-plate,60 +- iron-gear-wheel,60 +- electronic-circuit,60 + +* angels-cargo-ports +** angels-charging-station +*** products +- angels-charging-station,1 +*** ingredients +- iron-plate,5 +- steel-plate,5 +- processing-unit,2 +- angels-relay-station-2,2 + +* angels-casting-machine +** casting-machine +*** products +- casting-machine,1 +*** ingredients +- stone-brick,5 +- iron-plate,9 +- iron-gear-wheel,3 +- basic-circuit-board,1 +- pipe,6 + +* angels-casting-machine +** casting-machine-2 +*** products +- casting-machine-2,1 +*** ingredients +- clay-brick,5 +- steel-plate,9 +- casting-machine,1 +- steel-gear-wheel,3 +- electronic-circuit,1 +- steel-pipe,6 + +* angels-casting-machine +** casting-machine-3 +*** products +- casting-machine-3,1 +*** ingredients +- aluminium-plate,12 +- concrete-brick,5 +- casting-machine-2,1 +- brass-gear-wheel,3 +- advanced-circuit,1 +- brass-pipe,6 + +* angels-casting-machine +** casting-machine-4 +*** products +- casting-machine-4,1 +*** ingredients +- reinforced-concrete-brick,5 +- titanium-plate,12 +- casting-machine-3,1 +- titanium-gear-wheel,3 +- processing-unit,1 +- titanium-pipe,6 + +* angels-chemical-furnace +** angels-chemical-furnace +*** products +- angels-chemical-furnace,1 +*** ingredients +- clay-brick,25 +- steel-plate,6 +- electronic-circuit,5 +- steel-pipe,30 + +* angels-chemical-furnace +** angels-chemical-furnace-2 +*** products +- angels-chemical-furnace-2,1 +*** ingredients +- angels-chemical-furnace,1 +- aluminium-plate,8 +- concrete-brick,25 +- advanced-circuit,5 +- brass-pipe,30 + +* angels-chemical-furnace +** angels-chemical-furnace-3 +*** products +- angels-chemical-furnace-3,1 +*** ingredients +- angels-chemical-furnace-2,1 +- reinforced-concrete-brick,25 +- titanium-plate,8 +- processing-unit,5 +- titanium-pipe,30 + +* angels-chemical-furnace +** angels-chemical-furnace-4 +*** products +- angels-chemical-furnace-4,1 +*** ingredients +- angels-chemical-furnace-3,1 +- reinforced-concrete-brick,25 +- tungsten-plate,8 +- advanced-processing-unit,5 +- tungsten-pipe,30 + +* angels-chemical-void +** angels-chemical-void-liquid-chlorauric-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-chlorauric-acid,100 + +* angels-chemical-void +** angels-chemical-void-liquid-hexafluorosilicic-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-hexafluorosilicic-acid,100 + +* angels-chemical-void +** angels-chemical-void-liquid-hexachloroplatinic-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-hexachloroplatinic-acid,100 + +* angels-chemical-void +** angels-chemical-void-liquid-trichlorosilane +*** products +- chemical-void,1 +*** ingredients +- liquid-trichlorosilane,100 + +* angels-chemical-void +** angels-chemical-void-gas-silane +*** products +- chemical-void,1 +*** ingredients +- gas-silane,100 + +* angels-chemical-void +** angels-chemical-void-liquid-titanium-tetrachloride +*** products +- chemical-void,1 +*** ingredients +- liquid-titanium-tetrachloride,100 + +* angels-chemical-void +** angels-chemical-void-liquid-tungstic-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-tungstic-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-tungsten-hexafluoride +*** products +- chemical-void,1 +*** ingredients +- gas-tungsten-hexafluoride,100 + +* angels-chemical-void +** angels-chemical-void-gas-compressed-air +*** products +- chemical-void,1 +*** ingredients +- gas-compressed-air,100 + +* angels-chemical-void +** angels-chemical-void-gas-oxygen +*** products +- chemical-void,1 +*** ingredients +- gas-oxygen,100 + +* angels-chemical-void +** angels-chemical-void-gas-hydrogen-peroxide +*** products +- chemical-void,1 +*** ingredients +- gas-hydrogen-peroxide,100 + +* angels-chemical-void +** angels-chemical-void-gas-carbon-monoxide +*** products +- chemical-void,1 +*** ingredients +- gas-carbon-monoxide,100 + +* angels-chemical-void +** angels-chemical-void-gas-carbon-dioxide +*** products +- chemical-void,1 +*** ingredients +- gas-carbon-dioxide,100 + +* angels-chemical-void +** angels-chemical-void-gas-hydrogen +*** products +- chemical-void,1 +*** ingredients +- gas-hydrogen,100 + +* angels-chemical-void +** angels-chemical-void-gas-chlorine +*** products +- chemical-void,1 +*** ingredients +- gas-chlorine,100 + +* angels-chemical-void +** angels-chemical-void-gas-hydrogen-chloride +*** products +- chemical-void,1 +*** ingredients +- gas-hydrogen-chloride,100 + +* angels-chemical-void +** angels-chemical-void-liquid-hydrochloric-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-hydrochloric-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-allylchlorid +*** products +- chemical-void,1 +*** ingredients +- gas-allylchlorid,100 + +* angels-chemical-void +** angels-chemical-void-gas-epichlorhydrin +*** products +- chemical-void,1 +*** ingredients +- gas-epichlorhydrin,100 + +* angels-chemical-void +** angels-chemical-void-gas-chlor-methane +*** products +- chemical-void,1 +*** ingredients +- gas-chlor-methane,100 + +* angels-chemical-void +** angels-chemical-void-liquid-perchloric-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-perchloric-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-phosgene +*** products +- chemical-void,1 +*** ingredients +- gas-phosgene,100 + +* angels-chemical-void +** angels-chemical-void-liquid-ferric-chloride-solution +*** products +- chemical-void,1 +*** ingredients +- liquid-ferric-chloride-solution,100 + +* angels-chemical-void +** angels-chemical-void-liquid-cupric-chloride-solution +*** products +- chemical-void,1 +*** ingredients +- liquid-cupric-chloride-solution,100 + +* angels-chemical-void +** angels-chemical-void-gas-nitrogen +*** products +- chemical-void,1 +*** ingredients +- gas-nitrogen,100 + +* angels-chemical-void +** angels-chemical-void-gas-ammonia +*** products +- chemical-void,1 +*** ingredients +- gas-ammonia,100 + +* angels-chemical-void +** angels-chemical-void-gas-nitrogen-monoxide +*** products +- chemical-void,1 +*** ingredients +- gas-nitrogen-monoxide,100 + +* angels-chemical-void +** angels-chemical-void-gas-nitrogen-dioxide +*** products +- chemical-void,1 +*** ingredients +- gas-nitrogen-dioxide,100 + +* angels-chemical-void +** angels-chemical-void-gas-dinitrogen-tetroxide +*** products +- chemical-void,1 +*** ingredients +- gas-dinitrogen-tetroxide,100 + +* angels-chemical-void +** angels-chemical-void-gas-ammonium-chloride +*** products +- chemical-void,1 +*** ingredients +- gas-ammonium-chloride,100 + +* angels-chemical-void +** angels-chemical-void-gas-urea +*** products +- chemical-void,1 +*** ingredients +- gas-urea,100 + +* angels-chemical-void +** angels-chemical-void-gas-melamine +*** products +- chemical-void,1 +*** ingredients +- gas-melamine,100 + +* angels-chemical-void +** angels-chemical-void-liquid-nitric-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-nitric-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-monochloramine +*** products +- chemical-void,1 +*** ingredients +- gas-monochloramine,100 + +* angels-chemical-void +** angels-chemical-void-gas-hydrazine +*** products +- chemical-void,1 +*** ingredients +- gas-hydrazine,100 + +* angels-chemical-void +** angels-chemical-void-gas-methylamine +*** products +- chemical-void,1 +*** ingredients +- gas-methylamine,100 + +* angels-chemical-void +** angels-chemical-void-gas-dimethylamine +*** products +- chemical-void,1 +*** ingredients +- gas-dimethylamine,100 + +* angels-chemical-void +** angels-chemical-void-gas-dimethylhydrazine +*** products +- chemical-void,1 +*** ingredients +- gas-dimethylhydrazine,100 + +* angels-chemical-void +** angels-chemical-void-gas-hydrogen-sulfide +*** products +- chemical-void,1 +*** ingredients +- gas-hydrogen-sulfide,100 + +* angels-chemical-void +** angels-chemical-void-gas-sulfur-dioxide +*** products +- chemical-void,1 +*** ingredients +- gas-sulfur-dioxide,100 + +* angels-chemical-void +** angels-chemical-void-liquid-sulfuric-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-sulfuric-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-acid +*** products +- chemical-void,1 +*** ingredients +- gas-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-hydrogen-fluoride +*** products +- chemical-void,1 +*** ingredients +- gas-hydrogen-fluoride,100 + +* angels-chemical-void +** angels-chemical-void-liquid-hydrofluoric-acid +*** products +- chemical-void,1 +*** ingredients +- liquid-hydrofluoric-acid,100 + +* angels-chemical-void +** angels-chemical-void-gas-natural-1 +*** products +- chemical-void,1 +*** ingredients +- gas-natural-1,100 + +* angels-chemical-void +** angels-chemical-void-gas-raw-1 +*** products +- chemical-void,1 +*** ingredients +- gas-raw-1,100 + +* angels-chemical-void +** angels-chemical-void-liquid-ngl +*** products +- chemical-void,1 +*** ingredients +- liquid-ngl,100 + +* angels-chemical-void +** angels-chemical-void-liquid-multi-phase-oil +*** products +- chemical-void,1 +*** ingredients +- liquid-multi-phase-oil,100 + +* angels-chemical-void +** angels-chemical-void-liquid-condensates +*** products +- chemical-void,1 +*** ingredients +- liquid-condensates,100 + +* angels-chemical-void +** angels-chemical-void-gas-residual +*** products +- chemical-void,1 +*** ingredients +- gas-residual,100 + +* angels-chemical-void +** angels-chemical-void-gas-methane +*** products +- chemical-void,1 +*** ingredients +- gas-methane,100 + +* angels-chemical-void +** angels-chemical-void-gas-ethane +*** products +- chemical-void,1 +*** ingredients +- gas-ethane,100 + +* angels-chemical-void +** angels-chemical-void-gas-butane +*** products +- chemical-void,1 +*** ingredients +- gas-butane,100 + +* angels-chemical-void +** angels-chemical-void-gas-propene +*** products +- chemical-void,1 +*** ingredients +- gas-propene,100 + +* angels-chemical-void +** angels-chemical-void-gas-methanol +*** products +- chemical-void,1 +*** ingredients +- gas-methanol,100 + +* angels-chemical-void +** angels-chemical-void-gas-ethylene +*** products +- chemical-void,1 +*** ingredients +- gas-ethylene,100 + +* angels-chemical-void +** angels-chemical-void-gas-benzene +*** products +- chemical-void,1 +*** ingredients +- gas-benzene,100 + +* angels-chemical-void +** angels-chemical-void-liquid-fuel-oil +*** products +- chemical-void,1 +*** ingredients +- liquid-fuel-oil,100 + +* angels-chemical-void +** angels-chemical-void-liquid-naphtha +*** products +- chemical-void,1 +*** ingredients +- liquid-naphtha,100 + +* angels-chemical-void +** angels-chemical-void-liquid-mineral-oil +*** products +- chemical-void,1 +*** ingredients +- liquid-mineral-oil,100 + +* angels-chemical-void +** angels-chemical-void-gas-synthesis +*** products +- chemical-void,1 +*** ingredients +- gas-synthesis,100 + +* angels-chemical-void +** angels-chemical-void-liquid-toluene +*** products +- chemical-void,1 +*** ingredients +- liquid-toluene,100 + +* angels-chemical-void +** angels-chemical-void-gas-butadiene +*** products +- chemical-void,1 +*** ingredients +- gas-butadiene,100 + +* angels-chemical-void +** angels-chemical-void-liquid-phenol +*** products +- chemical-void,1 +*** ingredients +- liquid-phenol,100 + +* angels-chemical-void +** angels-chemical-void-liquid-ethylbenzene +*** products +- chemical-void,1 +*** ingredients +- liquid-ethylbenzene,100 + +* angels-chemical-void +** angels-chemical-void-liquid-styrene +*** products +- chemical-void,1 +*** ingredients +- liquid-styrene,100 + +* angels-chemical-void +** angels-chemical-void-gas-formaldehyde +*** products +- chemical-void,1 +*** ingredients +- gas-formaldehyde,100 + +* angels-chemical-void +** angels-chemical-void-liquid-polyethylene +*** products +- chemical-void,1 +*** ingredients +- liquid-polyethylene,100 + +* angels-chemical-void +** angels-chemical-void-liquid-glycerol +*** products +- chemical-void,1 +*** ingredients +- liquid-glycerol,100 + +* angels-chemical-void +** angels-chemical-void-liquid-bisphenol-a +*** products +- chemical-void,1 +*** ingredients +- liquid-bisphenol-a,100 + +* angels-chemical-void +** angels-chemical-void-gas-acetone +*** products +- chemical-void,1 +*** ingredients +- gas-acetone,100 + +* angels-chemical-void +** angels-chemical-void-gas-ethanol +*** products +- chemical-void,1 +*** ingredients +- gas-ethanol,100 + +* angels-chemical-void +** angels-chemical-void-alien-spores +*** products +- chemical-void,1 +*** ingredients +- alien-spores,100 + +* angels-chemical-void +** angels-chemical-void-crude-oil +*** products +- chemical-void,1 +*** ingredients +- crude-oil,100 + +* angels-chemical-void +** angels-chemical-void-ferric-chloride-solution +*** products +- chemical-void,1 +*** ingredients +- liquid-ferric-chloride-solution,100 + +* angels-chemical-void +** angels-chemical-void-lubricant +*** products +- chemical-void,1 +*** ingredients +- lubricant,100 + +* angels-chests-big +** angels-big-chest +*** products +- angels-big-chest,1 +*** ingredients +- iron-plate,10 +- iron-chest,1 + +* angels-chests-big +** angels-logistic-chest-active-provider +*** products +- angels-logistic-chest-active-provider,1 +*** ingredients +- iron-plate,10 +- advanced-circuit,5 +- angels-big-chest,1 + +* angels-chests-big +** angels-logistic-chest-passive-provider +*** products +- angels-logistic-chest-passive-provider,1 +*** ingredients +- iron-plate,10 +- electronic-circuit,5 +- angels-big-chest,1 + +* angels-chests-big +** angels-logistic-chest-storage +*** products +- angels-logistic-chest-storage,1 +*** ingredients +- iron-plate,10 +- electronic-circuit,5 +- angels-big-chest,1 + +* angels-chests-big +** angels-logistic-chest-buffer +*** products +- angels-logistic-chest-buffer,1 +*** ingredients +- iron-plate,10 +- advanced-circuit,5 +- angels-big-chest,1 + +* angels-chests-big +** angels-logistic-chest-requester +*** products +- angels-logistic-chest-requester,1 +*** ingredients +- iron-plate,10 +- electronic-circuit,5 +- angels-big-chest,1 + +* angels-chests-small-a +** wooden-chest +*** products +- wooden-chest,1 +*** ingredients +- wood,2 + +* angels-chests-small-a +** iron-chest +*** products +- iron-chest,1 +*** ingredients +- iron-plate,8 + +* angels-chests-small-a +** repair-pack +*** products +- repair-pack,1 +*** ingredients +- iron-gear-wheel,2 +- basic-circuit-board,2 + +* angels-chests-small-a +** repair-pack-2 +*** products +- repair-pack-2,1 +*** ingredients +- steel-gear-wheel,2 +- electronic-circuit,2 + +* angels-chests-small-a +** repair-pack-3 +*** products +- repair-pack-3,1 +*** ingredients +- invar-alloy,2 +- brass-gear-wheel,2 +- advanced-circuit,2 + +* angels-chests-small-a +** repair-pack-4 +*** products +- repair-pack-4,1 +*** ingredients +- titanium-plate,2 +- titanium-gear-wheel,2 +- titanium-bearing,1 +- processing-unit,2 + +* angels-chests-small-a +** repair-pack-5 +*** products +- repair-pack-5,1 +*** ingredients +- tungsten-carbide,2 +- nitinol-gear-wheel,2 +- nitinol-bearing,1 +- advanced-processing-unit,2 + +* angels-chests-small-b +** steel-chest +*** products +- steel-chest,1 +*** ingredients +- steel-plate,8 + +* angels-chests-small-b +** logistic-chest-active-provider +*** products +- logistic-chest-active-provider,1 +*** ingredients +- electronic-circuit,3 +- advanced-circuit,1 +- steel-chest,1 + +* angels-chests-small-b +** logistic-chest-passive-provider +*** products +- logistic-chest-passive-provider,1 +*** ingredients +- electronic-circuit,3 +- advanced-circuit,1 +- steel-chest,1 + +* angels-chests-small-b +** logistic-chest-storage +*** products +- logistic-chest-storage,1 +*** ingredients +- electronic-circuit,3 +- advanced-circuit,1 +- steel-chest,1 + +* angels-chests-small-b +** logistic-chest-buffer +*** products +- logistic-chest-buffer,1 +*** ingredients +- electronic-circuit,3 +- advanced-circuit,1 +- steel-chest,1 + +* angels-chests-small-b +** logistic-chest-requester +*** products +- logistic-chest-requester,1 +*** ingredients +- electronic-circuit,3 +- advanced-circuit,1 +- steel-chest,1 + +* angels-chests-small-c +** brass-chest +*** products +- brass-chest,1 +*** ingredients +- brass-alloy,8 + +* angels-chests-small-c +** logistic-chest-active-provider-2 +*** products +- logistic-chest-active-provider-2,1 +*** ingredients +- advanced-circuit,3 +- processing-unit,1 +- brass-chest,1 + +* angels-chests-small-c +** logistic-chest-passive-provider-2 +*** products +- logistic-chest-passive-provider-2,1 +*** ingredients +- advanced-circuit,3 +- processing-unit,1 +- brass-chest,1 + +* angels-chests-small-c +** logistic-chest-storage-2 +*** products +- logistic-chest-storage-2,1 +*** ingredients +- advanced-circuit,3 +- processing-unit,1 +- brass-chest,1 + +* angels-chests-small-c +** logistic-chest-buffer-2 +*** products +- logistic-chest-buffer-2,1 +*** ingredients +- advanced-circuit,3 +- processing-unit,1 +- brass-chest,1 + +* angels-chests-small-c +** logistic-chest-requester-2 +*** products +- logistic-chest-requester-2,1 +*** ingredients +- advanced-circuit,3 +- processing-unit,1 +- brass-chest,1 + +* angels-chests-small-d +** titanium-chest +*** products +- titanium-chest,1 +*** ingredients +- titanium-plate,8 + +* angels-chests-small-d +** logistic-chest-active-provider-3 +*** products +- logistic-chest-active-provider-3,1 +*** ingredients +- processing-unit,3 +- advanced-processing-unit,1 +- titanium-chest,1 + +* angels-chests-small-d +** logistic-chest-passive-provider-3 +*** products +- logistic-chest-passive-provider-3,1 +*** ingredients +- processing-unit,3 +- advanced-processing-unit,1 +- titanium-chest,1 + +* angels-chests-small-d +** logistic-chest-storage-3 +*** products +- logistic-chest-storage-3,1 +*** ingredients +- processing-unit,3 +- advanced-processing-unit,1 +- titanium-chest,1 + +* angels-chests-small-d +** logistic-chest-buffer-3 +*** products +- logistic-chest-buffer-3,1 +*** ingredients +- processing-unit,3 +- advanced-processing-unit,1 +- titanium-chest,1 + +* angels-chests-small-d +** logistic-chest-requester-3 +*** products +- logistic-chest-requester-3,1 +*** ingredients +- processing-unit,3 +- advanced-processing-unit,1 +- titanium-chest,1 + +* angels-chrome +** chrome-ore-processing +*** products +- processed-chrome,2 +*** ingredients +- chrome-ore,4 + +* angels-chrome +** chrome-processed-processing +*** products +- pellet-chrome,4 +*** ingredients +- processed-chrome,3 + +* angels-chrome +** pellet-chrome-smelting +*** products +- solid-chromate,24 +*** ingredients +- pellet-chrome,8 +- solid-sodium-carbonate,7 +- gas-oxygen,60 + +* angels-chrome +** solid-chromate-smelting +*** products +- solid-dichromate,12 +- solid-sodium-sulfate,1 +- water-purified,40 +*** ingredients +- solid-chromate,12 +- liquid-sulfuric-acid,40 + +* angels-chrome +** solid-dichromate-smelting +*** products +- solid-chrome-oxide,24 +- solid-sodium-carbonate,3 +- gas-carbon-monoxide,30 +*** ingredients +- solid-dichromate,24 +- solid-carbon,3 + +* angels-chrome +** chrome-ore-smelting +*** products +- ingot-chrome,24 +- gas-carbon-monoxide,60 +*** ingredients +- chrome-ore,24 +- solid-carbon,3 + +* angels-chrome +** processed-chrome-smelting +*** products +- ingot-chrome,24 +- gas-carbon-monoxide,60 +*** ingredients +- processed-chrome,8 +- solid-carbon,3 + +* angels-chrome +** solid-chrome-oxide-smelting +*** products +- ingot-chrome,24 +- solid-chrome-oxide,6 +*** ingredients +- solid-chrome-oxide,24 +- ingot-chrome,6 + +* angels-chrome +** powder-chrome +*** products +- powder-chrome,1 +*** ingredients +- ingot-chrome,1 + +* angels-chrome-casting +** molten-chrome-smelting +*** products +- liquid-molten-chrome,120 +*** ingredients +- ingot-chrome,12 + +* angels-chrome-casting +** roll-chrome-casting +*** products +- angels-roll-chrome,2 +*** ingredients +- liquid-molten-chrome,80 +- water,40 + +* angels-chrome-casting +** roll-chrome-casting-fast +*** products +- angels-roll-chrome,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-chrome,140 +- liquid-coolant,40 + +* angels-chrome-casting +** angels-plate-chrome +*** products +- angels-plate-chrome,4 +*** ingredients +- liquid-molten-chrome,40 + +* angels-chrome-casting +** angels-roll-chrome-converting +*** products +- angels-plate-chrome,4 +*** ingredients +- angels-roll-chrome,1 + +* angels-circuit-board +** basic-circuit-board +*** products +- basic-circuit-board,1 +*** ingredients +- copper-cable,3 +- wooden-board,1 + +* angels-circuit-board +** circuit-board +*** products +- circuit-board,1 +*** ingredients +- copper-plate,1 +- tin-plate,1 +- phenolic-board,1 +- liquid-ferric-chloride-solution,5 + +* angels-circuit-board +** superior-circuit-board +*** products +- superior-circuit-board,1 +*** ingredients +- copper-plate,1 +- silver-plate,1 +- fibreglass-board,1 +- liquid-ferric-chloride-solution,5 + +* angels-circuit-board +** multi-layer-circuit-board +*** products +- multi-layer-circuit-board,1 +*** ingredients +- copper-plate,2 +- gold-plate,2 +- fibreglass-board,1 +- liquid-ferric-chloride-solution,10 + +* angels-circuit-components +** basic-electronic-components +*** products +- basic-electronic-components,5 +*** ingredients +- tinned-copper-cable,1 +- solid-carbon,1 + +* angels-circuit-components +** electronic-components +*** products +- electronic-components,5 +*** ingredients +- silicon-wafer,2 +- angels-wire-silver,1 +- plastic-bar,1 + +* angels-circuit-components +** intergrated-electronics +*** products +- intergrated-electronics,5 +*** ingredients +- silicon-wafer,4 +- plastic-bar,1 +- insulated-cable,1 +- liquid-sulfuric-acid,5 + +* angels-circuit-components +** processing-electronics +*** products +- processing-electronics,5 +*** ingredients +- gilded-copper-cable,2 +- silicon-wafer,6 +- silicon-nitride,1 +- liquid-sulfuric-acid,5 + +* angels-cobalt +** cobalt-ore-processing +*** products +- processed-cobalt,2 +*** ingredients +- cobalt-ore,4 + +* angels-cobalt +** cobalt-processed-processing +*** products +- pellet-cobalt,4 +*** ingredients +- processed-cobalt,3 + +* angels-cobalt +** pellet-cobalt-smelting +*** products +- solid-cobalt-hydroxide,6 +*** ingredients +- pellet-cobalt,2 +- liquid-sulfuric-acid,20 + +* angels-cobalt +** cobalt-ore-processing-alt +*** products +- cobalt-oxide,8 +*** ingredients +- cobalt-ore,8 +- solid-limestone,3 + +* angels-cobalt +** processed-cobalt-smelting +*** products +- cobalt-oxide,24 +*** ingredients +- processed-cobalt,8 +- solid-limestone,6 + +* angels-cobalt +** solid-cobalt-hydroxide-smelting +*** products +- cobalt-oxide,24 +*** ingredients +- solid-cobalt-hydroxide,24 +- solid-calcium-chloride,6 + +* angels-cobalt +** cobalt-ore-smelting +*** products +- ingot-cobalt,24 +*** ingredients +- cobalt-ore,24 +- solid-carbon,6 + +* angels-cobalt +** solid-cobalt-oxide-smelting +*** products +- ingot-cobalt,24 +*** ingredients +- cobalt-oxide,24 +- solid-carbon,6 + +* angels-cobalt +** powder-cobalt +*** products +- powder-cobalt,1 +*** ingredients +- ingot-cobalt,1 + +* angels-cobalt-casting +** molten-cobalt-smelting +*** products +- liquid-molten-cobalt,120 +*** ingredients +- ingot-cobalt,12 + +* angels-cobalt-casting +** roll-cobalt-casting +*** products +- angels-roll-cobalt,2 +*** ingredients +- liquid-molten-cobalt,80 +- water,40 + +* angels-cobalt-casting +** roll-cobalt-casting-fast +*** products +- angels-roll-cobalt,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-cobalt,140 +- liquid-coolant,40 + +* angels-cobalt-casting +** angels-plate-cobalt +*** products +- angels-plate-cobalt,4 +*** ingredients +- liquid-molten-cobalt,40 + +* angels-cobalt-casting +** angels-roll-cobalt-converting +*** products +- angels-plate-cobalt,4 +*** ingredients +- angels-roll-cobalt,1 + +* angels-converter +** converter-other-sulfuric-acid +*** products +- sulfuric-acid,50 +*** ingredients +- liquid-sulfuric-acid,50 + +* angels-converter +** converter-other-sulfur-dioxide +*** products +- sulfur-dioxide,50 +*** ingredients +- gas-sulfur-dioxide,50 + +* angels-converter +** converter-other-nitric-acid +*** products +- nitric-acid,50 +*** ingredients +- liquid-nitric-acid,50 + +* angels-converter +** converter-other-nitrogen-dioxide +*** products +- nitrogen-dioxide,50 +*** ingredients +- gas-nitrogen-dioxide,50 + +* angels-converter +** converter-other-liquid-air +*** products +- liquid-air,50 +*** ingredients +- gas-compressed-air,50 + +* angels-converter +** converter-other-ferric-chloride-solution +*** products +- ferric-chloride-solution,50 +*** ingredients +- liquid-ferric-chloride-solution,50 + +* angels-converter +** converter-other-hydrogen-sulfide +*** products +- hydrogen-sulfide,50 +*** ingredients +- gas-hydrogen-sulfide,50 + +* angels-converter +** converter-other-ammonia +*** products +- ammonia,50 +*** ingredients +- gas-ammonia,50 + +* angels-converter +** converter-other-nitric-oxide +*** products +- nitric-oxide,50 +*** ingredients +- gas-nitrogen-monoxide,50 + +* angels-converter +** converter-other-dinitrogen-tetroxide +*** products +- dinitrogen-tetroxide,50 +*** ingredients +- gas-dinitrogen-tetroxide,50 + +* angels-converter +** converter-other-hydrazine +*** products +- hydrazine,50 +*** ingredients +- gas-hydrazine,50 + +* angels-converter +** converter-other-heavy-oil +*** products +- heavy-oil,50 +*** ingredients +- liquid-naphtha,50 + +* angels-converter +** converter-other-tungstic-acid +*** products +- tungstic-acid,50 +*** ingredients +- liquid-tungstic-acid,50 + +* angels-converter +** converter-other-light-oil +*** products +- light-oil,50 +*** ingredients +- liquid-fuel-oil,50 + +* angels-converter +** converter-other-petroleum-gas +*** products +- petroleum-gas,50 +*** ingredients +- gas-methane,50 + +* angels-converter +** converter-other-chlorine +*** products +- chlorine,50 +*** ingredients +- gas-chlorine,50 + +* angels-converter +** converter-other-oxygen +*** products +- oxygen,50 +*** ingredients +- gas-oxygen,50 + +* angels-converter +** converter-other-hydrogen +*** products +- hydrogen,50 +*** ingredients +- gas-hydrogen,50 + +* angels-converter +** converter-other-hydrogen-chloride +*** products +- hydrogen-chloride,50 +*** ingredients +- gas-hydrogen-chloride,50 + +* angels-converter +** converter-other-nitrogen +*** products +- nitrogen,50 +*** ingredients +- gas-nitrogen,50 + +* angels-converter +** converter-angels-liquid-sulfuric-acid +*** products +- liquid-sulfuric-acid,50 +*** ingredients +- sulfuric-acid,50 + +* angels-converter +** converter-angels-gas-sulfur-dioxide +*** products +- gas-sulfur-dioxide,50 +*** ingredients +- sulfur-dioxide,50 + +* angels-converter +** converter-angels-liquid-nitric-acid +*** products +- liquid-nitric-acid,50 +*** ingredients +- nitric-acid,50 + +* angels-converter +** converter-angels-gas-nitrogen-dioxide +*** products +- gas-nitrogen-dioxide,50 +*** ingredients +- nitrogen-dioxide,50 + +* angels-converter +** converter-angels-gas-compressed-air +*** products +- gas-compressed-air,50 +*** ingredients +- liquid-air,50 + +* angels-converter +** converter-angels-liquid-ferric-chloride-solution +*** products +- liquid-ferric-chloride-solution,50 +*** ingredients +- ferric-chloride-solution,50 + +* angels-converter +** converter-angels-gas-hydrogen-sulfide +*** products +- gas-hydrogen-sulfide,50 +*** ingredients +- hydrogen-sulfide,50 + +* angels-converter +** converter-angels-gas-ammonia +*** products +- gas-ammonia,50 +*** ingredients +- ammonia,50 + +* angels-converter +** converter-angels-gas-nitrogen-monoxide +*** products +- gas-nitrogen-monoxide,50 +*** ingredients +- nitric-oxide,50 + +* angels-converter +** converter-angels-gas-dinitrogen-tetroxide +*** products +- gas-dinitrogen-tetroxide,50 +*** ingredients +- dinitrogen-tetroxide,50 + +* angels-converter +** converter-angels-gas-hydrazine +*** products +- gas-hydrazine,50 +*** ingredients +- hydrazine,50 + +* angels-converter +** converter-angels-liquid-naphtha +*** products +- liquid-naphtha,50 +*** ingredients +- heavy-oil,50 + +* angels-converter +** converter-angels-liquid-tungstic-acid +*** products +- liquid-tungstic-acid,50 +*** ingredients +- tungstic-acid,50 + +* angels-converter +** converter-angels-liquid-fuel-oil +*** products +- liquid-fuel-oil,50 +*** ingredients +- light-oil,50 + +* angels-converter +** converter-angels-gas-methane +*** products +- gas-methane,50 +*** ingredients +- petroleum-gas,50 + +* angels-converter +** converter-angels-gas-chlorine +*** products +- gas-chlorine,50 +*** ingredients +- chlorine,50 + +* angels-converter +** converter-angels-gas-oxygen +*** products +- gas-oxygen,50 +*** ingredients +- oxygen,50 + +* angels-converter +** converter-angels-gas-hydrogen +*** products +- gas-hydrogen,50 +*** ingredients +- hydrogen,50 + +* angels-converter +** converter-angels-gas-hydrogen-chloride +*** products +- gas-hydrogen-chloride,50 +*** ingredients +- hydrogen-chloride,50 + +* angels-converter +** converter-angels-gas-nitrogen +*** products +- gas-nitrogen,50 +*** ingredients +- nitrogen,50 + +* angels-copper +** copper-ore-processing +*** products +- processed-copper,2 +*** ingredients +- copper-ore,4 + +* angels-copper +** copper-processed-processing +*** products +- pellet-copper,4 +*** ingredients +- processed-copper,3 + +* angels-copper +** pellet-copper-smelting +*** products +- anode-copper,24 +*** ingredients +- pellet-copper,8 +- gas-oxygen,60 + +* angels-copper +** copper-ore-smelting +*** products +- ingot-copper,24 +*** ingredients +- copper-ore,24 + +* angels-copper +** processed-copper-smelting +*** products +- ingot-copper,24 +*** ingredients +- processed-copper,8 +- gas-oxygen,60 + +* angels-copper +** anode-copper-smelting +*** products +- ingot-copper,12 +*** ingredients +- anode-copper,12 +- liquid-sulfuric-acid,30 + +* angels-copper +** powder-copper +*** products +- powder-copper,1 +*** ingredients +- ingot-copper,1 + +* angels-copper-casting +** molten-copper-smelting +*** products +- liquid-molten-copper,120 +*** ingredients +- ingot-copper,12 + +* angels-copper-casting +** roll-copper-casting +*** products +- angels-roll-copper,2 +*** ingredients +- liquid-molten-copper,80 +- water,40 + +* angels-copper-casting +** roll-copper-casting-fast +*** products +- angels-roll-copper,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-copper,140 +- liquid-coolant,40 + +* angels-copper-casting +** angels-wire-coil-copper-casting +*** products +- angels-wire-coil-copper,4 +*** ingredients +- liquid-molten-copper,80 +- water,40 + +* angels-copper-casting +** angels-wire-coil-copper-casting-fast +*** products +- angels-wire-coil-copper,8 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-copper,140 +- liquid-coolant,40 + +* angels-copper-casting +** angelsore3-crushed-smelting +*** products +- copper-plate,2 +*** ingredients +- angels-ore3-crushed,3 + +* angels-copper-casting +** angels-copper-pebbles-smelting +*** products +- copper-plate,2 +*** ingredients +- angels-copper-pebbles,4 + +* angels-copper-casting +** angels-copper-nugget-smelting +*** products +- copper-plate,3 +*** ingredients +- angels-copper-nugget,2 + +* angels-copper-casting +** copper-plate +*** products +- copper-plate,3 +*** ingredients +- copper-ore,4 + +* angels-copper-casting +** angels-plate-copper +*** products +- copper-plate,4 +*** ingredients +- liquid-molten-copper,40 + +* angels-copper-casting +** angels-roll-copper-converting +*** products +- copper-plate,4 +*** ingredients +- angels-roll-copper,1 + +* angels-copper-casting +** copper-cable +*** products +- copper-cable,2 +*** ingredients +- copper-plate,1 + +* angels-copper-casting +** angels-wire-coil-copper-converting +*** products +- copper-cable,16 +*** ingredients +- angels-wire-coil-copper,4 + +* angels-electric-a +** laser-rifle +*** products +- laser-rifle,1 +*** ingredients +- steel-plate,10 +- steel-gear-wheel,5 +- advanced-circuit,5 +- rifle,1 + +* angels-electric-a +** laser-turret +*** products +- laser-turret,1 +*** ingredients +- steel-plate,20 +- battery,12 +- electronic-circuit,20 + +* angels-electric-a +** bob-laser-turret-2 +*** products +- bob-laser-turret-2,1 +*** ingredients +- steel-plate,20 +- advanced-circuit,20 +- laser-turret,1 +- sapphire-5,1 + +* angels-electric-a +** bob-laser-turret-3 +*** products +- bob-laser-turret-3,1 +*** ingredients +- invar-alloy,20 +- lithium-ion-battery,12 +- bob-laser-turret-2,1 +- emerald-5,1 + +* angels-electric-a +** bob-laser-turret-4 +*** products +- bob-laser-turret-4,1 +*** ingredients +- titanium-plate,20 +- lithium-ion-battery,12 +- processing-unit,20 +- bob-laser-turret-3,1 +- topaz-5,1 + +* angels-electric-a +** bob-laser-turret-5 +*** products +- bob-laser-turret-5,1 +*** ingredients +- nitinol-alloy,20 +- silver-zinc-battery,12 +- advanced-processing-unit,20 +- bob-laser-turret-4,1 +- diamond-5,1 + +* angels-electric-a +** angels-gathering-turret +*** products +- angels-gathering-turret,1 +*** ingredients +- steel-plate,30 +- engine-unit,5 +- iron-gear-wheel,15 +- pipe,10 + +* angels-electric-b +** bob-plasma-turret-1 +*** products +- bob-plasma-turret-1,1 +*** ingredients +- steel-plate,60 +- alien-artifact,20 +- battery,48 +- electronic-circuit,80 +- laser-rifle,1 + +* angels-electric-b +** bob-plasma-turret-2 +*** products +- bob-plasma-turret-2,1 +*** ingredients +- steel-plate,80 +- alien-artifact,30 +- battery,48 +- advanced-circuit,80 +- bob-plasma-turret-1,1 + +* angels-electric-b +** bob-plasma-turret-3 +*** products +- bob-plasma-turret-3,1 +*** ingredients +- invar-alloy,80 +- alien-artifact-orange,10 +- alien-artifact-blue,10 +- lithium-ion-battery,48 +- advanced-circuit,80 +- bob-plasma-turret-2,1 + +* angels-electric-b +** bob-plasma-turret-4 +*** products +- bob-plasma-turret-4,1 +*** ingredients +- titanium-plate,80 +- alien-artifact-yellow,10 +- alien-artifact-purple,10 +- lithium-ion-battery,48 +- processing-unit,80 +- bob-plasma-turret-3,1 + +* angels-electric-b +** bob-plasma-turret-5 +*** products +- bob-plasma-turret-5,1 +*** ingredients +- nitinol-alloy,80 +- alien-artifact-red,10 +- alien-artifact-green,10 +- silver-zinc-battery,48 +- advanced-processing-unit,80 +- bob-plasma-turret-4,1 + +* angels-electric-c +** laser-rifle-battery +*** products +- laser-rifle-battery,1 +*** ingredients +- glass,1 +- battery,4 +- laser-rifle-battery-case,1 + +* angels-electric-c +** laser-rifle-battery-ruby +*** products +- laser-rifle-battery-ruby,1 +*** ingredients +- battery,4 +- laser-rifle-battery-case,1 +- ruby-5,1 + +* angels-electric-c +** laser-rifle-battery-sapphire +*** products +- laser-rifle-battery-sapphire,1 +*** ingredients +- battery,4 +- laser-rifle-battery-case,1 +- sapphire-5,1 + +* angels-electric-c +** laser-rifle-battery-emerald +*** products +- laser-rifle-battery-emerald,1 +*** ingredients +- lithium-ion-battery,4 +- laser-rifle-battery-case,1 +- emerald-5,1 + +* angels-electric-c +** laser-rifle-battery-amethyst +*** products +- laser-rifle-battery-amethyst,1 +*** ingredients +- lithium-ion-battery,4 +- laser-rifle-battery-case,1 +- amethyst-5,1 + +* angels-electric-c +** laser-rifle-battery-topaz +*** products +- laser-rifle-battery-topaz,1 +*** ingredients +- silver-zinc-battery,4 +- laser-rifle-battery-case,1 +- topaz-5,1 + +* angels-electric-c +** laser-rifle-battery-diamond +*** products +- laser-rifle-battery-diamond,1 +*** ingredients +- silver-zinc-battery,4 +- laser-rifle-battery-case,1 +- diamond-5,1 + +* angels-electric-c +** laser-rifle-battery-case +*** products +- laser-rifle-battery-case,2 +*** ingredients +- plastic-bar,1 + +* angels-exploration-tank-a +** tank +*** products +- tank,1 +*** ingredients +- steel-plate,50 +- engine-unit,32 +- iron-gear-wheel,15 +- advanced-circuit,10 + +* angels-exploration-tank-a +** bob-tank-2 +*** products +- bob-tank-2,1 +*** ingredients +- titanium-plate,50 +- titanium-gear-wheel,15 +- titanium-bearing,15 +- processing-unit,5 +- tank,1 + +* angels-exploration-tank-a +** bob-tank-3 +*** products +- bob-tank-3,1 +*** ingredients +- silicon-nitride,40 +- tungsten-carbide,40 +- nitinol-gear-wheel,15 +- nitinol-bearing,15 +- advanced-processing-unit,5 +- bob-tank-2,1 + +* angels-exploration-tank-a +** cannon-shell +*** products +- cannon-shell,1 +*** ingredients +- steel-plate,2 +- plastic-bar,2 +- explosives,1 + +* angels-exploration-tank-a +** explosive-cannon-shell +*** products +- explosive-cannon-shell,1 +*** ingredients +- steel-plate,2 +- plastic-bar,2 +- explosives,2 + +* angels-exploration-tank-a +** uranium-cannon-shell +*** products +- uranium-cannon-shell,1 +*** ingredients +- uranium-238,1 +- cannon-shell,1 + +* angels-exploration-tank-a +** explosive-uranium-cannon-shell +*** products +- explosive-uranium-cannon-shell,1 +*** ingredients +- uranium-238,1 +- explosive-cannon-shell,1 + +* angels-exploration-tank-a +** scatter-cannon-shell +*** products +- scatter-cannon-shell,1 +*** ingredients +- steel-plate,2 +- plastic-bar,2 +- explosives,1 +- shot,5 + +* angels-exploration-tank-b +** angels-heavy-tank +*** products +- angels-heavy-tank,1 +*** ingredients +- steel-plate,50 +- engine-unit,20 +- advanced-circuit,10 + +* angels-exploration-tank-b +** heavy-cannon-shell +*** products +- heavy-cannon-shell,1 +*** ingredients +- cannon-shell,3 + +* angels-exploration-tank-b +** heavy-explosive-cannon-shell +*** products +- heavy-explosive-cannon-shell,1 +*** ingredients +- explosive-cannon-shell,3 + +* angels-exploration-tank-b +** heavy-uranium-cannon-shell +*** products +- heavy-uranium-cannon-shell,1 +*** ingredients +- uranium-cannon-shell,3 + +* angels-exploration-tank-b +** heavy-explosive-uranium-cannon-shell +*** products +- heavy-explosive-uranium-cannon-shell,1 +*** ingredients +- explosive-uranium-cannon-shell,3 + +* angels-exploration-troups +** defender-capsule +*** products +- defender-capsule,1 +*** ingredients +- defender-robot,1 + +* angels-exploration-troups +** distractor-capsule +*** products +- distractor-capsule,1 +*** ingredients +- distractor-robot,3 + +* angels-exploration-troups +** destroyer-capsule +*** products +- destroyer-capsule,1 +*** ingredients +- destroyer-robot,5 + +* angels-exploration-troups +** bob-laser-robot-capsule +*** products +- bob-laser-robot-capsule,1 +*** ingredients +- bob-laser-robot,5 + +* angels-exploration-troups +** bob-robot-gun-drone +*** products +- bob-robot-gun-drone,1 +*** ingredients +- robot-brain-combat,1 +- gun-turret,1 +- robot-drone-frame,1 + +* angels-exploration-troups +** bob-robot-laser-drone +*** products +- bob-robot-laser-drone,1 +*** ingredients +- robot-brain-combat,1 +- laser-turret,1 +- robot-drone-frame,1 + +* angels-exploration-troups +** bob-robot-flamethrower-drone +*** products +- bob-robot-flamethrower-drone,1 +*** ingredients +- robot-brain-combat,1 +- flamethrower-turret,1 +- robot-drone-frame,1 + +* angels-exploration-troups +** bob-robot-plasma-drone +*** products +- bob-robot-plasma-drone,1 +*** ingredients +- robot-brain-combat,1 +- bob-plasma-turret-1,1 +- robot-drone-frame-large,1 + +* angels-exploration-troups +** robot-drone-frame +*** products +- robot-drone-frame,1 +*** ingredients +- steel-plate,10 +- electric-engine-unit,2 +- battery,6 +- steel-gear-wheel,10 +- steel-bearing,10 +- electronic-circuit,10 + +* angels-exploration-troups +** robot-drone-frame-large +*** products +- robot-drone-frame-large,1 +*** ingredients +- steel-plate,20 +- electric-engine-unit,2 +- battery,12 +- steel-gear-wheel,10 +- steel-bearing,10 +- electronic-circuit,10 + +* angels-exploration-walls +** wall-0 +*** products +- wall-0,1 +*** ingredients +- stone,5 +- wood,1 + +* angels-exploration-walls +** stone-wall +*** products +- stone-wall,1 +*** ingredients +- stone-brick,5 + +* angels-exploration-walls +** gate +*** products +- gate,1 +*** ingredients +- steel-plate,2 +- electronic-circuit,2 +- stone-wall,1 + +* angels-exploration-walls +** reinforced-wall +*** products +- reinforced-wall,1 +*** ingredients +- stone-brick,3 +- steel-plate,3 + +* angels-exploration-walls +** reinforced-gate +*** products +- reinforced-gate,1 +*** ingredients +- steel-plate,2 +- electronic-circuit,2 +- reinforced-wall,1 + +* angels-explosion-a +** rocket-launcher +*** products +- rocket-launcher,1 +*** ingredients +- steel-plate,5 +- electronic-circuit,5 +- shotgun,2 + +* angels-explosion-a +** angels-rocket-turret +*** products +- angels-rocket-turret,1 +*** ingredients +- steel-plate,20 +- electronic-circuit,10 +- rocket-launcher,4 + +* angels-explosion-a +** rocket +*** products +- rocket,1 +*** ingredients +- rocket-booster,1 +- explosives,1 +- electronic-circuit,1 + +* angels-explosion-a +** explosive-rocket +*** products +- explosive-rocket,1 +*** ingredients +- explosives,2 +- rocket,1 + +* angels-explosion-a +** atomic-bomb +*** products +- atomic-bomb,1 +*** ingredients +- rocket-booster,1 +- explosives,10 +- rocket-control-unit,10 +- uranium-235,15 + +* angels-explosion-a +** angels-atomic-bomb +*** products +- atomic-bomb,1 +*** ingredients +- rocket-booster,1 +- explosives,10 +- rocket-control-unit,10 +- plutonium-239,30 + +* angels-explosion-a +** angels-atomic-bomb-2 +*** products +- atomic-bomb,2 +*** ingredients +- rocket-booster,1 +- explosives,20 +- rocket-control-unit,20 +- angels-muon-fusion-catalyst,1 +- gas-deuterium,3600 + +* angels-explosion-ba +** rocket-warhead +*** products +- rocket-warhead,1 +*** ingredients +- steel-plate,1 +- explosives,1 + +* angels-explosion-ba +** piercing-rocket-warhead +*** products +- piercing-rocket-warhead,1 +*** ingredients +- steel-plate,1 +- alien-blue-alloy,2 + +* angels-explosion-ba +** explosive-rocket-warhead +*** products +- explosive-rocket-warhead,1 +*** ingredients +- steel-plate,1 +- alien-explosive,20 + +* angels-explosion-ba +** flame-rocket-warhead +*** products +- flame-rocket-warhead,1 +*** ingredients +- steel-plate,1 +- alien-fire,20 + +* angels-explosion-ba +** acid-rocket-warhead +*** products +- acid-rocket-warhead,1 +*** ingredients +- steel-plate,1 +- alien-acid,20 + +* angels-explosion-ba +** poison-rocket-warhead +*** products +- poison-rocket-warhead,1 +*** ingredients +- steel-plate,1 +- alien-poison,20 + +* angels-explosion-ba +** electric-rocket-warhead +*** products +- electric-rocket-warhead,1 +*** ingredients +- steel-plate,1 +- alien-orange-alloy,2 + +* angels-explosion-ba +** plasma-rocket-warhead +*** products +- plasma-rocket-warhead,6 +*** ingredients +- steel-plate,6 +- alien-artifact-red,1 +- alien-artifact-yellow,1 +- alien-artifact-orange,1 +- alien-artifact-blue,1 +- alien-artifact-purple,1 +- alien-artifact-green,1 +- gas-deuterium,10 + +* angels-explosion-ba +** rocket-engine +*** products +- rocket-engine,1 +*** ingredients +- tungsten-plate,1 +- tungsten-gear-wheel,1 + +* angels-explosion-bb +** bob-rocket +*** products +- bob-rocket,1 +*** ingredients +- rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-piercing-rocket +*** products +- bob-piercing-rocket,1 +*** ingredients +- piercing-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-explosive-rocket +*** products +- bob-explosive-rocket,1 +*** ingredients +- explosive-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-flame-rocket +*** products +- bob-flame-rocket,1 +*** ingredients +- flame-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-acid-rocket +*** products +- bob-acid-rocket,1 +*** ingredients +- acid-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-poison-rocket +*** products +- bob-poison-rocket,1 +*** ingredients +- poison-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-electric-rocket +*** products +- bob-electric-rocket,1 +*** ingredients +- electric-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** bob-plasma-rocket +*** products +- bob-plasma-rocket,1 +*** ingredients +- plasma-rocket-warhead,1 +- rocket-body,1 + +* angels-explosion-bb +** rocket-body +*** products +- rocket-body,1 +*** ingredients +- aluminium-plate,1 +- processing-unit,1 +- rocket-engine,1 +- liquid-fuel,10 + +* angels-fire +** flamethrower +*** products +- flamethrower,1 +*** ingredients +- steel-plate,5 +- iron-gear-wheel,5 +- submachine-gun,1 + +* angels-fire +** bio-gun +*** products +- bio-gun,1 +*** ingredients +- steel-plate,5 +- iron-gear-wheel,5 +- submachine-gun,1 + +* angels-fire +** flamethrower-turret +*** products +- flamethrower-turret,1 +*** ingredients +- steel-plate,20 +- engine-unit,5 +- flamethrower,1 +- pipe,10 + +* angels-fire +** angels-bio-turret +*** products +- angels-bio-turret,1 +*** ingredients +- steel-plate,20 +- engine-unit,5 +- bio-gun,1 +- pipe,10 + +* angels-fire +** flamethrower-ammo +*** products +- flamethrower-ammo,1 +*** ingredients +- steel-plate,5 +- liquid-fuel-oil,50 +- liquid-naphtha,50 + +* angels-fire +** bio-ammo +*** products +- bio-ammo,1 +*** ingredients +- copper-plate,10 +- sulfur,5 +- crude-oil,60 + +* angels-fluid-control +** bob-valve +*** products +- bob-valve,1 +*** ingredients +- iron-plate,1 +- pipe,1 + +* angels-fluid-control +** valve-inspector +*** products +- valve-inspector,1 +*** ingredients +- basic-circuit-board,1 +- pipe,3 + +* angels-fluid-control +** bob-overflow-valve +*** products +- bob-overflow-valve,1 +*** ingredients +- iron-plate,1 +- pipe,1 + +* angels-fluid-control +** valve-return +*** products +- valve-return,1 +*** ingredients +- basic-circuit-board,1 +- pipe,3 + +* angels-fluid-control +** bob-topup-valve +*** products +- bob-topup-valve,1 +*** ingredients +- iron-plate,1 +- pipe,1 + +* angels-fluid-control +** valve-overflow +*** products +- valve-overflow,1 +*** ingredients +- basic-circuit-board,1 +- pipe,3 + +* angels-fluid-control +** valve-underflow +*** products +- valve-underflow,1 +*** ingredients +- basic-circuit-board,1 +- pipe,3 + +* angels-fluid-control +** valve-converter +*** products +- valve-converter,1 +*** ingredients +- basic-circuit-board,1 +- pipe,3 + +* angels-fluid-control +** pump +*** products +- pump,1 +*** ingredients +- steel-plate,1 +- engine-unit,1 +- copper-pipe,1 + +* angels-fluid-control +** bob-pump-2 +*** products +- bob-pump-2,1 +*** ingredients +- aluminium-plate,1 +- pump,1 +- bronze-pipe,1 + +* angels-fluid-control +** bob-pump-3 +*** products +- bob-pump-3,1 +*** ingredients +- titanium-plate,1 +- bob-pump-2,1 +- brass-pipe,1 + +* angels-fluid-control +** bob-pump-4 +*** products +- bob-pump-4,1 +*** ingredients +- nitinol-alloy,1 +- bob-pump-3,1 +- copper-tungsten-pipe,1 + +* angels-fluid-control +** barreling-pump +*** products +- barreling-pump,1 +*** ingredients +- steel-plate,6 +- steel-gear-wheel,9 +- electronic-circuit,2 +- steel-pipe,6 + +* angels-fluid-control +** empty-barrel +*** products +- empty-barrel,1 +*** ingredients +- steel-plate,1 + +* angels-fluid-control +** empty-canister +*** products +- empty-canister,5 +*** ingredients +- iron-plate,1 +- plastic-bar,1 +- empty-barrel,5 + +* angels-fluid-control +** gas-canister +*** products +- gas-canister,5 +*** ingredients +- steel-plate,1 +- empty-canister,5 + +* angels-fluid-control-angels-fluid-converter-water-enrichment +** fill-heavy-water-barrel +*** products +- heavy-water-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-water-heavy,50 + +* angels-fluid-control-angels-fluid-converter-water-enrichment +** empty-heavy-water-barrel +*** products +- empty-barrel,1 +- liquid-water-heavy,50 +*** ingredients +- heavy-water-barrel,1 + +* angels-fluid-control-angels-fluid-converter-water-treatment-fluid +** fill-pure-water-barrel +*** products +- pure-water-barrel,1 +*** ingredients +- empty-barrel,1 +- water-purified,50 + +* angels-fluid-control-angels-fluid-converter-water-treatment-fluid +** empty-pure-water-barrel +*** products +- empty-barrel,1 +- water-purified,50 +*** ingredients +- pure-water-barrel,1 + +* angels-fluid-control-angels-gold +** fill-liquid-chlorauric-acid-barrel +*** products +- liquid-chlorauric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-chlorauric-acid,50 + +* angels-fluid-control-angels-gold +** empty-liquid-chlorauric-acid-barrel +*** products +- empty-canister,1 +- liquid-chlorauric-acid,50 +*** ingredients +- liquid-chlorauric-acid-barrel,1 + +* angels-fluid-control-angels-lead +** fill-liquid-hexafluorosilicic-acid-barrel +*** products +- liquid-hexafluorosilicic-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-hexafluorosilicic-acid,50 + +* angels-fluid-control-angels-lead +** empty-liquid-hexafluorosilicic-acid-barrel +*** products +- empty-canister,1 +- liquid-hexafluorosilicic-acid,50 +*** ingredients +- liquid-hexafluorosilicic-acid-barrel,1 + +* angels-fluid-control-angels-platinum +** fill-liquid-hexachloroplatinic-acid-barrel +*** products +- liquid-hexachloroplatinic-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-hexachloroplatinic-acid,50 + +* angels-fluid-control-angels-platinum +** empty-liquid-hexachloroplatinic-acid-barrel +*** products +- empty-canister,1 +- liquid-hexachloroplatinic-acid,50 +*** ingredients +- liquid-hexachloroplatinic-acid-barrel,1 + +* angels-fluid-control-angels-silicon +** fill-liquid-trichlorosilane-barrel +*** products +- liquid-trichlorosilane-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-trichlorosilane,50 + +* angels-fluid-control-angels-silicon +** empty-liquid-trichlorosilane-barrel +*** products +- empty-barrel,1 +- liquid-trichlorosilane,50 +*** ingredients +- liquid-trichlorosilane-barrel,1 + +* angels-fluid-control-angels-silicon +** fill-gas-silane-barrel +*** products +- gas-silane-barrel,1 +*** ingredients +- gas-canister,1 +- gas-silane,50 + +* angels-fluid-control-angels-silicon +** empty-gas-silane-barrel +*** products +- gas-canister,1 +- gas-silane,50 +*** ingredients +- gas-silane-barrel,1 + +* angels-fluid-control-angels-titanium +** fill-liquid-titanium-tetrachloride-barrel +*** products +- liquid-titanium-tetrachloride-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-titanium-tetrachloride,50 + +* angels-fluid-control-angels-titanium +** empty-liquid-titanium-tetrachloride-barrel +*** products +- empty-barrel,1 +- liquid-titanium-tetrachloride,50 +*** ingredients +- liquid-titanium-tetrachloride-barrel,1 + +* angels-fluid-control-angels-tungsten +** fill-liquid-tungstic-acid-barrel +*** products +- liquid-tungstic-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-tungstic-acid,50 + +* angels-fluid-control-angels-tungsten +** empty-liquid-tungstic-acid-barrel +*** products +- empty-canister,1 +- liquid-tungstic-acid,50 +*** ingredients +- liquid-tungstic-acid-barrel,1 + +* angels-fluid-control-angels-tungsten +** fill-gas-tungsten-hexafluoride-barrel +*** products +- gas-tungsten-hexafluoride-barrel,1 +*** ingredients +- gas-canister,1 +- gas-tungsten-hexafluoride,50 + +* angels-fluid-control-angels-tungsten +** empty-gas-tungsten-hexafluoride-barrel +*** products +- gas-canister,1 +- gas-tungsten-hexafluoride,50 +*** ingredients +- gas-tungsten-hexafluoride-barrel,1 + +* angels-fluid-control-bio-fish +** fill-liquid-fish-atmosphere-barrel +*** products +- liquid-fish-atmosphere-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-fish-atmosphere,50 + +* angels-fluid-control-bio-fish +** empty-liquid-fish-atmosphere-barrel +*** products +- empty-barrel,1 +- liquid-fish-atmosphere,50 +*** ingredients +- liquid-fish-atmosphere-barrel,1 + +* angels-fluid-control-bio-fish +** fill-liquid-polluted-fish-atmosphere-barrel +*** products +- liquid-polluted-fish-atmosphere-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-polluted-fish-atmosphere,50 + +* angels-fluid-control-bio-fish +** empty-liquid-polluted-fish-atmosphere-barrel +*** products +- empty-barrel,1 +- liquid-polluted-fish-atmosphere,50 +*** ingredients +- liquid-polluted-fish-atmosphere-barrel,1 + +* angels-fluid-control-bio-fish +** fill-liquid-raw-fish-oil-barrel +*** products +- liquid-raw-fish-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-raw-fish-oil,50 + +* angels-fluid-control-bio-fish +** empty-liquid-raw-fish-oil-barrel +*** products +- empty-barrel,1 +- liquid-raw-fish-oil,50 +*** ingredients +- liquid-raw-fish-oil-barrel,1 + +* angels-fluid-control-bio-fish +** fill-liquid-fish-oil-barrel +*** products +- liquid-fish-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-fish-oil,50 + +* angels-fluid-control-bio-fish +** empty-liquid-fish-oil-barrel +*** products +- empty-barrel,1 +- liquid-fish-oil,50 +*** ingredients +- liquid-fish-oil-barrel,1 + +* angels-fluid-control-bio-liquor +** fill-liquid-pulping-liquor-barrel +*** products +- liquid-pulping-liquor-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-pulping-liquor,50 + +* angels-fluid-control-bio-liquor +** empty-liquid-pulping-liquor-barrel +*** products +- empty-barrel,1 +- liquid-pulping-liquor,50 +*** ingredients +- liquid-pulping-liquor-barrel,1 + +* angels-fluid-control-bio-liquor +** fill-liquid-brown-liquor-barrel +*** products +- liquid-brown-liquor-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-brown-liquor,50 + +* angels-fluid-control-bio-liquor +** empty-liquid-brown-liquor-barrel +*** products +- empty-barrel,1 +- liquid-brown-liquor,50 +*** ingredients +- liquid-brown-liquor-barrel,1 + +* angels-fluid-control-bio-liquor +** fill-liquid-white-liquor-barrel +*** products +- liquid-white-liquor-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-white-liquor,50 + +* angels-fluid-control-bio-liquor +** empty-liquid-white-liquor-barrel +*** products +- empty-barrel,1 +- liquid-white-liquor,50 +*** ingredients +- liquid-white-liquor-barrel,1 + +* angels-fluid-control-bio-liquor +** fill-liquid-black-liquor-barrel +*** products +- liquid-black-liquor-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-black-liquor,50 + +* angels-fluid-control-bio-liquor +** empty-liquid-black-liquor-barrel +*** products +- empty-barrel,1 +- liquid-black-liquor,50 +*** ingredients +- liquid-black-liquor-barrel,1 + +* angels-fluid-control-bio-liquor +** fill-liquid-green-liquor-barrel +*** products +- liquid-green-liquor-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-green-liquor,50 + +* angels-fluid-control-bio-liquor +** empty-liquid-green-liquor-barrel +*** products +- empty-barrel,1 +- liquid-green-liquor,50 +*** ingredients +- liquid-green-liquor-barrel,1 + +* angels-fluid-control-bio-plastic +** fill-liquid-cellulose-acetate-mixture-barrel +*** products +- liquid-cellulose-acetate-mixture-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-cellulose-acetate-mixture,50 + +* angels-fluid-control-bio-plastic +** empty-liquid-cellulose-acetate-mixture-barrel +*** products +- empty-barrel,1 +- liquid-cellulose-acetate-mixture,50 +*** ingredients +- liquid-cellulose-acetate-mixture-barrel,1 + +* angels-fluid-control-bio-plastic +** fill-liquid-cellulose-acetate-barrel +*** products +- liquid-cellulose-acetate-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-cellulose-acetate,50 + +* angels-fluid-control-bio-plastic +** empty-liquid-cellulose-acetate-barrel +*** products +- empty-barrel,1 +- liquid-cellulose-acetate,50 +*** ingredients +- liquid-cellulose-acetate-barrel,1 + +* angels-fluid-control-bio-plastic +** fill-liquid-propionic-acid-barrel +*** products +- liquid-propionic-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-propionic-acid,50 + +* angels-fluid-control-bio-plastic +** empty-liquid-propionic-acid-barrel +*** products +- empty-canister,1 +- liquid-propionic-acid,50 +*** ingredients +- liquid-propionic-acid-barrel,1 + +* angels-fluid-control-bio-processing-alien-intermediate +** fill-alien-spores-barrel +*** products +- alien-spores-barrel,1 +*** ingredients +- empty-barrel,1 +- alien-spores,50 + +* angels-fluid-control-bio-processing-alien-intermediate +** empty-alien-spores-barrel +*** products +- empty-barrel,1 +- alien-spores,50 +*** ingredients +- alien-spores-barrel,1 + +* angels-fluid-control-bio-processing-alien-intermediate +** fill-alien-goo-barrel +*** products +- alien-goo-barrel,1 +*** ingredients +- empty-barrel,1 +- alien-goo,50 + +* angels-fluid-control-bio-processing-alien-intermediate +** empty-alien-goo-barrel +*** products +- empty-barrel,1 +- alien-goo,50 +*** ingredients +- alien-goo-barrel,1 + +* angels-fluid-control-bio-processor-fermentation +** fill-liquid-fermentation-raw-barrel +*** products +- liquid-fermentation-raw-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-fermentation-raw,50 + +* angels-fluid-control-bio-processor-fermentation +** empty-liquid-fermentation-raw-barrel +*** products +- empty-barrel,1 +- liquid-fermentation-raw,50 +*** ingredients +- liquid-fermentation-raw-barrel,1 + +* angels-fluid-control-bio-processor-fermentation +** fill-liquid-acetic-acid-barrel +*** products +- liquid-acetic-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-acetic-acid,50 + +* angels-fluid-control-bio-processor-fermentation +** empty-liquid-acetic-acid-barrel +*** products +- empty-canister,1 +- liquid-acetic-acid,50 +*** ingredients +- liquid-acetic-acid-barrel,1 + +* angels-fluid-control-bio-processor-fermentation +** fill-liquid-acetic-anhydride-barrel +*** products +- liquid-acetic-anhydride-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-acetic-anhydride,50 + +* angels-fluid-control-bio-processor-fermentation +** empty-liquid-acetic-anhydride-barrel +*** products +- empty-barrel,1 +- liquid-acetic-anhydride,50 +*** ingredients +- liquid-acetic-anhydride-barrel,1 + +* angels-fluid-control-bio-processor-fermentation +** fill-gas-ethanol-barrel +*** products +- gas-ethanol-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ethanol,50 + +* angels-fluid-control-bio-processor-fermentation +** empty-gas-ethanol-barrel +*** products +- gas-canister,1 +- gas-ethanol,50 +*** ingredients +- gas-ethanol-barrel,1 + +* angels-fluid-control-bio-processor-nutrient +** fill-liquid-nutrient-pulp-barrel +*** products +- liquid-nutrient-pulp-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-nutrient-pulp,50 + +* angels-fluid-control-bio-processor-nutrient +** empty-liquid-nutrient-pulp-barrel +*** products +- empty-barrel,1 +- liquid-nutrient-pulp,50 +*** ingredients +- liquid-nutrient-pulp-barrel,1 + +* angels-fluid-control-bio-processor-press-vegetables +** fill-liquid-raw-vegetable-oil-barrel +*** products +- liquid-raw-vegetable-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-raw-vegetable-oil,50 + +* angels-fluid-control-bio-processor-press-vegetables +** empty-liquid-raw-vegetable-oil-barrel +*** products +- empty-barrel,1 +- liquid-raw-vegetable-oil,50 +*** ingredients +- liquid-raw-vegetable-oil-barrel,1 + +* angels-fluid-control-bio-processor-press-vegetables +** fill-liquid-vegetable-oil-barrel +*** products +- liquid-vegetable-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-vegetable-oil,50 + +* angels-fluid-control-bio-processor-press-vegetables +** empty-liquid-vegetable-oil-barrel +*** products +- empty-barrel,1 +- liquid-vegetable-oil,50 +*** ingredients +- liquid-vegetable-oil-barrel,1 + +* angels-fluid-control-bio-puffer-1 +** fill-gas-puffer-atmosphere-barrel +*** products +- gas-puffer-atmosphere-barrel,1 +*** ingredients +- gas-canister,1 +- gas-puffer-atmosphere,50 + +* angels-fluid-control-bio-puffer-1 +** empty-gas-puffer-atmosphere-barrel +*** products +- gas-canister,1 +- gas-puffer-atmosphere,50 +*** ingredients +- gas-puffer-atmosphere-barrel,1 + +* angels-fluid-control-bob-canister +** fill-ferric-chloride-solution-barrel +*** products +- ferric-chloride-solution-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-ferric-chloride-solution,50 + +* angels-fluid-control-bob-canister +** empty-ferric-chloride-solution-barrel +*** products +- empty-canister,1 +- liquid-ferric-chloride-solution,50 +*** ingredients +- ferric-chloride-solution-barrel,1 + +* angels-fluid-control-bob-canister +** fill-sulfuric-acid-barrel +*** products +- sulfuric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-sulfuric-acid,50 + +* angels-fluid-control-bob-canister +** empty-sulfuric-acid-barrel +*** products +- empty-canister,1 +- liquid-sulfuric-acid,50 +*** ingredients +- sulfuric-acid-barrel,1 + +* angels-fluid-control-bob-canister +** fill-sulfuric-nitric-acid-barrel +*** products +- sulfuric-nitric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- sulfuric-nitric-acid,50 + +* angels-fluid-control-bob-canister +** empty-sulfuric-nitric-acid-barrel +*** products +- empty-canister,1 +- sulfuric-nitric-acid,50 +*** ingredients +- sulfuric-nitric-acid-barrel,1 + +* angels-fluid-control-bob-canister +** fill-tungstic-acid-barrel +*** products +- tungstic-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-tungstic-acid,50 + +* angels-fluid-control-bob-canister +** empty-tungstic-acid-barrel +*** products +- empty-canister,1 +- liquid-tungstic-acid,50 +*** ingredients +- tungstic-acid-barrel,1 + +* angels-fluid-control-bob-canister +** fill-liquid-fuel-barrel +*** products +- liquid-fuel-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-fuel,50 + +* angels-fluid-control-bob-canister +** empty-liquid-fuel-barrel +*** products +- empty-canister,1 +- liquid-fuel,50 +*** ingredients +- liquid-fuel-barrel,1 + +* angels-fluid-control-bob-canister +** fill-alien-acid-barrel +*** products +- alien-acid-barrel,1 +*** ingredients +- empty-canister,1 +- alien-acid,50 + +* angels-fluid-control-bob-canister +** empty-alien-acid-barrel +*** products +- empty-canister,1 +- alien-acid,50 +*** ingredients +- alien-acid-barrel,1 + +* angels-fluid-control-bob-canister +** fill-alien-explosive-barrel +*** products +- alien-explosive-barrel,1 +*** ingredients +- empty-canister,1 +- alien-explosive,50 + +* angels-fluid-control-bob-canister +** empty-alien-explosive-barrel +*** products +- empty-canister,1 +- alien-explosive,50 +*** ingredients +- alien-explosive-barrel,1 + +* angels-fluid-control-bob-canister +** fill-alien-poison-barrel +*** products +- alien-poison-barrel,1 +*** ingredients +- empty-canister,1 +- alien-poison,50 + +* angels-fluid-control-bob-canister +** empty-alien-poison-barrel +*** products +- empty-canister,1 +- alien-poison,50 +*** ingredients +- alien-poison-barrel,1 + +* angels-fluid-control-bob-canister +** fill-alien-fire-barrel +*** products +- alien-fire-barrel,1 +*** ingredients +- empty-canister,1 +- alien-fire,50 + +* angels-fluid-control-bob-canister +** empty-alien-fire-barrel +*** products +- empty-canister,1 +- alien-fire,50 +*** ingredients +- alien-fire-barrel,1 + +* angels-fluid-control-bob-canister +** fill-nitric-acid-barrel +*** products +- nitric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-nitric-acid,50 + +* angels-fluid-control-bob-canister +** empty-nitric-acid-barrel +*** products +- empty-canister,1 +- liquid-nitric-acid,50 +*** ingredients +- nitric-acid-barrel,1 + +* angels-fluid-control-bob-fluid +** fill-ammoniated-brine-barrel +*** products +- ammoniated-brine-barrel,1 +*** ingredients +- empty-barrel,1 +- ammoniated-brine,50 + +* angels-fluid-control-bob-fluid +** fill-brine-barrel +*** products +- brine-barrel,1 +*** ingredients +- empty-barrel,1 +- water-saline,50 + +* angels-fluid-control-bob-fluid +** empty-ammoniated-brine-barrel +*** products +- empty-barrel,1 +- ammoniated-brine,50 +*** ingredients +- ammoniated-brine-barrel,1 + +* angels-fluid-control-bob-fluid +** empty-brine-barrel +*** products +- empty-barrel,1 +- water-saline,50 +*** ingredients +- brine-barrel,1 + +* angels-fluid-control-bob-fluid +** fill-dinitrogen-tetroxide-barrel +*** products +- dinitrogen-tetroxide-barrel,1 +*** ingredients +- empty-barrel,1 +- gas-dinitrogen-tetroxide,50 + +* angels-fluid-control-bob-fluid +** empty-dinitrogen-tetroxide-barrel +*** products +- empty-barrel,1 +- gas-dinitrogen-tetroxide,50 +*** ingredients +- dinitrogen-tetroxide-barrel,1 + +* angels-fluid-control-bob-fluid +** fill-glycerol-barrel +*** products +- glycerol-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-glycerol,50 + +* angels-fluid-control-bob-fluid +** empty-glycerol-barrel +*** products +- empty-barrel,1 +- liquid-glycerol,50 +*** ingredients +- glycerol-barrel,1 + +* angels-fluid-control-bob-fluid +** fill-hydrazine-barrel +*** products +- hydrazine-barrel,1 +*** ingredients +- empty-barrel,1 +- gas-hydrazine,50 + +* angels-fluid-control-bob-fluid +** empty-hydrazine-barrel +*** products +- empty-barrel,1 +- gas-hydrazine,50 +*** ingredients +- hydrazine-barrel,1 + +* angels-fluid-control-bob-fluid +** fill-hydrogen-peroxide-barrel +*** products +- hydrogen-peroxide-barrel,1 +*** ingredients +- empty-barrel,1 +- gas-hydrogen-peroxide,50 + +* angels-fluid-control-bob-fluid +** empty-hydrogen-peroxide-barrel +*** products +- empty-barrel,1 +- gas-hydrogen-peroxide,50 +*** ingredients +- hydrogen-peroxide-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-chlorine-barrel +*** products +- chlorine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-chlorine,50 + +* angels-fluid-control-bob-gas-bottle +** fill-nitrogen-barrel +*** products +- nitrogen-barrel,1 +*** ingredients +- gas-canister,1 +- gas-nitrogen,50 + +* angels-fluid-control-bob-gas-bottle +** empty-chlorine-barrel +*** products +- gas-canister,1 +- gas-chlorine,50 +*** ingredients +- chlorine-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** empty-nitrogen-barrel +*** products +- gas-canister,1 +- gas-nitrogen,50 +*** ingredients +- nitrogen-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-petroleum-gas-barrel +*** products +- petroleum-gas-barrel,1 +*** ingredients +- gas-canister,1 +- gas-methane,50 + +* angels-fluid-control-bob-gas-bottle +** empty-petroleum-gas-barrel +*** products +- gas-canister,1 +- gas-methane,50 +*** ingredients +- petroleum-gas-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-sour-gas-barrel +*** products +- sour-gas-barrel,1 +*** ingredients +- gas-canister,1 +- sour-gas,50 + +* angels-fluid-control-bob-gas-bottle +** empty-sour-gas-barrel +*** products +- gas-canister,1 +- sour-gas,50 +*** ingredients +- sour-gas-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-ammonia-barrel +*** products +- ammonia-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ammonia,50 + +* angels-fluid-control-bob-gas-bottle +** empty-ammonia-barrel +*** products +- gas-canister,1 +- gas-ammonia,50 +*** ingredients +- ammonia-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-carbon-dioxide-barrel +*** products +- carbon-dioxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-carbon-dioxide,50 + +* angels-fluid-control-bob-gas-bottle +** empty-carbon-dioxide-barrel +*** products +- gas-canister,1 +- gas-carbon-dioxide,50 +*** ingredients +- carbon-dioxide-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-nitric-oxide-barrel +*** products +- nitric-oxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-nitrogen-monoxide,50 + +* angels-fluid-control-bob-gas-bottle +** empty-nitric-oxide-barrel +*** products +- gas-canister,1 +- gas-nitrogen-monoxide,50 +*** ingredients +- nitric-oxide-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-hydrogen-sulfide-barrel +*** products +- hydrogen-sulfide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen-sulfide,50 + +* angels-fluid-control-bob-gas-bottle +** empty-hydrogen-sulfide-barrel +*** products +- gas-canister,1 +- gas-hydrogen-sulfide,50 +*** ingredients +- hydrogen-sulfide-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-hydrogen-chloride-barrel +*** products +- hydrogen-chloride-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen-chloride,50 + +* angels-fluid-control-bob-gas-bottle +** fill-sulfur-dioxide-barrel +*** products +- sulfur-dioxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-sulfur-dioxide,50 + +* angels-fluid-control-bob-gas-bottle +** empty-hydrogen-chloride-barrel +*** products +- gas-canister,1 +- gas-hydrogen-chloride,50 +*** ingredients +- hydrogen-chloride-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** empty-sulfur-dioxide-barrel +*** products +- gas-canister,1 +- gas-sulfur-dioxide,50 +*** ingredients +- sulfur-dioxide-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-nitrogen-dioxide-barrel +*** products +- nitrogen-dioxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-nitrogen-dioxide,50 + +* angels-fluid-control-bob-gas-bottle +** fill-oxygen-barrel +*** products +- oxygen-barrel,1 +*** ingredients +- gas-canister,1 +- gas-oxygen,50 + +* angels-fluid-control-bob-gas-bottle +** empty-nitrogen-dioxide-barrel +*** products +- gas-canister,1 +- gas-nitrogen-dioxide,50 +*** ingredients +- nitrogen-dioxide-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** empty-oxygen-barrel +*** products +- gas-canister,1 +- gas-oxygen,50 +*** ingredients +- oxygen-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-hydrogen-barrel +*** products +- hydrogen-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen,50 + +* angels-fluid-control-bob-gas-bottle +** empty-hydrogen-barrel +*** products +- gas-canister,1 +- gas-hydrogen,50 +*** ingredients +- hydrogen-barrel,1 + +* angels-fluid-control-bob-gas-bottle +** fill-deuterium-barrel +*** products +- deuterium-barrel,1 +*** ingredients +- gas-canister,1 +- gas-deuterium,50 + +* angels-fluid-control-bob-gas-bottle +** empty-deuterium-barrel +*** products +- gas-canister,1 +- gas-deuterium,50 +*** ingredients +- deuterium-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore8-sludge-barrel +*** products +- angels-ore8-sludge-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore8-sludge,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore8-sludge-barrel +*** products +- empty-barrel,1 +- angels-ore8-sludge,50 +*** ingredients +- angels-ore8-sludge-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore8-solution-barrel +*** products +- angels-ore8-solution-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore8-solution,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore8-solution-barrel +*** products +- empty-barrel,1 +- angels-ore8-solution,50 +*** ingredients +- angels-ore8-solution-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore8-anode-sludge-barrel +*** products +- angels-ore8-anode-sludge-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore8-anode-sludge,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore8-anode-sludge-barrel +*** products +- empty-barrel,1 +- angels-ore8-anode-sludge,50 +*** ingredients +- angels-ore8-anode-sludge-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore8-slime-barrel +*** products +- angels-ore8-slime-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore8-slime,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore8-slime-barrel +*** products +- empty-barrel,1 +- angels-ore8-slime,50 +*** ingredients +- angels-ore8-slime-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-liquid-ferric-chloride-solution-barrel +*** products +- liquid-ferric-chloride-solution-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-ferric-chloride-solution,50 + +* angels-fluid-control-ore-processing-fluid +** empty-liquid-ferric-chloride-solution-barrel +*** products +- empty-canister,1 +- liquid-ferric-chloride-solution,50 +*** ingredients +- liquid-ferric-chloride-solution-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore9-sludge-barrel +*** products +- angels-ore9-sludge-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore9-sludge,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore9-sludge-barrel +*** products +- empty-barrel,1 +- angels-ore9-sludge,50 +*** ingredients +- angels-ore9-sludge-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore9-solution-barrel +*** products +- angels-ore9-solution-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore9-solution,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore9-solution-barrel +*** products +- empty-barrel,1 +- angels-ore9-solution,50 +*** ingredients +- angels-ore9-solution-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore9-anode-sludge-barrel +*** products +- angels-ore9-anode-sludge-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore9-anode-sludge,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore9-anode-sludge-barrel +*** products +- empty-barrel,1 +- angels-ore9-anode-sludge,50 +*** ingredients +- angels-ore9-anode-sludge-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-angels-ore9-slime-barrel +*** products +- angels-ore9-slime-barrel,1 +*** ingredients +- empty-barrel,1 +- angels-ore9-slime,50 + +* angels-fluid-control-ore-processing-fluid +** empty-angels-ore9-slime-barrel +*** products +- empty-barrel,1 +- angels-ore9-slime,50 +*** ingredients +- angels-ore9-slime-barrel,1 + +* angels-fluid-control-ore-processing-fluid +** fill-liquid-cupric-chloride-solution-barrel +*** products +- liquid-cupric-chloride-solution-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-cupric-chloride-solution,50 + +* angels-fluid-control-ore-processing-fluid +** empty-liquid-cupric-chloride-solution-barrel +*** products +- empty-canister,1 +- liquid-cupric-chloride-solution,50 +*** ingredients +- liquid-cupric-chloride-solution-barrel,1 + +* angels-fluid-control-ore-sorting-fluid +** fill-thermal-water-barrel +*** products +- thermal-water-barrel,1 +*** ingredients +- empty-barrel,1 +- thermal-water,50 + +* angels-fluid-control-ore-sorting-fluid +** empty-thermal-water-barrel +*** products +- empty-barrel,1 +- thermal-water,50 +*** ingredients +- thermal-water-barrel,1 + +* angels-fluid-control-ore-sorting-fluid +** fill-slag-slurry-barrel +*** products +- slag-slurry-barrel,1 +*** ingredients +- empty-barrel,1 +- slag-slurry,50 + +* angels-fluid-control-ore-sorting-fluid +** empty-slag-slurry-barrel +*** products +- empty-barrel,1 +- slag-slurry,50 +*** ingredients +- slag-slurry-barrel,1 + +* angels-fluid-control-ore-sorting-fluid +** fill-mineral-sludge-barrel +*** products +- mineral-sludge-barrel,1 +*** ingredients +- empty-barrel,1 +- mineral-sludge,50 + +* angels-fluid-control-ore-sorting-fluid +** empty-mineral-sludge-barrel +*** products +- empty-barrel,1 +- mineral-sludge,50 +*** ingredients +- mineral-sludge-barrel,1 + +* angels-fluid-control-ore-sorting-fluid +** fill-crystal-slurry-barrel +*** products +- crystal-slurry-barrel,1 +*** ingredients +- empty-barrel,1 +- crystal-slurry,50 + +* angels-fluid-control-ore-sorting-fluid +** empty-crystal-slurry-barrel +*** products +- empty-barrel,1 +- crystal-slurry,50 +*** ingredients +- crystal-slurry-barrel,1 + +* angels-fluid-control-ore-sorting-fluid +** fill-crystal-seedling-barrel +*** products +- crystal-seedling-barrel,1 +*** ingredients +- empty-barrel,1 +- crystal-seedling,50 + +* angels-fluid-control-ore-sorting-fluid +** empty-crystal-seedling-barrel +*** products +- empty-barrel,1 +- crystal-seedling,50 +*** ingredients +- crystal-seedling-barrel,1 + +* angels-fluid-control-ore-sorting-fluid +** fill-crystal-matrix-barrel +*** products +- crystal-matrix-barrel,1 +*** ingredients +- empty-barrel,1 +- crystal-matrix,50 + +* angels-fluid-control-ore-sorting-fluid +** empty-crystal-matrix-barrel +*** products +- empty-barrel,1 +- crystal-matrix,50 +*** ingredients +- crystal-matrix-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-compressed-air-barrel +*** products +- gas-compressed-air-barrel,1 +*** ingredients +- gas-canister,1 +- gas-compressed-air,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-compressed-air-barrel +*** products +- gas-canister,1 +- gas-compressed-air,50 +*** ingredients +- gas-compressed-air-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-oxygen-barrel +*** products +- gas-oxygen-barrel,1 +*** ingredients +- gas-canister,1 +- gas-oxygen,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-oxygen-barrel +*** products +- gas-canister,1 +- gas-oxygen,50 +*** ingredients +- gas-oxygen-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-hydrogen-peroxide-barrel +*** products +- gas-hydrogen-peroxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen-peroxide,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-hydrogen-peroxide-barrel +*** products +- gas-canister,1 +- gas-hydrogen-peroxide,50 +*** ingredients +- gas-hydrogen-peroxide-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-carbon-monoxide-barrel +*** products +- gas-carbon-monoxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-carbon-monoxide,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-carbon-monoxide-barrel +*** products +- gas-canister,1 +- gas-carbon-monoxide,50 +*** ingredients +- gas-carbon-monoxide-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-carbon-dioxide-barrel +*** products +- gas-carbon-dioxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-carbon-dioxide,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-carbon-dioxide-barrel +*** products +- gas-canister,1 +- gas-carbon-dioxide,50 +*** ingredients +- gas-carbon-dioxide-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-hydrogen-barrel +*** products +- gas-hydrogen-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-hydrogen-barrel +*** products +- gas-canister,1 +- gas-hydrogen,50 +*** ingredients +- gas-hydrogen-barrel,1 + +* angels-fluid-control-petrochem-basic-fluids +** fill-gas-deuterium-barrel +*** products +- gas-deuterium-barrel,1 +*** ingredients +- gas-canister,1 +- gas-deuterium,50 + +* angels-fluid-control-petrochem-basic-fluids +** empty-gas-deuterium-barrel +*** products +- gas-canister,1 +- gas-deuterium,50 +*** ingredients +- gas-deuterium-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-methane-barrel +*** products +- gas-methane-barrel,1 +*** ingredients +- gas-canister,1 +- gas-methane,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-methane-barrel +*** products +- gas-canister,1 +- gas-methane,50 +*** ingredients +- gas-methane-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-ethane-barrel +*** products +- gas-ethane-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ethane,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-ethane-barrel +*** products +- gas-canister,1 +- gas-ethane,50 +*** ingredients +- gas-ethane-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-butane-barrel +*** products +- gas-butane-barrel,1 +*** ingredients +- gas-canister,1 +- gas-butane,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-butane-barrel +*** products +- gas-canister,1 +- gas-butane,50 +*** ingredients +- gas-butane-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-propene-barrel +*** products +- gas-propene-barrel,1 +*** ingredients +- gas-canister,1 +- gas-propene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-propene-barrel +*** products +- gas-canister,1 +- gas-propene,50 +*** ingredients +- gas-propene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-methanol-barrel +*** products +- gas-methanol-barrel,1 +*** ingredients +- gas-canister,1 +- gas-methanol,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-methanol-barrel +*** products +- gas-canister,1 +- gas-methanol,50 +*** ingredients +- gas-methanol-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-ethylene-barrel +*** products +- gas-ethylene-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ethylene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-ethylene-barrel +*** products +- gas-canister,1 +- gas-ethylene,50 +*** ingredients +- gas-ethylene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-benzene-barrel +*** products +- gas-benzene-barrel,1 +*** ingredients +- gas-canister,1 +- gas-benzene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-benzene-barrel +*** products +- gas-canister,1 +- gas-benzene,50 +*** ingredients +- gas-benzene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-fuel-oil-barrel +*** products +- liquid-fuel-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-fuel-oil,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-fuel-oil-barrel +*** products +- empty-barrel,1 +- liquid-fuel-oil,50 +*** ingredients +- liquid-fuel-oil-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-naphtha-barrel +*** products +- liquid-naphtha-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-naphtha,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-naphtha-barrel +*** products +- empty-barrel,1 +- liquid-naphtha,50 +*** ingredients +- liquid-naphtha-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-mineral-oil-barrel +*** products +- liquid-mineral-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-mineral-oil,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-mineral-oil-barrel +*** products +- empty-barrel,1 +- liquid-mineral-oil,50 +*** ingredients +- liquid-mineral-oil-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-lubricant-barrel +*** products +- lubricant-barrel,1 +*** ingredients +- empty-barrel,1 +- lubricant,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-lubricant-barrel +*** products +- empty-barrel,1 +- lubricant,50 +*** ingredients +- lubricant-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-synthesis-barrel +*** products +- gas-synthesis-barrel,1 +*** ingredients +- gas-canister,1 +- gas-synthesis,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-synthesis-barrel +*** products +- gas-canister,1 +- gas-synthesis,50 +*** ingredients +- gas-synthesis-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-toluene-barrel +*** products +- liquid-toluene-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-toluene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-toluene-barrel +*** products +- empty-barrel,1 +- liquid-toluene,50 +*** ingredients +- liquid-toluene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-butadiene-barrel +*** products +- gas-butadiene-barrel,1 +*** ingredients +- gas-canister,1 +- gas-butadiene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-butadiene-barrel +*** products +- gas-canister,1 +- gas-butadiene,50 +*** ingredients +- gas-butadiene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-phenol-barrel +*** products +- liquid-phenol-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-phenol,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-phenol-barrel +*** products +- empty-barrel,1 +- liquid-phenol,50 +*** ingredients +- liquid-phenol-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-ethylbenzene-barrel +*** products +- liquid-ethylbenzene-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-ethylbenzene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-ethylbenzene-barrel +*** products +- empty-barrel,1 +- liquid-ethylbenzene,50 +*** ingredients +- liquid-ethylbenzene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-styrene-barrel +*** products +- liquid-styrene-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-styrene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-styrene-barrel +*** products +- empty-barrel,1 +- liquid-styrene,50 +*** ingredients +- liquid-styrene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-formaldehyde-barrel +*** products +- gas-formaldehyde-barrel,1 +*** ingredients +- gas-canister,1 +- gas-formaldehyde,50 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-polyethylene-barrel +*** products +- liquid-polyethylene-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-polyethylene,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-formaldehyde-barrel +*** products +- gas-canister,1 +- gas-formaldehyde,50 +*** ingredients +- gas-formaldehyde-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-polyethylene-barrel +*** products +- empty-barrel,1 +- liquid-polyethylene,50 +*** ingredients +- liquid-polyethylene-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-glycerol-barrel +*** products +- liquid-glycerol-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-glycerol,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-glycerol-barrel +*** products +- empty-barrel,1 +- liquid-glycerol,50 +*** ingredients +- liquid-glycerol-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-bisphenol-a-barrel +*** products +- liquid-bisphenol-a-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-bisphenol-a,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-bisphenol-a-barrel +*** products +- empty-barrel,1 +- liquid-bisphenol-a,50 +*** ingredients +- liquid-bisphenol-a-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-acetone-barrel +*** products +- gas-acetone-barrel,1 +*** ingredients +- gas-canister,1 +- gas-acetone,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-acetone-barrel +*** products +- gas-canister,1 +- gas-acetone,50 +*** ingredients +- gas-acetone-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-gas-ethylene-oxide-barrel +*** products +- gas-ethylene-oxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ethylene-oxide,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-gas-ethylene-oxide-barrel +*** products +- gas-canister,1 +- gas-ethylene-oxide,50 +*** ingredients +- gas-ethylene-oxide-barrel,1 + +* angels-fluid-control-petrochem-carbon-fluids +** fill-liquid-ethylene-carbonate-barrel +*** products +- liquid-ethylene-carbonate-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-ethylene-carbonate,50 + +* angels-fluid-control-petrochem-carbon-fluids +** empty-liquid-ethylene-carbonate-barrel +*** products +- empty-barrel,1 +- liquid-ethylene-carbonate,50 +*** ingredients +- liquid-ethylene-carbonate-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-gas-chlorine-barrel +*** products +- gas-chlorine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-chlorine,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-gas-chlorine-barrel +*** products +- gas-canister,1 +- gas-chlorine,50 +*** ingredients +- gas-chlorine-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-gas-hydrogen-chloride-barrel +*** products +- gas-hydrogen-chloride-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen-chloride,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-gas-hydrogen-chloride-barrel +*** products +- gas-canister,1 +- gas-hydrogen-chloride,50 +*** ingredients +- gas-hydrogen-chloride-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-liquid-hydrochloric-acid-barrel +*** products +- liquid-hydrochloric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-hydrochloric-acid,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-liquid-hydrochloric-acid-barrel +*** products +- empty-canister,1 +- liquid-hydrochloric-acid,50 +*** ingredients +- liquid-hydrochloric-acid-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-gas-allylchlorid-barrel +*** products +- gas-allylchlorid-barrel,1 +*** ingredients +- gas-canister,1 +- gas-allylchlorid,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-gas-allylchlorid-barrel +*** products +- gas-canister,1 +- gas-allylchlorid,50 +*** ingredients +- gas-allylchlorid-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-gas-epichlorhydrin-barrel +*** products +- gas-epichlorhydrin-barrel,1 +*** ingredients +- gas-canister,1 +- gas-epichlorhydrin,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-gas-epichlorhydrin-barrel +*** products +- gas-canister,1 +- gas-epichlorhydrin,50 +*** ingredients +- gas-epichlorhydrin-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-gas-chlor-methane-barrel +*** products +- gas-chlor-methane-barrel,1 +*** ingredients +- gas-canister,1 +- gas-chlor-methane,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-gas-chlor-methane-barrel +*** products +- gas-canister,1 +- gas-chlor-methane,50 +*** ingredients +- gas-chlor-methane-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-liquid-perchloric-acid-barrel +*** products +- liquid-perchloric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-perchloric-acid,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-liquid-perchloric-acid-barrel +*** products +- empty-canister,1 +- liquid-perchloric-acid,50 +*** ingredients +- liquid-perchloric-acid-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-gas-phosgene-barrel +*** products +- gas-phosgene-barrel,1 +*** ingredients +- gas-canister,1 +- gas-phosgene,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-gas-phosgene-barrel +*** products +- gas-canister,1 +- gas-phosgene,50 +*** ingredients +- gas-phosgene-barrel,1 + +* angels-fluid-control-petrochem-chlorine-fluids +** fill-liquid-aqueous-sodium-hydroxide-barrel +*** products +- liquid-aqueous-sodium-hydroxide-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-aqueous-sodium-hydroxide,50 + +* angels-fluid-control-petrochem-chlorine-fluids +** empty-liquid-aqueous-sodium-hydroxide-barrel +*** products +- empty-barrel,1 +- liquid-aqueous-sodium-hydroxide,50 +*** ingredients +- liquid-aqueous-sodium-hydroxide-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-nitrogen-barrel +*** products +- gas-nitrogen-barrel,1 +*** ingredients +- gas-canister,1 +- gas-nitrogen,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-nitrogen-barrel +*** products +- gas-canister,1 +- gas-nitrogen,50 +*** ingredients +- gas-nitrogen-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-ammonia-barrel +*** products +- gas-ammonia-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ammonia,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-ammonia-barrel +*** products +- gas-canister,1 +- gas-ammonia,50 +*** ingredients +- gas-ammonia-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-nitrogen-monoxide-barrel +*** products +- gas-nitrogen-monoxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-nitrogen-monoxide,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-nitrogen-monoxide-barrel +*** products +- gas-canister,1 +- gas-nitrogen-monoxide,50 +*** ingredients +- gas-nitrogen-monoxide-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-nitrogen-dioxide-barrel +*** products +- gas-nitrogen-dioxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-nitrogen-dioxide,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-nitrogen-dioxide-barrel +*** products +- gas-canister,1 +- gas-nitrogen-dioxide,50 +*** ingredients +- gas-nitrogen-dioxide-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-dinitrogen-tetroxide-barrel +*** products +- gas-dinitrogen-tetroxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-dinitrogen-tetroxide,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-dinitrogen-tetroxide-barrel +*** products +- gas-canister,1 +- gas-dinitrogen-tetroxide,50 +*** ingredients +- gas-dinitrogen-tetroxide-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-ammonium-chloride-barrel +*** products +- gas-ammonium-chloride-barrel,1 +*** ingredients +- gas-canister,1 +- gas-ammonium-chloride,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-ammonium-chloride-barrel +*** products +- gas-canister,1 +- gas-ammonium-chloride,50 +*** ingredients +- gas-ammonium-chloride-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-urea-barrel +*** products +- gas-urea-barrel,1 +*** ingredients +- gas-canister,1 +- gas-urea,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-urea-barrel +*** products +- gas-canister,1 +- gas-urea,50 +*** ingredients +- gas-urea-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-melamine-barrel +*** products +- gas-melamine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-melamine,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-melamine-barrel +*** products +- gas-canister,1 +- gas-melamine,50 +*** ingredients +- gas-melamine-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-liquid-nitric-acid-barrel +*** products +- liquid-nitric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-nitric-acid,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-liquid-nitric-acid-barrel +*** products +- empty-canister,1 +- liquid-nitric-acid,50 +*** ingredients +- liquid-nitric-acid-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-monochloramine-barrel +*** products +- gas-monochloramine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-monochloramine,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-monochloramine-barrel +*** products +- gas-canister,1 +- gas-monochloramine,50 +*** ingredients +- gas-monochloramine-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-hydrazine-barrel +*** products +- gas-hydrazine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrazine,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-hydrazine-barrel +*** products +- gas-canister,1 +- gas-hydrazine,50 +*** ingredients +- gas-hydrazine-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-methylamine-barrel +*** products +- gas-methylamine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-methylamine,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-methylamine-barrel +*** products +- gas-canister,1 +- gas-methylamine,50 +*** ingredients +- gas-methylamine-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-dimethylamine-barrel +*** products +- gas-dimethylamine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-dimethylamine,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-dimethylamine-barrel +*** products +- gas-canister,1 +- gas-dimethylamine,50 +*** ingredients +- gas-dimethylamine-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-gas-dimethylhydrazine-barrel +*** products +- gas-dimethylhydrazine-barrel,1 +*** ingredients +- gas-canister,1 +- gas-dimethylhydrazine,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-gas-dimethylhydrazine-barrel +*** products +- gas-canister,1 +- gas-dimethylhydrazine,50 +*** ingredients +- gas-dimethylhydrazine-barrel,1 + +* angels-fluid-control-petrochem-nitrogen-fluids +** fill-nitroglycerin-barrel +*** products +- nitroglycerin-barrel,1 +*** ingredients +- empty-barrel,1 +- nitroglycerin,50 + +* angels-fluid-control-petrochem-nitrogen-fluids +** empty-nitroglycerin-barrel +*** products +- empty-barrel,1 +- nitroglycerin,50 +*** ingredients +- nitroglycerin-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-gas-natural-1-barrel +*** products +- gas-natural-1-barrel,1 +*** ingredients +- gas-canister,1 +- gas-natural-1,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-gas-natural-1-barrel +*** products +- gas-canister,1 +- gas-natural-1,50 +*** ingredients +- gas-natural-1-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-gas-raw-1-barrel +*** products +- gas-raw-1-barrel,1 +*** ingredients +- gas-canister,1 +- gas-raw-1,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-gas-raw-1-barrel +*** products +- gas-canister,1 +- gas-raw-1,50 +*** ingredients +- gas-raw-1-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-liquid-ngl-barrel +*** products +- liquid-ngl-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-ngl,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-liquid-ngl-barrel +*** products +- empty-barrel,1 +- liquid-ngl,50 +*** ingredients +- liquid-ngl-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-liquid-multi-phase-oil-barrel +*** products +- liquid-multi-phase-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-multi-phase-oil,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-liquid-multi-phase-oil-barrel +*** products +- empty-barrel,1 +- liquid-multi-phase-oil,50 +*** ingredients +- liquid-multi-phase-oil-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-crude-oil-barrel +*** products +- crude-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- crude-oil,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-crude-oil-barrel +*** products +- empty-barrel,1 +- crude-oil,50 +*** ingredients +- crude-oil-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-liquid-condensates-barrel +*** products +- liquid-condensates-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-condensates,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-liquid-condensates-barrel +*** products +- empty-barrel,1 +- liquid-condensates,50 +*** ingredients +- liquid-condensates-barrel,1 + +* angels-fluid-control-petrochem-raw-fluids +** fill-gas-residual-barrel +*** products +- gas-residual-barrel,1 +*** ingredients +- gas-canister,1 +- gas-residual,50 + +* angels-fluid-control-petrochem-raw-fluids +** empty-gas-residual-barrel +*** products +- gas-canister,1 +- gas-residual,50 +*** ingredients +- gas-residual-barrel,1 + +* angels-fluid-control-petrochem-solids-fluids +** fill-liquid-plastic-barrel +*** products +- liquid-plastic-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-plastic,50 + +* angels-fluid-control-petrochem-solids-fluids +** empty-liquid-plastic-barrel +*** products +- empty-barrel,1 +- liquid-plastic,50 +*** ingredients +- liquid-plastic-barrel,1 + +* angels-fluid-control-petrochem-solids-fluids +** fill-liquid-resin-barrel +*** products +- liquid-resin-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-resin,50 + +* angels-fluid-control-petrochem-solids-fluids +** empty-liquid-resin-barrel +*** products +- empty-barrel,1 +- liquid-resin,50 +*** ingredients +- liquid-resin-barrel,1 + +* angels-fluid-control-petrochem-solids-fluids +** fill-liquid-rubber-barrel +*** products +- liquid-rubber-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-rubber,50 + +* angels-fluid-control-petrochem-solids-fluids +** empty-liquid-rubber-barrel +*** products +- empty-barrel,1 +- liquid-rubber,50 +*** ingredients +- liquid-rubber-barrel,1 + +* angels-fluid-control-petrochem-sulfer-fluids +** fill-gas-hydrogen-sulfide-barrel +*** products +- gas-hydrogen-sulfide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen-sulfide,50 + +* angels-fluid-control-petrochem-sulfer-fluids +** empty-gas-hydrogen-sulfide-barrel +*** products +- gas-canister,1 +- gas-hydrogen-sulfide,50 +*** ingredients +- gas-hydrogen-sulfide-barrel,1 + +* angels-fluid-control-petrochem-sulfer-fluids +** fill-gas-sulfur-dioxide-barrel +*** products +- gas-sulfur-dioxide-barrel,1 +*** ingredients +- gas-canister,1 +- gas-sulfur-dioxide,50 + +* angels-fluid-control-petrochem-sulfer-fluids +** empty-gas-sulfur-dioxide-barrel +*** products +- gas-canister,1 +- gas-sulfur-dioxide,50 +*** ingredients +- gas-sulfur-dioxide-barrel,1 + +* angels-fluid-control-petrochem-sulfer-fluids +** fill-liquid-sulfuric-acid-barrel +*** products +- liquid-sulfuric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-sulfuric-acid,50 + +* angels-fluid-control-petrochem-sulfer-fluids +** empty-liquid-sulfuric-acid-barrel +*** products +- empty-canister,1 +- liquid-sulfuric-acid,50 +*** ingredients +- liquid-sulfuric-acid-barrel,1 + +* angels-fluid-control-petrochem-sulfer-fluids +** fill-gas-acid-barrel +*** products +- gas-acid-barrel,1 +*** ingredients +- gas-canister,1 +- gas-acid,50 + +* angels-fluid-control-petrochem-sulfer-fluids +** empty-gas-acid-barrel +*** products +- gas-canister,1 +- gas-acid,50 +*** ingredients +- gas-acid-barrel,1 + +* angels-fluid-control-petrochem-sulfer-fluids +** fill-gas-hydrogen-fluoride-barrel +*** products +- gas-hydrogen-fluoride-barrel,1 +*** ingredients +- gas-canister,1 +- gas-hydrogen-fluoride,50 + +* angels-fluid-control-petrochem-sulfer-fluids +** empty-gas-hydrogen-fluoride-barrel +*** products +- gas-canister,1 +- gas-hydrogen-fluoride,50 +*** ingredients +- gas-hydrogen-fluoride-barrel,1 + +* angels-fluid-control-petrochem-sulfer-fluids +** fill-liquid-hydrofluoric-acid-barrel +*** products +- liquid-hydrofluoric-acid-barrel,1 +*** ingredients +- empty-canister,1 +- liquid-hydrofluoric-acid,50 + +* angels-fluid-control-petrochem-sulfer-fluids +** empty-liquid-hydrofluoric-acid-barrel +*** products +- empty-canister,1 +- liquid-hydrofluoric-acid,50 +*** ingredients +- liquid-hydrofluoric-acid-barrel,1 + +* angels-fluid-control-vanilla +** fill-heavy-oil-barrel +*** products +- heavy-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-naphtha,50 + +* angels-fluid-control-vanilla +** empty-heavy-oil-barrel +*** products +- empty-barrel,1 +- liquid-naphtha,50 +*** ingredients +- heavy-oil-barrel,1 + +* angels-fluid-control-vanilla +** fill-light-oil-barrel +*** products +- light-oil-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-fuel-oil,50 + +* angels-fluid-control-vanilla +** empty-light-oil-barrel +*** products +- empty-barrel,1 +- liquid-fuel-oil,50 +*** ingredients +- light-oil-barrel,1 + +* angels-fluid-control-water-cleaning-fluid +** fill-water-yellow-waste-barrel +*** products +- water-yellow-waste-barrel,1 +*** ingredients +- empty-barrel,1 +- water-yellow-waste,50 + +* angels-fluid-control-water-cleaning-fluid +** empty-water-yellow-waste-barrel +*** products +- empty-barrel,1 +- water-yellow-waste,50 +*** ingredients +- water-yellow-waste-barrel,1 + +* angels-fluid-control-water-cleaning-fluid +** fill-water-greenyellow-waste-barrel +*** products +- water-greenyellow-waste-barrel,1 +*** ingredients +- empty-barrel,1 +- water-greenyellow-waste,50 + +* angels-fluid-control-water-cleaning-fluid +** empty-water-greenyellow-waste-barrel +*** products +- empty-barrel,1 +- water-greenyellow-waste,50 +*** ingredients +- water-greenyellow-waste-barrel,1 + +* angels-fluid-control-water-cleaning-fluid +** fill-water-green-waste-barrel +*** products +- water-green-waste-barrel,1 +*** ingredients +- empty-barrel,1 +- water-green-waste,50 + +* angels-fluid-control-water-cleaning-fluid +** empty-water-green-waste-barrel +*** products +- empty-barrel,1 +- water-green-waste,50 +*** ingredients +- water-green-waste-barrel,1 + +* angels-fluid-control-water-cleaning-fluid +** fill-water-red-waste-barrel +*** products +- water-red-waste-barrel,1 +*** ingredients +- empty-barrel,1 +- water-red-waste,50 + +* angels-fluid-control-water-cleaning-fluid +** empty-water-red-waste-barrel +*** products +- empty-barrel,1 +- water-red-waste,50 +*** ingredients +- water-red-waste-barrel,1 + +* angels-fluid-control-water-enrichment +** fill-liquid-water-semiheavy-1-barrel +*** products +- liquid-water-semiheavy-1-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-water-semiheavy-1,50 + +* angels-fluid-control-water-enrichment +** empty-liquid-water-semiheavy-1-barrel +*** products +- empty-barrel,1 +- liquid-water-semiheavy-1,50 +*** ingredients +- liquid-water-semiheavy-1-barrel,1 + +* angels-fluid-control-water-enrichment +** fill-liquid-water-semiheavy-2-barrel +*** products +- liquid-water-semiheavy-2-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-water-semiheavy-2,50 + +* angels-fluid-control-water-enrichment +** empty-liquid-water-semiheavy-2-barrel +*** products +- empty-barrel,1 +- liquid-water-semiheavy-2,50 +*** ingredients +- liquid-water-semiheavy-2-barrel,1 + +* angels-fluid-control-water-enrichment +** fill-liquid-water-semiheavy-3-barrel +*** products +- liquid-water-semiheavy-3-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-water-semiheavy-3,50 + +* angels-fluid-control-water-enrichment +** empty-liquid-water-semiheavy-3-barrel +*** products +- empty-barrel,1 +- liquid-water-semiheavy-3,50 +*** ingredients +- liquid-water-semiheavy-3-barrel,1 + +* angels-fluid-control-water-enrichment +** fill-liquid-water-heavy-barrel +*** products +- liquid-water-heavy-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-water-heavy,50 + +* angels-fluid-control-water-enrichment +** empty-liquid-water-heavy-barrel +*** products +- empty-barrel,1 +- liquid-water-heavy,50 +*** ingredients +- liquid-water-heavy-barrel,1 + +* angels-fluid-control-water-treatment-fluid +** fill-water-barrel +*** products +- water-barrel,1 +*** ingredients +- empty-barrel,1 +- water,50 + +* angels-fluid-control-water-treatment-fluid +** empty-water-barrel +*** products +- empty-barrel,1 +- water,50 +*** ingredients +- water-barrel,1 + +* angels-fluid-control-water-treatment-fluid +** fill-water-purified-barrel +*** products +- water-purified-barrel,1 +*** ingredients +- empty-barrel,1 +- water-purified,50 + +* angels-fluid-control-water-treatment-fluid +** empty-water-purified-barrel +*** products +- empty-barrel,1 +- water-purified,50 +*** ingredients +- water-purified-barrel,1 + +* angels-fluid-control-water-treatment-fluid +** fill-water-saline-barrel +*** products +- water-saline-barrel,1 +*** ingredients +- empty-barrel,1 +- water-saline,50 + +* angels-fluid-control-water-treatment-fluid +** empty-water-saline-barrel +*** products +- empty-barrel,1 +- water-saline,50 +*** ingredients +- water-saline-barrel,1 + +* angels-fluid-control-water-treatment-fluid +** fill-water-mineralized-barrel +*** products +- water-mineralized-barrel,1 +*** ingredients +- empty-barrel,1 +- water-mineralized,50 + +* angels-fluid-control-water-treatment-fluid +** empty-water-mineralized-barrel +*** products +- empty-barrel,1 +- water-mineralized,50 +*** ingredients +- water-mineralized-barrel,1 + +* angels-fluid-control-water-treatment-fluid +** fill-lithia-water-barrel +*** products +- lithia-water-barrel,1 +*** ingredients +- empty-barrel,1 +- lithia-water,50 + +* angels-fluid-control-water-treatment-fluid +** empty-lithia-water-barrel +*** products +- empty-barrel,1 +- lithia-water,50 +*** ingredients +- lithia-water-barrel,1 + +* angels-fluid-control-water-treatment-fluid +** fill-liquid-coolant-barrel +*** products +- liquid-coolant-barrel,1 +*** ingredients +- empty-barrel,1 +- liquid-coolant,50 + +* angels-fluid-control-water-treatment-fluid +** empty-liquid-coolant-barrel +*** products +- empty-barrel,1 +- liquid-coolant,50 +*** ingredients +- liquid-coolant-barrel,1 + +* angels-fluid-control-water-washing-fluid +** fill-water-viscous-mud-barrel +*** products +- water-viscous-mud-barrel,1 +*** ingredients +- empty-barrel,1 +- water-viscous-mud,50 + +* angels-fluid-control-water-washing-fluid +** empty-water-viscous-mud-barrel +*** products +- empty-barrel,1 +- water-viscous-mud,50 +*** ingredients +- water-viscous-mud-barrel,1 + +* angels-fluid-control-water-washing-fluid +** fill-water-heavy-mud-barrel +*** products +- water-heavy-mud-barrel,1 +*** ingredients +- empty-barrel,1 +- water-heavy-mud,50 + +* angels-fluid-control-water-washing-fluid +** empty-water-heavy-mud-barrel +*** products +- empty-barrel,1 +- water-heavy-mud,50 +*** ingredients +- water-heavy-mud-barrel,1 + +* angels-fluid-control-water-washing-fluid +** fill-water-concentrated-mud-barrel +*** products +- water-concentrated-mud-barrel,1 +*** ingredients +- empty-barrel,1 +- water-concentrated-mud,50 + +* angels-fluid-control-water-washing-fluid +** empty-water-concentrated-mud-barrel +*** products +- empty-barrel,1 +- water-concentrated-mud,50 +*** ingredients +- water-concentrated-mud-barrel,1 + +* angels-fluid-control-water-washing-fluid +** fill-water-light-mud-barrel +*** products +- water-light-mud-barrel,1 +*** ingredients +- empty-barrel,1 +- water-light-mud,50 + +* angels-fluid-control-water-washing-fluid +** empty-water-light-mud-barrel +*** products +- empty-barrel,1 +- water-light-mud,50 +*** ingredients +- water-light-mud-barrel,1 + +* angels-fluid-control-water-washing-fluid +** fill-water-thin-mud-barrel +*** products +- water-thin-mud-barrel,1 +*** ingredients +- empty-barrel,1 +- water-thin-mud,50 + +* angels-fluid-control-water-washing-fluid +** empty-water-thin-mud-barrel +*** products +- empty-barrel,1 +- water-thin-mud,50 +*** ingredients +- water-thin-mud-barrel,1 + +* angels-fluid-tanks +** bob-small-inline-storage-tank +*** products +- bob-small-inline-storage-tank,1 +*** ingredients +- iron-plate,3 +- pipe,1 + +* angels-fluid-tanks +** bob-small-storage-tank +*** products +- bob-small-storage-tank,1 +*** ingredients +- bob-small-inline-storage-tank,1 +- pipe,1 + +* angels-fluid-tanks +** storage-tank +*** products +- storage-tank,1 +*** ingredients +- iron-plate,20 +- steel-plate,5 +- bob-small-inline-storage-tank,1 + +* angels-fluid-tanks +** bob-storage-tank-all-corners +*** products +- bob-storage-tank-all-corners,1 +*** ingredients +- iron-plate,20 +- steel-plate,5 +- bob-small-storage-tank,1 +- pipe,2 + +* angels-fluid-tanks +** storage-tank-2 +*** products +- storage-tank-2,1 +*** ingredients +- invar-alloy,20 +- storage-tank,1 + +* angels-fluid-tanks +** bob-storage-tank-all-corners-2 +*** products +- bob-storage-tank-all-corners-2,1 +*** ingredients +- invar-alloy,20 +- bob-storage-tank-all-corners,1 +- steel-pipe,4 + +* angels-fluid-tanks +** storage-tank-3 +*** products +- storage-tank-3,1 +*** ingredients +- titanium-plate,20 +- storage-tank-2,1 + +* angels-fluid-tanks +** bob-storage-tank-all-corners-3 +*** products +- bob-storage-tank-all-corners-3,1 +*** ingredients +- titanium-plate,20 +- bob-storage-tank-all-corners-2,1 +- titanium-pipe,4 + +* angels-fluid-tanks +** storage-tank-4 +*** products +- storage-tank-4,1 +*** ingredients +- nitinol-alloy,20 +- storage-tank-3,1 + +* angels-fluid-tanks +** bob-storage-tank-all-corners-4 +*** products +- bob-storage-tank-all-corners-4,1 +*** ingredients +- nitinol-alloy,20 +- bob-storage-tank-all-corners-3,1 +- nitinol-pipe,4 + +* angels-fluid-tanks +** angels-storage-tank-3 +*** products +- angels-storage-tank-3,1 +*** ingredients +- stone-brick,5 +- iron-plate,3 +- bob-small-inline-storage-tank,1 +- pipe,6 + +* angels-fluid-tanks +** angels-storage-tank-2 +*** products +- angels-storage-tank-2,1 +*** ingredients +- clay-brick,40 +- steel-plate,12 +- steel-pipe,39 + +* angels-fluid-tanks +** angels-storage-tank-1 +*** products +- angels-storage-tank-1,1 +*** ingredients +- clay-brick,20 +- steel-plate,6 +- steel-pipe,30 + +* angels-fluid-tanks +** angels-pressure-tank-1 +*** products +- angels-pressure-tank-1,1 +*** ingredients +- stone-brick,20 +- steel-plate,20 +- pipe,50 + +* angels-glass +** glass-mixture-1 +*** products +- solid-glass-mixture,1 +*** ingredients +- quartz,1 + +* angels-glass +** glass-mixture-2 +*** products +- solid-glass-mixture,2 +*** ingredients +- quartz,1 +- solid-lime,1 + +* angels-glass +** glass-mixture-3 +*** products +- solid-glass-mixture,3 +*** ingredients +- alumina,1 +- quartz,1 +- solid-lime,1 + +* angels-glass +** glass-mixture-4 +*** products +- solid-glass-mixture,4 +*** ingredients +- solid-lime,1 +- solid-sand,1 +- solid-sodium-carbonate,1 +- solid-sodium-sulfate,1 + +* angels-glass-casting +** molten-glass-smelting +*** products +- liquid-molten-glass,120 +*** ingredients +- solid-glass-mixture,12 + +* angels-glass-casting +** angels-coil-glass-fiber +*** products +- angels-coil-glass-fiber,4 +*** ingredients +- liquid-molten-glass,80 + +* angels-glass-casting +** quartz-glass +*** products +- glass,3 +*** ingredients +- quartz,4 + +* angels-glass-casting +** angels-plate-glass-1 +*** products +- glass,3 +*** ingredients +- liquid-molten-glass,40 + +* angels-glass-casting +** angels-plate-glass-2 +*** products +- glass,4 +- lead-oxide,2 +*** ingredients +- liquid-molten-glass,40 +- liquid-molten-lead,20 + +* angels-glass-casting +** angels-plate-glass-3 +*** products +- glass,5 +- ingot-tin,2 +*** ingredients +- liquid-molten-glass,40 +- liquid-molten-tin,20 +- gas-nitrogen,20 + +* angels-glass-casting +** angels-glass-fiber-board +*** products +- fibreglass-board,4 +*** ingredients +- angels-coil-glass-fiber,1 +- liquid-resin,40 + +* angels-gold +** gold-ore-processing +*** products +- processed-gold,2 +*** ingredients +- gold-ore,4 + +* angels-gold +** gold-processed-processing +*** products +- pellet-gold,4 +*** ingredients +- processed-gold,3 + +* angels-gold +** pellet-gold-smelting +*** products +- solid-sodium-gold-cyanide,18 +- solid-sodium-hydroxide,4 +*** ingredients +- pellet-gold,6 +- solid-sodium-cyanide,4 +- water-purified,40 +- gas-oxygen,40 + +* angels-gold +** liquid-chlorauric-acid +*** products +- liquid-chlorauric-acid,120 +*** ingredients +- ingot-gold,12 +- liquid-nitric-acid,30 +- liquid-hydrochloric-acid,30 + +* angels-gold +** processed-gold-smelting +*** products +- cathode-gold,12 +*** ingredients +- processed-gold,2 +- liquid-chlorauric-acid,60 + +* angels-gold +** solid-sodium-gold-cyanide-smelting +*** products +- cathode-gold,12 +*** ingredients +- solid-sodium-gold-cyanide,12 + +* angels-gold +** gold-ore-smelting +*** products +- ingot-gold,24 +*** ingredients +- gold-ore,24 +- gas-chlorine,60 + +* angels-gold +** cathode-gold-smelting +*** products +- ingot-gold,24 +*** ingredients +- cathode-gold,24 + +* angels-gold +** powder-gold +*** products +- powder-gold,1 +*** ingredients +- ingot-gold,1 + +* angels-gold-casting +** molten-gold-smelting +*** products +- liquid-molten-gold,120 +*** ingredients +- ingot-gold,12 + +* angels-gold-casting +** roll-gold-casting +*** products +- angels-roll-gold,2 +*** ingredients +- liquid-molten-gold,80 +- water,40 + +* angels-gold-casting +** roll-gold-casting-fast +*** products +- angels-roll-gold,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-gold,140 +- liquid-coolant,40 + +* angels-gold-casting +** angels-wire-coil-gold-casting +*** products +- angels-wire-coil-gold,4 +*** ingredients +- liquid-molten-gold,40 +- liquid-molten-copper,40 +- water,40 + +* angels-gold-casting +** angels-wire-coil-gold-casting-fast +*** products +- angels-wire-coil-gold,8 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-gold,70 +- liquid-molten-copper,70 +- liquid-coolant,40 + +* angels-gold-casting +** angels-plate-gold +*** products +- gold-plate,4 +*** ingredients +- liquid-molten-gold,40 + +* angels-gold-casting +** angels-roll-gold-converting +*** products +- gold-plate,4 +*** ingredients +- angels-roll-gold,1 + +* angels-gold-casting +** gilded-copper-cable +*** products +- gilded-copper-cable,3 +*** ingredients +- copper-cable,3 +- gold-plate,1 + +* angels-gold-casting +** angels-wire-gold +*** products +- gilded-copper-cable,5 +*** ingredients +- copper-cable,10 +- gold-plate,4 + +* angels-gold-casting +** angels-wire-coil-gold-converting +*** products +- gilded-copper-cable,16 +*** ingredients +- angels-wire-coil-gold,4 + +* angels-induction-furnace +** induction-furnace +*** products +- induction-furnace,1 +*** ingredients +- stone-brick,25 +- iron-plate,15 +- iron-gear-wheel,9 +- basic-circuit-board,5 +- pipe,12 + +* angels-induction-furnace +** induction-furnace-2 +*** products +- induction-furnace-2,1 +*** ingredients +- clay-brick,25 +- steel-plate,15 +- induction-furnace,1 +- steel-gear-wheel,9 +- electronic-circuit,5 +- steel-pipe,12 + +* angels-induction-furnace +** induction-furnace-3 +*** products +- induction-furnace-3,1 +*** ingredients +- aluminium-plate,20 +- concrete-brick,25 +- induction-furnace-2,1 +- brass-gear-wheel,9 +- advanced-circuit,5 +- brass-pipe,12 + +* angels-induction-furnace +** induction-furnace-4 +*** products +- induction-furnace-4,1 +*** ingredients +- reinforced-concrete-brick,25 +- titanium-plate,20 +- induction-furnace-3,1 +- titanium-gear-wheel,9 +- processing-unit,5 +- titanium-pipe,12 + +* angels-iron +** iron-ore-processing +*** products +- processed-iron,2 +*** ingredients +- iron-ore,4 + +* angels-iron +** iron-processed-processing +*** products +- pellet-iron,4 +*** ingredients +- processed-iron,3 + +* angels-iron +** iron-ore-smelting +*** products +- ingot-iron,24 +*** ingredients +- iron-ore,24 + +* angels-iron +** processed-iron-smelting +*** products +- ingot-iron,24 +*** ingredients +- processed-iron,8 +- solid-coke,2 + +* angels-iron +** pellet-iron-smelting +*** products +- ingot-iron,24 +*** ingredients +- pellet-iron,8 +- solid-limestone,2 +- solid-coke,2 + +* angels-iron +** solid-iron-hydroxide-smelting +*** products +- ingot-iron,6 +- gas-carbon-dioxide,20 +*** ingredients +- solid-iron-hydroxide,6 +- solid-coke,2 + +* angels-iron +** ingot-iron-smelting +*** products +- ingot-steel,6 +*** ingredients +- ingot-iron,24 +- gas-oxygen,60 + +* angels-iron +** powder-iron +*** products +- powder-iron,1 +*** ingredients +- ingot-iron,1 + +* angels-iron +** powder-steel +*** products +- powder-steel,1 +*** ingredients +- ingot-steel,1 + +* angels-iron-casting +** molten-iron-smelting-1 +*** products +- liquid-molten-iron,120 +*** ingredients +- ingot-iron,12 + +* angels-iron-casting +** molten-iron-smelting-2 +*** products +- liquid-molten-iron,240 +*** ingredients +- ingot-iron,12 +- ingot-manganese,12 + +* angels-iron-casting +** molten-iron-smelting-3 +*** products +- liquid-molten-iron,240 +*** ingredients +- ingot-iron,12 +- ingot-silicon,12 + +* angels-iron-casting +** molten-iron-smelting-4 +*** products +- liquid-molten-iron,360 +*** ingredients +- ingot-cobalt,12 +- ingot-iron,12 +- ingot-nickel,12 + +* angels-iron-casting +** molten-iron-smelting-5 +*** products +- liquid-molten-iron,360 +*** ingredients +- ingot-chrome,12 +- ingot-iron,12 +- ingot-nickel,12 + +* angels-iron-casting +** roll-iron-casting +*** products +- angels-roll-iron,2 +*** ingredients +- liquid-molten-iron,80 +- water,40 + +* angels-iron-casting +** roll-iron-casting-fast +*** products +- angels-roll-iron,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-iron,140 +- liquid-coolant,40 + +* angels-iron-casting +** rod-stack-iron-casting +*** products +- angels-rod-stack-iron,1 +*** ingredients +- liquid-molten-iron,60 +- water,40 + +* angels-iron-casting +** rod-stack-iron-casting-fast +*** products +- angels-rod-stack-iron,2 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-iron,110 +- liquid-coolant,40 + +* angels-iron-casting +** angelsore1-crushed-smelting +*** products +- iron-plate,2 +*** ingredients +- angels-ore1-crushed,3 + +* angels-iron-casting +** angels-iron-pebbles-smelting +*** products +- iron-plate,2 +*** ingredients +- angels-iron-pebbles,4 + +* angels-iron-casting +** angels-iron-nugget-smelting +*** products +- iron-plate,3 +*** ingredients +- angels-iron-nugget,2 + +* angels-iron-casting +** iron-plate +*** products +- iron-plate,3 +*** ingredients +- iron-ore,4 + +* angels-iron-casting +** angels-plate-iron +*** products +- iron-plate,4 +*** ingredients +- liquid-molten-iron,40 + +* angels-iron-casting +** angels-roll-iron-converting +*** products +- iron-plate,4 +*** ingredients +- angels-roll-iron,1 + +* angels-iron-casting +** angels-rod-iron-plate +*** products +- iron-stick,1 +*** ingredients +- iron-plate,2 + +* angels-iron-casting +** angels-rod-stack-iron-converting +*** products +- iron-stick,4 +*** ingredients +- angels-rod-stack-iron,1 + +* angels-lead +** lead-ore-processing +*** products +- processed-lead,2 +*** ingredients +- lead-ore,4 + +* angels-lead +** lead-processed-processing +*** products +- pellet-lead,4 +*** ingredients +- processed-lead,3 + +* angels-lead +** processed-lead-smelting +*** products +- lead-oxide,24 +- gas-sulfur-dioxide,120 +*** ingredients +- processed-lead,8 +- gas-oxygen,120 + +* angels-lead +** pellet-lead-smelting +*** products +- anode-lead,24 +- gas-sulfur-dioxide,60 +*** ingredients +- pellet-lead,8 +- solid-limestone,2 +- solid-coke,2 +- gas-oxygen,60 + +* angels-lead +** liquid-hexafluorosilicic-acid +*** products +- liquid-hexafluorosilicic-acid,60 +*** ingredients +- quartz,3 +- liquid-hydrofluoric-acid,30 + +* angels-lead +** lead-ore-smelting +*** products +- ingot-lead,24 +- gas-sulfur-dioxide,60 +*** ingredients +- lead-ore,24 +- gas-oxygen,60 + +* angels-lead +** solid-lead-oxide-smelting +*** products +- ingot-lead,24 +*** ingredients +- lead-oxide,24 +- solid-carbon,2 + +* angels-lead +** anode-lead-smelting +*** products +- ingot-lead,12 +- slag,1 +*** ingredients +- anode-lead,12 +- liquid-hexafluorosilicic-acid,30 + +* angels-lead +** powder-lead +*** products +- powder-lead,1 +*** ingredients +- ingot-lead,1 + +* angels-lead-casting +** molten-lead-smelting +*** products +- liquid-molten-lead,120 +*** ingredients +- ingot-lead,12 + +* angels-lead-casting +** roll-lead-casting +*** products +- angels-roll-lead,2 +*** ingredients +- liquid-molten-lead,80 +- water,40 + +* angels-lead-casting +** roll-lead-casting-fast +*** products +- angels-roll-lead,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-lead,140 +- liquid-coolant,40 + +* angels-lead-casting +** angelsore5-crushed-smelting +*** products +- lead-plate,1 +*** ingredients +- angels-ore5-crushed,3 + +* angels-lead-casting +** lead-plate +*** products +- lead-plate,3 +*** ingredients +- lead-ore,4 + +* angels-lead-casting +** angels-plate-lead +*** products +- lead-plate,4 +*** ingredients +- liquid-molten-lead,40 + +* angels-lead-casting +** angels-roll-lead-converting +*** products +- lead-plate,4 +*** ingredients +- angels-roll-lead,1 + +* angels-loaded-circuit-board +** electronic-circuit +*** products +- electronic-circuit,1 +*** ingredients +- solder,1 +- basic-circuit-board,1 +- basic-electronic-components,5 + +* angels-loaded-circuit-board +** advanced-circuit +*** products +- advanced-circuit,1 +*** ingredients +- solder,1 +- circuit-board,1 +- basic-electronic-components,4 +- electronic-components,4 + +* angels-loaded-circuit-board +** processing-unit +*** products +- processing-unit,1 +*** ingredients +- solder,2 +- superior-circuit-board,1 +- basic-electronic-components,2 +- electronic-components,4 +- intergrated-electronics,2 + +* angels-loaded-circuit-board +** advanced-processing-unit +*** products +- advanced-processing-unit,1 +*** ingredients +- solder,4 +- multi-layer-circuit-board,1 +- basic-electronic-components,1 +- electronic-components,2 +- intergrated-electronics,4 +- processing-electronics,1 + +* angels-manganese +** manganese-ore-processing +*** products +- processed-manganese,2 +*** ingredients +- manganese-ore,4 + +* angels-manganese +** manganese-processed-processing +*** products +- pellet-manganese,4 +*** ingredients +- processed-manganese,3 + +* angels-manganese +** manganese-processed-processing-alt +*** products +- solid-manganese-oxide,6 +*** ingredients +- processed-manganese,4 +- gas-synthesis,60 + +* angels-manganese +** pellet-manganese-smelting +*** products +- solid-manganese-oxide,24 +*** ingredients +- pellet-manganese,8 +- gas-natural-1,60 + +* angels-manganese +** processed-manganese-smelting +*** products +- cathode-manganese,12 +*** ingredients +- processed-manganese,4 +- liquid-sulfuric-acid,40 + +* angels-manganese +** solid-manganese-oxide-smelting +*** products +- cathode-manganese,12 +- solid-iron-hydroxide,4 +*** ingredients +- ingot-iron,4 +- solid-manganese-oxide,12 +- liquid-sulfuric-acid,40 + +* angels-manganese +** manganese-ore-smelting +*** products +- ingot-manganese,24 +*** ingredients +- manganese-ore,24 +- solid-coke,6 + +* angels-manganese +** cathode-manganese-smelting +*** products +- ingot-manganese,24 +*** ingredients +- cathode-manganese,24 + +* angels-manganese +** powder-manganese +*** products +- powder-manganese,1 +*** ingredients +- ingot-manganese,1 + +* angels-manganese-casting +** molten-manganese-smelting +*** products +- liquid-molten-manganese,120 +*** ingredients +- ingot-manganese,12 + +* angels-manganese-casting +** roll-manganese-casting +*** products +- angels-roll-manganese,2 +*** ingredients +- liquid-molten-manganese,80 +- water,40 + +* angels-manganese-casting +** roll-manganese-casting-fast +*** products +- angels-roll-manganese,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-manganese,140 +- liquid-coolant,40 + +* angels-manganese-casting +** angels-plate-manganese +*** products +- angels-plate-manganese,4 +*** ingredients +- liquid-molten-manganese,40 + +* angels-manganese-casting +** angels-roll-manganese-converting +*** products +- angels-plate-manganese,4 +*** ingredients +- angels-roll-manganese,1 + +* angels-medium-power-poles +** medium-electric-pole +*** products +- medium-electric-pole,1 +*** ingredients +- copper-plate,2 +- steel-plate,2 +- iron-stick,4 + +* angels-medium-power-poles +** medium-electric-pole-2 +*** products +- medium-electric-pole-2,1 +*** ingredients +- tinned-copper-cable,2 +- brass-alloy,2 +- medium-electric-pole,1 + +* angels-medium-power-poles +** medium-electric-pole-3 +*** products +- medium-electric-pole-3,1 +*** ingredients +- titanium-plate,2 +- insulated-cable,2 +- medium-electric-pole-2,1 + +* angels-medium-power-poles +** medium-electric-pole-4 +*** products +- medium-electric-pole-4,1 +*** ingredients +- gilded-copper-cable,2 +- nitinol-alloy,2 +- medium-electric-pole-3,1 + +* angels-mold-casting +** angels-casing-resin-mold +*** products +- motor-casing-0,1 +*** ingredients +- resin,2 + +* angels-mold-casting +** mold-expendable +*** products +- mold-expendable,1 +- slag,1 +*** ingredients +- motor-casing-0,1 +- solid-sand,40 + +* angels-mold-casting +** mold-non-expendable +*** products +- mold-non-expendable,1 +- slag,1 +*** ingredients +- motor-casing-0,1 +- solid-clay,50 + +* angels-mold-casting +** mold-non-expendable-wash +*** products +- mold-non-expendable,1 +- water-red-waste,20 +*** ingredients +- spent-mold-non-expendable,1 +- liquid-nitric-acid,20 + +* angels-nickel +** nickel-ore-processing +*** products +- processed-nickel,2 +*** ingredients +- nickel-ore,4 + +* angels-nickel +** nickel-processed-processing +*** products +- pellet-nickel,4 +*** ingredients +- processed-nickel,3 + +* angels-nickel +** processed-nickel-smelting +*** products +- cathode-nickel,12 +*** ingredients +- processed-nickel,4 +- liquid-sulfuric-acid,60 + +* angels-nickel +** pellet-nickel-smelting +*** products +- solid-nickel-carbonyl,24 +*** ingredients +- pellet-nickel,8 +- sulfur,1 +- gas-carbon-monoxide,60 + +* angels-nickel +** nickel-ore-smelting +*** products +- ingot-nickel,24 +*** ingredients +- nickel-ore,24 +- gas-carbon-monoxide,60 + +* angels-nickel +** cathode-nickel-smelting +*** products +- ingot-nickel,24 +*** ingredients +- cathode-nickel,24 + +* angels-nickel +** solid-nickel-carbonyl-smelting +*** products +- ingot-nickel,24 +*** ingredients +- solid-nickel-carbonyl,18 +- ingot-nickel,6 + +* angels-nickel +** powder-nickel +*** products +- powder-nickel,1 +*** ingredients +- ingot-nickel,1 + +* angels-nickel-casting +** molten-nickel-smelting +*** products +- liquid-molten-nickel,120 +*** ingredients +- ingot-nickel,12 + +* angels-nickel-casting +** roll-nickel-casting +*** products +- angels-roll-nickel,2 +*** ingredients +- liquid-molten-nickel,80 +- water,40 + +* angels-nickel-casting +** roll-nickel-casting-fast +*** products +- angels-roll-nickel,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-nickel,140 +- liquid-coolant,40 + +* angels-nickel-casting +** angels-plate-nickel +*** products +- nickel-plate,4 +*** ingredients +- liquid-molten-nickel,40 + +* angels-nickel-casting +** angels-roll-nickel-converting +*** products +- nickel-plate,4 +*** ingredients +- angels-roll-nickel,1 + +* angels-ore-silo +** silo-ore1 +*** products +- silo-ore1,1 +*** ingredients +- angels-ore1-crushed,10 +- silo,1 + +* angels-ore-silo +** silo-ore2 +*** products +- silo-ore2,1 +*** ingredients +- angels-ore2-crushed,10 +- silo,1 + +* angels-ore-silo +** silo-ore3 +*** products +- silo-ore3,1 +*** ingredients +- angels-ore3-crushed,10 +- silo,1 + +* angels-ore-silo +** silo-ore4 +*** products +- silo-ore4,1 +*** ingredients +- angels-ore4-crushed,10 +- silo,1 + +* angels-ore-silo +** silo-ore5 +*** products +- silo-ore5,1 +*** ingredients +- angels-ore5-crushed,10 +- silo,1 + +* angels-ore-silo +** silo-ore6 +*** products +- silo-ore6,1 +*** ingredients +- angels-ore6-crushed,10 +- silo,1 + +* angels-ore-silo +** silo-coal +*** products +- silo-coal,1 +*** ingredients +- coal-crushed,10 +- silo,1 + +* angels-pellet-press +** pellet-press +*** products +- pellet-press,1 +*** ingredients +- aluminium-plate,8 +- concrete-brick,10 +- brass-gear-wheel,12 + +* angels-pellet-press +** pellet-press-2 +*** products +- pellet-press-2,1 +*** ingredients +- pellet-press,1 +- reinforced-concrete-brick,10 +- titanium-plate,8 +- titanium-gear-wheel,12 + +* angels-pellet-press +** pellet-press-3 +*** products +- pellet-press-3,1 +*** ingredients +- pellet-press-2,1 +- reinforced-concrete-brick,10 +- tungsten-plate,8 +- tungsten-gear-wheel,12 + +* angels-pellet-press +** pellet-press-4 +*** products +- pellet-press-4,1 +*** ingredients +- pellet-press-3,1 +- reinforced-concrete-brick,10 +- tungsten-carbide,8 +- nitinol-gear-wheel,12 + +* angels-personal-equipment-armor +** light-armor +*** products +- light-armor,1 +*** ingredients +- iron-plate,40 + +* angels-personal-equipment-armor +** heavy-armor +*** products +- heavy-armor,1 +*** ingredients +- copper-plate,100 +- steel-plate,50 + +* angels-personal-equipment-armor +** heavy-armor-2 +*** products +- heavy-armor-2,1 +*** ingredients +- gunmetal-alloy,50 +- invar-alloy,100 + +* angels-personal-equipment-armor +** heavy-armor-3 +*** products +- heavy-armor-3,1 +*** ingredients +- silicon-nitride,50 +- titanium-plate,100 + +* angels-personal-equipment-armor +** modular-armor +*** products +- modular-armor,1 +*** ingredients +- steel-plate,50 +- advanced-circuit,30 + +* angels-personal-equipment-armor +** power-armor +*** products +- power-armor,1 +*** ingredients +- steel-plate,40 +- electric-engine-unit,20 +- processing-unit,40 + +* angels-personal-equipment-armor +** power-armor-mk2 +*** products +- power-armor-mk2,1 +*** ingredients +- electric-engine-unit,40 +- low-density-structure,30 +- processing-unit,60 +- speed-module-2,25 +- effectivity-module-2,25 + +* angels-personal-equipment-armor +** bob-power-armor-mk3 +*** products +- bob-power-armor-mk3,1 +*** ingredients +- aluminium-plate,25 +- invar-alloy,25 +- alien-artifact-orange,25 +- alien-artifact-blue,25 +- processing-unit,50 +- power-armor-mk2,1 +- speed-module-4,5 +- effectivity-module-4,5 + +* angels-personal-equipment-armor +** bob-power-armor-mk4 +*** products +- bob-power-armor-mk4,1 +*** ingredients +- silicon-nitride,25 +- titanium-plate,25 +- alien-artifact-yellow,25 +- alien-artifact-purple,25 +- processing-unit,40 +- advanced-processing-unit,20 +- bob-power-armor-mk3,1 +- speed-module-6,5 +- effectivity-module-6,5 + +* angels-personal-equipment-armor +** bob-power-armor-mk5 +*** products +- bob-power-armor-mk5,1 +*** ingredients +- copper-tungsten-alloy,25 +- nitinol-alloy,25 +- alien-artifact-red,25 +- alien-artifact-green,25 +- processing-unit,50 +- advanced-processing-unit,50 +- bob-power-armor-mk4,1 +- speed-module-8,5 +- effectivity-module-8,5 + +* angels-personal-equipment-combat-a +** energy-shield-equipment +*** products +- energy-shield-equipment,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,5 + +* angels-personal-equipment-combat-a +** energy-shield-mk2-equipment +*** products +- energy-shield-mk2-equipment,1 +*** ingredients +- processing-unit,5 +- energy-shield-equipment,2 + +* angels-personal-equipment-combat-a +** energy-shield-mk3-equipment +*** products +- energy-shield-mk3-equipment,1 +*** ingredients +- alien-artifact,10 +- advanced-processing-unit,5 +- energy-shield-mk2-equipment,2 +- productivity-module-2,1 + +* angels-personal-equipment-combat-a +** energy-shield-mk4-equipment +*** products +- energy-shield-mk4-equipment,1 +*** ingredients +- alien-artifact-orange,5 +- alien-artifact-blue,5 +- advanced-processing-unit,5 +- energy-shield-mk3-equipment,2 +- effectivity-module-4,1 +- productivity-module-4,1 + +* angels-personal-equipment-combat-a +** energy-shield-mk5-equipment +*** products +- energy-shield-mk5-equipment,1 +*** ingredients +- alien-artifact-yellow,5 +- alien-artifact-purple,5 +- advanced-processing-unit,5 +- energy-shield-mk4-equipment,2 +- effectivity-module-6,1 +- productivity-module-6,1 + +* angels-personal-equipment-combat-a +** energy-shield-mk6-equipment +*** products +- energy-shield-mk6-equipment,1 +*** ingredients +- alien-artifact-red,5 +- alien-artifact-green,5 +- advanced-processing-unit,5 +- energy-shield-mk5-equipment,2 +- effectivity-module-8,1 +- productivity-module-8,1 + +* angels-personal-equipment-combat-b +** personal-laser-defense-equipment +*** products +- personal-laser-defense-equipment,1 +*** ingredients +- steel-plate,5 +- battery,3 +- electronic-circuit,5 + +* angels-personal-equipment-combat-b +** personal-laser-defense-equipment-2 +*** products +- personal-laser-defense-equipment-2,1 +*** ingredients +- steel-plate,5 +- advanced-circuit,5 +- personal-laser-defense-equipment,1 +- sapphire-5,1 + +* angels-personal-equipment-combat-b +** personal-laser-defense-equipment-3 +*** products +- personal-laser-defense-equipment-3,1 +*** ingredients +- invar-alloy,5 +- lithium-ion-battery,3 +- personal-laser-defense-equipment-2,1 +- emerald-5,1 + +* angels-personal-equipment-combat-b +** personal-laser-defense-equipment-4 +*** products +- personal-laser-defense-equipment-4,1 +*** ingredients +- titanium-plate,5 +- lithium-ion-battery,3 +- processing-unit,5 +- personal-laser-defense-equipment-3,1 +- amethyst-5,1 + +* angels-personal-equipment-combat-b +** personal-laser-defense-equipment-5 +*** products +- personal-laser-defense-equipment-5,1 +*** ingredients +- nitinol-alloy,5 +- silver-zinc-battery,3 +- processing-unit,5 +- personal-laser-defense-equipment-4,1 +- topaz-5,1 + +* angels-personal-equipment-combat-b +** personal-laser-defense-equipment-6 +*** products +- personal-laser-defense-equipment-6,1 +*** ingredients +- nitinol-alloy,5 +- alien-artifact-red,5 +- alien-artifact-green,5 +- silver-zinc-battery,3 +- advanced-processing-unit,5 +- personal-laser-defense-equipment-5,1 +- diamond-5,1 + +* angels-personal-equipment-combat-c +** exoskeleton-equipment +*** products +- exoskeleton-equipment,1 +*** ingredients +- steel-plate,20 +- electric-engine-unit,30 +- advanced-circuit,10 + +* angels-personal-equipment-combat-c +** exoskeleton-equipment-2 +*** products +- exoskeleton-equipment-2,1 +*** ingredients +- invar-alloy,20 +- cobalt-steel-gear-wheel,30 +- cobalt-steel-bearing,30 +- processing-unit,10 +- exoskeleton-equipment,1 + +* angels-personal-equipment-combat-c +** exoskeleton-equipment-3 +*** products +- exoskeleton-equipment-3,1 +*** ingredients +- titanium-plate,20 +- titanium-gear-wheel,30 +- titanium-bearing,30 +- advanced-processing-unit,10 +- exoskeleton-equipment-2,1 + +* angels-personal-equipment-combat-c +** discharge-defense-remote +*** products +- discharge-defense-remote,1 +*** ingredients +- electronic-circuit,1 + +* angels-personal-equipment-combat-c +** discharge-defense-equipment +*** products +- discharge-defense-equipment,1 +*** ingredients +- steel-plate,20 +- processing-unit,5 +- laser-turret,10 + +* angels-personal-equipment-power-a +** solar-panel-equipment +*** products +- solar-panel-equipment,1 +*** ingredients +- copper-cable,4 +- steel-plate,2 +- electronic-circuit,5 + +* angels-personal-equipment-power-a +** solar-panel-equipment-2 +*** products +- solar-panel-equipment-2,1 +*** ingredients +- glass,2 +- silver-plate,2 +- advanced-circuit,5 +- solar-panel-equipment,1 + +* angels-personal-equipment-power-a +** solar-panel-equipment-3 +*** products +- solar-panel-equipment-3,1 +*** ingredients +- gold-plate,2 +- silicon-wafer,8 +- titanium-plate,2 +- processing-unit,5 +- solar-panel-equipment-2,1 + +* angels-personal-equipment-power-a +** solar-panel-equipment-4 +*** products +- solar-panel-equipment-4,1 +*** ingredients +- gilded-copper-cable,5 +- nitinol-alloy,2 +- alien-artifact,10 +- advanced-processing-unit,5 +- solar-panel-equipment-3,1 + +* angels-personal-equipment-power-b +** fusion-reactor-equipment +*** products +- fusion-reactor-equipment,1 +*** ingredients +- low-density-structure,50 +- processing-unit,200 + +* angels-personal-equipment-power-b +** fusion-reactor-equipment-2 +*** products +- fusion-reactor-equipment-2,1 +*** ingredients +- alien-artifact-orange,15 +- alien-artifact-blue,15 +- advanced-processing-unit,50 +- fusion-reactor-equipment,1 +- speed-module-4,2 +- effectivity-module-4,2 +- productivity-module-4,2 + +* angels-personal-equipment-power-b +** fusion-reactor-equipment-3 +*** products +- fusion-reactor-equipment-3,1 +*** ingredients +- alien-artifact-yellow,15 +- alien-artifact-purple,15 +- advanced-processing-unit,50 +- fusion-reactor-equipment-2,1 +- speed-module-6,2 +- effectivity-module-6,2 +- productivity-module-6,2 + +* angels-personal-equipment-power-b +** fusion-reactor-equipment-4 +*** products +- fusion-reactor-equipment-4,1 +*** ingredients +- alien-artifact-red,15 +- alien-artifact-green,15 +- advanced-processing-unit,50 +- fusion-reactor-equipment-3,1 +- speed-module-8,2 +- effectivity-module-8,2 +- productivity-module-8,2 + +* angels-personal-equipment-power-c +** battery-equipment +*** products +- battery-equipment,1 +*** ingredients +- steel-plate,10 +- battery,5 + +* angels-personal-equipment-power-c +** battery-mk2-equipment +*** products +- battery-mk2-equipment,1 +*** ingredients +- processing-unit,5 +- battery-equipment,2 + +* angels-personal-equipment-power-c +** battery-mk3-equipment +*** products +- battery-mk3-equipment,1 +*** ingredients +- lithium-ion-battery,5 +- battery-mk2-equipment,2 + +* angels-personal-equipment-power-c +** battery-mk4-equipment +*** products +- battery-mk4-equipment,1 +*** ingredients +- alien-artifact-orange,5 +- alien-artifact-blue,5 +- advanced-processing-unit,5 +- battery-mk3-equipment,2 + +* angels-personal-equipment-power-c +** battery-mk5-equipment +*** products +- battery-mk5-equipment,1 +*** ingredients +- alien-artifact-yellow,5 +- alien-artifact-purple,5 +- silver-zinc-battery,5 +- battery-mk4-equipment,2 + +* angels-personal-equipment-power-c +** battery-mk6-equipment +*** products +- battery-mk6-equipment,1 +*** ingredients +- alien-artifact-red,5 +- alien-artifact-green,5 +- advanced-processing-unit,5 +- battery-mk5-equipment,2 + +* angels-personal-equipment-power-d +** night-vision-equipment +*** products +- night-vision-equipment,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,5 + +* angels-personal-equipment-power-d +** night-vision-equipment-2 +*** products +- night-vision-equipment-2,1 +*** ingredients +- glass,2 +- processing-unit,5 +- night-vision-equipment,1 + +* angels-personal-equipment-power-d +** night-vision-equipment-3 +*** products +- night-vision-equipment-3,1 +*** ingredients +- alien-artifact,10 +- advanced-processing-unit,5 +- night-vision-equipment-2,1 +- diamond-5,2 + +* angels-personal-equipment-power-d +** belt-immunity-equipment +*** products +- belt-immunity-equipment,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,5 + +* angels-personal-equipment-robot-a +** personal-roboport-robot-equipment +*** products +- personal-roboport-robot-equipment,1 +*** ingredients +- solder,2 +- circuit-board,1 +- basic-electronic-components,30 +- electronic-components,15 +- module-case,1 + +* angels-personal-equipment-robot-a +** personal-roboport-robot-equipment-2 +*** products +- personal-roboport-robot-equipment-2,1 +*** ingredients +- solder,3 +- circuit-board,1 +- basic-electronic-components,15 +- electronic-components,30 +- personal-roboport-robot-equipment,1 + +* angels-personal-equipment-robot-a +** personal-roboport-robot-equipment-3 +*** products +- personal-roboport-robot-equipment-3,1 +*** ingredients +- solder,4 +- superior-circuit-board,1 +- basic-electronic-components,10 +- electronic-components,20 +- intergrated-electronics,10 +- personal-roboport-robot-equipment-2,1 + +* angels-personal-equipment-robot-a +** personal-roboport-robot-equipment-4 +*** products +- personal-roboport-robot-equipment-4,1 +*** ingredients +- solder,6 +- multi-layer-circuit-board,1 +- basic-electronic-components,5 +- electronic-components,10 +- intergrated-electronics,20 +- processing-electronics,8 +- personal-roboport-robot-equipment-3,1 + +* angels-personal-equipment-robot-b +** personal-roboport-chargepad-equipment +*** products +- personal-roboport-chargepad-equipment,1 +*** ingredients +- roboport-chargepad-1,2 + +* angels-personal-equipment-robot-b +** personal-roboport-chargepad-equipment-2 +*** products +- personal-roboport-chargepad-equipment-2,1 +*** ingredients +- roboport-chargepad-2,2 +- personal-roboport-chargepad-equipment,1 + +* angels-personal-equipment-robot-b +** personal-roboport-chargepad-equipment-3 +*** products +- personal-roboport-chargepad-equipment-3,1 +*** ingredients +- roboport-chargepad-3,2 +- personal-roboport-chargepad-equipment-2,1 + +* angels-personal-equipment-robot-b +** personal-roboport-chargepad-equipment-4 +*** products +- personal-roboport-chargepad-equipment-4,1 +*** ingredients +- roboport-chargepad-4,2 +- personal-roboport-chargepad-equipment-3,1 + +* angels-personal-equipment-robot-c +** personal-roboport-antenna-equipment +*** products +- personal-roboport-antenna-equipment,1 +*** ingredients +- roboport-antenna-1,2 +- roboport-door-1,1 + +* angels-personal-equipment-robot-c +** personal-roboport-antenna-equipment-2 +*** products +- personal-roboport-antenna-equipment-2,1 +*** ingredients +- roboport-antenna-2,2 +- roboport-door-2,1 +- personal-roboport-antenna-equipment,1 + +* angels-personal-equipment-robot-c +** personal-roboport-antenna-equipment-3 +*** products +- personal-roboport-antenna-equipment-3,1 +*** ingredients +- roboport-antenna-3,2 +- roboport-door-3,1 +- personal-roboport-antenna-equipment-2,1 + +* angels-personal-equipment-robot-c +** personal-roboport-antenna-equipment-4 +*** products +- personal-roboport-antenna-equipment-4,1 +*** ingredients +- roboport-antenna-4,2 +- roboport-door-4,1 +- personal-roboport-antenna-equipment-3,1 + +* angels-personal-equipment-robot-d +** personal-roboport-equipment +*** products +- personal-roboport-equipment,1 +*** ingredients +- steel-plate,5 +- roboport-antenna-1,2 +- roboport-door-1,1 +- roboport-chargepad-1,2 + +* angels-personal-equipment-robot-d +** personal-roboport-mk2-equipment +*** products +- personal-roboport-mk2-equipment,1 +*** ingredients +- aluminium-plate,5 +- roboport-antenna-2,2 +- roboport-door-2,1 +- roboport-chargepad-2,2 +- personal-roboport-equipment,1 + +* angels-personal-equipment-robot-d +** personal-roboport-mk3-equipment +*** products +- personal-roboport-mk3-equipment,1 +*** ingredients +- titanium-plate,5 +- roboport-antenna-3,2 +- roboport-door-3,1 +- roboport-chargepad-3,2 +- personal-roboport-mk2-equipment,1 + +* angels-personal-equipment-robot-d +** personal-roboport-mk4-equipment +*** products +- personal-roboport-mk4-equipment,1 +*** ingredients +- nitinol-alloy,5 +- roboport-antenna-4,2 +- roboport-door-4,1 +- roboport-chargepad-4,2 +- personal-roboport-mk3-equipment,1 + +* angels-petrotrain +** petro-locomotive-1 +*** products +- petro-locomotive-1,1 +*** ingredients +- steel-plate,40 +- engine-unit,25 +- electronic-circuit,20 +- locomotive,1 + +* angels-petrotrain +** petro-locomotive-1-2 +*** products +- petro-locomotive-1-2,1 +*** ingredients +- steel-plate,50 +- engine-unit,30 +- petro-locomotive-1,1 +- speed-module,2 + +* angels-petrotrain +** petro-locomotive-1-3 +*** products +- petro-locomotive-1-3,1 +*** ingredients +- electric-engine-unit,40 +- low-density-structure,50 +- petro-locomotive-1-2,1 +- speed-module-2,2 + +* angels-petrotrain +** petro-locomotive-1-4 +*** products +- petro-locomotive-1-4,1 +*** ingredients +- electric-engine-unit,45 +- low-density-structure,75 +- petro-locomotive-1-3,1 +- speed-module-3,2 + +* angels-petrotrain +** petro-locomotive-1-5 +*** products +- petro-locomotive-1-5,1 +*** ingredients +- electric-engine-unit,50 +- rocket-control-unit,2 +- low-density-structure,100 +- petro-locomotive-1-4,1 + +* angels-petrotrain +** petro-tank1 +*** products +- petro-tank1,1 +*** ingredients +- steel-plate,20 +- electronic-circuit,15 +- fluid-wagon,1 +- pipe,25 + +* angels-petrotrain +** petro-tank1-2 +*** products +- petro-tank1-2,1 +*** ingredients +- steel-plate,25 +- angels-storage-tank-1,3 +- petro-tank1,1 +- effectivity-module,2 + +* angels-petrotrain +** petro-tank1-3 +*** products +- petro-tank1-3,1 +*** ingredients +- angels-storage-tank-1,6 +- low-density-structure,25 +- petro-tank1-2,1 +- effectivity-module-2,2 + +* angels-petrotrain +** petro-tank1-4 +*** products +- petro-tank1-4,1 +*** ingredients +- angels-storage-tank-1,9 +- low-density-structure,35 +- petro-tank1-3,1 +- effectivity-module-3,2 + +* angels-petrotrain +** petro-tank1-5 +*** products +- petro-tank1-5,1 +*** ingredients +- angels-storage-tank-1,12 +- low-density-structure,50 +- petro-tank1-4,1 +- effectivity-module-3,2 + +* angels-petrotrain +** petro-tank2 +*** products +- petro-tank2,1 +*** ingredients +- steel-plate,20 +- electronic-circuit,15 +- fluid-wagon,1 +- pipe,25 + +* angels-petrotrain +** petro-tank2-2 +*** products +- petro-tank2-2,1 +*** ingredients +- steel-plate,25 +- angels-storage-tank-2,3 +- petro-tank2,1 +- effectivity-module,2 + +* angels-petrotrain +** petro-tank2-3 +*** products +- petro-tank2-3,1 +*** ingredients +- angels-storage-tank-2,6 +- low-density-structure,25 +- petro-tank2-2,1 +- effectivity-module-2,2 + +* angels-petrotrain +** petro-tank2-4 +*** products +- petro-tank2-4,1 +*** ingredients +- angels-storage-tank-2,9 +- low-density-structure,35 +- petro-tank2-3,1 +- effectivity-module-3,2 + +* angels-petrotrain +** petro-tank2-5 +*** products +- petro-tank2-5,1 +*** ingredients +- angels-storage-tank-2,12 +- low-density-structure,50 +- petro-tank2-4,1 +- effectivity-module-3,2 + +* angels-physical-aa +** pistol +*** products +- pistol,1 +*** ingredients +- copper-plate,5 +- iron-plate,5 + +* angels-physical-aa +** submachine-gun +*** products +- submachine-gun,1 +*** ingredients +- iron-plate,5 +- iron-gear-wheel,10 +- pistol,1 + +* angels-physical-aa +** gun-turret +*** products +- gun-turret,1 +*** ingredients +- copper-plate,5 +- iron-plate,10 +- submachine-gun,1 + +* angels-physical-aa +** bob-gun-turret-2 +*** products +- bob-gun-turret-2,1 +*** ingredients +- steel-plate,20 +- steel-gear-wheel,10 +- gun-turret,1 + +* angels-physical-aa +** bob-gun-turret-3 +*** products +- bob-gun-turret-3,1 +*** ingredients +- invar-alloy,20 +- brass-gear-wheel,10 +- steel-bearing,10 +- bob-gun-turret-2,1 + +* angels-physical-aa +** bob-gun-turret-4 +*** products +- bob-gun-turret-4,1 +*** ingredients +- titanium-plate,20 +- titanium-gear-wheel,10 +- titanium-bearing,10 +- bob-gun-turret-3,1 + +* angels-physical-aa +** bob-gun-turret-5 +*** products +- bob-gun-turret-5,1 +*** ingredients +- nitinol-alloy,20 +- nitinol-gear-wheel,10 +- nitinol-bearing,10 +- bob-gun-turret-4,1 + +* angels-physical-aa +** firearm-magazine +*** products +- firearm-magazine,1 +*** ingredients +- iron-plate,4 + +* angels-physical-aa +** piercing-rounds-magazine +*** products +- piercing-rounds-magazine,1 +*** ingredients +- copper-plate,5 +- steel-plate,1 +- firearm-magazine,1 + +* angels-physical-ab +** rifle +*** products +- rifle,1 +*** ingredients +- aluminium-plate,5 +- steel-plate,5 +- steel-gear-wheel,10 +- submachine-gun,1 + +* angels-physical-ab +** sniper-rifle +*** products +- sniper-rifle,1 +*** ingredients +- glass,2 +- wood,10 +- rifle,1 + +* angels-physical-ab +** bob-sniper-turret-1 +*** products +- bob-sniper-turret-1,1 +*** ingredients +- copper-plate,5 +- iron-plate,10 +- rifle,1 + +* angels-physical-ab +** bob-sniper-turret-2 +*** products +- bob-sniper-turret-2,1 +*** ingredients +- steel-plate,20 +- invar-alloy,20 +- cobalt-steel-gear-wheel,20 +- cobalt-steel-bearing,20 +- bob-sniper-turret-1,1 + +* angels-physical-ab +** bob-sniper-turret-3 +*** products +- bob-sniper-turret-3,1 +*** ingredients +- titanium-plate,20 +- nitinol-alloy,20 +- titanium-gear-wheel,20 +- nitinol-bearing,20 +- bob-sniper-turret-2,1 + +* angels-physical-ac +** bullet-projectile +*** products +- bullet-projectile,2 +*** ingredients +- copper-plate,1 +- lead-plate,1 + +* angels-physical-ac +** ap-bullet-projectile +*** products +- ap-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- alien-blue-alloy,1 + +* angels-physical-ac +** he-bullet-projectile +*** products +- he-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- alien-explosive,10 + +* angels-physical-ac +** flame-bullet-projectile +*** products +- flame-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- alien-fire,10 + +* angels-physical-ac +** acid-bullet-projectile +*** products +- acid-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- alien-acid,10 + +* angels-physical-ac +** poison-bullet-projectile +*** products +- poison-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- alien-poison,10 + +* angels-physical-ac +** electric-bullet-projectile +*** products +- electric-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- alien-orange-alloy,1 + +* angels-physical-ac +** plasma-bullet-projectile +*** products +- plasma-bullet-projectile,12 +*** ingredients +- copper-plate,6 +- alien-artifact-red,1 +- alien-artifact-yellow,1 +- alien-artifact-orange,1 +- alien-artifact-blue,1 +- alien-artifact-purple,1 +- alien-artifact-green,1 +- gas-deuterium,10 + +* angels-physical-ac +** uranium-bullet-projectile +*** products +- uranium-bullet-projectile,2 +*** ingredients +- copper-plate,1 +- uranium-238,1 + +* angels-physical-ac +** cordite +*** products +- cordite,5 +*** ingredients +- gun-cotton,13 +- petroleum-jelly,1 +- nitroglycerin,60 + +* angels-physical-ad +** bullet +*** products +- bullet,1 +*** ingredients +- bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** ap-bullet +*** products +- ap-bullet,1 +*** ingredients +- ap-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** he-bullet +*** products +- he-bullet,1 +*** ingredients +- he-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** flame-bullet +*** products +- flame-bullet,1 +*** ingredients +- flame-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** acid-bullet +*** products +- acid-bullet,1 +*** ingredients +- acid-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** poison-bullet +*** products +- poison-bullet,1 +*** ingredients +- poison-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** electric-bullet +*** products +- electric-bullet,1 +*** ingredients +- electric-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** plasma-bullet +*** products +- plasma-bullet,1 +*** ingredients +- plasma-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** uranium-bullet +*** products +- uranium-bullet,1 +*** ingredients +- uranium-bullet-projectile,1 +- cordite,1 +- bullet-casing,1 + +* angels-physical-ad +** bullet-casing +*** products +- bullet-casing,1 +*** ingredients +- gunmetal-alloy,1 + +* angels-physical-ae +** bullet-magazine +*** products +- bullet-magazine,1 +*** ingredients +- bullet,5 +- magazine,1 + +* angels-physical-ae +** ap-bullet-magazine +*** products +- ap-bullet-magazine,1 +*** ingredients +- ap-bullet,5 +- magazine,1 + +* angels-physical-ae +** he-bullet-magazine +*** products +- he-bullet-magazine,1 +*** ingredients +- he-bullet,5 +- magazine,1 + +* angels-physical-ae +** flame-bullet-magazine +*** products +- flame-bullet-magazine,1 +*** ingredients +- flame-bullet,5 +- magazine,1 + +* angels-physical-ae +** acid-bullet-magazine +*** products +- acid-bullet-magazine,1 +*** ingredients +- acid-bullet,5 +- magazine,1 + +* angels-physical-ae +** poison-bullet-magazine +*** products +- poison-bullet-magazine,1 +*** ingredients +- poison-bullet,5 +- magazine,1 + +* angels-physical-ae +** electric-bullet-magazine +*** products +- electric-bullet-magazine,1 +*** ingredients +- electric-bullet,5 +- magazine,1 + +* angels-physical-ae +** plasma-bullet-magazine +*** products +- plasma-bullet-magazine,1 +*** ingredients +- plasma-bullet,5 +- magazine,1 + +* angels-physical-ae +** uranium-rounds-magazine +*** products +- uranium-rounds-magazine,1 +*** ingredients +- uranium-bullet,5 +- magazine,1 + +* angels-physical-ae +** magazine +*** products +- magazine,2 +*** ingredients +- steel-plate,1 + +* angels-physical-ba +** shotgun +*** products +- shotgun,1 +*** ingredients +- iron-plate,5 +- wood,5 +- iron-gear-wheel,5 +- pistol,2 + +* angels-physical-ba +** combat-shotgun +*** products +- combat-shotgun,1 +*** ingredients +- steel-plate,15 +- wood,5 +- shotgun,1 + +* angels-physical-ba +** angels-cannon-turret +*** products +- angels-cannon-turret,1 +*** ingredients +- steel-plate,15 +- electronic-circuit,10 +- shotgun,1 + +* angels-physical-ba +** shotgun-shell +*** products +- shotgun-shell,1 +*** ingredients +- copper-plate,2 +- iron-plate,2 + +* angels-physical-ba +** piercing-shotgun-shell +*** products +- piercing-shotgun-shell,1 +*** ingredients +- copper-plate,5 +- steel-plate,2 +- shotgun-shell,2 + +* angels-physical-ba +** shot +*** products +- shot,1 +*** ingredients +- lead-plate,1 + +* angels-physical-ba +** gun-cotton +*** products +- gun-cotton,1 +*** ingredients +- wood,1 +- liquid-nitric-acid,10 + +* angels-physical-ba +** petroleum-jelly +*** products +- petroleum-jelly,1 +*** ingredients +- gas-residual,10 + +* angels-physical-bb +** better-shotgun-shell +*** products +- better-shotgun-shell,1 +*** ingredients +- cordite,1 +- shot,1 +- shotgun-shell-casing,1 + +* angels-physical-bb +** shotgun-ap-shell +*** products +- shotgun-ap-shell,1 +*** ingredients +- alien-blue-alloy,1 +- cordite,1 +- shotgun-shell-casing,1 + +* angels-physical-bb +** shotgun-explosive-shell +*** products +- shotgun-explosive-shell,1 +*** ingredients +- cordite,1 +- shotgun-shell-casing,1 +- alien-explosive,10 + +* angels-physical-bb +** shotgun-flame-shell +*** products +- shotgun-flame-shell,1 +*** ingredients +- cordite,1 +- shotgun-shell-casing,1 +- alien-fire,10 + +* angels-physical-bb +** shotgun-acid-shell +*** products +- shotgun-acid-shell,1 +*** ingredients +- cordite,1 +- shotgun-shell-casing,1 +- alien-acid,10 + +* angels-physical-bb +** shotgun-poison-shell +*** products +- shotgun-poison-shell,1 +*** ingredients +- cordite,1 +- shotgun-shell-casing,1 +- alien-poison,10 + +* angels-physical-bb +** shotgun-electric-shell +*** products +- shotgun-electric-shell,1 +*** ingredients +- alien-orange-alloy,1 +- cordite,1 +- shotgun-shell-casing,1 + +* angels-physical-bb +** shotgun-plasma-shell +*** products +- shotgun-plasma-shell,6 +*** ingredients +- alien-artifact-red,1 +- alien-artifact-yellow,1 +- alien-artifact-orange,1 +- alien-artifact-blue,1 +- alien-artifact-purple,1 +- alien-artifact-green,1 +- cordite,6 +- shotgun-shell-casing,6 +- gas-deuterium,10 + +* angels-physical-bb +** shotgun-uranium-shell +*** products +- shotgun-uranium-shell,1 +*** ingredients +- uranium-238,1 +- cordite,1 +- shotgun-shell-casing,1 + +* angels-physical-bb +** shotgun-shell-casing +*** products +- shotgun-shell-casing,1 +*** ingredients +- gunmetal-alloy,1 + +* angels-physical-bc +** cannon-turret-shell-1 +*** products +- cannon-turret-shell-1,1 +*** ingredients +- coal,2 +- shotgun-shell,1 + +* angels-physical-bc +** cannon-turret-shell-2 +*** products +- cannon-turret-shell-2,1 +*** ingredients +- coal,4 +- piercing-shotgun-shell,1 + +* angels-physical-bc +** cannon-turret-shell-3 +*** products +- cannon-turret-shell-3,1 +*** ingredients +- coal,4 +- uranium-238,2 +- cannon-turret-shell-2,1 + +* angels-platinum +** platinum-ore-processing +*** products +- processed-platinum,2 +*** ingredients +- platinum-ore,4 + +* angels-platinum +** platinum-processed-processing +*** products +- pellet-platinum,4 +*** ingredients +- processed-platinum,3 + +* angels-platinum +** pellet-platinum-smelting +*** products +- liquid-hexachloroplatinic-acid,60 +*** ingredients +- pellet-platinum,4 +- liquid-hydrochloric-acid,30 +- liquid-nitric-acid,30 + +* angels-platinum +** liquid-hexachloroplatinic-acid-smelting +*** products +- solid-ammonium-chloroplatinate,24 +*** ingredients +- liquid-hexachloroplatinic-acid,120 +- gas-ammonium-chloride,60 + +* angels-platinum +** platinum-ore-smelting +*** products +- ingot-platinum,24 +*** ingredients +- platinum-ore,24 + +* angels-platinum +** processed-platinum-smelting +*** products +- ingot-platinum,24 +*** ingredients +- processed-platinum,8 +- liquid-sulfuric-acid,60 + +* angels-platinum +** solid-ammonium-chloroplatinate-smelting +*** products +- ingot-platinum,24 +*** ingredients +- solid-ammonium-chloroplatinate,24 + +* angels-platinum +** powder-platinum +*** products +- powder-platinum,1 +*** ingredients +- ingot-platinum,1 + +* angels-platinum-casting +** molten-platinum-smelting +*** products +- liquid-molten-platinum,120 +*** ingredients +- ingot-platinum,12 + +* angels-platinum-casting +** roll-platinum-casting +*** products +- angels-roll-platinum,2 +*** ingredients +- liquid-molten-platinum,80 +- water,40 + +* angels-platinum-casting +** roll-platinum-casting-fast +*** products +- angels-roll-platinum,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-platinum,140 +- liquid-coolant,40 + +* angels-platinum-casting +** angels-wire-coil-platinum-casting +*** products +- angels-wire-coil-platinum,4 +*** ingredients +- liquid-molten-platinum,40 +- liquid-molten-copper,40 +- water,40 + +* angels-platinum-casting +** angels-wire-coil-platinum-casting-fast +*** products +- angels-wire-coil-platinum,8 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-platinum,70 +- liquid-molten-copper,70 +- liquid-coolant,40 + +* angels-platinum-casting +** angels-plate-platinum +*** products +- angels-plate-platinum,4 +*** ingredients +- liquid-molten-platinum,40 + +* angels-platinum-casting +** angels-roll-platinum-converting +*** products +- angels-plate-platinum,4 +*** ingredients +- angels-roll-platinum,1 + +* angels-platinum-casting +** basic-platinated-copper-wire +*** products +- angels-wire-platinum,5 +*** ingredients +- copper-cable,10 +- angels-plate-platinum,4 + +* angels-platinum-casting +** angels-wire-coil-platinum-converting +*** products +- angels-wire-platinum,16 +*** ingredients +- angels-wire-coil-platinum,4 + +* angels-powder-mixer +** powder-mixer +*** products +- powder-mixer,1 +*** ingredients +- clay-brick,5 +- bronze-alloy,3 +- steel-gear-wheel,3 + +* angels-powder-mixer +** powder-mixer-2 +*** products +- powder-mixer-2,1 +*** ingredients +- powder-mixer,1 +- aluminium-plate,4 +- concrete-brick,5 +- brass-gear-wheel,3 + +* angels-powder-mixer +** powder-mixer-3 +*** products +- powder-mixer-3,1 +*** ingredients +- powder-mixer-2,1 +- reinforced-concrete-brick,5 +- titanium-plate,4 +- titanium-gear-wheel,3 + +* angels-powder-mixer +** powder-mixer-4 +*** products +- powder-mixer-4,1 +*** ingredients +- powder-mixer-3,1 +- reinforced-concrete-brick,5 +- tungsten-plate,4 +- tungsten-gear-wheel,3 + +* angels-power-accumulator +** accumulator +*** products +- accumulator,1 +*** ingredients +- iron-plate,2 +- battery,10 +- electronic-circuit,2 + +* angels-power-accumulator +** large-accumulator-2 +*** products +- large-accumulator-2,1 +*** ingredients +- steel-plate,2 +- lithium-ion-battery,10 +- advanced-circuit,2 +- accumulator,1 + +* angels-power-accumulator +** large-accumulator-3 +*** products +- large-accumulator-3,1 +*** ingredients +- titanium-plate,2 +- silver-zinc-battery,10 +- processing-unit,2 +- large-accumulator-2,1 + +* angels-power-accumulator +** slow-accumulator +*** products +- slow-accumulator,1 +*** ingredients +- iron-plate,2 +- battery,4 +- electronic-circuit,4 + +* angels-power-accumulator +** slow-accumulator-2 +*** products +- slow-accumulator-2,1 +*** ingredients +- steel-plate,2 +- lithium-ion-battery,4 +- advanced-circuit,4 +- slow-accumulator,1 + +* angels-power-accumulator +** slow-accumulator-3 +*** products +- slow-accumulator-3,1 +*** ingredients +- titanium-plate,2 +- silver-zinc-battery,4 +- processing-unit,4 +- slow-accumulator-2,1 + +* angels-power-accumulator +** fast-accumulator +*** products +- fast-accumulator,1 +*** ingredients +- iron-plate,2 +- battery,4 +- electronic-circuit,4 + +* angels-power-accumulator +** fast-accumulator-2 +*** products +- fast-accumulator-2,1 +*** ingredients +- steel-plate,2 +- lithium-ion-battery,4 +- advanced-circuit,4 +- fast-accumulator,1 + +* angels-power-accumulator +** fast-accumulator-3 +*** products +- fast-accumulator-3,1 +*** ingredients +- titanium-plate,2 +- silver-zinc-battery,4 +- processing-unit,4 +- fast-accumulator-2,1 + +* angels-power-fluid-generator +** bob-burner-generator +*** products +- bob-burner-generator,1 +*** ingredients +- stone-furnace,1 +- iron-plate,8 +- iron-gear-wheel,5 + +* angels-power-fluid-generator +** fluid-generator +*** products +- fluid-generator,1 +*** ingredients +- steel-plate,10 +- bronze-alloy,5 +- steel-gear-wheel,10 +- steel-bearing,10 +- electronic-circuit,5 +- steel-pipe,5 + +* angels-power-fluid-generator +** fluid-generator-2 +*** products +- fluid-generator-2,1 +*** ingredients +- aluminium-plate,10 +- invar-alloy,5 +- brass-gear-wheel,10 +- steel-bearing,5 +- advanced-circuit,5 +- fluid-generator,1 +- brass-pipe,5 + +* angels-power-fluid-generator +** fluid-generator-3 +*** products +- fluid-generator-3,1 +*** ingredients +- titanium-plate,10 +- tungsten-plate,5 +- titanium-gear-wheel,10 +- titanium-bearing,10 +- processing-unit,5 +- fluid-generator-2,1 +- ceramic-pipe,5 + +* angels-power-fluid-generator +** hydrazine-generator +*** products +- hydrazine-generator,1 +*** ingredients +- copper-tungsten-alloy,5 +- nitinol-alloy,10 +- nitinol-gear-wheel,10 +- nitinol-bearing,10 +- advanced-processing-unit,5 +- fluid-generator-3,1 +- copper-tungsten-pipe,5 + +* angels-power-nuclear +** angels-burner-reactor +*** products +- angels-burner-reactor,1 +*** ingredients +- lead-plate,350 +- reinforced-concrete-brick,500 +- titanium-plate,400 +- tungsten-plate,400 +- processing-unit,500 + +* angels-power-nuclear-fuel-cell +** uranium-fuel-cell +*** products +- uranium-fuel-cell,15 +*** ingredients +- iron-plate,15 +- uranium-235,1 +- uranium-238,29 + +* angels-power-nuclear-fuel-cell +** angels-uranium-fuel-cell +*** products +- angels-uranium-fuel-cell,100 +*** ingredients +- iron-plate,100 +- uranium-234,1 +- uranium-238,199 + +* angels-power-nuclear-fuel-cell +** nuclear-fuel-reprocessing +*** products +- uranium-238,3 +- slag,5 +*** ingredients +- used-up-uranium-fuel-cell,5 + +* angels-power-nuclear-fuel-cell +** angels-advanced-uranium-reprocessing +*** products +- uranium-238,5 +- slag,10 +- neptunium-240,1 +- water-greenyellow-waste,60 +*** ingredients +- used-up-uranium-fuel-cell,10 +- liquid-hydrofluoric-acid,60 + +* angels-power-nuclear-fuel-cell +** angels-mixed-oxide-cell +*** products +- AMOX-cell,20 +*** ingredients +- lead-plate,20 +- uranium-238,38 +- plutonium-239,2 + +* angels-power-nuclear-fuel-cell +** angels-mixed-oxide-reprocessing +*** products +- americium-241,1 +- americium-241,1 +- curium-245,1 +- uranium-238,1 +- slag,5 +*** ingredients +- used-up-AMOX-cell,5 + +* angels-power-nuclear-fuel-cell +** angels-advanced-mixed-oxide-reprocessing +*** products +- plutonium-239,2 +- slag,10 +- curium-245,3 +- uranium-235,1 +- water-greenyellow-waste,60 +*** ingredients +- used-up-AMOX-cell,10 +- liquid-hydrofluoric-acid,60 + +* angels-power-nuclear-fuel-cell +** angels-thorium-fuel-cell +*** products +- angels-thorium-fuel-cell,15 +*** ingredients +- zinc-plate,15 +- plutonium-239,8 +- curium-245,1 +- thorium-232,17 + +* angels-power-nuclear-fuel-cell +** angels-thorium-fuel-cell-reprocessing +*** products +- slag,5 +- neptunium-240,1 +- thorium-232,2 +- uranium-234,1 +- curium-245,1 +*** ingredients +- used-up-angels-thorium-fuel-cell,5 + +* angels-power-nuclear-fuel-cell +** angels-advanced-thorium-fuel-cell-reprocessing +*** products +- slag,10 +- neptunium-240,2 +- uranium-234,2 +- angels-muon-fusion-catalyst,1 +- water-greenyellow-waste,60 +*** ingredients +- used-up-angels-thorium-fuel-cell,10 +- liquid-hydrofluoric-acid,60 + +* angels-power-nuclear-fuel-cell +** angels-deuterium-fuel-cell +*** products +- angels-deuterium-fuel-cell,1 +*** ingredients +- zinc-plate,1 +- angels-muon-fusion-catalyst,1 +- gas-deuterium,600 + +* angels-power-nuclear-fuel-cell +** angels-deuterium-fuel-cell-reprocessing +*** products +- slag,5 +- angels-muon-fusion-catalyst,4 +- angels-muon-fusion-catalyst,1 +*** ingredients +- used-up-angels-deuterium-fuel-cell,5 + +* angels-power-nuclear-fuel-cell +** angels-advanced-deuterium-fuel-cell-reprocessing +*** products +- slag,5 +- angels-muon-fusion-catalyst,10 +- water-greenyellow-waste,60 +*** ingredients +- used-up-angels-deuterium-fuel-cell,10 +- liquid-hydrofluoric-acid,60 + +* angels-power-nuclear-heat-exchanger +** heat-exchanger +*** products +- heat-exchanger,1 +*** ingredients +- boiler-2,1 +- heat-pipe,4 + +* angels-power-nuclear-heat-exchanger +** heat-exchanger-2 +*** products +- heat-exchanger-2,1 +*** ingredients +- invar-alloy,10 +- heat-pipe-2,4 +- heat-exchanger,1 +- brass-pipe,4 + +* angels-power-nuclear-heat-exchanger +** heat-exchanger-3 +*** products +- heat-exchanger-3,1 +*** ingredients +- tungsten-plate,10 +- heat-pipe-3,4 +- heat-exchanger-2,1 +- ceramic-pipe,4 + +* angels-power-nuclear-heat-exchanger +** heat-exchanger-4 +*** products +- heat-exchanger-4,1 +*** ingredients +- copper-tungsten-alloy,10 +- heat-pipe-4,4 +- heat-exchanger-3,1 +- copper-tungsten-pipe,4 + +* angels-power-nuclear-heat-pipe +** heat-pipe +*** products +- heat-pipe,1 +*** ingredients +- copper-plate,10 +- steel-plate,5 + +* angels-power-nuclear-heat-pipe +** heat-pipe-2 +*** products +- heat-pipe-2,1 +*** ingredients +- aluminium-plate,10 +- invar-alloy,5 + +* angels-power-nuclear-heat-pipe +** heat-pipe-3 +*** products +- heat-pipe-3,1 +*** ingredients +- silver-plate,10 +- titanium-plate,5 + +* angels-power-nuclear-heat-pipe +** heat-pipe-4 +*** products +- heat-pipe-4,1 +*** ingredients +- gold-plate,10 +- copper-tungsten-alloy,5 + +* angels-power-nuclear-processing +** uranium-processing +*** products +- uranium-235,1 +- uranium-238,1 +- uranium-234,1 +*** ingredients +- uranium-ore,10 + +* angels-power-nuclear-processing +** kovarex-enrichment-process +*** products +- uranium-235,41 +- uranium-238,2 +*** ingredients +- uranium-235,40 +- uranium-238,5 + +* angels-power-nuclear-processing +** plutonium-nucleosynthesis +*** products +- uranium-235,3 +- uranium-238,10 +- plutonium-239,1 +*** ingredients +- uranium-235,5 +- uranium-238,15 + +* angels-power-nuclear-processing +** angels-plutonium-synthesis +*** products +- plutonium-239,5 +*** ingredients +- neptunium-240,8 + +* angels-power-nuclear-processing +** angels-americium-regeneration +*** products +- plutonium-239,6 +- uranium-238,15 +- lead-oxide,5 +*** ingredients +- uranium-238,60 +- plutonium-239,1 +- americium-241,5 + +* angels-power-nuclear-processing +** bobingabout-enrichment-process +*** products +- plutonium-239,41 +- uranium-238,2 +*** ingredients +- uranium-238,5 +- plutonium-239,40 + +* angels-power-nuclear-processing +** angels-thorium-processing +*** products +- thorium-232,4 +- plutonium-239,1 +*** ingredients +- thorium-ore,5 + +* angels-power-nuclear-reactor-a +** burner-reactor +*** products +- burner-reactor,1 +*** ingredients +- steel-furnace,1 +- steel-plate,6 +- heat-pipe,8 + +* angels-power-nuclear-reactor-a +** burner-reactor-2 +*** products +- burner-reactor-2,1 +*** ingredients +- concrete,10 +- invar-alloy,6 +- burner-reactor,1 +- heat-pipe-2,8 + +* angels-power-nuclear-reactor-a +** fluid-reactor +*** products +- fluid-reactor,1 +*** ingredients +- burner-reactor,1 +- steel-pipe,5 + +* angels-power-nuclear-reactor-a +** fluid-reactor-from-fluid-furnace +*** products +- fluid-reactor,1 +*** ingredients +- fluid-furnace,1 +- steel-plate,6 +- heat-pipe,8 +- steel-pipe,3 + +* angels-power-nuclear-reactor-a +** fluid-reactor-2 +*** products +- fluid-reactor-2,1 +*** ingredients +- concrete,10 +- invar-alloy,6 +- fluid-reactor,1 +- heat-pipe-2,8 +- brass-pipe,5 + +* angels-power-nuclear-reactor-b +** nuclear-reactor +*** products +- nuclear-reactor,1 +*** ingredients +- concrete,500 +- steel-plate,250 +- advanced-circuit,500 +- heat-pipe-2,25 + +* angels-power-nuclear-reactor-b +** nuclear-reactor-2 +*** products +- nuclear-reactor-2,1 +*** ingredients +- lead-plate,500 +- tungsten-plate,250 +- processing-unit,500 +- heat-pipe-3,25 + +* angels-power-nuclear-reactor-b +** nuclear-reactor-3 +*** products +- nuclear-reactor-3,1 +*** ingredients +- lead-plate,500 +- tungsten-carbide,250 +- advanced-processing-unit,500 +- heat-pipe-4,25 + +* angels-power-poles +** small-electric-pole +*** products +- small-electric-pole,2 +*** ingredients +- copper-cable,2 +- wood,1 + +* angels-power-solar-panel +** solar-panel-small +*** products +- solar-panel-small,1 +*** ingredients +- copper-plate,2 +- steel-plate,2 +- electronic-circuit,6 + +* angels-power-solar-panel +** solar-panel-small-2 +*** products +- solar-panel-small-2,1 +*** ingredients +- glass,2 +- silver-plate,2 +- advanced-circuit,4 +- solar-panel-small,1 + +* angels-power-solar-panel +** solar-panel-small-3 +*** products +- solar-panel-small-3,1 +*** ingredients +- gold-plate,2 +- silicon-wafer,16 +- titanium-plate,2 +- processing-unit,4 +- solar-panel-small-2,1 + +* angels-power-solar-panel +** solar-panel +*** products +- solar-panel,1 +*** ingredients +- copper-plate,4 +- steel-plate,4 +- electronic-circuit,14 + +* angels-power-solar-panel +** solar-panel-2 +*** products +- solar-panel-2,1 +*** ingredients +- glass,4 +- silver-plate,4 +- advanced-circuit,9 +- solar-panel,1 + +* angels-power-solar-panel +** solar-panel-3 +*** products +- solar-panel-3,1 +*** ingredients +- gold-plate,4 +- silicon-wafer,36 +- titanium-plate,4 +- processing-unit,9 +- solar-panel-2,1 + +* angels-power-solar-panel +** solar-panel-large +*** products +- solar-panel-large,1 +*** ingredients +- copper-plate,8 +- steel-plate,8 +- electronic-circuit,24 + +* angels-power-solar-panel +** solar-panel-large-2 +*** products +- solar-panel-large-2,1 +*** ingredients +- glass,8 +- silver-plate,8 +- advanced-circuit,16 +- solar-panel-large,1 + +* angels-power-solar-panel +** solar-panel-large-3 +*** products +- solar-panel-large-3,1 +*** ingredients +- gold-plate,8 +- silicon-wafer,64 +- titanium-plate,8 +- processing-unit,16 +- solar-panel-large-2,1 + +* angels-power-steam-boiler +** boiler +*** products +- boiler,1 +*** ingredients +- stone-furnace,1 +- pipe,4 + +* angels-power-steam-boiler +** boiler-2 +*** products +- boiler-2,1 +*** ingredients +- steel-plate,5 +- boiler,1 +- steel-pipe,4 + +* angels-power-steam-boiler +** boiler-3 +*** products +- boiler-3,1 +*** ingredients +- invar-alloy,5 +- boiler-2,1 +- brass-pipe,4 + +* angels-power-steam-boiler +** boiler-4 +*** products +- boiler-4,1 +*** ingredients +- tungsten-plate,5 +- boiler-3,1 +- ceramic-pipe,4 + +* angels-power-steam-boiler +** boiler-5 +*** products +- boiler-5,1 +*** ingredients +- copper-tungsten-alloy,5 +- boiler-4,1 +- copper-tungsten-pipe,4 + +* angels-power-steam-boiler +** oil-boiler +*** products +- oil-boiler,1 +*** ingredients +- boiler-2,1 +- steel-pipe,2 + +* angels-power-steam-boiler +** oil-boiler-2 +*** products +- oil-boiler-2,1 +*** ingredients +- invar-alloy,5 +- oil-boiler,1 +- brass-pipe,6 + +* angels-power-steam-boiler +** oil-boiler-3 +*** products +- oil-boiler-3,1 +*** ingredients +- tungsten-plate,5 +- oil-boiler-2,1 +- ceramic-pipe,6 + +* angels-power-steam-boiler +** oil-boiler-4 +*** products +- oil-boiler-4,1 +*** ingredients +- copper-tungsten-alloy,5 +- oil-boiler-3,1 +- copper-tungsten-pipe,6 + +* angels-power-steam-generator +** steam-engine +*** products +- steam-engine,1 +*** ingredients +- iron-plate,10 +- iron-gear-wheel,8 +- pipe,5 + +* angels-power-steam-generator +** steam-engine-2 +*** products +- steam-engine-2,1 +*** ingredients +- steel-plate,5 +- steel-gear-wheel,5 +- steel-bearing,5 +- steam-engine,1 +- steel-pipe,5 + +* angels-power-steam-generator +** steam-engine-3 +*** products +- steam-engine-3,1 +*** ingredients +- brass-alloy,5 +- brass-gear-wheel,5 +- steel-bearing,5 +- steam-engine-2,1 +- brass-pipe,5 + +* angels-power-steam-generator +** steam-engine-4 +*** products +- steam-engine-4,1 +*** ingredients +- titanium-plate,5 +- titanium-gear-wheel,5 +- titanium-bearing,5 +- steam-engine-3,1 +- titanium-pipe,5 + +* angels-power-steam-generator +** steam-engine-5 +*** products +- steam-engine-5,1 +*** ingredients +- nitinol-alloy,5 +- nitinol-gear-wheel,5 +- nitinol-bearing,5 +- steam-engine-4,1 +- nitinol-pipe,5 + +* angels-power-steam-generator +** steam-turbine +*** products +- steam-turbine,1 +*** ingredients +- aluminium-plate,25 +- cobalt-steel-gear-wheel,20 +- cobalt-steel-bearing,10 +- advanced-circuit,5 +- steam-engine-3,1 + +* angels-power-steam-generator +** steam-turbine-2 +*** products +- steam-turbine-2,1 +*** ingredients +- titanium-plate,25 +- titanium-gear-wheel,25 +- titanium-bearing,15 +- processing-unit,5 +- steam-turbine,1 +- titanium-pipe,5 + +* angels-power-steam-generator +** steam-turbine-3 +*** products +- steam-turbine-3,1 +*** ingredients +- nitinol-alloy,25 +- nitinol-gear-wheel,25 +- nitinol-bearing,15 +- advanced-processing-unit,5 +- steam-turbine-2,1 +- nitinol-pipe,5 + +* angels-processing-machine +** ore-processing-machine +*** products +- ore-processing-machine,1 +*** ingredients +- clay-brick,20 +- bronze-alloy,6 +- steel-gear-wheel,6 + +* angels-processing-machine +** ore-processing-machine-2 +*** products +- ore-processing-machine-2,1 +*** ingredients +- ore-processing-machine,1 +- aluminium-plate,8 +- concrete-brick,20 +- brass-gear-wheel,6 + +* angels-processing-machine +** ore-processing-machine-3 +*** products +- ore-processing-machine-3,1 +*** ingredients +- ore-processing-machine-2,1 +- reinforced-concrete-brick,20 +- titanium-plate,8 +- titanium-gear-wheel,6 + +* angels-processing-machine +** ore-processing-machine-4 +*** products +- ore-processing-machine-4,1 +*** ingredients +- ore-processing-machine-3,1 +- reinforced-concrete-brick,20 +- tungsten-plate,8 +- tungsten-gear-wheel,6 + +* angels-roboport-a +** roboport-antenna-1 +*** products +- roboport-antenna-1,1 +*** ingredients +- copper-cable,2 +- steel-plate,1 +- advanced-circuit,5 + +* angels-roboport-a +** roboport-door-1 +*** products +- roboport-door-1,1 +*** ingredients +- steel-plate,15 +- iron-gear-wheel,20 + +* angels-roboport-a +** roboport-chargepad-1 +*** products +- roboport-chargepad-1,1 +*** ingredients +- steel-plate,2 +- advanced-circuit,5 + +* angels-roboport-a +** roboport +*** products +- roboport,1 +*** ingredients +- steel-plate,15 +- roboport-antenna-1,5 +- roboport-door-1,1 +- roboport-chargepad-1,4 + +* angels-roboport-a +** bob-logistic-zone-expander +*** products +- bob-logistic-zone-expander,1 +*** ingredients +- steel-plate,5 +- roboport-antenna-1,3 + +* angels-roboport-a +** bob-robochest +*** products +- bob-robochest,1 +*** ingredients +- steel-chest,1 +- roboport-antenna-1,1 +- roboport-door-1,1 +- roboport-chargepad-1,1 + +* angels-roboport-a +** bob-robo-charge-port +*** products +- bob-robo-charge-port,1 +*** ingredients +- steel-plate,10 +- roboport-antenna-1,1 +- roboport-chargepad-1,4 + +* angels-roboport-a +** bob-robo-charge-port-large +*** products +- bob-robo-charge-port-large,1 +*** ingredients +- steel-plate,15 +- roboport-antenna-1,1 +- roboport-chargepad-1,9 + +* angels-roboport-a +** bob-logistic-zone-interface +*** products +- bob-logistic-zone-interface,1 +*** ingredients +- steel-plate,5 +- advanced-circuit,2 +- roboport-antenna-1,1 + +* angels-roboport-b +** roboport-antenna-2 +*** products +- roboport-antenna-2,1 +*** ingredients +- aluminium-plate,1 +- tinned-copper-cable,2 +- advanced-circuit,5 + +* angels-roboport-b +** roboport-door-2 +*** products +- roboport-door-2,1 +*** ingredients +- invar-alloy,15 +- brass-gear-wheel,20 +- steel-bearing,20 + +* angels-roboport-b +** roboport-chargepad-2 +*** products +- roboport-chargepad-2,1 +*** ingredients +- invar-alloy,2 +- battery,2 +- advanced-circuit,5 + +* angels-roboport-b +** bob-roboport-2 +*** products +- bob-roboport-2,1 +*** ingredients +- aluminium-plate,15 +- roboport,1 +- roboport-antenna-2,5 +- roboport-door-2,1 +- roboport-chargepad-2,4 + +* angels-roboport-b +** bob-logistic-zone-expander-2 +*** products +- bob-logistic-zone-expander-2,1 +*** ingredients +- aluminium-plate,5 +- bob-logistic-zone-expander,1 +- roboport-antenna-2,3 + +* angels-roboport-b +** bob-robochest-2 +*** products +- bob-robochest-2,1 +*** ingredients +- aluminium-plate,8 +- bob-robochest,1 +- roboport-door-2,1 +- roboport-chargepad-2,1 + +* angels-roboport-b +** bob-robo-charge-port-2 +*** products +- bob-robo-charge-port-2,1 +*** ingredients +- aluminium-plate,10 +- bob-robo-charge-port,1 +- roboport-chargepad-2,4 + +* angels-roboport-b +** bob-robo-charge-port-large-2 +*** products +- bob-robo-charge-port-large-2,1 +*** ingredients +- aluminium-plate,15 +- bob-robo-charge-port-large,1 +- roboport-chargepad-2,9 + +* angels-roboport-c +** roboport-antenna-3 +*** products +- roboport-antenna-3,1 +*** ingredients +- nickel-plate,1 +- insulated-cable,2 +- processing-unit,5 + +* angels-roboport-c +** roboport-door-3 +*** products +- roboport-door-3,1 +*** ingredients +- titanium-plate,15 +- titanium-gear-wheel,20 +- titanium-bearing,20 + +* angels-roboport-c +** roboport-chargepad-3 +*** products +- roboport-chargepad-3,1 +*** ingredients +- titanium-plate,2 +- lithium-ion-battery,2 +- processing-unit,5 + +* angels-roboport-c +** bob-roboport-3 +*** products +- bob-roboport-3,1 +*** ingredients +- titanium-plate,15 +- bob-roboport-2,1 +- roboport-antenna-3,5 +- roboport-door-3,1 +- roboport-chargepad-3,4 + +* angels-roboport-c +** bob-logistic-zone-expander-3 +*** products +- bob-logistic-zone-expander-3,1 +*** ingredients +- titanium-plate,5 +- bob-logistic-zone-expander-2,1 +- roboport-antenna-3,3 + +* angels-roboport-c +** bob-robochest-3 +*** products +- bob-robochest-3,1 +*** ingredients +- titanium-plate,8 +- bob-robochest-2,1 +- roboport-door-3,1 +- roboport-chargepad-3,1 + +* angels-roboport-c +** bob-robo-charge-port-3 +*** products +- bob-robo-charge-port-3,1 +*** ingredients +- titanium-plate,10 +- bob-robo-charge-port-2,1 +- roboport-chargepad-3,4 + +* angels-roboport-c +** bob-robo-charge-port-large-3 +*** products +- bob-robo-charge-port-large-3,1 +*** ingredients +- titanium-plate,15 +- bob-robo-charge-port-large-2,1 +- roboport-chargepad-3,9 + +* angels-roboport-d +** roboport-antenna-4 +*** products +- roboport-antenna-4,1 +*** ingredients +- gold-plate,1 +- gilded-copper-cable,2 +- nickel-plate,1 +- advanced-processing-unit,5 + +* angels-roboport-d +** roboport-door-4 +*** products +- roboport-door-4,1 +*** ingredients +- nitinol-alloy,15 +- nitinol-gear-wheel,20 +- nitinol-bearing,20 + +* angels-roboport-d +** roboport-chargepad-4 +*** products +- roboport-chargepad-4,1 +*** ingredients +- nitinol-alloy,2 +- silver-zinc-battery,2 +- advanced-processing-unit,5 + +* angels-roboport-d +** bob-roboport-4 +*** products +- bob-roboport-4,1 +*** ingredients +- nitinol-alloy,15 +- bob-roboport-3,1 +- roboport-antenna-4,5 +- roboport-door-4,1 +- roboport-chargepad-4,4 + +* angels-roboport-d +** bob-logistic-zone-expander-4 +*** products +- bob-logistic-zone-expander-4,1 +*** ingredients +- nitinol-alloy,5 +- bob-logistic-zone-expander-3,1 +- roboport-antenna-4,3 + +* angels-roboport-d +** bob-robochest-4 +*** products +- bob-robochest-4,1 +*** ingredients +- nitinol-alloy,8 +- bob-robochest-3,1 +- roboport-door-4,1 +- roboport-chargepad-4,1 + +* angels-roboport-d +** bob-robo-charge-port-4 +*** products +- bob-robo-charge-port-4,1 +*** ingredients +- nitinol-alloy,10 +- bob-robo-charge-port-3,1 +- roboport-chargepad-4,4 + +* angels-roboport-d +** bob-robo-charge-port-large-4 +*** products +- bob-robo-charge-port-large-4,1 +*** ingredients +- nitinol-alloy,15 +- bob-robo-charge-port-large-3,1 +- roboport-chargepad-4,9 + +* angels-robot-a +** flying-robot-frame +*** products +- flying-robot-frame,1 +*** ingredients +- steel-plate,1 +- electric-engine-unit,1 +- battery,2 +- electronic-circuit,3 + +* angels-robot-a +** robot-brain-construction +*** products +- robot-brain-construction,1 +*** ingredients +- solder,5 +- circuit-board,1 +- basic-electronic-components,8 +- electronic-components,3 + +* angels-robot-a +** robot-tool-construction +*** products +- robot-tool-construction,1 +*** ingredients +- steel-plate,1 +- steel-gear-wheel,2 + +* angels-robot-a +** construction-robot +*** products +- construction-robot,1 +*** ingredients +- flying-robot-frame,1 +- robot-brain-construction,1 +- robot-tool-construction,1 + +* angels-robot-a +** robot-brain-logistic +*** products +- robot-brain-logistic,1 +*** ingredients +- solder,5 +- circuit-board,1 +- basic-electronic-components,6 +- electronic-components,4 + +* angels-robot-a +** robot-tool-logistic +*** products +- robot-tool-logistic,1 +*** ingredients +- steel-plate,1 +- steel-gear-wheel,2 + +* angels-robot-a +** logistic-robot +*** products +- logistic-robot,1 +*** ingredients +- flying-robot-frame,1 +- robot-brain-logistic,1 +- robot-tool-logistic,1 + +* angels-robot-a +** robot-brain-combat +*** products +- robot-brain-combat,1 +*** ingredients +- solder,5 +- basic-circuit-board,1 +- basic-electronic-components,8 + +* angels-robot-a +** robot-tool-combat +*** products +- robot-tool-combat,1 +*** ingredients +- steel-plate,1 +- steel-gear-wheel,5 + +* angels-robot-a +** defender-robot +*** products +- defender-robot,1 +*** ingredients +- flying-robot-frame,1 +- robot-brain-combat,1 +- robot-tool-combat,1 + +* angels-robot-b +** flying-robot-frame-2 +*** products +- flying-robot-frame-2,1 +*** ingredients +- aluminium-plate,1 +- electric-engine-unit,1 +- battery,2 +- advanced-circuit,3 + +* angels-robot-b +** robot-brain-construction-2 +*** products +- robot-brain-construction-2,1 +*** ingredients +- solder,5 +- circuit-board,1 +- basic-electronic-components,12 +- electronic-components,4 + +* angels-robot-b +** robot-tool-construction-2 +*** products +- robot-tool-construction-2,1 +*** ingredients +- aluminium-plate,1 +- brass-gear-wheel,2 +- steel-bearing,2 + +* angels-robot-b +** bob-construction-robot-2 +*** products +- bob-construction-robot-2,1 +*** ingredients +- construction-robot,1 +- flying-robot-frame-2,1 +- robot-brain-construction-2,1 +- robot-tool-construction-2,1 + +* angels-robot-b +** robot-brain-logistic-2 +*** products +- robot-brain-logistic-2,1 +*** ingredients +- solder,5 +- circuit-board,1 +- basic-electronic-components,10 +- electronic-components,6 + +* angels-robot-b +** robot-tool-logistic-2 +*** products +- robot-tool-logistic-2,1 +*** ingredients +- aluminium-plate,1 +- brass-gear-wheel,2 +- steel-bearing,2 + +* angels-robot-b +** bob-logistic-robot-2 +*** products +- bob-logistic-robot-2,1 +*** ingredients +- logistic-robot,1 +- flying-robot-frame-2,1 +- robot-brain-logistic-2,1 +- robot-tool-logistic-2,1 + +* angels-robot-b +** robot-brain-combat-2 +*** products +- robot-brain-combat-2,1 +*** ingredients +- solder,5 +- circuit-board,1 +- basic-electronic-components,10 +- electronic-components,2 + +* angels-robot-b +** robot-tool-combat-2 +*** products +- robot-tool-combat-2,1 +*** ingredients +- glass,1 +- brass-alloy,1 +- battery,1 +- brass-gear-wheel,2 + +* angels-robot-b +** distractor-robot +*** products +- distractor-robot,1 +*** ingredients +- defender-robot,1 +- flying-robot-frame-2,1 +- robot-brain-combat-2,1 +- robot-tool-combat-2,1 + +* angels-robot-c +** flying-robot-frame-3 +*** products +- flying-robot-frame-3,1 +*** ingredients +- titanium-plate,1 +- electric-engine-unit,1 +- lithium-ion-battery,2 +- processing-unit,3 + +* angels-robot-c +** robot-brain-construction-3 +*** products +- robot-brain-construction-3,1 +*** ingredients +- solder,5 +- superior-circuit-board,1 +- basic-electronic-components,4 +- electronic-components,8 +- intergrated-electronics,4 + +* angels-robot-c +** robot-tool-construction-3 +*** products +- robot-tool-construction-3,1 +*** ingredients +- titanium-plate,1 +- titanium-gear-wheel,2 +- titanium-bearing,2 + +* angels-robot-c +** bob-construction-robot-3 +*** products +- bob-construction-robot-3,1 +*** ingredients +- bob-construction-robot-2,1 +- flying-robot-frame-3,1 +- robot-brain-construction-3,1 +- robot-tool-construction-3,1 + +* angels-robot-c +** robot-brain-logistic-3 +*** products +- robot-brain-logistic-3,1 +*** ingredients +- solder,5 +- superior-circuit-board,1 +- basic-electronic-components,4 +- electronic-components,6 +- intergrated-electronics,6 + +* angels-robot-c +** robot-tool-logistic-3 +*** products +- robot-tool-logistic-3,1 +*** ingredients +- titanium-plate,1 +- titanium-gear-wheel,2 +- titanium-bearing,2 + +* angels-robot-c +** bob-logistic-robot-3 +*** products +- bob-logistic-robot-3,1 +*** ingredients +- bob-logistic-robot-2,1 +- flying-robot-frame-3,1 +- robot-brain-logistic-3,1 +- robot-tool-logistic-3,1 + +* angels-robot-c +** robot-brain-combat-3 +*** products +- robot-brain-combat-3,1 +*** ingredients +- solder,5 +- superior-circuit-board,1 +- basic-electronic-components,4 +- electronic-components,2 +- intergrated-electronics,1 + +* angels-robot-c +** robot-tool-combat-3 +*** products +- robot-tool-combat-3,1 +*** ingredients +- titanium-plate,1 +- lithium-ion-battery,1 +- titanium-gear-wheel,2 +- emerald-5,1 + +* angels-robot-c +** destroyer-robot +*** products +- destroyer-robot,1 +*** ingredients +- distractor-robot,1 +- flying-robot-frame-3,1 +- robot-brain-combat-3,1 +- robot-tool-combat-3,1 + +* angels-robot-d +** flying-robot-frame-4 +*** products +- flying-robot-frame-4,1 +*** ingredients +- silicon-nitride,1 +- electric-engine-unit,1 +- silver-zinc-battery,2 +- advanced-processing-unit,3 + +* angels-robot-d +** robot-brain-construction-4 +*** products +- robot-brain-construction-4,1 +*** ingredients +- solder,5 +- multi-layer-circuit-board,1 +- basic-electronic-components,2 +- electronic-components,6 +- intergrated-electronics,6 +- processing-electronics,4 + +* angels-robot-d +** robot-tool-construction-4 +*** products +- robot-tool-construction-4,1 +*** ingredients +- silicon-nitride,1 +- tungsten-carbide,1 +- nitinol-gear-wheel,2 +- ceramic-bearing,2 + +* angels-robot-d +** bob-construction-robot-4 +*** products +- bob-construction-robot-4,1 +*** ingredients +- bob-construction-robot-3,1 +- flying-robot-frame-4,1 +- robot-brain-construction-4,1 +- robot-tool-construction-4,1 + +* angels-robot-d +** robot-brain-logistic-4 +*** products +- robot-brain-logistic-4,1 +*** ingredients +- solder,5 +- multi-layer-circuit-board,1 +- basic-electronic-components,2 +- electronic-components,4 +- intergrated-electronics,8 +- processing-electronics,4 + +* angels-robot-d +** robot-tool-logistic-4 +*** products +- robot-tool-logistic-4,1 +*** ingredients +- silicon-nitride,1 +- nitinol-gear-wheel,2 +- ceramic-bearing,2 + +* angels-robot-d +** bob-logistic-robot-4 +*** products +- bob-logistic-robot-4,1 +*** ingredients +- bob-logistic-robot-3,1 +- flying-robot-frame-4,1 +- robot-brain-logistic-4,1 +- robot-tool-logistic-4,1 + +* angels-robot-d +** robot-brain-combat-4 +*** products +- robot-brain-combat-4,1 +*** ingredients +- solder,5 +- multi-layer-circuit-board,1 +- basic-electronic-components,2 +- electronic-components,4 +- intergrated-electronics,2 +- processing-electronics,1 + +* angels-robot-d +** robot-tool-combat-4 +*** products +- robot-tool-combat-4,1 +*** ingredients +- silicon-nitride,1 +- silver-zinc-battery,1 +- nitinol-gear-wheel,2 +- diamond-5,1 + +* angels-robot-d +** bob-laser-robot +*** products +- bob-laser-robot,1 +*** ingredients +- destroyer-robot,1 +- flying-robot-frame-4,1 +- robot-brain-combat-4,1 +- robot-tool-combat-4,1 + +* angels-silicon +** silica-ore-processing +*** products +- processed-silica,2 +*** ingredients +- quartz,4 + +* angels-silicon +** silica-processed-processing +*** products +- pellet-silica,4 +*** ingredients +- processed-silica,3 + +* angels-silicon +** processed-silicon-smelting +*** products +- liquid-trichlorosilane,120 +- gas-hydrogen,30 +*** ingredients +- processed-silica,8 +- gas-hydrogen-chloride,60 + +* angels-silicon +** pellet-silicon-smelting +*** products +- alumina,6 +- gas-silane,120 +*** ingredients +- ingot-aluminium,6 +- pellet-silica,8 +- gas-hydrogen,60 + +* angels-silicon +** silicon-ore-smelting +*** products +- ingot-silicon,24 +*** ingredients +- quartz,24 +- solid-carbon,6 + +* angels-silicon +** liquid-trichlorosilane-smelting +*** products +- ingot-silicon,24 +*** ingredients +- ingot-silicon,6 +- liquid-trichlorosilane,90 + +* angels-silicon +** gas-silane-smelting +*** products +- ingot-silicon,24 +*** ingredients +- ingot-silicon,6 +- gas-silane,90 + +* angels-silicon +** silicon-powder +*** products +- silicon-powder,1 +*** ingredients +- ingot-silicon,1 + +* angels-silicon +** powder-silicon +*** products +- silicon-powder,1 +*** ingredients +- ingot-silicon,1 + +* angels-silicon-casting +** molten-silicon-smelting +*** products +- liquid-molten-silicon,120 +*** ingredients +- ingot-silicon,12 + +* angels-silicon-casting +** angels-mono-silicon-seed +*** products +- angels-mono-silicon-seed,5 +*** ingredients +- liquid-molten-silicon,5 +- gas-nitrogen,10 + +* angels-silicon-casting +** angels-quartz-crucible +*** products +- angels-quartz-crucible,1 +*** ingredients +- quartz,1 + +* angels-silicon-casting +** angels-mono-silicon-1 +*** products +- angels-mono-silicon,4 +*** ingredients +- angels-mono-silicon-seed,1 +- liquid-molten-silicon,40 + +* angels-silicon-casting +** angels-mono-silicon-2 +*** products +- angels-mono-silicon,6 +- angels-quartz-crucible,1 +*** ingredients +- angels-mono-silicon-seed,1 +- angels-quartz-crucible,1 +- liquid-molten-silicon,40 + +* angels-silicon-casting +** angels-silicon-wafer +*** products +- silicon-wafer,1-5 +*** ingredients +- angels-mono-silicon,1 + +* angels-silicon-casting +** silicon-wafer +*** products +- silicon-wafer,6 +*** ingredients +- angels-mono-silicon,1 + +* angels-silicon-casting +** silicon-nitride +*** products +- silicon-nitride,1 +*** ingredients +- silicon-powder,1 +- gas-nitrogen,13 + +* angels-silicon-casting +** silicon-carbide +*** products +- silicon-carbide,2 +*** ingredients +- silicon-powder,1 +- solid-carbon,1 + +* angels-silo +** silo +*** products +- silo,1 +*** ingredients +- stone-brick,20 +- iron-plate,20 +- steel-plate,10 + +* angels-silo +** silo-active-provider +*** products +- silo-active-provider,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,10 +- silo,1 + +* angels-silo +** silo-passive-provider +*** products +- silo-passive-provider,1 +*** ingredients +- steel-plate,10 +- electronic-circuit,10 +- silo,1 + +* angels-silo +** silo-storage +*** products +- silo-storage,1 +*** ingredients +- steel-plate,10 +- electronic-circuit,10 +- silo,1 + +* angels-silo +** silo-buffer +*** products +- silo-buffer,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,10 +- silo,1 + +* angels-silo +** silo-requester +*** products +- silo-requester,1 +*** ingredients +- steel-plate,10 +- electronic-circuit,10 +- silo,1 + +* angels-silver +** silver-ore-processing +*** products +- processed-silver,2 +*** ingredients +- silver-ore,4 + +* angels-silver +** silver-processed-processing +*** products +- pellet-silver,4 +*** ingredients +- processed-silver,3 + +* angels-silver +** processed-silver-smelting +*** products +- silver-nitrate,12 +*** ingredients +- processed-silver,4 +- liquid-nitric-acid,60 + +* angels-silver +** silver-oxide +*** products +- silver-oxide,1 +*** ingredients +- silver-nitrate,1 +- solid-sodium-hydroxide,1 + +* angels-silver +** pellet-silver-smelting +*** products +- solid-sodium-silver-cyanide,24 +- solid-sodium-hydroxide,4 +*** ingredients +- pellet-silver,8 +- solid-sodium-cyanide,6 +- water-purified,60 +- gas-oxygen,60 + +* angels-silver +** solid-sodium-silver-cyanide-smelting +*** products +- cathode-silver,12 +*** ingredients +- solid-sodium-silver-cyanide,12 + +* angels-silver +** silver-ore-smelting +*** products +- ingot-silver,24 +*** ingredients +- silver-ore,24 + +* angels-silver +** solid-silver-nitrate-smelting +*** products +- ingot-silver,24 +*** ingredients +- silver-nitrate,24 + +* angels-silver +** cathode-silver-smelting +*** products +- ingot-silver,24 +*** ingredients +- cathode-silver,24 + +* angels-silver +** powder-silver +*** products +- powder-silver,1 +*** ingredients +- ingot-silver,1 + +* angels-silver-casting +** molten-silver-smelting +*** products +- liquid-molten-silver,120 +*** ingredients +- ingot-silver,12 + +* angels-silver-casting +** roll-silver-casting +*** products +- angels-roll-silver,2 +*** ingredients +- liquid-molten-silver,80 +- water,40 + +* angels-silver-casting +** roll-silver-casting-fast +*** products +- angels-roll-silver,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-silver,140 +- liquid-coolant,40 + +* angels-silver-casting +** angels-wire-coil-silver-casting +*** products +- angels-wire-coil-silver,4 +*** ingredients +- liquid-molten-silver,40 +- liquid-molten-copper,40 +- water,40 + +* angels-silver-casting +** angels-wire-coil-silver-casting-fast +*** products +- angels-wire-coil-silver,8 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-silver,70 +- liquid-molten-copper,70 +- liquid-coolant,40 + +* angels-silver-casting +** silver-plate +*** products +- silver-plate,3 +*** ingredients +- silver-ore,4 + +* angels-silver-casting +** angels-plate-silver +*** products +- silver-plate,4 +*** ingredients +- liquid-molten-silver,40 + +* angels-silver-casting +** angels-roll-silver-converting +*** products +- silver-plate,4 +*** ingredients +- angels-roll-silver,1 + +* angels-silver-casting +** basic-silvered-copper-wire +*** products +- angels-wire-silver,5 +*** ingredients +- copper-cable,10 +- silver-plate,4 + +* angels-silver-casting +** angels-wire-coil-silver-converting +*** products +- angels-wire-silver,16 +*** ingredients +- angels-wire-coil-silver,4 + +* angels-sintering-oven +** sintering-oven +*** products +- sintering-oven,1 +*** ingredients +- clay-brick,45 +- steel-plate,24 +- electronic-circuit,5 + +* angels-sintering-oven +** sintering-oven-2 +*** products +- sintering-oven-2,1 +*** ingredients +- clay-brick,45 +- bronze-alloy,24 +- sintering-oven,1 +- electronic-circuit,5 + +* angels-sintering-oven +** sintering-oven-3 +*** products +- sintering-oven-3,1 +*** ingredients +- aluminium-plate,32 +- concrete-brick,45 +- sintering-oven-2,1 +- advanced-circuit,5 + +* angels-sintering-oven +** sintering-oven-4 +*** products +- sintering-oven-4,1 +*** ingredients +- reinforced-concrete-brick,45 +- titanium-plate,32 +- processing-unit,5 + +* angels-sintering-oven +** sintering-oven-5 +*** products +- sintering-oven-5,1 +*** ingredients +- reinforced-concrete-brick,45 +- tungsten-plate,32 +- sintering-oven-4,1 +- advanced-processing-unit,5 + +* angels-smeltingtrain +** smelting-locomotive-1 +*** products +- smelting-locomotive-1,1 +*** ingredients +- steel-plate,40 +- engine-unit,25 +- electronic-circuit,20 +- locomotive,1 + +* angels-smeltingtrain +** smelting-locomotive-1-2 +*** products +- smelting-locomotive-1-2,1 +*** ingredients +- steel-plate,50 +- engine-unit,30 +- smelting-locomotive-1,1 +- speed-module,2 + +* angels-smeltingtrain +** smelting-locomotive-1-3 +*** products +- smelting-locomotive-1-3,1 +*** ingredients +- electric-engine-unit,40 +- low-density-structure,50 +- smelting-locomotive-1-2,1 +- speed-module-2,2 + +* angels-smeltingtrain +** smelting-locomotive-1-4 +*** products +- smelting-locomotive-1-4,1 +*** ingredients +- electric-engine-unit,45 +- low-density-structure,75 +- smelting-locomotive-1-3,1 +- speed-module-3,2 + +* angels-smeltingtrain +** smelting-locomotive-1-5 +*** products +- smelting-locomotive-1-5,1 +*** ingredients +- electric-engine-unit,50 +- rocket-control-unit,2 +- low-density-structure,100 +- smelting-locomotive-1-4,1 + +* angels-smeltingtrain +** smelting-locomotive-tender +*** products +- smelting-locomotive-tender,1 +*** ingredients +- steel-plate,35 +- engine-unit,25 +- electronic-circuit,15 +- locomotive,1 + +* angels-smeltingtrain +** smelting-locomotive-tender-2 +*** products +- smelting-locomotive-tender-2,1 +*** ingredients +- steel-plate,40 +- engine-unit,30 +- smelting-locomotive-tender,1 +- speed-module,1 +- effectivity-module,1 + +* angels-smeltingtrain +** smelting-locomotive-tender-3 +*** products +- smelting-locomotive-tender-3,1 +*** ingredients +- electric-engine-unit,40 +- low-density-structure,40 +- smelting-locomotive-tender-2,1 +- speed-module-2,1 +- effectivity-module-2,1 + +* angels-smeltingtrain +** smelting-locomotive-tender-4 +*** products +- smelting-locomotive-tender-4,1 +*** ingredients +- electric-engine-unit,45 +- low-density-structure,60 +- smelting-locomotive-tender-3,1 +- speed-module-3,1 +- effectivity-module-3,1 + +* angels-smeltingtrain +** smelting-locomotive-tender-5 +*** products +- smelting-locomotive-tender-5,1 +*** ingredients +- electric-engine-unit,50 +- rocket-control-unit,2 +- low-density-structure,80 +- smelting-locomotive-tender-4,1 + +* angels-smeltingtrain +** smelting-wagon-1 +*** products +- smelting-wagon-1,1 +*** ingredients +- steel-plate,20 +- iron-gear-wheel,25 +- electronic-circuit,15 +- cargo-wagon,1 + +* angels-smeltingtrain +** smelting-wagon-1-2 +*** products +- smelting-wagon-1-2,1 +*** ingredients +- steel-plate,25 +- iron-chest,5 +- smelting-wagon-1,1 +- effectivity-module,2 + +* angels-smeltingtrain +** smelting-wagon-1-3 +*** products +- smelting-wagon-1-3,1 +*** ingredients +- low-density-structure,25 +- iron-chest,10 +- smelting-wagon-1-2,1 +- effectivity-module-2,2 + +* angels-smeltingtrain +** smelting-wagon-1-4 +*** products +- smelting-wagon-1-4,1 +*** ingredients +- low-density-structure,35 +- steel-chest,5 +- smelting-wagon-1-3,1 +- effectivity-module-3,2 + +* angels-smeltingtrain +** smelting-wagon-1-5 +*** products +- smelting-wagon-1-5,1 +*** ingredients +- low-density-structure,50 +- steel-chest,10 +- smelting-wagon-1-4,1 +- effectivity-module-3,2 + +* angels-solder-casting +** angels-solder-smelting-1 +*** products +- liquid-molten-solder,120 +*** ingredients +- angels-solder-mixture,12 + +* angels-solder-casting +** angels-solder-smelting-2 +*** products +- liquid-molten-solder,240 +*** ingredients +- ingot-lead,12 +- ingot-tin,12 + +* angels-solder-casting +** angels-solder-smelting-3 +*** products +- liquid-molten-solder,240 +*** ingredients +- ingot-tin,12 +- ingot-zinc,12 + +* angels-solder-casting +** angels-solder-smelting-4 +*** products +- liquid-molten-solder,360 +*** ingredients +- ingot-copper,12 +- ingot-silver,12 +- ingot-tin,12 + +* angels-solder-casting +** roll-solder-casting +*** products +- angels-roll-solder,4 +*** ingredients +- liquid-molten-solder,80 +- water,40 + +* angels-solder-casting +** roll-solder-casting-fast +*** products +- angels-roll-solder,8 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-solder,140 +- liquid-coolant,40 + +* angels-solder-casting +** solder +*** products +- solder,8 +*** ingredients +- solder-alloy,4 +- resin,1 + +* angels-solder-casting +** angels-solder-mixture-smelting +*** products +- solder,2 +*** ingredients +- angels-solder-mixture,2 + +* angels-solder-casting +** angels-solder +*** products +- solder,6 +*** ingredients +- liquid-molten-solder,40 + +* angels-solder-casting +** angels-roll-solder-converting +*** products +- solder,12 +*** ingredients +- angels-roll-solder,4 + +* angels-steel-casting +** molten-steel-smelting-1 +*** products +- liquid-molten-steel,120 +*** ingredients +- ingot-steel,12 + +* angels-steel-casting +** molten-steel-smelting-2 +*** products +- liquid-molten-steel,240 +*** ingredients +- ingot-steel,12 +- ingot-silicon,12 + +* angels-steel-casting +** molten-steel-smelting-3 +*** products +- liquid-molten-steel,240 +*** ingredients +- ingot-steel,12 +- ingot-manganese,12 + +* angels-steel-casting +** molten-steel-smelting-4 +*** products +- liquid-molten-steel,360 +*** ingredients +- ingot-cobalt,12 +- ingot-steel,12 +- ingot-nickel,12 + +* angels-steel-casting +** molten-steel-smelting-5 +*** products +- liquid-molten-steel,360 +*** ingredients +- ingot-chrome,12 +- ingot-steel,12 +- powdered-tungsten,12 + +* angels-steel-casting +** angels-roll-steel-casting +*** products +- angels-roll-steel,2 +*** ingredients +- liquid-molten-steel,80 +- water,40 + +* angels-steel-casting +** angels-roll-steel-casting-fast +*** products +- angels-roll-steel,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-steel,140 +- liquid-coolant,40 + +* angels-steel-casting +** rod-stack-steel-casting +*** products +- angels-rod-stack-steel,1 +*** ingredients +- liquid-molten-steel,60 +- water,40 + +* angels-steel-casting +** rod-stack-steel-casting-fast +*** products +- angels-rod-stack-steel,2 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-steel,110 +- liquid-coolant,40 + +* angels-steel-casting +** steel-plate +*** products +- steel-plate,1 +*** ingredients +- iron-plate,2 +- gas-oxygen,10 + +* angels-steel-casting +** angels-plate-steel +*** products +- steel-plate,4 +*** ingredients +- liquid-molten-steel,40 + +* angels-steel-casting +** angels-roll-steel-converting +*** products +- steel-plate,4 +*** ingredients +- angels-roll-steel,1 + +* angels-steel-casting +** angels-rod-steel-plate +*** products +- angels-rod-steel,1 +*** ingredients +- steel-plate,2 + +* angels-steel-casting +** angels-rod-stack-steel-converting +*** products +- angels-rod-steel,4 +*** ingredients +- angels-rod-stack-steel,1 + +* angels-stone +** solid-lime +*** products +- solid-lime,4 +- gas-carbon-dioxide,50 +*** ingredients +- solid-limestone,4 + +* angels-stone +** cement-mixture-1 +*** products +- solid-cement,1 +*** ingredients +- quartz,1 +- solid-lime,1 + +* angels-stone +** cement-mixture-2 +*** products +- solid-cement,2 +*** ingredients +- alumina,1 +- iron-ore,1 +- quartz,1 +- solid-lime,1 + +* angels-stone +** angels-clay-brick-raw +*** products +- clay-brick-raw,4 +*** ingredients +- solid-lime,2 +- solid-clay,4 +- solid-sand,2 + +* angels-stone +** angels-clay-brick +*** products +- clay-brick,4 +*** ingredients +- clay-brick-raw,4 + +* angels-stone +** bio-tile +*** products +- bio-tile,5-10 +*** ingredients +- solid-glass-mixture,1 +- concrete-brick,2 +- solid-soil,2 +- token-bio,1 + +* angels-stone +** stone-brick +*** products +- stone-brick,1 +*** ingredients +- stone,2 + +* angels-stone-casting +** concrete-mixture-1 +*** products +- liquid-concrete,100 +*** ingredients +- slag,4 +- solid-cement,8 +- water,100 + +* angels-stone-casting +** concrete-mixture-2 +*** products +- liquid-concrete,120 +*** ingredients +- stone,3 +- solid-cement,6 +- solid-sand,3 +- water,100 + +* angels-stone-casting +** concrete +*** products +- concrete,10 +*** ingredients +- iron-ore,1 +- stone-brick,5 +- water,100 + +* angels-stone-casting +** angels-concrete +*** products +- concrete,4 +*** ingredients +- liquid-concrete,40 + +* angels-stone-casting +** hazard-concrete +*** products +- hazard-concrete,10 +*** ingredients +- concrete,10 + +* angels-stone-casting +** refined-concrete +*** products +- refined-concrete,10 +*** ingredients +- concrete,20 +- steel-plate,1 +- iron-stick,8 +- water,100 + +* angels-stone-casting +** refined-hazard-concrete +*** products +- refined-hazard-concrete,10 +*** ingredients +- refined-concrete,10 + +* angels-stone-casting +** angels-concrete-brick +*** products +- concrete-brick,4 +*** ingredients +- stone-brick,4 +- liquid-concrete,40 + +* angels-stone-casting +** angels-reinforced-concrete-brick +*** products +- reinforced-concrete-brick,4 +*** ingredients +- stone-brick,4 +- steel-plate,4 +- liquid-concrete,40 + +* angels-strand-casting-machine +** strand-casting-machine +*** products +- strand-casting-machine,1 +*** ingredients +- clay-brick,15 +- bronze-alloy,18 +- steel-gear-wheel,12 +- electronic-circuit,3 +- bronze-pipe,18 + +* angels-strand-casting-machine +** strand-casting-machine-2 +*** products +- strand-casting-machine-2,1 +*** ingredients +- aluminium-plate,24 +- concrete-brick,15 +- strand-casting-machine,1 +- brass-gear-wheel,12 +- advanced-circuit,3 +- brass-pipe,18 + +* angels-strand-casting-machine +** strand-casting-machine-3 +*** products +- strand-casting-machine-3,1 +*** ingredients +- reinforced-concrete-brick,15 +- titanium-plate,24 +- strand-casting-machine-2,1 +- titanium-gear-wheel,12 +- processing-unit,3 +- titanium-pipe,18 + +* angels-strand-casting-machine +** strand-casting-machine-4 +*** products +- strand-casting-machine-4,1 +*** ingredients +- reinforced-concrete-brick,15 +- tungsten-plate,24 +- strand-casting-machine-3,1 +- tungsten-gear-wheel,12 +- advanced-processing-unit,3 +- tungsten-pipe,18 + +* angels-sub-power-poles +** substation +*** products +- substation,1 +*** ingredients +- copper-plate,5 +- steel-plate,10 +- advanced-circuit,5 + +* angels-sub-power-poles +** substation-2 +*** products +- substation-2,1 +*** ingredients +- tinned-copper-cable,5 +- brass-alloy,10 +- advanced-circuit,5 +- substation,1 + +* angels-sub-power-poles +** substation-3 +*** products +- substation-3,1 +*** ingredients +- titanium-plate,10 +- insulated-cable,5 +- processing-unit,5 +- substation-2,1 + +* angels-sub-power-poles +** substation-4 +*** products +- substation-4,1 +*** ingredients +- gilded-copper-cable,5 +- nitinol-alloy,10 +- advanced-processing-unit,5 +- substation-3,1 + +* angels-tin +** tin-ore-processing +*** products +- processed-tin,2 +*** ingredients +- tin-ore,4 + +* angels-tin +** tin-processed-processing +*** products +- pellet-tin,4 +*** ingredients +- processed-tin,3 + +* angels-tin +** tin-ore-smelting +*** products +- ingot-tin,24 +*** ingredients +- tin-ore,24 + +* angels-tin +** processed-tin-smelting +*** products +- ingot-tin,24 +*** ingredients +- processed-tin,8 +- solid-coke,2 + +* angels-tin +** pellet-tin-smelting +*** products +- ingot-tin,24 +*** ingredients +- pellet-tin,8 +- solid-carbon,2 + +* angels-tin +** powder-tin +*** products +- powder-tin,1 +*** ingredients +- ingot-tin,1 + +* angels-tin-casting +** molten-tin-smelting +*** products +- liquid-molten-tin,120 +*** ingredients +- ingot-tin,12 + +* angels-tin-casting +** roll-tin-casting +*** products +- angels-roll-tin,2 +*** ingredients +- liquid-molten-tin,80 +- water,40 + +* angels-tin-casting +** roll-tin-casting-fast +*** products +- angels-roll-tin,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-tin,140 +- liquid-coolant,40 + +* angels-tin-casting +** angels-wire-coil-tin-casting +*** products +- angels-wire-coil-tin,4 +*** ingredients +- liquid-molten-tin,40 +- liquid-molten-copper,40 +- water,40 + +* angels-tin-casting +** angels-wire-coil-tin-casting-fast +*** products +- angels-wire-coil-tin,8 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-tin,70 +- liquid-molten-copper,70 +- liquid-coolant,40 + +* angels-tin-casting +** angelsore6-crushed-smelting +*** products +- tin-plate,1 +*** ingredients +- angels-ore6-crushed,3 + +* angels-tin-casting +** tin-plate +*** products +- tin-plate,3 +*** ingredients +- tin-ore,4 + +* angels-tin-casting +** angels-plate-tin +*** products +- tin-plate,4 +*** ingredients +- liquid-molten-tin,40 + +* angels-tin-casting +** angels-roll-tin-converting +*** products +- tin-plate,4 +*** ingredients +- angels-roll-tin,1 + +* angels-tin-casting +** tinned-copper-cable +*** products +- tinned-copper-cable,3 +*** ingredients +- copper-cable,3 +- tin-plate,1 + +* angels-tin-casting +** basic-tinned-copper-wire +*** products +- tinned-copper-cable,5 +*** ingredients +- copper-cable,10 +- tin-plate,4 + +* angels-tin-casting +** angels-wire-coil-tin-converting +*** products +- tinned-copper-cable,16 +*** ingredients +- angels-wire-coil-tin,4 + +* angels-titanium +** titanium-ore-processing +*** products +- processed-titanium,2 +*** ingredients +- rutile-ore,4 + +* angels-titanium +** titanium-processed-processing +*** products +- pellet-titanium,4 +*** ingredients +- processed-titanium,3 + +* angels-titanium +** titanium-ore-smelting +*** products +- liquid-titanium-tetrachloride,120 +*** ingredients +- rutile-ore,24 +- solid-carbon,6 +- gas-chlorine,60 + +* angels-titanium +** processed-titanium-smelting +*** products +- liquid-titanium-tetrachloride,120 +*** ingredients +- processed-titanium,8 +- solid-carbon,6 +- gas-chlorine,60 + +* angels-titanium +** liquid-titanium-tetrachloride-smelting +*** products +- sponge-titanium,24 +*** ingredients +- liquid-titanium-tetrachloride,120 + +* angels-titanium +** sponge-titanium-smelting +*** products +- ingot-titanium,24 +*** ingredients +- sponge-titanium,24 + +* angels-titanium +** pellet-titanium-smelting +*** products +- ingot-titanium,24 +- solid-limestone,6 +*** ingredients +- pellet-titanium,8 +- solid-carbon,6 +- solid-calcium-chloride,6 + +* angels-titanium +** powder-titanium +*** products +- powder-titanium,1 +*** ingredients +- ingot-titanium,1 + +* angels-titanium-casting +** molten-titanium-smelting-1 +*** products +- liquid-molten-titanium,120 +*** ingredients +- ingot-titanium,12 + +* angels-titanium-casting +** molten-titanium-smelting-2 +*** products +- liquid-molten-titanium,240 +*** ingredients +- ingot-manganese,12 +- ingot-titanium,12 + +* angels-titanium-casting +** molten-titanium-smelting-3 +*** products +- liquid-molten-titanium,240 +*** ingredients +- ingot-nickel,12 +- ingot-titanium,12 + +* angels-titanium-casting +** molten-titanium-smelting-4 +*** products +- liquid-molten-titanium,360 +*** ingredients +- ingot-aluminium,12 +- ingot-tin,12 +- ingot-titanium,12 + +* angels-titanium-casting +** molten-titanium-smelting-5 +*** products +- liquid-molten-titanium,360 +*** ingredients +- ingot-chrome,12 +- ingot-cobalt,12 +- ingot-titanium,12 + +* angels-titanium-casting +** roll-titanium-casting +*** products +- angels-roll-titanium,2 +*** ingredients +- liquid-molten-titanium,80 +- water,40 + +* angels-titanium-casting +** roll-titanium-casting-fast +*** products +- angels-roll-titanium,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-titanium,140 +- liquid-coolant,40 + +* angels-titanium-casting +** angels-plate-titanium +*** products +- titanium-plate,4 +*** ingredients +- liquid-molten-titanium,40 + +* angels-titanium-casting +** angels-roll-titanium-converting +*** products +- titanium-plate,4 +*** ingredients +- angels-roll-titanium,1 + +* angels-tungsten +** tungsten-ore-processing +*** products +- processed-tungsten,2 +*** ingredients +- tungsten-ore,4 + +* angels-tungsten +** tungsten-processed-processing +*** products +- pellet-tungsten,4 +*** ingredients +- processed-tungsten,3 + +* angels-tungsten +** tungsten-ore-smelting +*** products +- solid-calcium-chloride,2 +- liquid-tungstic-acid,60 +*** ingredients +- tungsten-ore,12 +- gas-hydrogen-chloride,30 + +* angels-tungsten +** liquid-tungstic-acid-smelting +*** products +- tungsten-oxide,24 +- water-purified,60 +*** ingredients +- liquid-tungstic-acid,120 + +* angels-tungsten +** pellet-tungsten-smelting +*** products +- tungsten-oxide,12 +*** ingredients +- pellet-tungsten,4 +- gas-ammonia,60 + +* angels-tungsten +** solid-tungsten-oxide-smelting +*** products +- gas-tungsten-hexafluoride,60 +*** ingredients +- tungsten-oxide,12 +- gas-hydrogen-fluoride,30 + +* angels-tungsten +** processed-tungsten-smelting +*** products +- solid-ammonium-paratungstate,24 +*** ingredients +- processed-tungsten,8 +- gas-ammonia,60 + +* angels-tungsten +** gas-tungsten-hexafluoride-smelting +*** products +- powdered-tungsten,24 +- fluorite-ore,3 +*** ingredients +- gas-tungsten-hexafluoride,120 + +* angels-tungsten +** solid-ammonium-paratungstate-smelting +*** products +- powdered-tungsten,24 +*** ingredients +- solid-ammonium-paratungstate,24 +- gas-hydrogen,60 + +* angels-tungsten-casting +** casting-powder-tungsten-1 +*** products +- casting-powder-tungsten,24 +*** ingredients +- powder-cobalt,12 +- powdered-tungsten,12 + +* angels-tungsten-casting +** casting-powder-tungsten-2 +*** products +- casting-powder-tungsten,24 +*** ingredients +- powder-nickel,12 +- powdered-tungsten,12 + +* angels-tungsten-casting +** angels-plate-tungsten +*** products +- tungsten-plate,12 +*** ingredients +- casting-powder-tungsten,12 + +* angels-tungsten-casting +** tungsten-carbide +*** products +- tungsten-carbide,2 +*** ingredients +- tungsten-oxide,1 +- solid-carbon,1 + +* angels-tungsten-casting +** tungsten-carbide-2 +*** products +- tungsten-carbide,2 +*** ingredients +- powdered-tungsten,1 +- solid-carbon,1 + +* angels-tungsten-casting +** copper-tungsten-alloy +*** products +- copper-tungsten-alloy,5 +*** ingredients +- powdered-tungsten,3 +- copper-plate,2 + +* angels-vehicle-car +** car +*** products +- car,1 +*** ingredients +- iron-plate,20 +- steel-plate,5 +- engine-unit,8 + +* angels-vehicle-car +** angels-crawler +*** products +- angels-crawler,1 +*** ingredients +- steel-plate,75 +- engine-unit,20 +- iron-gear-wheel,25 +- electronic-circuit,20 + +* angels-vehicle-car +** angels-cab +*** products +- angels-cab,1 +*** ingredients +- steel-plate,75 +- engine-unit,20 +- iron-gear-wheel,25 +- electronic-circuit,20 + +* angels-vehicle-car +** angels-cab-deploy-charge +*** products +- angels-cab-deploy-charge,1 +*** ingredients +- iron-plate,1 +- steel-plate,1 +- iron-gear-wheel,1 +- electronic-circuit,1 + +* angels-vehicle-car +** angels-cab-undeploy-charge +*** products +- angels-cab-undeploy-charge,1 +*** ingredients +- iron-plate,1 +- steel-plate,1 +- iron-gear-wheel,1 +- electronic-circuit,1 + +* angels-vehicle-car +** angels-cab-energy-interface-mk1 +*** products +- angels-cab-energy-interface-mk1,1 +*** ingredients +- red-wire,10 +- green-wire,10 +- electronic-circuit,20 +- medium-electric-pole,1 + +* angels-vehicle-equipment +** angels-burner-generator-vequip +*** products +- angels-burner-generator-vequip,1 +*** ingredients +- iron-plate,20 +- electronic-circuit,20 + +* angels-vehicle-equipment +** angels-fusion-reactor-vequip +*** products +- angels-fusion-reactor-vequip,1 +*** ingredients +- iron-plate,20 +- steel-plate,20 +- advanced-circuit,20 + +* angels-vehicle-equipment +** angels-construction-roboport-vequip +*** products +- angels-construction-roboport-vequip,1 +*** ingredients +- iron-plate,20 +- electronic-circuit,20 + +* angels-vehicle-equipment +** angels-repair-roboport-vequip +*** products +- angels-repair-roboport-vequip,1 +*** ingredients +- iron-plate,20 +- steel-plate,20 +- advanced-circuit,20 + +* angels-vehicle-equipment +** angels-heavy-energy-shield-vequip +*** products +- angels-heavy-energy-shield-vequip,1 +*** ingredients +- iron-plate,20 +- steel-plate,20 +- advanced-circuit,20 + +* angels-vehicle-equipment +** angels-rocket-defense-equipment-vequip +*** products +- angels-rocket-defense-equipment-vequip,1 +*** ingredients +- iron-plate,20 +- steel-plate,20 +- advanced-circuit,20 + +* angels-vehicle-equipment-bobcombat-a +** vehicle-shield-1 +*** products +- vehicle-shield-1,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,5 + +* angels-vehicle-equipment-bobcombat-a +** vehicle-shield-2 +*** products +- vehicle-shield-2,1 +*** ingredients +- processing-unit,5 +- vehicle-shield-1,2 + +* angels-vehicle-equipment-bobcombat-a +** vehicle-shield-3 +*** products +- vehicle-shield-3,1 +*** ingredients +- alien-artifact,10 +- advanced-processing-unit,5 +- vehicle-shield-2,2 +- productivity-module-2,1 + +* angels-vehicle-equipment-bobcombat-a +** vehicle-shield-4 +*** products +- vehicle-shield-4,1 +*** ingredients +- alien-artifact-orange,5 +- alien-artifact-blue,5 +- advanced-processing-unit,5 +- vehicle-shield-3,2 +- effectivity-module-4,1 +- productivity-module-4,1 + +* angels-vehicle-equipment-bobcombat-a +** vehicle-shield-5 +*** products +- vehicle-shield-5,1 +*** ingredients +- alien-artifact-yellow,5 +- alien-artifact-purple,5 +- advanced-processing-unit,5 +- vehicle-shield-4,2 +- effectivity-module-6,1 +- productivity-module-6,1 + +* angels-vehicle-equipment-bobcombat-a +** vehicle-shield-6 +*** products +- vehicle-shield-6,1 +*** ingredients +- alien-artifact-red,5 +- alien-artifact-green,5 +- advanced-processing-unit,5 +- vehicle-shield-5,2 +- effectivity-module-8,1 +- productivity-module-8,1 + +* angels-vehicle-equipment-bobcombat-b +** vehicle-laser-defense-1 +*** products +- vehicle-laser-defense-1,1 +*** ingredients +- steel-plate,5 +- battery,3 +- electronic-circuit,5 +- ruby-5,1 + +* angels-vehicle-equipment-bobcombat-b +** vehicle-laser-defense-2 +*** products +- vehicle-laser-defense-2,1 +*** ingredients +- steel-plate,5 +- advanced-circuit,5 +- vehicle-laser-defense-1,1 +- sapphire-5,1 + +* angels-vehicle-equipment-bobcombat-b +** vehicle-laser-defense-3 +*** products +- vehicle-laser-defense-3,1 +*** ingredients +- invar-alloy,5 +- lithium-ion-battery,3 +- vehicle-laser-defense-2,1 +- emerald-5,1 + +* angels-vehicle-equipment-bobcombat-b +** vehicle-laser-defense-4 +*** products +- vehicle-laser-defense-4,1 +*** ingredients +- titanium-plate,5 +- lithium-ion-battery,3 +- processing-unit,5 +- vehicle-laser-defense-3,1 +- amethyst-5,1 + +* angels-vehicle-equipment-bobcombat-b +** vehicle-laser-defense-5 +*** products +- vehicle-laser-defense-5,1 +*** ingredients +- nitinol-alloy,5 +- silver-zinc-battery,3 +- processing-unit,5 +- vehicle-laser-defense-4,1 +- topaz-5,1 + +* angels-vehicle-equipment-bobcombat-b +** vehicle-laser-defense-6 +*** products +- vehicle-laser-defense-6,1 +*** ingredients +- nitinol-alloy,5 +- silver-zinc-battery,3 +- advanced-processing-unit,5 +- vehicle-laser-defense-5,1 +- diamond-5,1 + +* angels-vehicle-equipment-bobcombat-c +** vehicle-big-turret-1 +*** products +- vehicle-big-turret-1,1 +*** ingredients +- steel-plate,20 +- alien-artifact,30 +- battery,12 +- electronic-circuit,20 + +* angels-vehicle-equipment-bobcombat-c +** vehicle-big-turret-2 +*** products +- vehicle-big-turret-2,1 +*** ingredients +- steel-plate,20 +- alien-artifact,30 +- battery,12 +- advanced-circuit,20 +- vehicle-big-turret-1,1 + +* angels-vehicle-equipment-bobcombat-c +** vehicle-big-turret-3 +*** products +- vehicle-big-turret-3,1 +*** ingredients +- invar-alloy,20 +- alien-artifact,30 +- lithium-ion-battery,12 +- advanced-circuit,20 +- vehicle-big-turret-2,1 + +* angels-vehicle-equipment-bobcombat-c +** vehicle-big-turret-4 +*** products +- vehicle-big-turret-4,1 +*** ingredients +- titanium-plate,20 +- alien-artifact-orange,15 +- alien-artifact-blue,15 +- lithium-ion-battery,12 +- processing-unit,20 +- vehicle-big-turret-3,1 + +* angels-vehicle-equipment-bobcombat-c +** vehicle-big-turret-5 +*** products +- vehicle-big-turret-5,1 +*** ingredients +- nitinol-alloy,20 +- alien-artifact-yellow,15 +- alien-artifact-purple,15 +- silver-zinc-battery,12 +- processing-unit,20 +- vehicle-big-turret-4,1 + +* angels-vehicle-equipment-bobcombat-c +** vehicle-big-turret-6 +*** products +- vehicle-big-turret-6,1 +*** ingredients +- nitinol-alloy,20 +- alien-artifact-red,15 +- alien-artifact-green,15 +- silver-zinc-battery,12 +- advanced-processing-unit,20 +- vehicle-big-turret-5,1 + +* angels-vehicle-equipment-bobpower-a +** vehicle-solar-panel-1 +*** products +- vehicle-solar-panel-1,1 +*** ingredients +- copper-cable,4 +- steel-plate,2 +- electronic-circuit,5 + +* angels-vehicle-equipment-bobpower-a +** vehicle-solar-panel-2 +*** products +- vehicle-solar-panel-2,1 +*** ingredients +- glass,2 +- silver-plate,2 +- advanced-circuit,5 +- vehicle-solar-panel-1,1 + +* angels-vehicle-equipment-bobpower-a +** vehicle-solar-panel-3 +*** products +- vehicle-solar-panel-3,1 +*** ingredients +- aluminium-plate,2 +- gold-plate,2 +- processing-unit,5 +- vehicle-solar-panel-2,1 + +* angels-vehicle-equipment-bobpower-a +** vehicle-solar-panel-4 +*** products +- vehicle-solar-panel-4,1 +*** ingredients +- gilded-copper-cable,5 +- silicon-wafer,10 +- titanium-plate,2 +- advanced-processing-unit,5 +- vehicle-solar-panel-3,1 + +* angels-vehicle-equipment-bobpower-a +** vehicle-solar-panel-5 +*** products +- vehicle-solar-panel-5,1 +*** ingredients +- gilded-copper-cable,5 +- silicon-wafer,10 +- nitinol-alloy,2 +- alien-artifact,10 +- advanced-processing-unit,5 +- vehicle-solar-panel-4,1 + +* angels-vehicle-equipment-bobpower-a +** vehicle-solar-panel-6 +*** products +- vehicle-solar-panel-6,1 +*** ingredients +- gilded-copper-cable,5 +- silicon-wafer,10 +- nitinol-alloy,2 +- alien-artifact,10 +- advanced-processing-unit,5 +- vehicle-solar-panel-5,1 +- diamond-5,1 + +* angels-vehicle-equipment-bobpower-b +** vehicle-fusion-cell-1 +*** products +- vehicle-fusion-cell-1,1 +*** ingredients +- processing-unit,125 + +* angels-vehicle-equipment-bobpower-b +** vehicle-fusion-cell-2 +*** products +- vehicle-fusion-cell-2,1 +*** ingredients +- alien-artifact,15 +- processing-unit,25 +- vehicle-fusion-cell-1,1 +- speed-module-2,1 +- effectivity-module-2,1 +- productivity-module-2,1 + +* angels-vehicle-equipment-bobpower-b +** vehicle-fusion-cell-3 +*** products +- vehicle-fusion-cell-3,1 +*** ingredients +- alien-artifact,15 +- processing-unit,25 +- vehicle-fusion-cell-2,1 +- speed-module-3,1 +- effectivity-module-3,1 +- productivity-module-3,1 + +* angels-vehicle-equipment-bobpower-b +** vehicle-fusion-cell-4 +*** products +- vehicle-fusion-cell-4,1 +*** ingredients +- alien-artifact-orange,8 +- alien-artifact-blue,8 +- advanced-processing-unit,25 +- vehicle-fusion-cell-3,1 +- speed-module-5,1 +- effectivity-module-5,1 +- productivity-module-5,1 + +* angels-vehicle-equipment-bobpower-b +** vehicle-fusion-cell-5 +*** products +- vehicle-fusion-cell-5,1 +*** ingredients +- alien-artifact-yellow,8 +- alien-artifact-purple,8 +- advanced-processing-unit,25 +- vehicle-fusion-cell-4,1 +- speed-module-6,1 +- effectivity-module-6,1 +- productivity-module-6,1 + +* angels-vehicle-equipment-bobpower-b +** vehicle-fusion-cell-6 +*** products +- vehicle-fusion-cell-6,1 +*** ingredients +- alien-artifact-red,8 +- alien-artifact-green,8 +- advanced-processing-unit,25 +- vehicle-fusion-cell-5,1 +- speed-module-8,1 +- effectivity-module-8,1 +- productivity-module-8,1 + +* angels-vehicle-equipment-bobpower-c +** vehicle-fusion-reactor-1 +*** products +- vehicle-fusion-reactor-1,1 +*** ingredients +- processing-unit,250 + +* angels-vehicle-equipment-bobpower-c +** vehicle-fusion-reactor-2 +*** products +- vehicle-fusion-reactor-2,1 +*** ingredients +- alien-artifact,30 +- processing-unit,50 +- vehicle-fusion-reactor-1,1 +- speed-module-2,2 +- effectivity-module-2,2 +- productivity-module-2,2 + +* angels-vehicle-equipment-bobpower-c +** vehicle-fusion-reactor-3 +*** products +- vehicle-fusion-reactor-3,1 +*** ingredients +- alien-artifact,30 +- processing-unit,50 +- vehicle-fusion-reactor-2,1 +- speed-module-3,2 +- effectivity-module-3,2 +- productivity-module-3,2 + +* angels-vehicle-equipment-bobpower-c +** vehicle-fusion-reactor-4 +*** products +- vehicle-fusion-reactor-4,1 +*** ingredients +- alien-artifact-orange,15 +- alien-artifact-blue,15 +- advanced-processing-unit,50 +- vehicle-fusion-reactor-3,1 +- speed-module-5,2 +- effectivity-module-5,2 +- productivity-module-5,2 + +* angels-vehicle-equipment-bobpower-c +** vehicle-fusion-reactor-5 +*** products +- vehicle-fusion-reactor-5,1 +*** ingredients +- alien-artifact-yellow,15 +- alien-artifact-purple,15 +- advanced-processing-unit,50 +- vehicle-fusion-reactor-4,1 +- speed-module-6,2 +- effectivity-module-6,2 +- productivity-module-6,2 + +* angels-vehicle-equipment-bobpower-c +** vehicle-fusion-reactor-6 +*** products +- vehicle-fusion-reactor-6,1 +*** ingredients +- alien-artifact-red,15 +- alien-artifact-green,15 +- advanced-processing-unit,50 +- vehicle-fusion-reactor-5,1 +- speed-module-8,2 +- effectivity-module-8,2 +- productivity-module-8,2 + +* angels-vehicle-equipment-bobpower-d +** vehicle-battery-1 +*** products +- vehicle-battery-1,1 +*** ingredients +- steel-plate,10 +- battery,5 + +* angels-vehicle-equipment-bobpower-d +** vehicle-battery-2 +*** products +- vehicle-battery-2,1 +*** ingredients +- processing-unit,5 +- vehicle-battery-1,2 + +* angels-vehicle-equipment-bobpower-d +** vehicle-battery-3 +*** products +- vehicle-battery-3,1 +*** ingredients +- lithium-ion-battery,5 +- vehicle-battery-2,2 + +* angels-vehicle-equipment-bobpower-d +** vehicle-battery-4 +*** products +- vehicle-battery-4,1 +*** ingredients +- alien-artifact-orange,5 +- alien-artifact-blue,5 +- advanced-processing-unit,5 +- vehicle-battery-3,2 + +* angels-vehicle-equipment-bobpower-d +** vehicle-battery-5 +*** products +- vehicle-battery-5,1 +*** ingredients +- alien-artifact-yellow,5 +- alien-artifact-purple,5 +- silver-zinc-battery,5 +- vehicle-battery-4,2 + +* angels-vehicle-equipment-bobpower-d +** vehicle-battery-6 +*** products +- vehicle-battery-6,1 +*** ingredients +- alien-artifact-red,5 +- alien-artifact-green,5 +- advanced-processing-unit,5 +- vehicle-battery-5,2 + +* angels-vehicle-equipment-bobpower-e +** vehicle-motor +*** products +- vehicle-motor,1 +*** ingredients +- steel-plate,20 +- electric-engine-unit,30 +- processing-unit,10 + +* angels-vehicle-equipment-bobpower-e +** vehicle-engine +*** products +- vehicle-engine,1 +*** ingredients +- nitinol-alloy,20 +- nitinol-gear-wheel,30 +- nitinol-bearing,30 +- advanced-processing-unit,10 +- vehicle-motor,1 + +* angels-vehicle-equipment-bobpower-e +** vehicle-belt-immunity-equipment +*** products +- vehicle-belt-immunity-equipment,1 +*** ingredients +- steel-plate,10 +- advanced-circuit,5 + +* angels-vehicle-equipment-bobrobot-a +** vehicle-roboport-robot-equipment +*** products +- vehicle-roboport-robot-equipment,1 +*** ingredients +- solder,2 +- circuit-board,1 +- basic-electronic-components,30 +- electronic-components,15 +- module-case,1 + +* angels-vehicle-equipment-bobrobot-a +** vehicle-roboport-robot-equipment-2 +*** products +- vehicle-roboport-robot-equipment-2,1 +*** ingredients +- solder,3 +- circuit-board,1 +- basic-electronic-components,15 +- electronic-components,30 +- vehicle-roboport-robot-equipment,1 + +* angels-vehicle-equipment-bobrobot-a +** vehicle-roboport-robot-equipment-3 +*** products +- vehicle-roboport-robot-equipment-3,1 +*** ingredients +- solder,4 +- superior-circuit-board,1 +- basic-electronic-components,10 +- electronic-components,20 +- intergrated-electronics,10 +- vehicle-roboport-robot-equipment-2,1 + +* angels-vehicle-equipment-bobrobot-a +** vehicle-roboport-robot-equipment-4 +*** products +- vehicle-roboport-robot-equipment-4,1 +*** ingredients +- solder,6 +- multi-layer-circuit-board,1 +- basic-electronic-components,5 +- electronic-components,10 +- intergrated-electronics,20 +- processing-electronics,8 +- vehicle-roboport-robot-equipment-3,1 + +* angels-vehicle-equipment-bobrobot-b +** vehicle-roboport-chargepad-equipment +*** products +- vehicle-roboport-chargepad-equipment,1 +*** ingredients +- roboport-chargepad-1,2 + +* angels-vehicle-equipment-bobrobot-b +** vehicle-roboport-chargepad-equipment-2 +*** products +- vehicle-roboport-chargepad-equipment-2,1 +*** ingredients +- roboport-chargepad-2,2 +- vehicle-roboport-chargepad-equipment,1 + +* angels-vehicle-equipment-bobrobot-b +** vehicle-roboport-chargepad-equipment-3 +*** products +- vehicle-roboport-chargepad-equipment-3,1 +*** ingredients +- roboport-chargepad-3,2 +- vehicle-roboport-chargepad-equipment-2,1 + +* angels-vehicle-equipment-bobrobot-b +** vehicle-roboport-chargepad-equipment-4 +*** products +- vehicle-roboport-chargepad-equipment-4,1 +*** ingredients +- roboport-chargepad-4,2 +- vehicle-roboport-chargepad-equipment-3,1 + +* angels-vehicle-equipment-bobrobot-c +** vehicle-roboport-antenna-equipment +*** products +- vehicle-roboport-antenna-equipment,1 +*** ingredients +- roboport-antenna-1,2 +- roboport-door-1,1 + +* angels-vehicle-equipment-bobrobot-c +** vehicle-roboport-antenna-equipment-2 +*** products +- vehicle-roboport-antenna-equipment-2,1 +*** ingredients +- roboport-antenna-2,2 +- roboport-door-2,1 +- vehicle-roboport-antenna-equipment,1 + +* angels-vehicle-equipment-bobrobot-c +** vehicle-roboport-antenna-equipment-3 +*** products +- vehicle-roboport-antenna-equipment-3,1 +*** ingredients +- roboport-antenna-3,2 +- roboport-door-3,1 +- vehicle-roboport-antenna-equipment-2,1 + +* angels-vehicle-equipment-bobrobot-c +** vehicle-roboport-antenna-equipment-4 +*** products +- vehicle-roboport-antenna-equipment-4,1 +*** ingredients +- roboport-antenna-4,2 +- roboport-door-4,1 +- vehicle-roboport-antenna-equipment-3,1 + +* angels-vehicle-equipment-bobrobot-d +** vehicle-roboport +*** products +- vehicle-roboport,1 +*** ingredients +- steel-plate,5 +- roboport-antenna-1,2 +- roboport-door-1,1 +- roboport-chargepad-1,2 + +* angels-vehicle-equipment-bobrobot-d +** vehicle-roboport-2 +*** products +- vehicle-roboport-2,1 +*** ingredients +- aluminium-plate,5 +- roboport-antenna-2,2 +- roboport-door-2,1 +- roboport-chargepad-2,2 +- vehicle-roboport,1 + +* angels-vehicle-equipment-bobrobot-d +** vehicle-roboport-3 +*** products +- vehicle-roboport-3,1 +*** ingredients +- titanium-plate,5 +- roboport-antenna-3,2 +- roboport-door-3,1 +- roboport-chargepad-3,2 +- vehicle-roboport-2,1 + +* angels-vehicle-equipment-bobrobot-d +** vehicle-roboport-4 +*** products +- vehicle-roboport-4,1 +*** ingredients +- nitinol-alloy,5 +- roboport-antenna-4,2 +- roboport-door-4,1 +- roboport-chargepad-4,2 +- vehicle-roboport-3,1 + +* angels-vehicle-spidertron +** spidertron-remote +*** products +- spidertron-remote,1 +*** ingredients +- rocket-control-unit,1 +- radar,1 + +* angels-vehicle-spidertron +** antron +*** products +- antron,1 +*** ingredients +- mech-frame,1 +- mech-leg,6 +- gun-turret,2 + +* angels-vehicle-spidertron +** tankotron +*** products +- tankotron,1 +*** ingredients +- mech-armor-plate,5 +- mech-frame,1 +- mech-leg,6 +- spidertron-cannon,2 + +* angels-vehicle-spidertron +** spidertron +*** products +- spidertron,1 +*** ingredients +- rtg,2 +- mech-armor-plate,10 +- mech-frame,1 +- mech-leg,8 +- rocket-launcher,4 + +* angels-vehicle-spidertron +** heavy-spidertron +*** products +- heavy-spidertron,1 +*** ingredients +- rtg,3 +- mech-armor-plate,20 +- mech-frame,1 +- mech-leg,8 +- rocket-launcher,8 + +* angels-vehicle-spidertron +** logistic-spidertron +*** products +- logistic-spidertron,1 +*** ingredients +- titanium-chest,1 +- mech-armor-plate,5 +- mech-frame,1 +- mech-leg,8 +- gun-turret,2 + +* angels-vehicle-train-crawler +** crawler-locomotive +*** products +- crawler-locomotive,1 +*** ingredients +- steel-plate,40 +- engine-unit,25 +- electronic-circuit,20 +- locomotive,1 + +* angels-vehicle-train-crawler +** crawler-locomotive-2 +*** products +- crawler-locomotive-2,1 +*** ingredients +- steel-plate,50 +- engine-unit,30 +- crawler-locomotive,1 +- speed-module,2 + +* angels-vehicle-train-crawler +** crawler-locomotive-3 +*** products +- crawler-locomotive-3,1 +*** ingredients +- electric-engine-unit,40 +- low-density-structure,50 +- crawler-locomotive-2,1 +- speed-module-2,2 + +* angels-vehicle-train-crawler +** crawler-locomotive-4 +*** products +- crawler-locomotive-4,1 +*** ingredients +- electric-engine-unit,45 +- low-density-structure,75 +- crawler-locomotive-3,1 +- speed-module-3,2 + +* angels-vehicle-train-crawler +** crawler-locomotive-5 +*** products +- crawler-locomotive-5,1 +*** ingredients +- electric-engine-unit,50 +- rocket-control-unit,2 +- low-density-structure,100 +- crawler-locomotive-4,1 + +* angels-vehicle-train-crawler +** crawler-locomotive-wagon +*** products +- crawler-locomotive-wagon,1 +*** ingredients +- steel-plate,35 +- engine-unit,25 +- electronic-circuit,15 +- locomotive,1 + +* angels-vehicle-train-crawler +** crawler-locomotive-wagon-2 +*** products +- crawler-locomotive-wagon-2,1 +*** ingredients +- steel-plate,40 +- engine-unit,30 +- crawler-locomotive-wagon,1 +- speed-module,1 +- effectivity-module,1 + +* angels-vehicle-train-crawler +** crawler-locomotive-wagon-3 +*** products +- crawler-locomotive-wagon-3,1 +*** ingredients +- electric-engine-unit,40 +- low-density-structure,40 +- crawler-locomotive-wagon-2,1 +- speed-module-2,1 +- effectivity-module-2,1 + +* angels-vehicle-train-crawler +** crawler-locomotive-wagon-4 +*** products +- crawler-locomotive-wagon-4,1 +*** ingredients +- electric-engine-unit,45 +- low-density-structure,60 +- crawler-locomotive-wagon-3,1 +- speed-module-3,1 +- effectivity-module-3,1 + +* angels-vehicle-train-crawler +** crawler-locomotive-wagon-5 +*** products +- crawler-locomotive-wagon-5,1 +*** ingredients +- electric-engine-unit,50 +- rocket-control-unit,2 +- low-density-structure,80 +- crawler-locomotive-wagon-4,1 + +* angels-vehicle-train-crawler +** crawler-wagon +*** products +- crawler-wagon,1 +*** ingredients +- steel-plate,20 +- iron-gear-wheel,25 +- electronic-circuit,15 +- cargo-wagon,1 + +* angels-vehicle-train-crawler +** crawler-wagon-2 +*** products +- crawler-wagon-2,1 +*** ingredients +- steel-plate,25 +- iron-chest,5 +- crawler-wagon,1 +- effectivity-module,2 + +* angels-vehicle-train-crawler +** crawler-wagon-3 +*** products +- crawler-wagon-3,1 +*** ingredients +- low-density-structure,25 +- iron-chest,10 +- crawler-wagon-2,1 +- effectivity-module-2,2 + +* angels-vehicle-train-crawler +** crawler-wagon-4 +*** products +- crawler-wagon-4,1 +*** ingredients +- low-density-structure,35 +- steel-chest,5 +- crawler-wagon-3,1 +- effectivity-module-3,2 + +* angels-vehicle-train-crawler +** crawler-wagon-5 +*** products +- crawler-wagon-5,1 +*** ingredients +- low-density-structure,50 +- steel-chest,10 +- crawler-wagon-4,1 + +* angels-vehicle-train-crawler +** crawler-bot-wagon +*** products +- crawler-bot-wagon,1 +*** ingredients +- steel-plate,20 +- iron-gear-wheel,25 +- electronic-circuit,15 +- cargo-wagon,1 + +* angels-vehicle-train-crawler +** crawler-bot-wagon-2 +*** products +- crawler-bot-wagon-2,1 +*** ingredients +- steel-plate,25 +- iron-chest,5 +- crawler-bot-wagon,1 +- effectivity-module,2 + +* angels-vehicle-train-crawler +** crawler-bot-wagon-3 +*** products +- crawler-bot-wagon-3,1 +*** ingredients +- low-density-structure,25 +- steel-chest,5 +- crawler-bot-wagon-2,1 +- effectivity-module-2,2 + +* angels-vehicle-train-crawler +** crawler-bot-wagon-4 +*** products +- crawler-bot-wagon-4,1 +*** ingredients +- low-density-structure,35 +- logistic-chest-storage,5 +- crawler-bot-wagon-3,1 +- effectivity-module-3,2 + +* angels-vehicle-train-crawler +** crawler-bot-wagon-5 +*** products +- crawler-bot-wagon-5,1 +*** ingredients +- rocket-control-unit,2 +- low-density-structure,50 +- logistic-chest-buffer,5 +- crawler-bot-wagon-4,1 + +* angels-warehouse +** angels-warehouse +*** products +- angels-warehouse,1 +*** ingredients +- stone-brick,100 +- iron-plate,100 +- steel-plate,50 + +* angels-warehouse +** angels-warehouse-active-provider +*** products +- angels-warehouse-active-provider,1 +*** ingredients +- steel-plate,20 +- advanced-circuit,20 +- angels-warehouse,1 + +* angels-warehouse +** angels-warehouse-passive-provider +*** products +- angels-warehouse-passive-provider,1 +*** ingredients +- steel-plate,20 +- electronic-circuit,20 +- angels-warehouse,1 + +* angels-warehouse +** angels-warehouse-storage +*** products +- angels-warehouse-storage,1 +*** ingredients +- steel-plate,20 +- electronic-circuit,20 +- angels-warehouse,1 + +* angels-warehouse +** angels-warehouse-buffer +*** products +- angels-warehouse-buffer,1 +*** ingredients +- steel-plate,20 +- advanced-circuit,20 +- angels-warehouse,1 + +* angels-warehouse +** angels-warehouse-requester +*** products +- angels-warehouse-requester,1 +*** ingredients +- steel-plate,20 +- electronic-circuit,20 +- angels-warehouse,1 + +* angels-water-void +** angels-water-void-thermal-water +*** products +- water-void,1 +*** ingredients +- thermal-water,400 + +* angels-water-void +** angels-water-void-slag-slurry +*** products +- water-void,1 +*** ingredients +- slag-slurry,400 + +* angels-water-void +** angels-water-void-mineral-sludge +*** products +- water-void,1 +*** ingredients +- mineral-sludge,400 + +* angels-water-void +** angels-water-void-crystal-slurry +*** products +- water-void,1 +*** ingredients +- crystal-slurry,400 + +* angels-water-void +** angels-water-void-crystal-seedling +*** products +- water-void,1 +*** ingredients +- crystal-seedling,400 + +* angels-water-void +** angels-water-void-crystal-matrix +*** products +- water-void,1 +*** ingredients +- crystal-matrix,400 + +* angels-water-void +** angels-water-void-water +*** products +- water-void,1 +*** ingredients +- water,400 + +* angels-water-void +** angels-water-void-water-purified +*** products +- water-void,1 +*** ingredients +- water-purified,400 + +* angels-water-void +** angels-water-void-water-saline +*** products +- water-void,1 +*** ingredients +- water-saline,400 + +* angels-water-void +** angels-water-void-water-mineralized +*** products +- water-void,1 +*** ingredients +- water-mineralized,400 + +* angels-water-void +** angels-water-void-lithia-water +*** products +- water-void,1 +*** ingredients +- lithia-water,400 + +* angels-water-void +** angels-water-void-liquid-coolant +*** products +- water-void,1 +*** ingredients +- liquid-coolant,400 + +* angels-water-void +** angels-water-void-water-yellow-waste +*** products +- water-void,1 +*** ingredients +- water-yellow-waste,400 + +* angels-water-void +** angels-water-void-water-greenyellow-waste +*** products +- water-void,1 +*** ingredients +- water-greenyellow-waste,400 + +* angels-water-void +** angels-water-void-water-green-waste +*** products +- water-void,1 +*** ingredients +- water-green-waste,400 + +* angels-water-void +** angels-water-void-water-red-waste +*** products +- water-void,1 +*** ingredients +- water-red-waste,400 + +* angels-water-void +** angels-water-void-water-viscous-mud +*** products +- water-void,1 +*** ingredients +- water-viscous-mud,400 + +* angels-water-void +** angels-water-void-water-heavy-mud +*** products +- water-void,1 +*** ingredients +- water-heavy-mud,400 + +* angels-water-void +** angels-water-void-water-concentrated-mud +*** products +- water-void,1 +*** ingredients +- water-concentrated-mud,400 + +* angels-water-void +** angels-water-void-water-light-mud +*** products +- water-void,1 +*** ingredients +- water-light-mud,400 + +* angels-water-void +** angels-water-void-water-thin-mud +*** products +- water-void,1 +*** ingredients +- water-thin-mud,400 + +* angels-water-void +** angels-water-void-liquid-aqueous-sodium-hydroxide +*** products +- water-void,1 +*** ingredients +- liquid-aqueous-sodium-hydroxide,400 + +* angels-zinc +** zinc-ore-processing +*** products +- processed-zinc,2 +*** ingredients +- zinc-ore,4 + +* angels-zinc +** zinc-processed-processing +*** products +- pellet-zinc,4 +*** ingredients +- processed-zinc,3 + +* angels-zinc +** zinc-ore-processing-alt +*** products +- solid-zinc-oxide,8 +- gas-sulfur-dioxide,30 +*** ingredients +- zinc-ore,8 +- gas-oxygen,60 + +* angels-zinc +** pellet-zinc-smelting +*** products +- solid-zinc-oxide,24 +- gas-sulfur-dioxide,30 +*** ingredients +- pellet-zinc,8 +- gas-oxygen,60 + +* angels-zinc +** solid-zinc-oxide-smelting +*** products +- cathode-zinc,12 +*** ingredients +- solid-zinc-oxide,12 +- liquid-sulfuric-acid,40 + +* angels-zinc +** zinc-ore-smelting +*** products +- ingot-zinc,24 +- ingot-lead,6 +- gas-sulfur-dioxide,30 +*** ingredients +- zinc-ore,24 +- gas-oxygen,60 +- liquid-molten-lead,60 + +* angels-zinc +** processed-zinc-smelting +*** products +- ingot-zinc,24 +- gas-sulfur-dioxide,30 +*** ingredients +- processed-zinc,8 +- solid-carbon,6 +- gas-oxygen,60 + +* angels-zinc +** cathode-zinc-smelting +*** products +- ingot-zinc,24 +*** ingredients +- cathode-zinc,24 + +* angels-zinc +** powder-zinc +*** products +- powder-zinc,1 +*** ingredients +- ingot-zinc,1 + +* angels-zinc-casting +** molten-zinc-smelting +*** products +- liquid-molten-zinc,120 +*** ingredients +- ingot-zinc,12 + +* angels-zinc-casting +** roll-zinc-casting +*** products +- angels-roll-zinc,2 +*** ingredients +- liquid-molten-zinc,80 +- water,40 + +* angels-zinc-casting +** roll-zinc-casting-fast +*** products +- angels-roll-zinc,4 +- liquid-coolant-used,40 +*** ingredients +- liquid-molten-zinc,140 +- liquid-coolant,40 + +* angels-zinc-casting +** angels-plate-zinc +*** products +- zinc-plate,4 +*** ingredients +- liquid-molten-zinc,40 + +* angels-zinc-casting +** angels-roll-zinc-converting +*** products +- zinc-plate,4 +*** ingredients +- angels-roll-zinc,1 + +* belt +** loader +*** products +- loader,1 +*** ingredients +- iron-plate,5 +- iron-gear-wheel,5 +- electronic-circuit,5 +- transport-belt,5 +- inserter,5 + +* belt +** fast-loader +*** products +- fast-loader,1 +*** ingredients +- loader,1 +- fast-transport-belt,5 + +* belt +** express-loader +*** products +- express-loader,1 +*** ingredients +- fast-loader,1 +- express-transport-belt,5 + +* bio-arboretum +** tree-generator-1 +*** products +- tree-seed,4 +*** ingredients +- solid-soil,5 +- seedling,4 +- water,50 + +* bio-arboretum +** tree-generator-2 +*** products +- tree-seed,6 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- seedling,6 +- water,50 + +* bio-arboretum +** tree-generator-3 +*** products +- tree-seed,8 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- seedling,8 +- water,50 +- gas-carbon-dioxide,20 + +* bio-arboretum +** tree-arboretum-0 +*** products +- temperate-tree,1 +- swamp-tree,1 +- desert-tree,1 +*** ingredients +- solid-alienated-fertilizer,2 +- tree-seed,2 +- token-bio,16 +- water,50 + +* bio-arboretum +** bob-basic-greenhouse-cycle +*** products +- solid-tree,2-4 +*** ingredients +- seedling,10 +- water,20 + +* bio-arboretum +** bob-advanced-greenhouse-cycle +*** products +- solid-tree,4-8 +*** ingredients +- solid-fertilizer,5 +- seedling,10 +- water,20 + +* bio-arboretum +** tree-arboretum-1 +*** products +- solid-tree,4 +*** ingredients +- solid-soil,5 +- tree-seed,2 +- water,50 + +* bio-arboretum +** tree-arboretum-2 +*** products +- solid-tree,6 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- tree-seed,2 +- water,50 + +* bio-arboretum +** tree-arboretum-3 +*** products +- solid-tree,8 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- tree-seed,2 +- water,50 +- liquid-nutrient-pulp,10 + +* bio-arboretum-desert +** desert-tree-generator-1 +*** products +- tree-desert-seed,4 +*** ingredients +- solid-sand,5 +- seedling,4 +- water-saline,50 + +* bio-arboretum-desert +** desert-tree-generator-2 +*** products +- tree-desert-seed,6 +*** ingredients +- solid-sand,5 +- solid-fertilizer,1 +- seedling,6 +- water-saline,50 + +* bio-arboretum-desert +** desert-tree-generator-3 +*** products +- tree-desert-seed,8 +*** ingredients +- solid-sand,5 +- solid-fertilizer,1 +- seedling,8 +- water-saline,50 +- gas-nitrogen,20 + +* bio-arboretum-desert +** desert-tree-arboretum-0 +*** products +- desert-tree,1 +*** ingredients +- solid-alienated-fertilizer,2 +- tree-desert-seed,2 +- token-bio,16 +- water-saline,50 + +* bio-arboretum-desert +** desert-tree-arboretum-1 +*** products +- bio-rubber,4 +- solid-tree,2 +*** ingredients +- solid-sand,5 +- tree-desert-seed,2 +- water-saline,50 + +* bio-arboretum-desert +** desert-tree-arboretum-2 +*** products +- bio-rubber,7 +- solid-tree,3 +*** ingredients +- solid-sand,5 +- solid-fertilizer,1 +- tree-desert-seed,2 +- water-saline,50 + +* bio-arboretum-desert +** bio-rubber-tree +*** products +- bio-rubber,10 +*** ingredients +- desert-tree,1 + +* bio-arboretum-desert +** bio-rubber +*** products +- liquid-rubber,10 +*** ingredients +- bio-rubber,1 +- gas-acetone,40 + +* bio-arboretum-swamp +** swamp-tree-generator-1 +*** products +- tree-swamp-seed,4 +*** ingredients +- solid-mud,5 +- seedling,4 +- water-light-mud,50 + +* bio-arboretum-swamp +** swamp-tree-generator-2 +*** products +- tree-swamp-seed,6 +*** ingredients +- solid-mud,5 +- solid-fertilizer,1 +- seedling,6 +- water-light-mud,50 + +* bio-arboretum-swamp +** swamp-tree-generator-3 +*** products +- tree-swamp-seed,8 +*** ingredients +- solid-mud,5 +- solid-fertilizer,1 +- seedling,8 +- water-light-mud,50 +- gas-nitrogen,20 + +* bio-arboretum-swamp +** swamp-tree-arboretum-0 +*** products +- swamp-tree,1 +*** ingredients +- solid-alienated-fertilizer,2 +- tree-swamp-seed,2 +- token-bio,16 +- water-light-mud,50 + +* bio-arboretum-swamp +** swamp-tree-arboretum-1 +*** products +- bio-plastic,4 +- solid-tree,2 +*** ingredients +- solid-mud,5 +- tree-swamp-seed,2 +- water-light-mud,50 + +* bio-arboretum-swamp +** swamp-tree-arboretum-2 +*** products +- bio-plastic,7 +- solid-tree,3 +*** ingredients +- solid-mud,5 +- solid-fertilizer,1 +- tree-swamp-seed,2 +- water-light-mud,50 + +* bio-arboretum-swamp +** bio-plastic-tree +*** products +- bio-plastic,10 +*** ingredients +- swamp-tree,1 + +* bio-arboretum-swamp +** bio-plastic +*** products +- liquid-plastic,10 +*** ingredients +- bio-plastic,1 +- gas-acetone,40 + +* bio-arboretum-temperate +** temperate-tree-generator-1 +*** products +- tree-temperate-seed,4 +*** ingredients +- solid-soil,5 +- seedling,4 +- water,50 + +* bio-arboretum-temperate +** temperate-tree-generator-2 +*** products +- tree-temperate-seed,6 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- seedling,6 +- water,50 + +* bio-arboretum-temperate +** temperate-tree-generator-3 +*** products +- tree-temperate-seed,8 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- seedling,8 +- water,50 +- gas-carbon-dioxide,20 + +* bio-arboretum-temperate +** temperate-tree-arboretum-0 +*** products +- temperate-tree,1 +*** ingredients +- solid-alienated-fertilizer,2 +- tree-temperate-seed,2 +- token-bio,16 +- water,50 + +* bio-arboretum-temperate +** temperate-tree-arboretum-1 +*** products +- bio-resin,4 +- solid-tree,2 +*** ingredients +- solid-soil,5 +- tree-temperate-seed,2 +- water,50 + +* bio-arboretum-temperate +** temperate-tree-arboretum-2 +*** products +- bio-resin,7 +- solid-tree,3 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- tree-temperate-seed,2 +- water,50 + +* bio-arboretum-temperate +** bio-resin-tree +*** products +- bio-resin,10 +*** ingredients +- temperate-tree,1 + +* bio-arboretum-temperate +** bio-resin +*** products +- liquid-resin,10 +*** ingredients +- bio-resin,1 +- gas-ethanol,40 + +* bio-arboretum-temperate +** bio-resin-resin-liquification +*** products +- liquid-resin,10-40 +*** ingredients +- resin,4 +- gas-ethanol,100 + +* bio-arboretum-temperate +** bio-resin-wood-reprocessing +*** products +- resin,1 +*** ingredients +- wood,10 + +* bio-biter +** biter-small-keeping +*** products +- biter-small,3 +- biter-small,1 +- crystal-splinter-raw,4 +*** ingredients +- biter-small,4 +- bio-alien-processed-meat,2 +- liquid-nutrient-pulp,20 + +* bio-biter +** biter-small-breeding +*** products +- biter-queen-small,1 +- biter-queen-small,1 +- biter-small-egg,1 +- biter-small-egg,1 +*** ingredients +- biter-queen-small,2 +- bio-alien-processed-meat,2 +- liquid-nutrient-pulp,20 + +* bio-biter +** biter-medium-keeping +*** products +- biter-medium,3 +- biter-medium,1 +- crystal-shard-raw,4 +*** ingredients +- biter-medium,4 +- bio-alien-processed-meat,3 +- liquid-nutrient-pulp,40 + +* bio-biter +** biter-medium-breeding +*** products +- biter-queen-medium,1 +- biter-queen-medium,1 +- biter-medium-egg,1 +- biter-medium-egg,1 +*** ingredients +- biter-queen-medium,2 +- bio-alien-processed-meat,2 +- liquid-nutrient-pulp,40 + +* bio-biter +** biter-big-keeping +*** products +- biter-big,3 +- biter-big,1 +- crystal-full-raw,4 +*** ingredients +- biter-big,4 +- bio-alien-processed-meat,4 +- liquid-nutrient-pulp,60 + +* bio-biter +** biter-big-breeding +*** products +- biter-queen-big,1 +- biter-queen-big,1 +- biter-big-egg,1 +- biter-big-egg,1 +*** ingredients +- biter-queen-big,2 +- bio-alien-processed-meat,2 +- liquid-nutrient-pulp,60 + +* bio-biter-butchery +** biter-small-butchering +*** products +- bio-raw-meat,1 +- crystal-splinter-raw,1 +*** ingredients +- biter-small,1 + +* bio-biter-butchery +** biter-queen-small-butchering +*** products +- bio-raw-meat,1-2 +- crystal-splinter-raw,1 +*** ingredients +- biter-queen-small,1 + +* bio-biter-butchery +** biter-medium-butchering +*** products +- bio-raw-meat,1 +- crystal-shard-raw,1 +*** ingredients +- biter-medium,1 + +* bio-biter-butchery +** biter-queen-medium-butchering +*** products +- bio-raw-meat,1-2 +- crystal-shard-raw,1 +*** ingredients +- biter-queen-medium,1 + +* bio-biter-butchery +** biter-big-butchering +*** products +- bio-raw-meat,1 +- crystal-full-raw,1 +*** ingredients +- biter-big,1 + +* bio-biter-butchery +** biter-queen-big-butchering +*** products +- bio-raw-meat,1-2 +- crystal-full-raw,1 +*** ingredients +- biter-queen-big,1 + +* bio-biter-butchery +** alien-processed-meat +*** products +- bio-alien-processed-meat,1 +*** ingredients +- bio-raw-meat,1 +- alien-goo,2 + +* bio-biter-egg +** biter-small-eggsperiment +*** products +- biter-small-egg,1 +*** ingredients +- crystal-dust,1 +- bio-puffer-egg-3,1 +- crystal-seed,1 + +* bio-biter-egg +** biter-small +*** products +- biter-small,1 +- biter-queen-small,1 +*** ingredients +- biter-small-egg,1 +- bio-alien-processed-meat,1 +- liquid-nutrient-pulp,10 + +* bio-biter-egg +** biter-medium-eggsperiment +*** products +- biter-medium-egg,1 +*** ingredients +- bio-puffer-egg-4,1 +- crystal-seed,1 +- crystal-enhancer,1 +- crystal-splinter-raw,1 + +* bio-biter-egg +** biter-medium +*** products +- biter-medium,1 +- biter-queen-medium,1 +*** ingredients +- biter-medium-egg,1 +- bio-alien-processed-meat,1 +- liquid-nutrient-pulp,20 + +* bio-biter-egg +** biter-big-eggsperiment +*** products +- biter-big-egg,1 +*** ingredients +- bio-puffer-egg-5,1 +- crystal-seed,1 +- crystal-enhancer,1 +- crystal-shard-raw,1 + +* bio-biter-egg +** biter-big +*** products +- biter-big,1 +- biter-queen-big,1 +*** ingredients +- biter-big-egg,1 +- bio-alien-processed-meat,1 +- liquid-nutrient-pulp,30 + +* bio-biter-processing-crystal-full +** crystal-powder-from-dust +*** products +- crystal-powder,20 +- milling-drum-used,1 +*** ingredients +- crystal-dust,10 +- milling-drum,1 + +* bio-biter-processing-crystal-full +** crystal-powder-slurry +*** products +- crystal-slurry,1 +*** ingredients +- crystal-powder,1 +- water-purified,1 + +* bio-biter-processing-crystal-full +** crystal-full-cutting +*** products +- crystal-full-blue-cut,1 +- crystal-full-red-cut,1 +- crystal-full-green-cut,1 +- crystal-powder,1 +*** ingredients +- crystal-full-raw,1 + +* bio-biter-processing-crystal-full +** crystal-full-blue +*** products +- crystal-full-blue,1 +- crystal-grindstone,1 +*** ingredients +- crystal-grindstone,1 +- crystal-full-blue-cut,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-full +** crystal-full-red +*** products +- crystal-full-red,1 +- crystal-grindstone,1 +*** ingredients +- crystal-grindstone,1 +- crystal-full-red-cut,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-full +** crystal-full-green +*** products +- crystal-full-green,1 +- crystal-grindstone,1 +*** ingredients +- crystal-grindstone,1 +- crystal-full-green-cut,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-full +** crystal-full-harmonic +*** products +- crystal-full-harmonic,1 +*** ingredients +- crystal-full-blue,1 +- crystal-full-red,1 +- crystal-full-green,1 + +* bio-biter-processing-crystal-full +** crystal-powder-full-blue +*** products +- crystal-powder,15 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-full-blue-cut,5 + +* bio-biter-processing-crystal-full +** crystal-powder-full-red +*** products +- crystal-powder,15 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-full-red-cut,5 + +* bio-biter-processing-crystal-full +** crystal-powder-full-green +*** products +- crystal-powder,15 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-full-green-cut,5 + +* bio-biter-processing-crystal-shard +** crystal-shard-crystalization-1 +*** products +- crystal-shard-raw,1 +*** ingredients +- egg-shell-seed,1 +- liquid-polluted-fish-atmosphere,50 + +* bio-biter-processing-crystal-shard +** crystal-shard-crystalization-2 +*** products +- crystal-shard-raw,1 +*** ingredients +- egg-shell-seed,1 +- crystal-enhancer,1 +- liquid-polluted-fish-atmosphere,50 + +* bio-biter-processing-crystal-shard +** crystal-shard-cutting +*** products +- crystal-shard-blue-cut,1 +- crystal-shard-red-cut,1 +- crystal-shard-green-cut,1 +- crystal-powder,1 +*** ingredients +- crystal-shard-raw,1 + +* bio-biter-processing-crystal-shard +** crystal-shard-blue +*** products +- crystal-shard-blue,1 +- crystal-grindstone,1 +*** ingredients +- crystal-grindstone,1 +- crystal-shard-blue-cut,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-shard +** crystal-shard-red +*** products +- crystal-shard-red,1 +- crystal-grindstone,1 +*** ingredients +- crystal-grindstone,1 +- crystal-shard-red-cut,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-shard +** crystal-shard-green +*** products +- crystal-shard-green,1 +- crystal-grindstone,1 +*** ingredients +- crystal-grindstone,1 +- crystal-shard-green-cut,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-shard +** crystal-shard-harmonic +*** products +- crystal-shard-harmonic,1 +*** ingredients +- crystal-shard-blue,1 +- crystal-shard-red,1 +- crystal-shard-green,1 + +* bio-biter-processing-crystal-shard +** crystal-powder-shard-blue +*** products +- crystal-powder,10 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-shard-blue-cut,5 + +* bio-biter-processing-crystal-shard +** crystal-powder-shard-red +*** products +- crystal-powder,10 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-shard-red-cut,5 + +* bio-biter-processing-crystal-shard +** crystal-powder-shard-green +*** products +- crystal-powder,10 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-shard-green-cut,5 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-crystalization-1 +*** products +- crystal-splinter-raw,1 +*** ingredients +- liquid-polluted-fish-atmosphere,50 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-crystalization-2 +*** products +- crystal-splinter-raw,1 +*** ingredients +- crystal-seed,1 +- liquid-polluted-fish-atmosphere,50 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-cutting +*** products +- crystal-splinter-blue-cut,1 +- crystal-splinter-red-cut,1 +- crystal-splinter-green-cut,1 +- crystal-powder,1 +*** ingredients +- crystal-splinter-raw,1 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-blue +*** products +- crystal-splinter-blue,1 +- crystal-grindstone,1 +*** ingredients +- crystal-splinter-blue-cut,1 +- crystal-grindstone,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-red +*** products +- crystal-splinter-red,1 +- crystal-grindstone,1 +*** ingredients +- crystal-splinter-red-cut,1 +- crystal-grindstone,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-green +*** products +- crystal-splinter-green,1 +- crystal-grindstone,1 +*** ingredients +- crystal-splinter-green-cut,1 +- crystal-grindstone,1 +- crystal-slurry,2 + +* bio-biter-processing-crystal-splinter +** crystal-splinter-harmonic +*** products +- crystal-splinter-harmonic,1 +*** ingredients +- crystal-splinter-blue,1 +- crystal-splinter-red,1 +- crystal-splinter-green,1 + +* bio-biter-processing-crystal-splinter +** crystal-powder-splinter-blue +*** products +- crystal-powder,5 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-splinter-blue-cut,5 + +* bio-biter-processing-crystal-splinter +** crystal-powder-splinter-red +*** products +- crystal-powder,5 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-splinter-red-cut,5 + +* bio-biter-processing-crystal-splinter +** crystal-powder-splinter-green +*** products +- crystal-powder,5 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- crystal-splinter-green-cut,5 + +* bio-fish +** fish-keeping-0 +*** products +- raw-fish,2 +- raw-fish,1 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- raw-fish,4 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish +** fish-keeping-1 +*** products +- alien-fish-1-raw,3 +- alien-fish-1-raw,1 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- alien-fish-1-raw,4 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish +** fish-keeping-2 +*** products +- alien-fish-2-raw,3 +- alien-fish-2-raw,1 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- alien-fish-2-raw,4 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish +** fish-keeping-3 +*** products +- alien-fish-3-raw,3 +- alien-fish-3-raw,1 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- alien-fish-3-raw,4 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish +** liquid-fish-atmosphere +*** products +- liquid-fish-atmosphere,100 +*** ingredients +- water,50 +- water-saline,50 + +* bio-fish-breeding +** fish-breeding-0 +*** products +- raw-fish,2-4 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- raw-fish,2 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish-breeding +** fish-breeding-1 +*** products +- alien-fish-1-raw,5-10 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- algae-brown,2 +- alien-fish-1-raw,2 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish-breeding +** fish-breeding-2 +*** products +- alien-fish-2-raw,5-10 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- algae-green,2 +- alien-fish-2-raw,2 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish-breeding +** fish-breeding-3 +*** products +- alien-fish-3-raw,5-10 +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- alien-fish-3-raw,2 +- bio-raw-meat,2 +- liquid-nutrient-pulp,20 +- liquid-fish-atmosphere,100 + +* bio-fish-breeding +** liquid-polluted-fish-atmosphere +*** products +- liquid-polluted-fish-atmosphere,100 +*** ingredients +- bio-raw-meat,25 +- liquid-fish-atmosphere,100 + +* bio-fish-butchery +** fish-butchery-0 +*** products +- bio-raw-meat,1 +*** ingredients +- raw-fish,1 + +* bio-fish-butchery +** fish-butchery-1 +*** products +- bio-raw-meat,1 +*** ingredients +- alien-fish-1-raw,1 + +* bio-fish-butchery +** fish-butchery-2 +*** products +- bio-raw-meat,1 +*** ingredients +- alien-fish-2-raw,1 + +* bio-fish-butchery +** fish-butchery-3 +*** products +- bio-raw-meat,2 +*** ingredients +- alien-fish-3-raw,1 + +* bio-hogger +** hogger-hogging-1 +*** products +- bio-hogger-1,3-5 +- copper-ore,10 +*** ingredients +- iron-ore,10 +- iron-plate,1 +- bio-hogger-1,4 +- liquid-nutrient-pulp,20 + +* bio-hogger +** hogger-hogging-2 +*** products +- bio-hogger-2,3-5 +- copper-ore,10 +*** ingredients +- iron-ore,10 +- iron-plate,1 +- bio-hogger-2,4 +- liquid-nutrient-pulp,20 + +* bio-hogger +** hogger-hogging-3 +*** products +- bio-hogger-3,3-5 +- copper-ore,10 +*** ingredients +- iron-ore,10 +- iron-plate,1 +- bio-hogger-3,4 +- liquid-nutrient-pulp,20 + +* bio-hogger +** hogger-hogging-4 +*** products +- bio-hogger-4,3-5 +- copper-ore,10 +*** ingredients +- iron-ore,10 +- iron-plate,1 +- bio-hogger-4,4 +- liquid-nutrient-pulp,20 + +* bio-hogger +** hogger-hogging-5 +*** products +- bio-hogger-5,3-5 +- copper-ore,10 +*** ingredients +- iron-ore,10 +- iron-plate,1 +- bio-hogger-5,4 +- liquid-nutrient-pulp,20 + +* bio-hogger-breeding +** hogger-breeding-1 +*** products +- bio-hogger-1,2 +- bio-hogger-1,1 +- bio-hogger-2,1 +- bio-hogger-3,1 +- bio-hogger-4,1 +- bio-hogger-5,1 +*** ingredients +- iron-plate,1 +- bio-hogger-1,2 +- liquid-nutrient-pulp,20 + +* bio-hogger-breeding +** hogger-breeding-2 +*** products +- bio-hogger-2,2 +- bio-hogger-1,1 +- bio-hogger-2,1 +- bio-hogger-3,1 +- bio-hogger-4,1 +- bio-hogger-5,1 +*** ingredients +- iron-plate,1 +- bio-hogger-2,2 +- liquid-nutrient-pulp,20 + +* bio-hogger-breeding +** hogger-breeding-3 +*** products +- bio-hogger-3,2 +- bio-hogger-1,1 +- bio-hogger-2,1 +- bio-hogger-3,1 +- bio-hogger-4,1 +- bio-hogger-5,1 +*** ingredients +- iron-plate,1 +- bio-hogger-3,2 +- liquid-nutrient-pulp,20 + +* bio-hogger-breeding +** hogger-breeding-4 +*** products +- bio-hogger-4,2 +- bio-hogger-1,1 +- bio-hogger-2,1 +- bio-hogger-3,1 +- bio-hogger-4,1 +- bio-hogger-5,1 +*** ingredients +- iron-plate,1 +- bio-hogger-4,2 +- liquid-nutrient-pulp,20 + +* bio-hogger-breeding +** hogger-breeding-5 +*** products +- bio-hogger-5,2 +- bio-hogger-1,1 +- bio-hogger-2,1 +- bio-hogger-3,1 +- bio-hogger-4,1 +- bio-hogger-5,1 +*** ingredients +- iron-plate,1 +- bio-hogger-5,2 +- liquid-nutrient-pulp,20 + +* bio-hogger-butchery +** hogger-butchery-1 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-hogger-1,1 + +* bio-hogger-butchery +** hogger-butchery-2 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-hogger-2,1 + +* bio-hogger-butchery +** hogger-butchery-3 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-hogger-3,1 + +* bio-hogger-butchery +** hogger-butchery-4 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-hogger-4,1 + +* bio-hogger-butchery +** hogger-butchery-5 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-hogger-5,1 + +* bio-liquor +** liquid-pulping-liquor +*** products +- liquid-pulping-liquor,100 +*** ingredients +- gas-sulfur-dioxide,100 +- gas-oxygen,40 +- water,50 + +* bio-liquor +** brown-liquor-recovery +*** products +- solid-sodium-sulfate,1 +- water-red-waste,50 +*** ingredients +- solid-sodium-hydroxide,2 +- liquid-brown-liquor,50 + +* bio-liquor +** liquid-white-liquor +*** products +- liquid-white-liquor,40 +*** ingredients +- solid-sodium-hydroxide,2 +- solid-sodium-sulfate,2 +- water,40 + +* bio-liquor +** kraft-causting +*** products +- solid-limestone,4 +- liquid-white-liquor,55 +*** ingredients +- solid-lime,4 +- liquid-green-liquor,60 +- water,60 + +* bio-liquor +** kraft-recovery +*** products +- liquid-green-liquor,40 +*** ingredients +- liquid-black-liquor,40 + +* bio-paper +** solid-wood-pulp +*** products +- solid-wood-pulp,20 +*** ingredients +- solid-alginic-acid,5 +- cellulose-fiber,20 + +* bio-paper +** sulfite-pulping +*** products +- solid-wood-pulp,25 +- liquid-brown-liquor,75 +*** ingredients +- cellulose-fiber,20 +- liquid-pulping-liquor,75 +- gas-ammonia,25 +- water,50 + +* bio-paper +** kraft-cooking-washing +*** products +- solid-wood-pulp,30 +- liquid-black-liquor,35-40 +*** ingredients +- cellulose-fiber,20 +- liquid-white-liquor,40 + +* bio-paper +** paper-bleaching-1 +*** products +- solid-paper,4 +*** ingredients +- solid-wood-pulp,2 + +* bio-paper +** paper-bleaching-2 +*** products +- solid-paper,5 +- solid-sodium-hypochlorite,2 +*** ingredients +- solid-sodium-hydroxide,2 +- solid-wood-pulp,2 +- gas-chlorine,60 + +* bio-paper +** paper-bleaching-3 +*** products +- solid-paper,6 +- solid-sodium-carbonate,2 +- water-yellow-waste,100 +*** ingredients +- solid-sodium-hydroxide,2 +- solid-wood-pulp,2 +- gas-oxygen,60 +- gas-sulfur-dioxide,40 +- water,100 + +* bio-paper +** wooden-board-paper +*** products +- wooden-board,1 +*** ingredients +- solid-paper,2 + +* bio-plastic +** liquid-acetic-acid-catalyst +*** products +- catalyst-metal-carrier,1 +- liquid-acetic-acid,100 +*** ingredients +- catalyst-metal-red,1 +- gas-methanol,70 +- gas-carbon-monoxide,30 +- water-purified,50 + +* bio-plastic +** liquid-acetic-anhydride +*** products +- liquid-acetic-anhydride,150 +*** ingredients +- liquid-acetic-acid,100 +- gas-methanol,50 +- gas-carbon-monoxide,50 + +* bio-plastic +** liquid-acetate-mixture +*** products +- liquid-cellulose-acetate-mixture,100 +*** ingredients +- cellulose-fiber,10 +- liquid-acetic-acid,40 +- liquid-acetic-anhydride,40 +- liquid-sulfuric-acid,20 + +* bio-plastic +** liquid-cellulose-acetate +*** products +- liquid-cellulose-acetate,50 +- water-yellow-waste,20 +*** ingredients +- liquid-cellulose-acetate-mixture,50 +- water-purified,20 + +* bio-plastic +** bio-plastic-1 +*** products +- liquid-plastic,15 +*** ingredients +- liquid-cellulose-acetate,25 +- gas-acetone,25 + +* bio-plastic +** liquid-propionic-acid-catalyst +*** products +- catalyst-metal-carrier,1 +- liquid-propionic-acid,50 +*** ingredients +- catalyst-metal-green,1 +- gas-ethylene,50 +- gas-carbon-monoxide,50 +- water-purified,50 + +* bio-plastic +** bio-plastic-2 +*** products +- liquid-plastic,25 +*** ingredients +- cellulose-fiber,10 +- liquid-acetic-acid,25 +- liquid-propionic-acid,25 + +* bio-processing-alien-intermediate +** alien-spores +*** products +- alien-spores,70-80 +- water-yellow-waste,30-40 +*** ingredients +- liquid-polluted-fish-atmosphere,100 + +* bio-processing-alien-intermediate +** alien-bacteria +*** products +- alien-bacteria,1 +*** ingredients +- solid-calcium-carbonate,1 +- alien-spores,50 +- liquid-hydrochloric-acid,50 + +* bio-processing-alien-intermediate +** alien-goo +*** products +- alien-goo,5-10 +*** ingredients +- alien-bacteria,1 + +* bio-processing-alien-intermediate +** petri-dish +*** products +- petri-dish,2 +*** ingredients +- glass,1 + +* bio-processing-alien-intermediate +** substrate-dish +*** products +- substrate-dish,3 +*** ingredients +- paste-cellulose,1 +- petri-dish,3 + +* bio-processing-alien-intermediate +** seeded-dish +*** products +- seeded-dish,5 +*** ingredients +- alien-bacteria,1 +- substrate-dish,5 + +* bio-processing-alien-intermediate +** crystal-seed +*** products +- crystal-seed,1 +*** ingredients +- crystal-dust,1 +- seeded-dish,1 + +* bio-processing-alien-intermediate +** egg-shell-seed +*** products +- egg-shell-seed,1 +*** ingredients +- bio-puffer-egg-shell-powder,1 +- seeded-dish,1 + +* bio-processing-alien-intermediate +** crystal-enhancer +*** products +- crystal-enhancer,1 +*** ingredients +- catalysator-green,1 +- seeded-dish,1 +- crystal-powder,1 + +* bio-processing-alien-large +** alien-artifact-red-from-small +*** products +- alien-artifact-red,1 +*** ingredients +- small-alien-artifact-red,25 + +* bio-processing-alien-large +** alien-artifact-yellow-from-small +*** products +- alien-artifact-yellow,1 +*** ingredients +- small-alien-artifact-yellow,25 + +* bio-processing-alien-large +** alien-artifact-orange-from-small +*** products +- alien-artifact-orange,1 +*** ingredients +- small-alien-artifact-orange,25 + +* bio-processing-alien-large +** alien-artifact-blue-from-small +*** products +- alien-artifact-blue,1 +*** ingredients +- small-alien-artifact-blue,25 + +* bio-processing-alien-large +** alien-artifact-purple-from-small +*** products +- alien-artifact-purple,1 +*** ingredients +- small-alien-artifact-purple,25 + +* bio-processing-alien-large +** alien-artifact-green-from-small +*** products +- alien-artifact-green,1 +*** ingredients +- small-alien-artifact-green,25 + +* bio-processing-alien-large +** alien-artifact-from-small +*** products +- alien-artifact,1 +*** ingredients +- small-alien-artifact,25 + +* bio-processing-alien-large-convert +** alien-artifact-red-from-basic +*** products +- alien-artifact-red,5 +*** ingredients +- alien-artifact-red,1 +- alien-artifact,5 + +* bio-processing-alien-large-convert +** alien-artifact-yellow-from-basic +*** products +- alien-artifact-yellow,5 +*** ingredients +- alien-artifact-yellow,1 +- alien-artifact,5 + +* bio-processing-alien-large-convert +** alien-artifact-orange-from-basic +*** products +- alien-artifact-orange,5 +*** ingredients +- alien-artifact-orange,1 +- alien-artifact,5 + +* bio-processing-alien-large-convert +** alien-artifact-blue-from-basic +*** products +- alien-artifact-blue,5 +*** ingredients +- alien-artifact-blue,1 +- alien-artifact,5 + +* bio-processing-alien-large-convert +** alien-artifact-purple-from-basic +*** products +- alien-artifact-purple,5 +*** ingredients +- alien-artifact-purple,1 +- alien-artifact,5 + +* bio-processing-alien-large-convert +** alien-artifact-green-from-basic +*** products +- alien-artifact-green,5 +*** ingredients +- alien-artifact-green,1 +- alien-artifact,5 + +* bio-processing-alien-pre +** alien-pre-artifact-red +*** products +- alien-pre-artifact-red,1 +*** ingredients +- seeded-dish,1 +- paste-copper,1 +- ruby-4,1 + +* bio-processing-alien-pre +** alien-pre-artifact-yellow +*** products +- alien-pre-artifact-yellow,1 +*** ingredients +- seeded-dish,1 +- paste-gold,1 +- diamond-4,1 + +* bio-processing-alien-pre +** alien-pre-artifact-orange +*** products +- alien-pre-artifact-orange,1 +*** ingredients +- seeded-dish,1 +- paste-tungsten,1 +- topaz-4,1 + +* bio-processing-alien-pre +** alien-pre-artifact-blue +*** products +- alien-pre-artifact-blue,1 +*** ingredients +- seeded-dish,1 +- paste-cobalt,1 +- sapphire-4,1 + +* bio-processing-alien-pre +** alien-pre-artifact-purple +*** products +- alien-pre-artifact-purple,1 +*** ingredients +- seeded-dish,1 +- paste-titanium,1 +- amethyst-4,1 + +* bio-processing-alien-pre +** alien-pre-artifact-green +*** products +- alien-pre-artifact-green,1 +*** ingredients +- seeded-dish,1 +- paste-zinc,1 +- emerald-4,1 + +* bio-processing-alien-pre +** alien-pre-artifact-base +*** products +- alien-pre-artifact-base,1 +*** ingredients +- seeded-dish,1 +- paste-iron,1 + +* bio-processing-alien-small +** small-alien-artifact-red +*** products +- small-alien-artifact-red,1 +*** ingredients +- alien-pre-artifact-red,1 + +* bio-processing-alien-small +** small-alien-artifact-yellow +*** products +- small-alien-artifact-yellow,1 +*** ingredients +- alien-pre-artifact-yellow,1 + +* bio-processing-alien-small +** small-alien-artifact-orange +*** products +- small-alien-artifact-orange,1 +*** ingredients +- alien-pre-artifact-orange,1 + +* bio-processing-alien-small +** small-alien-artifact-blue +*** products +- small-alien-artifact-blue,1 +*** ingredients +- alien-pre-artifact-blue,1 + +* bio-processing-alien-small +** small-alien-artifact-purple +*** products +- small-alien-artifact-purple,1 +*** ingredients +- alien-pre-artifact-purple,1 + +* bio-processing-alien-small +** small-alien-artifact-green +*** products +- small-alien-artifact-green,1 +*** ingredients +- alien-pre-artifact-green,1 + +* bio-processing-alien-small +** small-alien-artifact +*** products +- small-alien-artifact,1 +*** ingredients +- alien-pre-artifact-base,1 + +* bio-processing-blocks +** temperate-upgrade +*** products +- temperate-upgrade,1 +*** ingredients +- clay-brick,5 +- token-bio,5 +- electronic-circuit,1 +- bronze-pipe,3 + +* bio-processing-blocks +** desert-upgrade +*** products +- desert-upgrade,1 +*** ingredients +- clay-brick,10 +- token-bio,5 +- electronic-circuit,1 + +* bio-processing-blocks +** swamp-upgrade +*** products +- swamp-upgrade,1 +*** ingredients +- token-bio,5 +- electronic-circuit,1 +- bronze-pipe,6 + +* bio-processing-blue +** algae-blue +*** products +- algae-blue,40 +*** ingredients +- water-yellow-waste,100 +- gas-carbon-dioxide,100 + +* bio-processing-blue +** blue-fiber-algae +*** products +- blue-cellulose-fiber,5 +*** ingredients +- algae-blue,10 + +* bio-processing-blue +** gas-ammonia-from-blue-fiber +*** products +- gas-ammonia,100 +*** ingredients +- blue-cellulose-fiber,20 + +* bio-processing-brown +** algae-brown +*** products +- algae-brown,40 +*** ingredients +- water-saline,100 + +* bio-processing-brown +** algae-brown-burning-wash +*** products +- solid-sodium-carbonate,1 +*** ingredients +- algae-brown,20 +- water-purified,50 + +* bio-processing-brown +** algae-brown-burning +*** products +- solid-lithium,2 +*** ingredients +- algae-brown,20 + +* bio-processing-brown +** solid-alginic-acid +*** products +- solid-alginic-acid,2 +*** ingredients +- algae-brown,10 + +* bio-processing-buildings-alien-a +** bio-refugium-fish +*** products +- bio-refugium-fish,1 +*** ingredients +- clay-brick,20 +- glass,10 +- bronze-alloy,6 +- electronic-circuit,5 +- bronze-pipe,75 + +* bio-processing-buildings-alien-a +** bio-butchery +*** products +- bio-butchery,1 +*** ingredients +- clay-brick,10 +- bronze-alloy,9 +- steel-gear-wheel,6 +- electronic-circuit,1 + +* bio-processing-buildings-alien-a +** bio-hatchery +*** products +- bio-hatchery,1 +*** ingredients +- small-lamp,3 +- aluminium-plate,8 +- concrete-brick,10 +- advanced-circuit,4 + +* bio-processing-buildings-alien-a +** bio-refugium-puffer +*** products +- bio-refugium-puffer,1 +*** ingredients +- aluminium-plate,16 +- glass,5 +- concrete-brick,15 +- advanced-circuit,4 +- brass-pipe,33 + +* bio-processing-buildings-alien-a +** bio-refugium-biter +*** products +- bio-refugium-biter,1 +*** ingredients +- reinforced-concrete-brick,95 +- titanium-plate,40 +- processing-unit,4 +- stone-wall,4 +- titanium-pipe,33 + +* bio-processing-buildings-alien-a +** bio-refugium-hogger +*** products +- bio-refugium-hogger,1 +*** ingredients +- clay-brick,15 +- steel-plate,12 +- electronic-circuit,4 +- steel-pipe,33 + +* bio-processing-buildings-nauvis-a +** algae-farm +*** products +- algae-farm,1 +*** ingredients +- stone-brick,55 +- iron-plate,33 +- basic-circuit-board,4 +- pipe,54 + +* bio-processing-buildings-nauvis-a +** algae-farm-2 +*** products +- algae-farm-2,1 +*** ingredients +- clay-brick,55 +- steel-plate,33 +- algae-farm,1 +- electronic-circuit,4 +- steel-pipe,54 + +* bio-processing-buildings-nauvis-a +** algae-farm-3 +*** products +- algae-farm-3,1 +*** ingredients +- clay-brick,55 +- bronze-alloy,33 +- algae-farm-2,1 +- electronic-circuit,4 +- bronze-pipe,54 + +* bio-processing-buildings-nauvis-a +** algae-farm-4 +*** products +- algae-farm-4,1 +*** ingredients +- aluminium-plate,44 +- concrete-brick,55 +- algae-farm-3,1 +- advanced-circuit,4 +- brass-pipe,54 + +* bio-processing-buildings-nauvis-a +** bio-generator-temperate-1 +*** products +- bio-generator-temperate-1,1 +*** ingredients +- clay-brick,5 +- steel-plate,6 +- temperate-tree,1 +- electronic-circuit,2 +- steel-pipe,9 + +* bio-processing-buildings-nauvis-a +** bio-generator-swamp-1 +*** products +- bio-generator-swamp-1,1 +*** ingredients +- clay-brick,5 +- steel-plate,6 +- swamp-tree,1 +- electronic-circuit,2 +- steel-pipe,9 + +* bio-processing-buildings-nauvis-a +** bio-generator-desert-1 +*** products +- bio-generator-desert-1,1 +*** ingredients +- clay-brick,5 +- steel-plate,6 +- desert-tree,1 +- electronic-circuit,2 +- steel-pipe,9 + +* bio-processing-buildings-nauvis-a +** bio-arboretum-1 +*** products +- bio-arboretum-1,1 +*** ingredients +- clay-brick,30 +- glass,6 +- steel-plate,18 +- electronic-circuit,2 +- steel-pipe,24 + +* bio-processing-buildings-nauvis-a +** bob-greenhouse +*** products +- bob-greenhouse,1 +*** ingredients +- stone,2 +- glass,4 +- iron-plate,5 + +* bio-processing-buildings-vegetabilis-a +** crop-farm +*** products +- crop-farm,1 +*** ingredients +- clay-brick,45 +- steel-plate,24 +- solid-soil,15 +- electronic-circuit,2 +- steel-pipe,9 + +* bio-processing-buildings-vegetabilis-a +** temperate-farm +*** products +- temperate-farm,1 +*** ingredients +- aluminium-plate,32 +- concrete-brick,45 +- temperate-upgrade,1 +- crop-farm,1 +- advanced-circuit,2 +- brass-pipe,9 + +* bio-processing-buildings-vegetabilis-a +** swamp-farm +*** products +- swamp-farm,1 +*** ingredients +- aluminium-plate,32 +- concrete-brick,45 +- swamp-upgrade,1 +- crop-farm,1 +- advanced-circuit,2 +- brass-pipe,9 + +* bio-processing-buildings-vegetabilis-a +** desert-farm +*** products +- desert-farm,1 +*** ingredients +- aluminium-plate,32 +- concrete-brick,45 +- desert-upgrade,1 +- crop-farm,1 +- advanced-circuit,2 +- brass-pipe,9 + +* bio-processing-buildings-vegetabilis-b +** seed-extractor +*** products +- seed-extractor,1 +*** ingredients +- clay-brick,5 +- steel-plate,3 +- steel-gear-wheel,6 +- basic-circuit-board,4 + +* bio-processing-buildings-vegetabilis-b +** composter +*** products +- composter,1 +*** ingredients +- clay-brick,10 +- steel-plate,6 +- steel-gear-wheel,6 +- electronic-circuit,2 +- wooden-chest,1 + +* bio-processing-buildings-vegetabilis-b +** bio-processor +*** products +- bio-processor,1 +*** ingredients +- clay-brick,25 +- steel-plate,15 +- steel-gear-wheel,12 +- electronic-circuit,8 + +* bio-processing-buildings-vegetabilis-b +** bio-press +*** products +- bio-press,1 +*** ingredients +- clay-brick,5 +- bronze-alloy,6 +- steel-gear-wheel,6 +- electronic-circuit,2 +- bronze-pipe,3 + +* bio-processing-buildings-vegetabilis-b +** nutrient-extractor +*** products +- nutrient-extractor,1 +*** ingredients +- clay-brick,5 +- bronze-alloy,3 +- steel-gear-wheel,6 +- electronic-circuit,2 +- bronze-pipe,6 + +* bio-processing-green +** algae-green-simple +*** products +- algae-green,25 +- algae-brown,5 +*** ingredients +- water,100 + +* bio-processing-green +** algae-green +*** products +- algae-green,50 +*** ingredients +- water-mineralized,80 +- gas-carbon-dioxide,80 + +* bio-processing-green +** cellulose-fiber-algae +*** products +- cellulose-fiber,5 +*** ingredients +- algae-green,10 + +* bio-processing-green +** paste-cellulose +*** products +- paste-cellulose,10 +*** ingredients +- solid-sodium-hydroxide,3 +- cellulose-fiber,5 +- gas-chlor-methane,10 + +* bio-processing-green +** gas-methanol-from-wood +*** products +- gas-methanol,100 +*** ingredients +- cellulose-fiber,20 + +* bio-processing-paste +** paste-copper +*** products +- paste-copper,1 +*** ingredients +- powder-copper,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-gold +*** products +- paste-gold,1 +*** ingredients +- powder-gold,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-tungsten +*** products +- paste-tungsten,1 +*** ingredients +- powdered-tungsten,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-cobalt +*** products +- paste-cobalt,1 +*** ingredients +- powder-cobalt,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-titanium +*** products +- paste-titanium,1 +*** ingredients +- powder-titanium,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-zinc +*** products +- paste-zinc,1 +*** ingredients +- powder-zinc,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-iron +*** products +- paste-iron,1 +*** ingredients +- powder-iron,2 +- paste-cellulose,1 + +* bio-processing-paste +** paste-silver +*** products +- paste-silver,1 +*** ingredients +- powder-silver,2 +- paste-cellulose,1 + +* bio-processing-red +** algae-red +*** products +- algae-red,40 +*** ingredients +- thermal-water,100 +- gas-ammonia,100 + +* bio-processing-red +** red-fiber-algae +*** products +- red-cellulose-fiber,5 +*** ingredients +- algae-red,10 + +* bio-processing-red +** solid-calcium-carbonate +*** products +- solid-calcium-carbonate,5 +*** ingredients +- red-cellulose-fiber,20 + +* bio-processing-wood +** wood-sawing-manual +*** products +- wood,5 +*** ingredients +- solid-tree,1 + +* bio-processing-wood +** wood-sawing-1 +*** products +- wood,6-8 +- solid-saw,1 +*** ingredients +- solid-saw,1 +- solid-tree,1 + +* bio-processing-wood +** wood-sawing-2 +*** products +- wood,6-8 +- solid-crystal-tipped-saw,1 +*** ingredients +- solid-crystal-tipped-saw,1 +- solid-tree,1 + +* bio-processing-wood +** wood-sawing-3 +*** products +- wood,6-8 +- solid-crystal-full-saw,1 +*** ingredients +- solid-crystal-full-saw,1 +- solid-tree,1 + +* bio-processing-wood +** cellulose-fiber-raw-wood +*** products +- cellulose-fiber,4 +*** ingredients +- wood,2 + +* bio-processing-wood +** wood-pellets +*** products +- wood-pellets,2 +*** ingredients +- cellulose-fiber,12 + +* bio-processing-wood +** wood-bricks +*** products +- wood-bricks,4 +*** ingredients +- wood-pellets,8 + +* bio-processing-wood +** gas-carbon-dioxide-from-wood +*** products +- gas-carbon-dioxide,70 +*** ingredients +- wood-pellets,1 + +* bio-processing-wood +** wood-charcoal +*** products +- wood-charcoal,3 +*** ingredients +- wood-pellets,2 + +* bio-processing-wood +** carbon-from-charcoal +*** products +- solid-carbon,2 +*** ingredients +- wood-charcoal,1 +- gas-oxygen,20 + +* bio-processor-fermentation +** fermentation-corn +*** products +- liquid-fermentation-raw,75 +*** ingredients +- solid-corn,10 +- water,50 + +* bio-processor-fermentation +** fermentation-fruit +*** products +- liquid-fermentation-raw,100 +*** ingredients +- solid-fruit,10 +- water,50 + +* bio-processor-fermentation +** aerobic-fermentation +*** products +- solid-compost,1 +- liquid-acetic-acid,50 +*** ingredients +- liquid-fermentation-raw,100 + +* bio-processor-fermentation +** anaerobic-fermentation +*** products +- solid-compost,1 +- gas-ethanol,50 +*** ingredients +- liquid-fermentation-raw,100 + +* bio-processor-fermentation +** ethanol-to-ethylene-synthesis +*** products +- gas-ethylene,50 +- water-yellow-waste,50 +*** ingredients +- gas-ethanol,50 +- liquid-sulfuric-acid,50 + +* bio-processor-nutrient +** solid-beans-nutrients +*** products +- liquid-nutrient-pulp,80 +*** ingredients +- solid-beans,5 + +* bio-processor-nutrient +** solid-corn-nutrients +*** products +- liquid-nutrient-pulp,70 +*** ingredients +- solid-corn,5 + +* bio-processor-nutrient +** solid-leafs-nutrients +*** products +- liquid-nutrient-pulp,10 +*** ingredients +- solid-leafs,5 + +* bio-processor-nutrient +** solid-nuts-nutrients +*** products +- liquid-nutrient-pulp,40 +*** ingredients +- solid-nuts,5 + +* bio-processor-nutrient +** solid-pips-nutrients +*** products +- liquid-nutrient-pulp,20 +*** ingredients +- solid-pips,5 + +* bio-processor-nutrient +** solid-fruit-nutrients +*** products +- liquid-nutrient-pulp,60 +*** ingredients +- solid-fruit,5 + +* bio-processor-nutrient +** nutrients-refining-1 +*** products +- liquid-fuel-oil,40 +- gas-acetone,40 +- gas-synthesis,20 +*** ingredients +- liquid-nutrient-pulp,100 + +* bio-processor-nutrient +** nutrients-refining-2 +*** products +- liquid-fuel-oil,60 +- liquid-glycerol,40 +*** ingredients +- liquid-nutrient-pulp,100 + +* bio-processor-nutrient +** nutrients-refining-3 +*** products +- gas-acetone,60 +- gas-ethanol,30 +- gas-butane,10 +*** ingredients +- liquid-nutrient-pulp,100 + +* bio-processor-press-fish +** fish-pressing-0 +*** products +- fish-pulp,5 +- liquid-raw-fish-oil,200 +*** ingredients +- raw-fish,1 + +* bio-processor-press-fish +** fish-pressing-1 +*** products +- fish-pulp,1 +- liquid-raw-fish-oil,200 +*** ingredients +- alien-fish-1-raw,1 + +* bio-processor-press-fish +** fish-pressing-2 +*** products +- fish-pulp,2 +- liquid-raw-fish-oil,100 +*** ingredients +- alien-fish-2-raw,1 + +* bio-processor-press-fish +** fish-pressing-3 +*** products +- fish-pulp,1 +- liquid-raw-fish-oil,50 +*** ingredients +- alien-fish-3-raw,1 + +* bio-processor-press-fish +** liquid-raw-fish-oil-filtering-1 +*** products +- filter-frame,1 +- liquid-fish-oil,100 +- liquid-mineral-oil,100 +*** ingredients +- filter-coal,1 +- liquid-raw-fish-oil,150 +- thermal-water,50 + +* bio-processor-press-fish +** liquid-raw-fish-oil-filtering-2 +*** products +- filter-ceramic-used,1 +- liquid-fish-oil,125 +- liquid-mineral-oil,75 +*** ingredients +- filter-ceramic,1 +- liquid-raw-fish-oil,150 +- thermal-water,50 + +* bio-processor-press-fish +** liquid-fish-oil-refining +*** products +- liquid-fermentation-raw,40 +- lubricant,60 +*** ingredients +- liquid-fish-oil,100 + +* bio-processor-press-fish +** advanced-liquid-fish-oil-refining +*** products +- liquid-fermentation-raw,75 +- liquid-mineral-oil,25 +*** ingredients +- liquid-fish-oil,100 + +* bio-processor-press-fish +** fish-pulp-nutrients +*** products +- liquid-nutrient-pulp,20 +*** ingredients +- fish-pulp,5 + +* bio-processor-press-vegetables +** liquid-raw-vegetable-oil-nuts +*** products +- liquid-raw-vegetable-oil,50 +*** ingredients +- solid-nuts,10 + +* bio-processor-press-vegetables +** liquid-raw-vegetable-oil-pips +*** products +- liquid-raw-vegetable-oil,40 +*** ingredients +- solid-pips,10 + +* bio-processor-press-vegetables +** liquid-raw-vegetable-oil-beans +*** products +- liquid-raw-vegetable-oil,30 +*** ingredients +- solid-beans,10 + +* bio-processor-press-vegetables +** liquid-raw-vegetable-oil-filtering-1 +*** products +- filter-frame,1 +- liquid-vegetable-oil,160 +- liquid-nutrient-pulp,40 +*** ingredients +- filter-coal,1 +- liquid-raw-vegetable-oil,100 +- water-purified,100 + +* bio-processor-press-vegetables +** liquid-raw-vegetable-oil-filtering-2 +*** products +- filter-ceramic-used,1 +- liquid-vegetable-oil,180 +- liquid-nutrient-pulp,20 +*** ingredients +- filter-ceramic,1 +- liquid-raw-vegetable-oil,100 +- water-purified,100 + +* bio-processor-press-vegetables +** liquid-vegetable-oil-refining +*** products +- liquid-fuel-oil,70 +- liquid-mineral-oil,30 +*** ingredients +- liquid-vegetable-oil,100 + +* bio-puffer-1 +** puffer-puffing-1 +*** products +- bio-puffer-1,3 +- bio-puffer-1,1 +- gas-acid,220 +*** ingredients +- bio-puffer-1,4 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- gas-compressed-air,100 + +* bio-puffer-1 +** puffer-puffing-2 +*** products +- bio-puffer-2,3 +- bio-puffer-2,1 +- gas-acid,20 +- gas-raw-1,200 +*** ingredients +- bio-puffer-2,4 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- gas-ammonia,100 + +* bio-puffer-1 +** puffer-puffing-3 +*** products +- bio-puffer-3,3 +- bio-puffer-3,1 +- gas-acid,20 +- gas-urea,200 +*** ingredients +- bio-puffer-3,4 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- gas-carbon-monoxide,100 + +* bio-puffer-1 +** puffer-puffing-4 +*** products +- bio-puffer-4,3 +- bio-puffer-4,1 +- gas-acid,20 +- gas-synthesis,200 +*** ingredients +- bio-puffer-4,4 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- gas-sulfur-dioxide,100 + +* bio-puffer-1 +** puffer-puffing-5 +*** products +- bio-puffer-5,3 +- bio-puffer-5,1 +- gas-acid,20 +- gas-hydrazine,200 +*** ingredients +- bio-puffer-5,4 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- gas-hydrogen-chloride,100 + +* bio-puffer-1 +** gas-puffer-atmosphere +*** products +- gas-puffer-atmosphere,60 +*** ingredients +- gas-sulfur-dioxide,20 +- gas-hydrogen-fluoride,10 +- gas-oxygen,10 + +* bio-puffer-2 +** puffer-puffing-23 +*** products +- bio-puffer-2,1 +- bio-puffer-2,1 +- bio-puffer-3,1 +- bio-puffer-3,1 +- gas-puffer-atmosphere,100 +*** ingredients +- bio-puffer-2,2 +- bio-puffer-3,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- gas-acid,100 + +* bio-puffer-2 +** puffer-puffing-12 +*** products +- bio-puffer-1,1 +- bio-puffer-1,1 +- bio-puffer-2,1 +- bio-puffer-2,1 +- gas-acid,20 +- gas-hydrogen-sulfide,100 +*** ingredients +- bio-puffer-1,2 +- bio-puffer-2,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- water-yellow-waste,100 + +* bio-puffer-2 +** puffer-puffing-13 +*** products +- bio-puffer-1,1 +- bio-puffer-1,1 +- bio-puffer-3,1 +- bio-puffer-3,1 +- gas-acid,20 +- gas-ammonia,100 +*** ingredients +- bio-puffer-1,2 +- bio-puffer-3,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- water-red-waste,100 + +* bio-puffer-2 +** puffer-puffing-14 +*** products +- bio-puffer-1,1 +- bio-puffer-1,1 +- bio-puffer-4,1 +- bio-puffer-4,1 +- gas-acid,20 +- gas-hydrogen-fluoride,100 +*** ingredients +- bio-puffer-1,2 +- bio-puffer-4,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- water-greenyellow-waste,100 + +* bio-puffer-2 +** puffer-puffing-15 +*** products +- bio-puffer-1,1 +- bio-puffer-1,1 +- bio-puffer-5,1 +- bio-puffer-5,1 +- gas-acid,20 +- gas-hydrogen-chloride,100 +*** ingredients +- bio-puffer-1,2 +- bio-puffer-5,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 +- water-green-waste,100 + +* bio-puffer-breeding-1 +** puffer-breeding-1 +*** products +- bio-puffer-1,2 +- bio-puffer-egg-1,1 +- bio-puffer-egg-2,1 +- bio-puffer-egg-3,1 +- bio-puffer-egg-4,1 +- bio-puffer-egg-5,1 +- gas-acid,20 +*** ingredients +- solid-beans,5 +- bio-puffer-1,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-1 +** puffer-breeding-2 +*** products +- bio-puffer-2,2 +- bio-puffer-egg-1,1 +- bio-puffer-egg-2,1 +- bio-puffer-egg-3,1 +- bio-puffer-egg-4,1 +- bio-puffer-egg-5,1 +- gas-acid,20 +*** ingredients +- solid-leafs,5 +- bio-puffer-2,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-1 +** puffer-breeding-3 +*** products +- bio-puffer-3,2 +- bio-puffer-egg-1,1 +- bio-puffer-egg-2,1 +- bio-puffer-egg-3,1 +- bio-puffer-egg-4,1 +- bio-puffer-egg-5,1 +- gas-acid,20 +*** ingredients +- solid-nuts,5 +- bio-puffer-3,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-1 +** puffer-breeding-4 +*** products +- bio-puffer-4,2 +- bio-puffer-egg-1,1 +- bio-puffer-egg-2,1 +- bio-puffer-egg-3,1 +- bio-puffer-egg-4,1 +- bio-puffer-egg-5,1 +- gas-acid,20 +*** ingredients +- solid-pips,5 +- bio-puffer-4,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-1 +** puffer-breeding-5 +*** products +- bio-puffer-5,2 +- bio-puffer-egg-1,1 +- bio-puffer-egg-2,1 +- bio-puffer-egg-3,1 +- bio-puffer-egg-4,1 +- bio-puffer-egg-5,1 +- gas-acid,20 +*** ingredients +- solid-fruit,5 +- bio-puffer-5,2 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-2 +** puffer-breeding-23 +*** products +- bio-puffer-2,1 +- bio-puffer-3,1 +- bio-puffer-egg-1,1 +- gas-acid,20 +*** ingredients +- solid-fruit,5 +- bio-puffer-2,1 +- bio-puffer-3,1 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-2 +** puffer-breeding-12 +*** products +- bio-puffer-1,1 +- bio-puffer-2,1 +- bio-puffer-egg-2,1 +- gas-acid,20 +*** ingredients +- solid-pips,5 +- bio-puffer-1,1 +- bio-puffer-2,1 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-2 +** puffer-breeding-13 +*** products +- bio-puffer-1,1 +- bio-puffer-3,1 +- bio-puffer-egg-3,1 +- gas-acid,20 +*** ingredients +- solid-beans,5 +- bio-puffer-1,1 +- bio-puffer-3,1 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-2 +** puffer-breeding-14 +*** products +- bio-puffer-1,1 +- bio-puffer-4,1 +- bio-puffer-egg-4,1 +- gas-acid,20 +*** ingredients +- solid-corn,5 +- bio-puffer-1,1 +- bio-puffer-4,1 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-breeding-2 +** puffer-breeding-15 +*** products +- bio-puffer-1,1 +- bio-puffer-5,1 +- bio-puffer-egg-5,1 +- gas-acid,20 +*** ingredients +- solid-leafs,5 +- bio-puffer-1,1 +- bio-puffer-5,1 +- liquid-nutrient-pulp,20 +- gas-puffer-atmosphere,20 + +* bio-puffer-butchery +** puffer-butchery-1 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-puffer-1,1 + +* bio-puffer-butchery +** puffer-butchery-2 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-puffer-2,1 + +* bio-puffer-butchery +** puffer-butchery-3 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-puffer-3,1 + +* bio-puffer-butchery +** puffer-butchery-4 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-puffer-4,1 + +* bio-puffer-butchery +** puffer-butchery-5 +*** products +- bio-raw-meat,1 +*** ingredients +- bio-puffer-5,1 + +* bio-puffer-egg +** puffer-egg-1 +*** products +- bio-puffer-egg-shell,1 +- bio-puffer-1,1 +- bio-puffer-2,1 +*** ingredients +- bio-puffer-egg-1,1 + +* bio-puffer-egg +** puffer-egg-2 +*** products +- bio-puffer-egg-shell,1 +- bio-puffer-2,1 +- bio-puffer-1,1 +*** ingredients +- bio-puffer-egg-2,1 + +* bio-puffer-egg +** puffer-egg-3 +*** products +- bio-puffer-egg-shell,1 +- bio-puffer-3,1 +- bio-puffer-1,1 +*** ingredients +- bio-puffer-egg-3,1 + +* bio-puffer-egg +** puffer-egg-4 +*** products +- bio-puffer-egg-shell,1 +- bio-puffer-4,1 +- bio-puffer-1,1 +*** ingredients +- bio-puffer-egg-4,1 + +* bio-puffer-egg +** puffer-egg-5 +*** products +- bio-puffer-egg-shell,1 +- bio-puffer-5,1 +- bio-puffer-1,1 +*** ingredients +- bio-puffer-egg-5,1 + +* bio-puffer-egg +** bio-puffer-egg-shell-powder +*** products +- bio-puffer-egg-shell-powder,2 +- milling-drum-used,1 +*** ingredients +- milling-drum,1 +- bio-puffer-egg-shell,2 + +* bio-wood +** solid-soil +*** products +- solid-soil,1 +*** ingredients +- solid-mud,1 +- solid-compost,1 + +* bio-wood +** solid-soil-alternative +*** products +- solid-soil,1 +*** ingredients +- solid-sand,1 +- solid-compost,2 + +* bio-wood +** solid-fertilizer +*** products +- solid-fertilizer,1 +*** ingredients +- solid-compost,2 +- gas-urea,20 + +* bio-wood +** bob-fertiliser +*** products +- solid-fertilizer,1 +*** ingredients +- liquid-nitric-acid,10 +- gas-ammonia,10 +- gas-urea,20 + +* bio-wood +** solid-alienated-fertilizer +*** products +- solid-alienated-fertilizer,1 +*** ingredients +- solid-fertilizer,1 +- alien-goo,5 + +* bio-wood +** solid-saw +*** products +- solid-saw,1 +*** ingredients +- iron-plate,1 + +* bio-wood +** solid-crystal-tipped-saw +*** products +- solid-crystal-tipped-saw,1 +*** ingredients +- solid-saw,1 +- crystal-splinter-harmonic,1 + +* bio-wood +** solid-crystal-full-saw +*** products +- solid-crystal-full-saw,1 +*** ingredients +- solid-crystal-tipped-saw,1 +- crystal-shard-harmonic,1 + +* bio-wood +** bob-seedling +*** products +- seedling,1-9 +*** ingredients +- wood,1 + +* bio-yield-module +** angels-bio-yield-module +*** products +- angels-bio-yield-module,1 +*** ingredients +- solder,1 +- token-bio,1 +- effectivity-module,1 +- productivity-module,1 + +* bio-yield-module +** angels-bio-yield-module-2 +*** products +- angels-bio-yield-module-2,1 +*** ingredients +- solder,2 +- token-bio,1 +- effectivity-module-2,1 +- productivity-module-2,1 + +* bio-yield-module +** angels-bio-yield-module-3 +*** products +- angels-bio-yield-module-3,1 +*** ingredients +- solder,3 +- token-bio,1 +- effectivity-module-3,1 +- productivity-module-3,1 + +* bio-yield-module +** angels-bio-yield-module-4 +*** products +- angels-bio-yield-module-4,1 +*** ingredients +- solder,4 +- token-bio,1 +- effectivity-module-4,1 +- productivity-module-4,1 + +* bio-yield-module +** angels-bio-yield-module-5 +*** products +- angels-bio-yield-module-5,1 +*** ingredients +- solder,6 +- token-bio,1 +- effectivity-module-5,1 +- productivity-module-5,1 + +* bio-yield-module +** angels-bio-yield-module-6 +*** products +- angels-bio-yield-module-6,1 +*** ingredients +- solder,7 +- token-bio,1 +- effectivity-module-6,1 +- productivity-module-6,1 + +* bio-yield-module +** angels-bio-yield-module-7 +*** products +- angels-bio-yield-module-7,1 +*** ingredients +- solder,8 +- token-bio,1 +- effectivity-module-7,1 +- productivity-module-7,1 + +* bio-yield-module +** angels-bio-yield-module-8 +*** products +- angels-bio-yield-module-8,1 +*** ingredients +- solder,10 +- token-bio,1 +- effectivity-module-8,1 +- productivity-module-8,1 + +* bob-alien-resource +** alien-blue-alloy +*** products +- alien-blue-alloy,10 +*** ingredients +- tungsten-plate,10 +- alien-artifact-blue,1 + +* bob-alien-resource +** alien-orange-alloy +*** products +- alien-orange-alloy,10 +*** ingredients +- steel-plate,10 +- alien-artifact-orange,1 + +* bob-alien-resource +** alien-acid +*** products +- alien-acid,100 +*** ingredients +- alien-artifact-purple,1 +- liquid-sulfuric-acid,100 + +* bob-alien-resource +** alien-explosive +*** products +- alien-explosive,100 +*** ingredients +- coal,6 +- sulfur,6 +- alien-artifact-yellow,1 + +* bob-alien-resource +** alien-poison +*** products +- alien-poison,100 +*** ingredients +- coal,6 +- alien-artifact-green,1 +- liquid-nitric-acid,60 + +* bob-alien-resource +** alien-fire +*** products +- alien-fire,100 +*** ingredients +- alien-artifact-red,1 +- liquid-naphtha,60 +- liquid-fuel-oil,60 + +* bob-alloy +** solder-alloy +*** products +- solder-alloy,11 +*** ingredients +- copper-plate,1 +- silver-plate,1 +- tin-plate,9 + +* bob-alloy +** solder-alloy-lead +*** products +- solder-alloy,11 +*** ingredients +- lead-plate,7 +- tin-plate,4 + +* bob-alloy +** bob-tungsten-plate +*** products +- tungsten-plate,5 +*** ingredients +- powdered-tungsten,4 +- nickel-plate,1 + +* bob-assembly-machine +** burner-assembling-machine +*** products +- burner-assembling-machine,1 +*** ingredients +- iron-plate,9 +- iron-gear-wheel,5 + +* bob-assembly-machine +** steam-assembling-machine +*** products +- steam-assembling-machine,1 +*** ingredients +- iron-plate,10 +- iron-gear-wheel,10 +- pipe,5 + +* bob-assembly-machine +** assembling-machine-1 +*** products +- assembling-machine-1,1 +*** ingredients +- iron-plate,9 +- iron-gear-wheel,5 +- basic-circuit-board,3 + +* bob-assembly-machine +** assembling-machine-2 +*** products +- assembling-machine-2,1 +*** ingredients +- assembling-machine-1,1 +- steel-plate,2 +- iron-gear-wheel,5 +- electronic-circuit,3 + +* bob-assembly-machine +** assembling-machine-3 +*** products +- assembling-machine-3,1 +*** ingredients +- assembling-machine-2,1 +- steel-plate,9 +- steel-gear-wheel,5 +- advanced-circuit,3 + +* bob-assembly-machine +** assembling-machine-4 +*** products +- assembling-machine-4,1 +*** ingredients +- assembling-machine-3,1 +- aluminium-plate,9 +- brass-gear-wheel,5 +- steel-bearing,5 +- advanced-circuit,3 + +* bob-assembly-machine +** assembling-machine-5 +*** products +- assembling-machine-5,1 +*** ingredients +- assembling-machine-4,1 +- titanium-plate,9 +- titanium-gear-wheel,5 +- titanium-bearing,5 +- processing-unit,3 + +* bob-assembly-machine +** assembling-machine-6 +*** products +- assembling-machine-6,1 +*** ingredients +- assembling-machine-5,1 +- tungsten-carbide,5 +- nitinol-alloy,5 +- nitinol-gear-wheel,5 +- nitinol-bearing,5 +- advanced-processing-unit,3 + +* bob-assembly-machine +** electronics-machine-1 +*** products +- electronics-machine-1,1 +*** ingredients +- iron-plate,5 +- iron-gear-wheel,5 +- basic-circuit-board,5 + +* bob-assembly-machine +** electronics-machine-2 +*** products +- electronics-machine-2,1 +*** ingredients +- electronics-machine-1,1 +- steel-plate,5 +- steel-gear-wheel,5 +- steel-bearing,5 +- advanced-circuit,5 + +* bob-assembly-machine +** electronics-machine-3 +*** products +- electronics-machine-3,1 +*** ingredients +- electronics-machine-2,1 +- titanium-plate,5 +- titanium-gear-wheel,5 +- titanium-bearing,5 +- processing-unit,5 + +* bob-bearings +** steel-bearing-ball +*** products +- steel-bearing-ball,12 +*** ingredients +- steel-plate,1 + +* bob-bearings +** cobalt-steel-bearing-ball +*** products +- cobalt-steel-bearing-ball,12 +*** ingredients +- cobalt-steel-alloy,1 + +* bob-bearings +** titanium-bearing-ball +*** products +- titanium-bearing-ball,12 +*** ingredients +- titanium-plate,1 + +* bob-bearings +** ceramic-bearing-ball +*** products +- ceramic-bearing-ball,12 +*** ingredients +- silicon-nitride,1 + +* bob-bearings +** nitinol-bearing-ball +*** products +- nitinol-bearing-ball,12 +*** ingredients +- nitinol-alloy,1 + +* bob-bearings +** steel-bearing +*** products +- steel-bearing,2 +*** ingredients +- steel-plate,1 +- steel-bearing-ball,16 + +* bob-bearings +** cobalt-steel-bearing +*** products +- cobalt-steel-bearing,2 +*** ingredients +- cobalt-steel-alloy,1 +- cobalt-steel-bearing-ball,16 + +* bob-bearings +** titanium-bearing +*** products +- titanium-bearing,2 +*** ingredients +- titanium-plate,1 +- titanium-bearing-ball,16 +- lubricant,10 + +* bob-bearings +** ceramic-bearing +*** products +- ceramic-bearing,2 +*** ingredients +- silicon-nitride,1 +- ceramic-bearing-ball,16 +- lubricant,10 + +* bob-bearings +** nitinol-bearing +*** products +- nitinol-bearing,2 +*** ingredients +- nitinol-alloy,1 +- nitinol-bearing-ball,16 +- lubricant,10 + +* bob-cargo-wagon +** cargo-wagon +*** products +- cargo-wagon,1 +*** ingredients +- iron-plate,20 +- steel-plate,20 +- iron-gear-wheel,10 + +* bob-cargo-wagon +** bob-cargo-wagon-2 +*** products +- bob-cargo-wagon-2,1 +*** ingredients +- invar-alloy,20 +- steel-gear-wheel,12 +- steel-bearing,8 +- cargo-wagon,1 + +* bob-cargo-wagon +** bob-cargo-wagon-3 +*** products +- bob-cargo-wagon-3,1 +*** ingredients +- titanium-plate,20 +- titanium-gear-wheel,12 +- titanium-bearing,8 +- bob-cargo-wagon-2,1 + +* bob-cargo-wagon +** bob-armoured-cargo-wagon +*** products +- bob-armoured-cargo-wagon,1 +*** ingredients +- titanium-plate,25 +- cargo-wagon,1 + +* bob-cargo-wagon +** bob-armoured-cargo-wagon-2 +*** products +- bob-armoured-cargo-wagon-2,1 +*** ingredients +- silicon-nitride,15 +- tungsten-carbide,15 +- titanium-gear-wheel,12 +- titanium-bearing,8 +- bob-armoured-cargo-wagon,1 + +* bob-fluid +** hydrogen-sulfide +*** products +- gas-hydrogen-sulfide,50 +*** ingredients +- sulfur,5 +- gas-hydrogen,80 + +* bob-fluid +** sulfur-dioxide +*** products +- gas-sulfur-dioxide,50 +*** ingredients +- sulfur,5 +- gas-oxygen,50 + +* bob-fluid +** coal-cracking +*** products +- liquid-naphtha,12 +*** ingredients +- coal,2 +- water-purified,15 + +* bob-fluid +** ferric-chloride-solution +*** products +- liquid-ferric-chloride-solution,50 +*** ingredients +- iron-ore,1 +- gas-hydrogen-chloride,30 + +* bob-fluid +** ammonia +*** products +- gas-ammonia,20 +*** ingredients +- gas-nitrogen,10 +- gas-hydrogen,24 + +* bob-fluid +** dinitrogen-tetroxide +*** products +- gas-dinitrogen-tetroxide,8 +*** ingredients +- gas-nitrogen-dioxide,20 + +* bob-fluid +** glycerol +*** products +- liquid-glycerol,10 +*** ingredients +- liquid-fuel-oil,10 + +* bob-fluid +** bob-heavy-water +*** products +- liquid-water-heavy,0.5 +- water-purified,99.5 +*** ingredients +- water,100 +- gas-hydrogen-sulfide,1 + +* bob-fluid +** hydrazine +*** products +- gas-hydrazine,8 +- water-purified,4 +*** ingredients +- gas-ammonia,20 +- gas-hydrogen-peroxide,4 + +* bob-fluid +** hydrogen-chloride +*** products +- gas-hydrogen-chloride,25 +*** ingredients +- gas-chlorine,13 +- gas-hydrogen,10 + +* bob-fluid +** hydrogen-peroxide +*** products +- gas-hydrogen-peroxide,8 +*** ingredients +- gas-hydrogen,16 +- gas-oxygen,20 + +* bob-fluid +** petroleum-gas-cracking +*** products +- gas-hydrogen,250 +*** ingredients +- water-purified,20 +- gas-methane,5 + +* bob-fluid +** nitric-acid +*** products +- liquid-nitric-acid,20 +*** ingredients +- gas-nitrogen-dioxide,20 +- gas-hydrogen-peroxide,20 + +* bob-fluid +** nitric-oxide +*** products +- gas-nitrogen-monoxide,20 +- water-purified,12 +*** ingredients +- gas-ammonia,20 +- gas-oxygen,25 + +* bob-fluid +** nitrogen-dioxide +*** products +- gas-nitrogen-dioxide,20 +*** ingredients +- gas-nitrogen-monoxide,20 +- gas-oxygen,10 + +* bob-fluid +** nitrogen +*** products +- gas-nitrogen,20 +- gas-oxygen,5 +*** ingredients +- gas-oxygen,25 + +* bob-fluid +** pure-water +*** products +- water-purified,100 +*** ingredients +- water,100 + +* bob-fluid +** pure-water-from-lithia +*** products +- water-purified,100 +*** ingredients +- lithia-water,100 + +* bob-fluid +** tungstic-acid +*** products +- solid-calcium-chloride,1 +- liquid-tungstic-acid,20 +*** ingredients +- tungsten-ore,2 +- gas-hydrogen-chloride,25 + +* bob-fluid +** petroleum-gas-sweetening +*** products +- gas-methane,20 +- gas-hydrogen-sulfide,10 +*** ingredients +- sour-gas,20 + +* bob-fluid +** sulfuric-acid-2 +*** products +- liquid-sulfuric-acid,50 +*** ingredients +- gas-sulfur-dioxide,50 +- gas-hydrogen-peroxide,50 + +* bob-fluid +** sulfuric-acid-3 +*** products +- liquid-sulfuric-acid,50 +*** ingredients +- gas-hydrogen-sulfide,50 +- gas-oxygen,100 + +* bob-fluid +** ammoniated-brine +*** products +- ammoniated-brine,10 +*** ingredients +- water-saline,10 +- gas-ammonia,25 + +* bob-fluid +** brine +*** products +- water-saline,10 +*** ingredients +- solid-salt,1 +- water-purified,10 + +* bob-fluid +** carbon-dioxide +*** products +- gas-carbon-dioxide,25 +*** ingredients +- solid-carbon,1 +- gas-oxygen,25 + +* bob-fluid-electrolysis +** brine-electrolysis +*** products +- solid-sodium-hydroxide,1 +- gas-chlorine,25 +- gas-hydrogen,20 +*** ingredients +- water-saline,10 + +* bob-fluid-electrolysis +** salt-water-electrolysis +*** products +- solid-sodium-hydroxide,1 +- gas-chlorine,25 +- gas-hydrogen,20 +*** ingredients +- solid-salt,1 +- water-purified,10 + +* bob-fluid-electrolysis +** sodium-chlorate +*** products +- solid-sodium-chlorate,1 +- gas-hydrogen,60 +*** ingredients +- solid-salt,1 +- water-purified,30 + +* bob-fluid-electrolysis +** sodium-perchlorate +*** products +- solid-sodium-perchlorate,1 +- gas-hydrogen,20 +*** ingredients +- solid-sodium-chlorate,1 +- water-purified,10 + +* bob-fluid-electrolysis +** water-electrolysis +*** products +- gas-hydrogen,20 +- gas-oxygen,12.5 +*** ingredients +- water-purified,10 + +* bob-fluid-pump +** bob-liquid-air +*** products +- gas-oxygen,100 +*** ingredients +- + +* bob-fluid-wagon +** fluid-wagon +*** products +- fluid-wagon,1 +*** ingredients +- steel-plate,16 +- storage-tank,1 +- iron-gear-wheel,10 +- pipe,8 + +* bob-fluid-wagon +** bob-fluid-wagon-2 +*** products +- bob-fluid-wagon-2,1 +*** ingredients +- invar-alloy,16 +- storage-tank-2,1 +- steel-gear-wheel,12 +- steel-bearing,8 +- fluid-wagon,1 + +* bob-fluid-wagon +** bob-fluid-wagon-3 +*** products +- bob-fluid-wagon-3,1 +*** ingredients +- titanium-plate,16 +- storage-tank-3,1 +- titanium-gear-wheel,12 +- titanium-bearing,8 +- bob-fluid-wagon-2,1 + +* bob-fluid-wagon +** bob-armoured-fluid-wagon +*** products +- bob-armoured-fluid-wagon,1 +*** ingredients +- titanium-plate,25 +- fluid-wagon,1 + +* bob-fluid-wagon +** bob-armoured-fluid-wagon-2 +*** products +- bob-armoured-fluid-wagon-2,1 +*** ingredients +- silicon-nitride,15 +- tungsten-carbide,15 +- storage-tank-3,1 +- titanium-gear-wheel,12 +- titanium-bearing,8 +- bob-armoured-fluid-wagon,1 + +* bob-fuel-cells +** empty-nuclear-fuel-cell +*** products +- empty-nuclear-fuel-cell,10 +*** ingredients +- lead-plate,5 +- steel-plate,2 + +* bob-fuel-cells +** plutonium-fuel-cell +*** products +- plutonium-fuel-cell,10 +*** ingredients +- empty-nuclear-fuel-cell,10 +- uranium-238,19 +- plutonium-239,1 + +* bob-fuel-cells +** thorium-fuel-cell +*** products +- thorium-fuel-cell,10 +*** ingredients +- empty-nuclear-fuel-cell,10 +- uranium-235,1 +- thorium-232,19 + +* bob-fuel-cells +** thorium-plutonium-fuel-cell +*** products +- thorium-plutonium-fuel-cell,10 +*** ingredients +- empty-nuclear-fuel-cell,10 +- plutonium-239,1 +- thorium-232,19 + +* bob-fuel-cells +** thorium-fuel-reprocessing +*** products +- thorium-232,4 +- uranium-235,3 +- empty-nuclear-fuel-cell,10 +- angels-muon-fusion-catalyst,1 +*** ingredients +- used-up-thorium-fuel-cell,10 + +* bob-fuel-cells +** deuterium-fuel-cell +*** products +- deuterium-fuel-cell,10 +*** ingredients +- empty-nuclear-fuel-cell,10 +- angels-muon-fusion-catalyst,1 +- gas-deuterium,190 + +* bob-fuel-cells +** deuterium-fuel-cell-2 +*** products +- deuterium-fuel-cell-2,10 +*** ingredients +- empty-nuclear-fuel-cell,10 +- angels-muon-fusion-catalyst,5 +- gas-deuterium,250 + +* bob-fuel-cells +** deuterium-fuel-reprocessing +*** products +- empty-nuclear-fuel-cell,10 +- lithium,1 +- angels-muon-fusion-catalyst,1 +*** ingredients +- used-up-deuterium-fuel-cell,10 + +* bob-gears +** iron-gear-wheel +*** products +- iron-gear-wheel,1 +*** ingredients +- iron-plate,2 + +* bob-gears +** steel-gear-wheel +*** products +- steel-gear-wheel,1 +*** ingredients +- steel-plate,1 + +* bob-gears +** brass-gear-wheel +*** products +- brass-gear-wheel,1 +*** ingredients +- brass-alloy,1 + +* bob-gears +** cobalt-steel-gear-wheel +*** products +- cobalt-steel-gear-wheel,1 +*** ingredients +- cobalt-steel-alloy,1 + +* bob-gears +** titanium-gear-wheel +*** products +- titanium-gear-wheel,1 +*** ingredients +- titanium-plate,1 + +* bob-gears +** tungsten-gear-wheel +*** products +- tungsten-gear-wheel,1 +*** ingredients +- tungsten-plate,1 + +* bob-gears +** nitinol-gear-wheel +*** products +- nitinol-gear-wheel,1 +*** ingredients +- nitinol-alloy,1 + +* bob-gems-crystallization +** angelsore7-crystallization-3 +*** products +- ruby-ore,1 +*** ingredients +- catalysator-green,1 +- crystal-seedling,50 + +* bob-gems-crystallization +** angelsore7-crystallization-1 +*** products +- sapphire-ore,1 +*** ingredients +- catalysator-green,1 +- crystal-seedling,50 + +* bob-gems-crystallization +** angelsore7-crystallization-4 +*** products +- emerald-ore,1 +*** ingredients +- catalysator-green,1 +- crystal-seedling,50 + +* bob-gems-crystallization +** angelsore7-crystallization-5 +*** products +- amethyst-ore,1 +*** ingredients +- catalysator-green,1 +- crystal-seedling,50 + +* bob-gems-crystallization +** angelsore7-crystallization-2 +*** products +- topaz-ore,1 +*** ingredients +- catalysator-green,1 +- crystal-seedling,50 + +* bob-gems-crystallization +** angelsore7-crystallization-6 +*** products +- diamond-ore,1 +*** ingredients +- catalysator-green,1 +- crystal-seedling,50 + +* bob-gems-cut +** bob-ruby-4 +*** products +- ruby-4,1 +*** ingredients +- ruby-3,1 +- grinding-wheel,1 +- water,10 + +* bob-gems-cut +** bob-sapphire-4 +*** products +- sapphire-4,1 +*** ingredients +- sapphire-3,1 +- grinding-wheel,1 +- water,10 + +* bob-gems-cut +** bob-emerald-4 +*** products +- emerald-4,1 +*** ingredients +- emerald-3,1 +- grinding-wheel,1 +- water,10 + +* bob-gems-cut +** bob-amethyst-4 +*** products +- amethyst-4,1 +*** ingredients +- amethyst-3,1 +- grinding-wheel,1 +- water,10 + +* bob-gems-cut +** bob-topaz-4 +*** products +- topaz-4,1 +*** ingredients +- topaz-3,1 +- grinding-wheel,1 +- water,10 + +* bob-gems-cut +** bob-diamond-4 +*** products +- diamond-4,1 +*** ingredients +- diamond-3,1 +- grinding-wheel,1 +- water,10 + +* bob-gems-cut +** grinding-wheel +*** products +- grinding-wheel,2 +*** ingredients +- silicon-carbide,5 +- steel-plate,1 + +* bob-gems-cut +** crystal-grindstone +*** products +- crystal-grindstone,1 +*** ingredients +- grinding-wheel,1 +- crystal-powder,1 + +* bob-gems-polished +** bob-ruby-5 +*** products +- ruby-5,1 +*** ingredients +- ruby-4,1 +- polishing-wheel,1 +- polishing-compound,1 + +* bob-gems-polished +** bob-sapphire-5 +*** products +- sapphire-5,1 +*** ingredients +- sapphire-4,1 +- polishing-wheel,1 +- polishing-compound,1 + +* bob-gems-polished +** bob-emerald-5 +*** products +- emerald-5,1 +*** ingredients +- emerald-4,1 +- polishing-wheel,1 +- polishing-compound,1 + +* bob-gems-polished +** bob-amethyst-5 +*** products +- amethyst-5,1 +*** ingredients +- amethyst-4,1 +- polishing-wheel,1 +- polishing-compound,1 + +* bob-gems-polished +** bob-topaz-5 +*** products +- topaz-5,1 +*** ingredients +- topaz-4,1 +- polishing-wheel,1 +- polishing-compound,1 + +* bob-gems-polished +** bob-diamond-5 +*** products +- diamond-5,1 +*** ingredients +- diamond-4,1 +- polishing-wheel,1 +- polishing-compound,1 + +* bob-gems-polished +** polishing-wheel +*** products +- polishing-wheel,2 +*** ingredients +- steel-plate,1 +- wood,5 + +* bob-gems-polished +** polishing-compound +*** products +- polishing-compound,2 +*** ingredients +- alumina,1 +- liquid-mineral-oil,15 + +* bob-gems-raw +** bob-ruby-3 +*** products +- ruby-3,1 +*** ingredients +- ruby-ore,1 + +* bob-gems-raw +** bob-sapphire-3 +*** products +- sapphire-3,1 +*** ingredients +- sapphire-ore,1 + +* bob-gems-raw +** bob-emerald-3 +*** products +- emerald-3,1 +*** ingredients +- emerald-ore,1 + +* bob-gems-raw +** bob-amethyst-3 +*** products +- amethyst-3,1 +*** ingredients +- amethyst-ore,1 + +* bob-gems-raw +** bob-topaz-3 +*** products +- topaz-3,1 +*** ingredients +- topaz-ore,1 + +* bob-gems-raw +** bob-diamond-3 +*** products +- diamond-3,1 +*** ingredients +- diamond-ore,1 + +* bob-locomotive +** locomotive +*** products +- locomotive,1 +*** ingredients +- steel-plate,30 +- engine-unit,20 +- electronic-circuit,10 + +* bob-locomotive +** bob-locomotive-2 +*** products +- bob-locomotive-2,1 +*** ingredients +- invar-alloy,10 +- steel-gear-wheel,20 +- steel-bearing,16 +- advanced-circuit,5 +- locomotive,1 + +* bob-locomotive +** bob-locomotive-3 +*** products +- bob-locomotive-3,1 +*** ingredients +- titanium-plate,10 +- titanium-gear-wheel,20 +- titanium-bearing,16 +- processing-unit,5 +- bob-locomotive-2,1 + +* bob-locomotive +** bob-armoured-locomotive +*** products +- bob-armoured-locomotive,1 +*** ingredients +- titanium-plate,25 +- locomotive,1 + +* bob-locomotive +** bob-armoured-locomotive-2 +*** products +- bob-armoured-locomotive-2,1 +*** ingredients +- silicon-nitride,15 +- tungsten-carbide,15 +- titanium-gear-wheel,20 +- titanium-bearing,16 +- processing-unit,5 +- bob-armoured-locomotive,1 + +* bob-logistic-tier-0 +** basic-transport-belt +*** products +- basic-transport-belt,2 +*** ingredients +- iron-plate,1 +- iron-gear-wheel,1 + +* bob-logistic-tier-0 +** basic-underground-belt +*** products +- basic-underground-belt,2 +*** ingredients +- stone,2 +- wood,2 +- basic-transport-belt,5 + +* bob-logistic-tier-0 +** basic-splitter +*** products +- basic-splitter,1 +*** ingredients +- copper-cable,4 +- wood,4 +- iron-gear-wheel,2 +- basic-transport-belt,5 + +* bob-logistic-tier-0 +** burner-inserter +*** products +- burner-inserter,1 +*** ingredients +- iron-plate,1 +- iron-gear-wheel,1 + +* bob-logistic-tier-0 +** steam-inserter +*** products +- steam-inserter,1 +*** ingredients +- burner-inserter,1 +- pipe,1 + +* bob-logistic-tier-1 +** transport-belt +*** products +- transport-belt,1 +*** ingredients +- tin-plate,2 +- iron-gear-wheel,2 +- basic-transport-belt,1 + +* bob-logistic-tier-1 +** underground-belt +*** products +- underground-belt,2 +*** ingredients +- tin-plate,14 +- iron-gear-wheel,20 +- basic-underground-belt,2 + +* bob-logistic-tier-1 +** splitter +*** products +- splitter,1 +*** ingredients +- tin-plate,8 +- iron-gear-wheel,14 +- basic-circuit-board,5 +- basic-splitter,1 + +* bob-logistic-tier-1 +** inserter +*** products +- inserter,1 +*** ingredients +- iron-plate,1 +- iron-gear-wheel,1 +- basic-circuit-board,1 + +* bob-logistic-tier-1 +** yellow-filter-inserter +*** products +- yellow-filter-inserter,1 +*** ingredients +- electronic-circuit,4 +- inserter,1 + +* bob-logistic-tier-2 +** fast-transport-belt +*** products +- fast-transport-belt,1 +*** ingredients +- bronze-alloy,2 +- steel-gear-wheel,4 +- transport-belt,1 + +* bob-logistic-tier-2 +** fast-underground-belt +*** products +- fast-underground-belt,2 +*** ingredients +- bronze-alloy,14 +- steel-gear-wheel,20 +- underground-belt,2 + +* bob-logistic-tier-2 +** fast-splitter +*** products +- fast-splitter,1 +*** ingredients +- bronze-alloy,8 +- steel-gear-wheel,14 +- electronic-circuit,5 +- splitter,1 + +* bob-logistic-tier-2 +** long-handed-inserter +*** products +- long-handed-inserter,1 +*** ingredients +- bronze-alloy,1 +- steel-gear-wheel,1 +- electronic-circuit,1 +- inserter,1 + +* bob-logistic-tier-2 +** red-filter-inserter +*** products +- red-filter-inserter,1 +*** ingredients +- bronze-alloy,1 +- steel-gear-wheel,1 +- electronic-circuit,1 +- yellow-filter-inserter,1 + +* bob-logistic-tier-2 +** red-stack-inserter +*** products +- red-stack-inserter,1 +*** ingredients +- bronze-alloy,3 +- steel-gear-wheel,5 +- long-handed-inserter,1 + +* bob-logistic-tier-2 +** red-stack-filter-inserter +*** products +- red-stack-filter-inserter,1 +*** ingredients +- electronic-circuit,5 +- red-stack-inserter,1 + +* bob-logistic-tier-3 +** express-transport-belt +*** products +- express-transport-belt,1 +*** ingredients +- aluminium-plate,2 +- cobalt-steel-gear-wheel,4 +- cobalt-steel-bearing,4 +- fast-transport-belt,1 + +* bob-logistic-tier-3 +** express-underground-belt +*** products +- express-underground-belt,2 +*** ingredients +- aluminium-plate,14 +- cobalt-steel-gear-wheel,20 +- cobalt-steel-bearing,20 +- fast-underground-belt,2 + +* bob-logistic-tier-3 +** express-splitter +*** products +- express-splitter,1 +*** ingredients +- aluminium-plate,8 +- cobalt-steel-gear-wheel,14 +- cobalt-steel-bearing,12 +- advanced-circuit,5 +- fast-splitter,1 + +* bob-logistic-tier-3 +** fast-inserter +*** products +- fast-inserter,1 +*** ingredients +- aluminium-plate,1 +- cobalt-steel-gear-wheel,1 +- cobalt-steel-bearing,1 +- advanced-circuit,1 +- long-handed-inserter,1 + +* bob-logistic-tier-3 +** filter-inserter +*** products +- filter-inserter,1 +*** ingredients +- aluminium-plate,1 +- cobalt-steel-gear-wheel,1 +- cobalt-steel-bearing,1 +- advanced-circuit,5 +- red-filter-inserter,1 + +* bob-logistic-tier-3 +** stack-inserter +*** products +- stack-inserter,1 +*** ingredients +- aluminium-plate,4 +- cobalt-steel-gear-wheel,6 +- cobalt-steel-bearing,5 +- advanced-circuit,1 +- red-stack-inserter,1 + +* bob-logistic-tier-3 +** stack-filter-inserter +*** products +- stack-filter-inserter,1 +*** ingredients +- aluminium-plate,4 +- cobalt-steel-gear-wheel,6 +- cobalt-steel-bearing,6 +- advanced-circuit,6 +- red-stack-filter-inserter,1 + +* bob-logistic-tier-4 +** turbo-transport-belt +*** products +- turbo-transport-belt,1 +*** ingredients +- titanium-plate,2 +- titanium-gear-wheel,4 +- titanium-bearing,4 +- express-transport-belt,1 + +* bob-logistic-tier-4 +** turbo-underground-belt +*** products +- turbo-underground-belt,2 +*** ingredients +- titanium-plate,14 +- titanium-gear-wheel,20 +- titanium-bearing,20 +- express-underground-belt,2 + +* bob-logistic-tier-4 +** turbo-splitter +*** products +- turbo-splitter,1 +*** ingredients +- titanium-plate,8 +- titanium-gear-wheel,14 +- titanium-bearing,12 +- processing-unit,5 +- express-splitter,1 + +* bob-logistic-tier-4 +** turbo-inserter +*** products +- turbo-inserter,1 +*** ingredients +- titanium-plate,1 +- titanium-gear-wheel,1 +- titanium-bearing,1 +- processing-unit,1 +- fast-inserter,1 + +* bob-logistic-tier-4 +** turbo-filter-inserter +*** products +- turbo-filter-inserter,1 +*** ingredients +- titanium-plate,1 +- titanium-gear-wheel,1 +- titanium-bearing,1 +- processing-unit,5 +- filter-inserter,1 + +* bob-logistic-tier-4 +** turbo-stack-inserter +*** products +- turbo-stack-inserter,1 +*** ingredients +- titanium-plate,4 +- titanium-gear-wheel,6 +- titanium-bearing,6 +- processing-unit,1 +- stack-inserter,1 + +* bob-logistic-tier-4 +** turbo-stack-filter-inserter +*** products +- turbo-stack-filter-inserter,1 +*** ingredients +- titanium-plate,4 +- titanium-gear-wheel,6 +- titanium-bearing,6 +- processing-unit,6 +- stack-filter-inserter,1 + +* bob-logistic-tier-5 +** ultimate-transport-belt +*** products +- ultimate-transport-belt,1 +*** ingredients +- nitinol-alloy,2 +- nitinol-gear-wheel,4 +- nitinol-bearing,4 +- turbo-transport-belt,1 + +* bob-logistic-tier-5 +** ultimate-underground-belt +*** products +- ultimate-underground-belt,2 +*** ingredients +- nitinol-alloy,14 +- nitinol-gear-wheel,20 +- nitinol-bearing,20 +- turbo-underground-belt,2 + +* bob-logistic-tier-5 +** ultimate-splitter +*** products +- ultimate-splitter,1 +*** ingredients +- nitinol-alloy,8 +- nitinol-gear-wheel,14 +- nitinol-bearing,12 +- advanced-processing-unit,5 +- turbo-splitter,1 + +* bob-logistic-tier-5 +** express-inserter +*** products +- express-inserter,1 +*** ingredients +- nitinol-alloy,1 +- nitinol-gear-wheel,1 +- nitinol-bearing,1 +- advanced-processing-unit,1 +- turbo-inserter,1 + +* bob-logistic-tier-5 +** express-filter-inserter +*** products +- express-filter-inserter,1 +*** ingredients +- nitinol-alloy,1 +- nitinol-gear-wheel,1 +- nitinol-bearing,1 +- advanced-processing-unit,5 +- turbo-filter-inserter,1 + +* bob-logistic-tier-5 +** express-stack-inserter +*** products +- express-stack-inserter,1 +*** ingredients +- nitinol-alloy,4 +- nitinol-gear-wheel,6 +- nitinol-bearing,6 +- advanced-processing-unit,1 +- turbo-stack-inserter,1 + +* bob-logistic-tier-5 +** express-stack-filter-inserter +*** products +- express-stack-filter-inserter,1 +*** ingredients +- nitinol-alloy,4 +- nitinol-gear-wheel,6 +- nitinol-bearing,6 +- advanced-processing-unit,6 +- turbo-stack-filter-inserter,1 + +* bob-material-chemical +** salt +*** products +- solid-salt,1 +*** ingredients +- water,25 + +* bob-material-chemical +** carbon +*** products +- solid-carbon,2 +*** ingredients +- coal,1 +- water,5 + +* bob-material-chemical +** cobalt-plate +*** products +- cobalt-plate,1 +*** ingredients +- cobalt-oxide,1 +- liquid-sulfuric-acid,10 + +* bob-material-chemical +** cobalt-oxide-from-copper +*** products +- copper-plate,7-11 +- cobalt-oxide,1-3 +*** ingredients +- copper-ore,7 +- solid-limestone,1 +- solid-carbon,1 +- gas-hydrogen,5 + +* bob-material-chemical +** silver-from-lead +*** products +- lead-plate,7-11 +- silver-ore,1-3 +*** ingredients +- lead-oxide,7 +- nickel-plate,1 +- solid-carbon,3 + +* bob-material-chemical +** cobalt-oxide +*** products +- cobalt-oxide,2 +*** ingredients +- cobalt-ore,2 +- solid-limestone,1 + +* bob-material-chemical +** tungsten-oxide +*** products +- tungsten-oxide,1 +*** ingredients +- liquid-tungstic-acid,10 + +* bob-material-chemical +** alumina +*** products +- alumina,1 +*** ingredients +- bauxite-ore,1 +- solid-sodium-hydroxide,1 + +* bob-material-chemical +** powdered-tungsten +*** products +- powdered-tungsten,1 +*** ingredients +- tungsten-oxide,1 +- gas-hydrogen,15 + +* bob-material-chemical +** bob-lead-plate +*** products +- lead-plate,2 +*** ingredients +- lead-oxide,2 +- solid-carbon,1 + +* bob-material-chemical +** bob-gold-plate +*** products +- gold-plate,1 +*** ingredients +- gold-ore,1 +- gas-chlorine,3 + +* bob-material-electrolysis +** bob-nickel-plate +*** products +- nickel-plate,1 +- gas-sulfur-dioxide,10 +*** ingredients +- nickel-ore,1 +- gas-oxygen,8 + +* bob-material-electrolysis +** bob-titanium-plate +*** products +- titanium-plate,2 +*** ingredients +- rutile-ore,2 +- solid-carbon,1 +- solid-calcium-chloride,2 + +* bob-material-electrolysis +** bob-zinc-plate +*** products +- zinc-plate,1 +*** ingredients +- zinc-ore,1 +- liquid-sulfuric-acid,10 + +* bob-material-electrolysis +** bob-aluminium-plate +*** products +- aluminium-plate,2 +*** ingredients +- alumina,2 +- solid-carbon,1 + +* bob-material-electrolysis +** bob-silicon-plate +*** products +- angels-mono-silicon,2 +*** ingredients +- quartz,2 +- solid-carbon,1 +- solid-calcium-chloride,2 + +* bob-nuclear +** thorium-processing +*** products +- thorium-232,1 +*** ingredients +- thorium-ore,10 + +* bob-pump +** air-pump +*** products +- air-pump,1 +*** ingredients +- iron-plate,2 +- iron-gear-wheel,2 +- electronic-circuit,2 +- copper-pipe,2 + +* bob-pump +** air-pump-2 +*** products +- air-pump-2,1 +*** ingredients +- air-pump,1 +- steel-plate,2 +- steel-gear-wheel,4 +- advanced-circuit,3 +- bronze-pipe,2 + +* bob-pump +** air-pump-3 +*** products +- air-pump-3,1 +*** ingredients +- air-pump-2,1 +- titanium-plate,2 +- titanium-gear-wheel,4 +- titanium-bearing,4 +- processing-unit,3 +- brass-pipe,2 + +* bob-pump +** air-pump-4 +*** products +- air-pump-4,1 +*** ingredients +- air-pump-3,1 +- nitinol-alloy,2 +- electric-engine-unit,1 +- nitinol-gear-wheel,4 +- nitinol-bearing,4 +- advanced-processing-unit,3 + +* bob-pump +** water-pump +*** products +- water-pump,1 +*** ingredients +- iron-plate,2 +- iron-gear-wheel,2 +- electronic-circuit,2 +- copper-pipe,2 + +* bob-pump +** water-pump-2 +*** products +- water-pump-2,1 +*** ingredients +- water-pump,1 +- steel-plate,2 +- steel-gear-wheel,4 +- advanced-circuit,3 +- bronze-pipe,2 + +* bob-pump +** water-pump-3 +*** products +- water-pump-3,1 +*** ingredients +- water-pump-2,1 +- titanium-plate,2 +- titanium-gear-wheel,4 +- titanium-bearing,4 +- processing-unit,3 +- brass-pipe,2 + +* bob-pump +** water-pump-4 +*** products +- water-pump-4,1 +*** ingredients +- water-pump-3,1 +- nitinol-alloy,2 +- electric-engine-unit,1 +- nitinol-gear-wheel,4 +- nitinol-bearing,4 +- advanced-processing-unit,3 + +* bob-pump +** void-pump +*** products +- void-pump,1 +*** ingredients +- iron-plate,2 +- iron-gear-wheel,2 +- electronic-circuit,2 +- copper-pipe,2 + +* bob-resource-chemical +** bob-resin-oil +*** products +- resin,1 +*** ingredients +- liquid-naphtha,10 + +* bob-resource-chemical +** synthetic-wood +*** products +- wood,2 +*** ingredients +- liquid-naphtha,10 + +* bob-resource-chemical +** solid-fuel-from-sour-gas +*** products +- solid-fuel,1 +*** ingredients +- sour-gas,20 + +* bob-resource-chemical +** enriched-fuel-from-hydrazine +*** products +- enriched-fuel,1 +*** ingredients +- solid-fuel,1 +- gas-hydrazine,100 + +* bob-resource-chemical +** ammonium-chloride-recycling +*** products +- solid-calcium-chloride,1 +- gas-ammonia,50 +- water-purified,10 +*** ingredients +- ammonium-chloride,2 +- solid-limestone,1 + +* bob-resource-chemical +** calcium-chloride +*** products +- solid-calcium-chloride,1 +- gas-hydrogen,20 +*** ingredients +- solid-limestone,1 +- gas-hydrogen-chloride,50 + +* bob-resource-chemical +** lead-oxide +*** products +- lead-oxide,1 +- gas-sulfur-dioxide,10 +*** ingredients +- lead-ore,1 +- gas-oxygen,10 + +* bob-resource-chemical +** lead-oxide-2 +*** products +- lead-oxide,1 +- gas-hydrogen-sulfide,10 +*** ingredients +- lead-ore,1 +- water,4 + +* bob-resource-chemical +** silver-nitrate +*** products +- silver-nitrate,1 +*** ingredients +- silver-plate,1 +- gas-nitrogen-dioxide,10 + +* bob-resource-chemical +** limestone +*** products +- solid-limestone,1 +- gas-carbon-dioxide,25 +*** ingredients +- stone,1 + +* bob-resource-chemical +** sodium-bicarbonate +*** products +- sodium-bicarbonate,1 +- ammonium-chloride,1 +*** ingredients +- ammoniated-brine,10 +- gas-carbon-dioxide,25 + +* bob-resource-chemical +** sodium-carbonate +*** products +- solid-sodium-carbonate,1 +- gas-carbon-dioxide,25 +- water-purified,10 +*** ingredients +- sodium-bicarbonate,2 + +* bob-resource-chemical +** sulfur-2 +*** products +- sulfur,5 +*** ingredients +- gas-sulfur-dioxide,50 +- gas-hydrogen,80 + +* bob-resource-chemical +** sulfur-3 +*** products +- sulfur,5 +*** ingredients +- gas-hydrogen-sulfide,50 +- gas-oxygen,25 + +* bob-smelting-machine +** fluid-chemical-furnace +*** products +- fluid-chemical-furnace,1 +*** ingredients +- steel-furnace,1 +- steel-pipe,2 + +* bob-smelting-machine +** stone-mixing-furnace +*** products +- stone-mixing-furnace,1 +*** ingredients +- stone,5 + +* bob-smelting-machine +** steel-mixing-furnace +*** products +- steel-mixing-furnace,1 +*** ingredients +- stone-brick,10 +- steel-plate,6 + +* bob-smelting-machine +** fluid-mixing-furnace +*** products +- fluid-mixing-furnace,1 +*** ingredients +- steel-mixing-furnace,1 +- steel-pipe,2 + +* bob-smelting-machine +** electric-mixing-furnace +*** products +- electric-mixing-furnace,1 +*** ingredients +- stone-brick,10 +- steel-plate,10 +- advanced-circuit,5 + +* bob-smelting-machine +** electric-chemical-mixing-furnace +*** products +- electric-chemical-mixing-furnace,1 +*** ingredients +- electric-mixing-furnace,1 +- tungsten-plate,10 +- invar-alloy,10 +- processing-unit,5 +- tungsten-pipe,5 + +* bob-smelting-machine +** electric-chemical-mixing-furnace-2 +*** products +- electric-chemical-mixing-furnace-2,1 +*** ingredients +- electric-chemical-mixing-furnace,1 +- tungsten-carbide,10 +- copper-tungsten-alloy,10 +- advanced-processing-unit,5 +- copper-tungsten-pipe,5 + +* bodies +** character +*** products +- character,1 +*** ingredients +- assembling-machine-2,1 +- player-frame,1 + +* bodies +** bob-character-builder +*** products +- bob-character-builder,1 +*** ingredients +- assembling-machine-3,1 +- player-frame,1 + +* bodies +** bob-character-fighter +*** products +- bob-character-fighter,1 +*** ingredients +- assembling-machine-2,1 +- player-frame,1 +- exoskeleton-equipment,1 + +* bodies +** bob-character-miner +*** products +- bob-character-miner,1 +*** ingredients +- electric-furnace,1 +- assembling-machine-2,1 +- player-frame,1 + +* bodies +** bob-character-balanced-2 +*** products +- bob-character-balanced-2,1 +*** ingredients +- assembling-machine-2,1 +- player-frame-2,1 + +* bodies +** bob-character-builder-2 +*** products +- bob-character-builder-2,1 +*** ingredients +- assembling-machine-4,1 +- player-frame-2,1 + +* bodies +** bob-character-engineer +*** products +- bob-character-engineer,1 +*** ingredients +- electric-furnace,1 +- assembling-machine-3,1 +- player-frame-2,1 + +* bodies +** bob-character-fighter-2 +*** products +- bob-character-fighter-2,1 +*** ingredients +- assembling-machine-2,1 +- player-frame-2,1 +- exoskeleton-equipment-2,1 + +* bodies +** bob-character-miner-2 +*** products +- bob-character-miner-2,1 +*** ingredients +- electric-furnace-2,1 +- assembling-machine-2,1 +- player-frame-2,1 + +* bodies +** bob-character-prospector +*** products +- bob-character-prospector,1 +*** ingredients +- electric-furnace,1 +- assembling-machine-2,1 +- player-frame-2,1 +- exoskeleton-equipment,1 + +* body-parts +** player-boots +*** products +- player-boots,1 +*** ingredients +- steel-plate,5 +- rubber,15 + +* body-parts +** player-boots-2 +*** products +- player-boots-2,1 +*** ingredients +- titanium-plate,5 +- rubber,15 + +* body-parts +** player-brain +*** products +- player-brain,1 +*** ingredients +- solder,5 +- superior-circuit-board,5 +- basic-electronic-components,10 +- electronic-components,25 +- intergrated-electronics,10 +- module-case,1 + +* body-parts +** player-brain-2 +*** products +- player-brain-2,1 +*** ingredients +- solder,10 +- superior-circuit-board,8 +- basic-electronic-components,8 +- electronic-components,30 +- intergrated-electronics,20 +- processing-electronics,2 +- module-case,1 + +* body-parts +** player-gloves +*** products +- player-gloves,1 +*** ingredients +- steel-plate,5 +- steel-gear-wheel,15 +- steel-bearing,8 + +* body-parts +** player-gloves-2 +*** products +- player-gloves-2,1 +*** ingredients +- titanium-plate,5 +- titanium-gear-wheel,15 +- titanium-bearing,8 + +* body-parts +** player-head +*** products +- player-head,1 +*** ingredients +- steel-plate,5 +- player-brain,1 + +* body-parts +** player-head-2 +*** products +- player-head-2,1 +*** ingredients +- titanium-plate,5 +- player-brain-2,1 + +* body-parts +** player-frame +*** products +- player-frame,1 +*** ingredients +- steel-plate,5 +- electric-engine-unit,8 +- advanced-circuit,15 +- steel-chest,1 +- player-boots,1 +- player-gloves,1 +- player-head,1 +- player-power-core,1 + +* body-parts +** player-frame-2 +*** products +- player-frame-2,1 +*** ingredients +- titanium-plate,5 +- electric-engine-unit,12 +- processing-unit,15 +- titanium-chest,1 +- player-boots-2,1 +- player-gloves-2,1 +- player-head-2,1 +- player-power-core,1 + +* body-parts +** player-power-core +*** products +- player-power-core,1 +*** ingredients +- battery,15 +- rtg,1 +- processing-unit,50 + +* boiler-building +** angels-electric-boiler +*** products +- angels-electric-boiler,1 +*** ingredients +- clay-brick,5 +- bronze-alloy,3 +- electronic-circuit,2 +- bronze-pipe,15 + +* boiler-building +** angels-electric-boiler-2 +*** products +- angels-electric-boiler-2,1 +*** ingredients +- aluminium-plate,4 +- concrete-brick,5 +- angels-electric-boiler,1 +- advanced-circuit,2 +- brass-pipe,15 + +* boiler-building +** angels-electric-boiler-3 +*** products +- angels-electric-boiler-3,1 +*** ingredients +- reinforced-concrete-brick,5 +- tungsten-plate,4 +- angels-electric-boiler-2,1 +- advanced-processing-unit,2 +- tungsten-pipe,15 + +* boiler-building +** cooling-tower +*** products +- cooling-tower,1 +*** ingredients +- clay-brick,50 +- bronze-alloy,30 +- electronic-circuit,5 +- bronze-pipe,15 + +* circuit-network +** small-lamp +*** products +- small-lamp,1 +*** ingredients +- copper-cable,3 +- iron-plate,1 +- basic-circuit-board,1 + +* circuit-network +** angels-lamp +*** products +- angels-lamp,1 +*** ingredients +- copper-cable,3 +- iron-plate,1 +- basic-circuit-board,1 + +* circuit-network +** red-wire +*** products +- red-wire,1 +*** ingredients +- insulated-cable,1 + +* circuit-network +** green-wire +*** products +- green-wire,1 +*** ingredients +- insulated-cable,1 + +* circuit-network +** arithmetic-combinator +*** products +- arithmetic-combinator,1 +*** ingredients +- copper-cable,5 +- electronic-circuit,5 + +* circuit-network +** decider-combinator +*** products +- decider-combinator,1 +*** ingredients +- copper-cable,5 +- electronic-circuit,5 + +* circuit-network +** constant-combinator +*** products +- constant-combinator,1 +*** ingredients +- copper-cable,5 +- electronic-circuit,2 + +* circuit-network +** power-switch +*** products +- power-switch,1 +*** ingredients +- copper-cable,5 +- iron-plate,5 +- electronic-circuit,2 + +* circuit-network +** programmable-speaker +*** products +- programmable-speaker,1 +*** ingredients +- copper-cable,5 +- iron-plate,3 +- iron-stick,4 +- electronic-circuit,4 + +* coolant +** coolant-cool-steam +*** products +- water-purified,100 +*** ingredients +- steam,100 + +* coolant +** coolant +*** products +- liquid-coolant,100 +*** ingredients +- water,80 +- liquid-mineral-oil,20 + +* coolant +** coolant-used-filtration-1 +*** products +- filter-frame,1 +- liquid-coolant,160 +*** ingredients +- filter-coal,1 +- liquid-coolant-used,200 + +* coolant +** coolant-used-filtration-2 +*** products +- filter-ceramic-used,1 +- liquid-coolant,160 +*** ingredients +- filter-ceramic,1 +- liquid-coolant-used,200 + +* coolant +** coolant-cool-100 +*** products +- liquid-coolant-used,200 +- steam,50 +*** ingredients +- liquid-coolant-used,200 +- water,50 + +* coolant +** coolant-cool-200 +*** products +- liquid-coolant-used,200 +- steam,50 +*** ingredients +- liquid-coolant-used,200 +- water,50 + +* coolant +** coolant-cool-300 +*** products +- liquid-coolant-used,200 +- steam,50 +*** ingredients +- liquid-coolant-used,200 +- water,50 + +* effectivity-module +** effectivity-module +*** products +- effectivity-module,1 +*** ingredients +- module-case,1 +- effectivity-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* effectivity-module +** effectivity-module-2 +*** products +- effectivity-module-2,1 +*** ingredients +- solder,1 +- effectivity-processor,2 +- module-contact,5 +- effectivity-module,1 + +* effectivity-module +** effectivity-module-3 +*** products +- effectivity-module-3,1 +*** ingredients +- solder,2 +- electronic-components,5 +- effectivity-processor-2,3 +- effectivity-module-2,1 + +* effectivity-module +** effectivity-module-4 +*** products +- effectivity-module-4,1 +*** ingredients +- solder,3 +- intergrated-electronics,5 +- module-contact,5 +- effectivity-processor-2,4 +- effectivity-module-3,1 + +* effectivity-module +** effectivity-module-5 +*** products +- effectivity-module-5,1 +*** ingredients +- solder,4 +- intergrated-electronics,5 +- ruby-5,1 +- module-contact,5 +- effectivity-processor-2,5 +- effectivity-module-4,1 + +* effectivity-module +** effectivity-module-6 +*** products +- effectivity-module-6,1 +*** ingredients +- solder,5 +- intergrated-electronics,5 +- emerald-5,1 +- module-contact,5 +- effectivity-processor-3,6 +- effectivity-module-5,1 + +* effectivity-module +** effectivity-module-7 +*** products +- effectivity-module-7,1 +*** ingredients +- solder,7 +- intergrated-electronics,5 +- processing-electronics,3 +- topaz-5,1 +- module-contact,5 +- effectivity-processor-3,8 +- effectivity-module-6,1 + +* effectivity-module +** effectivity-module-8 +*** products +- effectivity-module-8,1 +*** ingredients +- solder,8 +- electronic-components,5 +- intergrated-electronics,5 +- processing-electronics,5 +- diamond-5,1 +- module-contact,5 +- effectivity-processor-3,10 +- effectivity-module-7,1 + +* extraction-machine +** burner-mining-drill +*** products +- burner-mining-drill,1 +*** ingredients +- stone-furnace,1 +- iron-plate,3 +- iron-gear-wheel,3 + +* extraction-machine +** steam-mining-drill +*** products +- steam-mining-drill,1 +*** ingredients +- burner-mining-drill,1 +- pipe,2 + +* extraction-machine +** electric-mining-drill +*** products +- electric-mining-drill,1 +*** ingredients +- iron-plate,10 +- iron-gear-wheel,5 +- basic-circuit-board,3 + +* extraction-machine +** bob-mining-drill-1 +*** products +- bob-mining-drill-1,1 +*** ingredients +- electric-mining-drill,1 +- steel-plate,10 +- steel-gear-wheel,5 +- electronic-circuit,5 + +* extraction-machine +** bob-mining-drill-2 +*** products +- bob-mining-drill-2,1 +*** ingredients +- bob-mining-drill-1,1 +- invar-alloy,10 +- brass-gear-wheel,5 +- advanced-circuit,5 + +* extraction-machine +** bob-mining-drill-3 +*** products +- bob-mining-drill-3,1 +*** ingredients +- bob-mining-drill-2,1 +- titanium-plate,10 +- titanium-gear-wheel,5 +- processing-unit,5 + +* extraction-machine +** bob-mining-drill-4 +*** products +- bob-mining-drill-4,1 +*** ingredients +- bob-mining-drill-3,1 +- tungsten-carbide,10 +- nitinol-gear-wheel,5 +- advanced-processing-unit,5 + +* extraction-machine +** bob-area-mining-drill-1 +*** products +- bob-area-mining-drill-1,1 +*** ingredients +- electric-mining-drill,1 +- steel-plate,10 +- steel-gear-wheel,5 +- electronic-circuit,5 + +* extraction-machine +** bob-area-mining-drill-2 +*** products +- bob-area-mining-drill-2,1 +*** ingredients +- bob-area-mining-drill-1,1 +- invar-alloy,10 +- brass-gear-wheel,5 +- advanced-circuit,5 + +* extraction-machine +** bob-area-mining-drill-3 +*** products +- bob-area-mining-drill-3,1 +*** ingredients +- bob-area-mining-drill-2,1 +- titanium-plate,10 +- titanium-gear-wheel,5 +- processing-unit,5 + +* extraction-machine +** bob-area-mining-drill-4 +*** products +- bob-area-mining-drill-4,1 +*** ingredients +- bob-area-mining-drill-3,1 +- tungsten-carbide,10 +- nitinol-gear-wheel,5 +- advanced-processing-unit,5 + +* extraction-machine +** pumpjack +*** products +- pumpjack,1 +*** ingredients +- steel-plate,5 +- iron-gear-wheel,10 +- electronic-circuit,5 +- pipe,10 + +* extraction-machine +** bob-pumpjack-1 +*** products +- bob-pumpjack-1,1 +*** ingredients +- pumpjack,1 +- steel-plate,20 +- steel-gear-wheel,10 +- electronic-circuit,5 +- steel-pipe,10 + +* extraction-machine +** bob-pumpjack-2 +*** products +- bob-pumpjack-2,1 +*** ingredients +- bob-pumpjack-1,1 +- aluminium-plate,20 +- brass-gear-wheel,10 +- advanced-circuit,5 +- brass-pipe,10 + +* extraction-machine +** bob-pumpjack-3 +*** products +- bob-pumpjack-3,1 +*** ingredients +- bob-pumpjack-2,1 +- titanium-plate,20 +- titanium-gear-wheel,10 +- processing-unit,5 +- titanium-pipe,10 + +* extraction-machine +** bob-pumpjack-4 +*** products +- bob-pumpjack-4,1 +*** ingredients +- bob-pumpjack-3,1 +- nitinol-alloy,20 +- nitinol-gear-wheel,10 +- advanced-processing-unit,5 +- nitinol-pipe,10 + +* extraction-machine +** water-miner-1 +*** products +- water-miner-1,1 +*** ingredients +- iron-plate,10 +- iron-gear-wheel,10 +- basic-circuit-board,5 +- copper-pipe,10 + +* extraction-machine +** water-miner-2 +*** products +- water-miner-2,1 +*** ingredients +- water-miner-1,1 +- steel-plate,10 +- steel-gear-wheel,10 +- electronic-circuit,5 +- bronze-pipe,10 + +* extraction-machine +** water-miner-3 +*** products +- water-miner-3,1 +*** ingredients +- water-miner-2,1 +- aluminium-plate,10 +- brass-gear-wheel,10 +- advanced-circuit,5 +- brass-pipe,10 + +* extraction-machine +** water-miner-4 +*** products +- water-miner-4,1 +*** ingredients +- water-miner-3,1 +- titanium-plate,10 +- titanium-gear-wheel,10 +- processing-unit,5 +- titanium-pipe,10 + +* extraction-machine +** water-miner-5 +*** products +- water-miner-5,1 +*** ingredients +- water-miner-4,1 +- nitinol-alloy,10 +- nitinol-gear-wheel,10 +- advanced-processing-unit,5 +- nitinol-pipe,10 + +* farming-desert +** desert-1 +*** products +- desert-1,30-40 +*** ingredients +- solid-sand,10 +- desert-1-seed,5 +- water-saline,50 + +* farming-desert +** desert-2 +*** products +- desert-2,30-40 +*** ingredients +- solid-sand,10 +- desert-2-seed,5 +- water-saline,50 + +* farming-desert +** desert-3 +*** products +- desert-3,30-40 +- desert-3-seed-dormant,5 +*** ingredients +- solid-sand,10 +- desert-3-seed,5 +- water-saline,50 + +* farming-desert +** desert-4 +*** products +- desert-4,30-40 +- desert-4-seed-dormant,5 +*** ingredients +- solid-sand,10 +- solid-fertilizer,1 +- desert-4-seed,5 +- water-saline,50 + +* farming-desert +** desert-5 +*** products +- desert-5,30-40 +- desert-5-seed-dormant,5 +*** ingredients +- solid-sand,10 +- solid-fertilizer,1 +- desert-5-seed,5 +- water-saline,50 + +* farming-desert +** sorting-desert-1 +*** products +- solid-beans,12 +*** ingredients +- desert-1,20 + +* farming-desert +** sorting-desert-2 +*** products +- solid-corn,12 +*** ingredients +- desert-2,20 + +* farming-desert +** sorting-desert-3 +*** products +- solid-pips,24 +- crystal-dust,4 +*** ingredients +- desert-3,20 + +* farming-desert +** sorting-desert-4 +*** products +- solid-fruit,12 +- cellulose-fiber,14 +*** ingredients +- desert-4,20 + +* farming-desert +** sorting-desert-5 +*** products +- solid-nuts,4 +- solid-corn,12 +- crystal-dust,4 +*** ingredients +- desert-5,20 + +* farming-desert-seed +** desert-1-seed +*** products +- desert-1-seed,5-6 +*** ingredients +- desert-1,5 + +* farming-desert-seed +** desert-2-seed +*** products +- desert-2-seed,5-6 +*** ingredients +- desert-2,5 + +* farming-desert-seed +** desert-3-seed +*** products +- desert-3-seed,5 +- desert-3-seed,1 +*** ingredients +- desert-3-seed-dormant,5 + +* farming-desert-seed +** desert-4-seed +*** products +- desert-4-seed,5 +- desert-4-seed,1 +*** ingredients +- desert-4-seed-dormant,5 + +* farming-desert-seed +** desert-5-seed +*** products +- desert-5-seed,5 +- desert-5-seed,1 +*** ingredients +- desert-5-seed-dormant,5 + +* farming-desert-seed +** desert-garden-cultivating-b +*** products +- desert-garden,2 +*** ingredients +- solid-alienated-fertilizer,2 +- desert-garden,1 +- token-bio,30 +- water-mineralized,50 + +* farming-desert-seed +** desert-garden-cultivating-a +*** products +- token-bio,32 +*** ingredients +- desert-garden,1 + +* farming-desert-seed +** desert-garden-a +*** products +- token-bio,16 +- desert-1-seed,5 +- desert-2-seed,5 +- desert-3-seed,5 +- desert-4-seed,5 +- desert-5-seed,5 +*** ingredients +- desert-garden,1 + +* farming-desert-seed +** desert-garden-b +*** products +- desert-1-seed,5 +- desert-2-seed,5 +- desert-3-seed,5 +- desert-4-seed,5 +- desert-5-seed,5 +*** ingredients +- desert-garden,1 + +* farming-swamp +** swamp-1 +*** products +- swamp-1,40-50 +*** ingredients +- solid-mud,10 +- swamp-1-seed,5 +- water-viscous-mud,50 + +* farming-swamp +** swamp-2 +*** products +- swamp-2,40-50 +*** ingredients +- solid-mud,10 +- swamp-2-seed,5 +- water-heavy-mud,50 + +* farming-swamp +** swamp-3 +*** products +- swamp-3,40-50 +- swamp-3-seed-dormant,5 +*** ingredients +- solid-mud,10 +- swamp-3-seed,5 +- water-concentrated-mud,50 + +* farming-swamp +** swamp-4 +*** products +- swamp-4,40-50 +- swamp-4-seed-dormant,5 +*** ingredients +- solid-mud,10 +- solid-fertilizer,1 +- swamp-4-seed,5 +- water-light-mud,50 + +* farming-swamp +** swamp-5 +*** products +- swamp-5,40-50 +- swamp-5-seed-dormant,5 +*** ingredients +- solid-mud,10 +- solid-fertilizer,1 +- swamp-5-seed,5 +- water-thin-mud,50 + +* farming-swamp +** sorting-swamp-1 +*** products +- solid-nuts,16 +*** ingredients +- swamp-1,20 + +* farming-swamp +** sorting-swamp-2 +*** products +- solid-beans,14 +*** ingredients +- swamp-2,20 + +* farming-swamp +** sorting-swamp-3 +*** products +- solid-leafs,36 +- solid-nuts,6 +*** ingredients +- swamp-3,20 + +* farming-swamp +** sorting-swamp-4 +*** products +- solid-leafs,24 +- crystal-dust,6 +*** ingredients +- swamp-4,20 + +* farming-swamp +** sorting-swamp-5 +*** products +- solid-fruit,16 +- solid-pips,12 +- alien-bacteria,4 +*** ingredients +- swamp-5,20 + +* farming-swamp-seed +** swamp-1-seed +*** products +- swamp-1-seed,5-6 +*** ingredients +- swamp-1,5 + +* farming-swamp-seed +** swamp-2-seed +*** products +- swamp-2-seed,5-6 +*** ingredients +- swamp-2,5 + +* farming-swamp-seed +** swamp-3-seed +*** products +- swamp-3-seed,5 +- swamp-3-seed,1 +*** ingredients +- swamp-3-seed-dormant,5 + +* farming-swamp-seed +** swamp-4-seed +*** products +- swamp-4-seed,5 +- swamp-4-seed,1 +*** ingredients +- swamp-4-seed-dormant,5 + +* farming-swamp-seed +** swamp-5-seed +*** products +- swamp-5-seed,5 +- swamp-5-seed,1 +*** ingredients +- swamp-5-seed-dormant,5 + +* farming-swamp-seed +** swamp-garden-cultivating-b +*** products +- swamp-garden,2 +*** ingredients +- solid-alienated-fertilizer,2 +- swamp-garden,1 +- token-bio,30 +- water-mineralized,50 + +* farming-swamp-seed +** swamp-garden-cultivating-a +*** products +- token-bio,32 +*** ingredients +- swamp-garden,1 + +* farming-swamp-seed +** swamp-garden-a +*** products +- token-bio,16 +- swamp-1-seed,5 +- swamp-2-seed,5 +- swamp-3-seed,5 +- swamp-4-seed,5 +- swamp-5-seed,5 +*** ingredients +- swamp-garden,1 + +* farming-swamp-seed +** swamp-garden-b +*** products +- swamp-1-seed,5 +- swamp-2-seed,5 +- swamp-3-seed,5 +- swamp-4-seed,5 +- swamp-5-seed,5 +*** ingredients +- swamp-garden,1 + +* farming-temperate +** temperate-1 +*** products +- temperate-1,40-60 +*** ingredients +- solid-soil,5 +- temperate-1-seed,5 +- water,50 + +* farming-temperate +** temperate-2 +*** products +- temperate-2,40-60 +*** ingredients +- solid-soil,5 +- temperate-2-seed,5 +- water,50 + +* farming-temperate +** temperate-3 +*** products +- temperate-3,40-60 +- temperate-3-seed-dormant,5 +*** ingredients +- solid-soil,5 +- temperate-3-seed,5 +- water,50 + +* farming-temperate +** temperate-4 +*** products +- temperate-4,40-60 +- temperate-4-seed-dormant,5 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- temperate-4-seed,5 +- water,50 + +* farming-temperate +** temperate-5 +*** products +- temperate-5,40-60 +- temperate-5-seed-dormant,5 +*** ingredients +- solid-soil,5 +- solid-fertilizer,1 +- temperate-5-seed,5 +- water,50 + +* farming-temperate +** sorting-temperate-1 +*** products +- solid-corn,10 +*** ingredients +- temperate-1,20 + +* farming-temperate +** sorting-temperate-2 +*** products +- cellulose-fiber,22 +*** ingredients +- temperate-2,20 + +* farming-temperate +** sorting-temperate-3 +*** products +- solid-leafs,32 +- cellulose-fiber,10 +*** ingredients +- temperate-3,20 + +* farming-temperate +** sorting-temperate-4 +*** products +- solid-fruit,10 +- solid-pips,28 +*** ingredients +- temperate-4,20 + +* farming-temperate +** sorting-temperate-5 +*** products +- solid-corn,10 +- cellulose-fiber,8 +- crystal-dust,4 +*** ingredients +- temperate-5,20 + +* farming-temperate-seed +** temperate-1-seed +*** products +- temperate-1-seed,5-6 +*** ingredients +- temperate-1,5 + +* farming-temperate-seed +** temperate-2-seed +*** products +- temperate-2-seed,5-6 +*** ingredients +- temperate-2,5 + +* farming-temperate-seed +** temperate-3-seed +*** products +- temperate-3-seed,5 +- temperate-3-seed,1 +*** ingredients +- temperate-3-seed-dormant,5 + +* farming-temperate-seed +** temperate-4-seed +*** products +- temperate-4-seed,5 +- temperate-4-seed,1 +*** ingredients +- temperate-4-seed-dormant,5 + +* farming-temperate-seed +** temperate-5-seed +*** products +- temperate-5-seed,5 +- temperate-5-seed,1 +*** ingredients +- temperate-5-seed-dormant,5 + +* farming-temperate-seed +** temperate-garden-cultivating-b +*** products +- temperate-garden,2 +*** ingredients +- solid-alienated-fertilizer,2 +- temperate-garden,1 +- token-bio,30 +- water-mineralized,50 + +* farming-temperate-seed +** temperate-garden-cultivating-a +*** products +- token-bio,32 +*** ingredients +- temperate-garden,1 + +* farming-temperate-seed +** temperate-garden-a +*** products +- token-bio,16 +- temperate-1-seed,5 +- temperate-2-seed,5 +- temperate-3-seed,5 +- temperate-4-seed,5 +- temperate-5-seed,5 +*** ingredients +- temperate-garden,1 + +* farming-temperate-seed +** temperate-garden-b +*** products +- temperate-1-seed,5 +- temperate-2-seed,5 +- temperate-3-seed,5 +- temperate-4-seed,5 +- temperate-5-seed,5 +*** ingredients +- temperate-garden,1 + +* farming-temperate-seed +** garden-cultivating +*** products +- temperate-garden,1 +- desert-garden,1 +- swamp-garden,1 +*** ingredients +- solid-wood-pulp,5 +- token-bio,1 +- water-mineralized,50 + +* filtering +** slag-processing-filtering-1 +*** products +- filter-frame,1 +- mineral-sludge,50 +- water-yellow-waste,40 +*** ingredients +- filter-coal,1 +- slag-slurry,50 +- water-purified,50 + +* filtering +** slag-processing-filtering-2 +*** products +- filter-ceramic-used,1 +- mineral-sludge,35 +- water-yellow-waste,20 +*** ingredients +- filter-ceramic,1 +- slag-slurry,35 +- water-purified,50 + +* filtering +** thermal-water-filtering-1 +*** products +- filter-frame,1 +- mineral-sludge,50 +*** ingredients +- filter-coal,1 +- thermal-water,50 + +* filtering +** thermal-water-filtering-2 +*** products +- filter-ceramic-used,1 +- mineral-sludge,35 +*** ingredients +- filter-ceramic,1 +- thermal-water,35 + +* filtering +** crystal-slurry-filtering-conversion-1 +*** products +- filter-frame,1 +- mineral-sludge,50 +- water-yellow-waste,40 +*** ingredients +- filter-coal,1 +- crystal-slurry,50 +- water-mineralized,100 + +* filtering +** crystal-slurry-filtering-conversion-2 +*** products +- filter-ceramic-used,1 +- mineral-sludge,35 +- water-yellow-waste,20 +*** ingredients +- filter-ceramic,1 +- crystal-slurry,35 +- water-mineralized,100 + +* filtering +** crystal-slurry-filtering-1 +*** products +- filter-frame,1 +- crystal-seedling,50 +- water-yellow-waste,40 +*** ingredients +- filter-coal,1 +- crystal-slurry,50 +- water-purified,50 + +* filtering +** crystal-slurry-filtering-2 +*** products +- filter-ceramic-used,1 +- crystal-seedling,35 +- water-yellow-waste,20 +*** ingredients +- filter-ceramic,1 +- crystal-slurry,35 +- water-purified,50 + +* fluid-recipes +** basic-oil-processing +*** products +- sour-gas,70 +*** ingredients +- crude-oil,100 + +* fluid-recipes +** advanced-oil-processing +*** products +- liquid-naphtha,25 +- liquid-fuel-oil,45 +- sour-gas,55 +*** ingredients +- water-purified,50 +- crude-oil,100 + +* fluid-recipes +** bob-oil-processing +*** products +- liquid-naphtha,50 +- liquid-fuel-oil,20 +- sour-gas,30 +*** ingredients +- crude-oil,100 + +* fluid-recipes +** carbon-dioxide-oil-processing +*** products +- liquid-naphtha,60 +- liquid-fuel-oil,40 +- sour-gas,25 +*** ingredients +- gas-carbon-dioxide,50 +- crude-oil,100 + +* fluid-recipes +** coal-liquefaction +*** products +- liquid-naphtha,90 +- liquid-fuel-oil,20 +- sour-gas,10 +*** ingredients +- coal,10 +- liquid-naphtha,10 +- steam,50 + +* fluid-recipes +** heavy-oil-cracking +*** products +- liquid-fuel-oil,30 +*** ingredients +- water-purified,30 +- liquid-naphtha,40 + +* fluid-recipes +** light-oil-cracking +*** products +- gas-methane,20 +*** ingredients +- water-purified,30 +- liquid-fuel-oil,30 + +* fluid-recipes +** sulfuric-acid +*** products +- liquid-sulfuric-acid,50 +*** ingredients +- iron-plate,1 +- sulfur,5 +- water-purified,100 + +* fluid-recipes +** lubricant +*** products +- lubricant,10 +*** ingredients +- liquid-naphtha,10 + +* geode-crystallization +** catalysator-brown +*** products +- catalysator-brown,2 +*** ingredients +- mineral-sludge,25 + +* geode-crystallization +** catalysator-green +*** products +- catalysator-green,2 +*** ingredients +- crystal-seedling,25 + +* geode-crystallization +** catalysator-orange +*** products +- catalysator-orange,2 +*** ingredients +- catalysator-brown,2 +- catalysator-green,2 + +* geode-crystallization +** filter-frame +*** products +- filter-frame,1 +*** ingredients +- iron-plate,1 +- steel-plate,1 + +* geode-crystallization +** filter-coal +*** products +- filter-coal,5 +*** ingredients +- filter-frame,5 +- coal,1 + +* geode-crystallization +** filter-ceramic +*** products +- filter-ceramic,1 +*** ingredients +- filter-frame,1 +- alumina,1 + +* geode-crystallization +** filter-ceramic-refurbish +*** products +- filter-ceramic,1 +*** ingredients +- filter-ceramic-used,1 +- water-purified,50 + +* geode-processing-1 +** geode-blue-processing +*** products +- crystal-dust,1 +- stone-crushed,2 +*** ingredients +- geode-blue,2 + +* geode-processing-1 +** geode-purple-processing +*** products +- crystal-dust,2 +- stone-crushed,3 +*** ingredients +- geode-purple,2 + +* geode-processing-1 +** geode-yellow-processing +*** products +- crystal-dust,2 +- stone-crushed,1 +*** ingredients +- geode-yellow,2 + +* geode-processing-1 +** geode-lightgreen-processing +*** products +- crystal-dust,3 +- stone-crushed,2 +*** ingredients +- geode-lightgreen,2 + +* geode-processing-1 +** geode-cyan-processing +*** products +- crystal-dust,3 +- stone-crushed,2 +*** ingredients +- geode-cyan,2 + +* geode-processing-1 +** geode-red-processing +*** products +- crystal-dust,1 +- stone-crushed,2 +*** ingredients +- geode-red,2 + +* god-module +** god-module-1 +*** products +- god-module-1,1 +*** ingredients +- solder,2 +- module-case,1 +- speed-processor,2 +- effectivity-processor,6 +- productivity-processor,2 +- pollution-clean-processor,4 +- module-contact,5 +- module-circuit-board,1 + +* god-module +** god-module-2 +*** products +- god-module-2,1 +*** ingredients +- solder,5 +- electronic-components,7 +- intergrated-electronics,7 +- module-contact,5 +- speed-processor-2,4 +- effectivity-processor-2,12 +- productivity-processor-2,4 +- pollution-clean-processor-2,8 +- god-module-1,1 + +* god-module +** god-module-3 +*** products +- god-module-3,1 +*** ingredients +- solder,7 +- intergrated-electronics,7 +- ruby-5,1 +- sapphire-5,1 +- module-contact,5 +- speed-processor-3,6 +- effectivity-processor-3,18 +- productivity-processor-3,6 +- pollution-clean-processor-3,12 +- god-module-2,1 + +* god-module +** god-module-4 +*** products +- god-module-4,1 +*** ingredients +- solder,12 +- electronic-components,8 +- intergrated-electronics,8 +- processing-electronics,8 +- emerald-5,1 +- amethyst-5,1 +- module-contact,5 +- speed-processor-3,10 +- effectivity-processor-3,30 +- productivity-processor-3,10 +- pollution-clean-processor-3,20 +- god-module-3,1 + +* god-module +** god-module-5 +*** products +- god-module-5,1 +*** ingredients +- solder,15 +- electronic-components,10 +- intergrated-electronics,10 +- processing-electronics,10 +- topaz-5,1 +- diamond-5,1 +- module-contact,5 +- speed-processor-3,15 +- effectivity-processor-3,45 +- productivity-processor-3,15 +- pollution-clean-processor-3,30 +- god-module-4,1 + +* green-module +** green-module-1 +*** products +- green-module-1,1 +*** ingredients +- module-case,1 +- effectivity-processor,1 +- pollution-clean-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* green-module +** green-module-2 +*** products +- green-module-2,1 +*** ingredients +- solder,2 +- effectivity-processor,2 +- pollution-clean-processor,2 +- module-contact,5 +- green-module-1,1 + +* green-module +** green-module-3 +*** products +- green-module-3,1 +*** ingredients +- solder,3 +- electronic-components,7 +- effectivity-processor-2,3 +- pollution-clean-processor-2,3 +- green-module-2,1 + +* green-module +** green-module-4 +*** products +- green-module-4,1 +*** ingredients +- solder,5 +- intergrated-electronics,7 +- module-contact,5 +- effectivity-processor-2,4 +- pollution-clean-processor-2,4 +- green-module-3,1 + +* green-module +** green-module-5 +*** products +- green-module-5,1 +*** ingredients +- solder,6 +- intergrated-electronics,7 +- ruby-5,1 +- module-contact,5 +- effectivity-processor-2,5 +- pollution-clean-processor-2,5 +- green-module-4,1 + +* green-module +** green-module-6 +*** products +- green-module-6,1 +*** ingredients +- solder,7 +- intergrated-electronics,7 +- emerald-5,1 +- module-contact,5 +- effectivity-processor-3,6 +- pollution-clean-processor-3,6 +- green-module-5,1 + +* green-module +** green-module-7 +*** products +- green-module-7,1 +*** ingredients +- solder,10 +- intergrated-electronics,8 +- processing-electronics,5 +- topaz-5,1 +- module-contact,5 +- effectivity-processor-3,8 +- pollution-clean-processor-3,8 +- green-module-6,1 + +* green-module +** green-module-8 +*** products +- green-module-8,1 +*** ingredients +- solder,12 +- electronic-components,8 +- intergrated-electronics,8 +- processing-electronics,8 +- diamond-5,1 +- module-contact,5 +- effectivity-processor-3,10 +- pollution-clean-processor-3,10 +- green-module-7,1 + +* green-module-combine +** green-module-1-combine +*** products +- green-module-1,1 +*** ingredients +- solder,1 +- effectivity-module,1 +- pollution-clean-module-1,1 + +* green-module-combine +** green-module-2-combine +*** products +- green-module-2,1 +*** ingredients +- solder,2 +- effectivity-module-2,1 +- pollution-clean-module-2,1 + +* green-module-combine +** green-module-3-combine +*** products +- green-module-3,1 +*** ingredients +- solder,3 +- effectivity-module-3,1 +- pollution-clean-module-3,1 + +* green-module-combine +** green-module-4-combine +*** products +- green-module-4,1 +*** ingredients +- solder,4 +- effectivity-module-4,1 +- pollution-clean-module-4,1 + +* green-module-combine +** green-module-5-combine +*** products +- green-module-5,1 +*** ingredients +- solder,6 +- effectivity-module-5,1 +- pollution-clean-module-5,1 + +* green-module-combine +** green-module-6-combine +*** products +- green-module-6,1 +*** ingredients +- solder,7 +- effectivity-module-6,1 +- pollution-clean-module-6,1 + +* green-module-combine +** green-module-7-combine +*** products +- green-module-7,1 +*** ingredients +- solder,8 +- effectivity-module-7,1 +- pollution-clean-module-7,1 + +* green-module-combine +** green-module-8-combine +*** products +- green-module-8,1 +*** ingredients +- solder,10 +- effectivity-module-8,1 +- pollution-clean-module-8,1 + +* intermediate-product +** rocket-part +*** products +- rocket-part,1 +*** ingredients +- rocket-fuel,10 +- rocket-control-unit,10 +- low-density-structure,10 +- heat-shield-tile,10 +- rocket-engine,10 + +* liquifying +** geode-blue-liquify +*** products +- crystal-slurry,20 +*** ingredients +- geode-blue,5 +- liquid-sulfuric-acid,15 + +* liquifying +** geode-purple-liquify +*** products +- crystal-slurry,40 +*** ingredients +- geode-purple,5 +- liquid-sulfuric-acid,15 + +* liquifying +** geode-yellow-liquify +*** products +- crystal-slurry,30 +*** ingredients +- geode-yellow,5 +- liquid-sulfuric-acid,15 + +* liquifying +** geode-lightgreen-liquify +*** products +- crystal-slurry,50 +*** ingredients +- geode-lightgreen,5 +- liquid-sulfuric-acid,15 + +* liquifying +** geode-cyan-liquify +*** products +- crystal-slurry,50 +*** ingredients +- geode-cyan,5 +- liquid-sulfuric-acid,15 + +* liquifying +** geode-red-liquify +*** products +- crystal-slurry,20 +*** ingredients +- geode-red,5 +- liquid-sulfuric-acid,15 + +* liquifying +** crystal-dust-liquify +*** products +- crystal-slurry,50 +*** ingredients +- crystal-dust,10 +- liquid-sulfuric-acid,15 + +* liquifying +** slag-processing-dissolution +*** products +- slag-slurry,50 +*** ingredients +- slag,5 +- liquid-sulfuric-acid,15 + +* liquifying +** stone-crushed-dissolution +*** products +- slag-slurry,50 +*** ingredients +- stone-crushed,25 +- liquid-sulfuric-acid,15 + +* mech-parts +** mech-armor-plate +*** products +- mech-armor-plate,1 +*** ingredients +- tungsten-carbide,2 +- low-density-structure,5 + +* mech-parts +** mech-brain +*** products +- mech-brain,1 +*** ingredients +- solder,120 +- multi-layer-circuit-board,40 +- basic-electronic-components,80 +- electronic-components,100 +- intergrated-electronics,100 +- processing-electronics,120 +- module-case,2 + +* mech-parts +** mech-frame +*** products +- mech-frame,1 +*** ingredients +- low-density-structure,50 +- mech-brain,1 + +* mech-parts +** mech-leg +*** products +- mech-leg,1 +*** ingredients +- insulated-cable,4 +- mech-foot,1 +- mech-hip,1 +- mech-knee,1 +- mech-leg-segment,2 + +* mech-parts +** mech-foot +*** products +- mech-foot,1 +*** ingredients +- rubber,1 +- low-density-structure,1 + +* mech-parts +** mech-hip +*** products +- mech-hip,1 +*** ingredients +- electric-engine-unit,5 +- low-density-structure,2 +- titanium-gear-wheel,4 +- titanium-bearing,4 + +* mech-parts +** mech-knee +*** products +- mech-knee,1 +*** ingredients +- electric-engine-unit,10 +- low-density-structure,2 +- titanium-gear-wheel,8 +- titanium-bearing,2 + +* mech-parts +** mech-leg-segment +*** products +- mech-leg-segment,1 +*** ingredients +- nitinol-alloy,2 +- titanium-pipe,3 + +* mech-parts +** spidertron-cannon +*** products +- spidertron-cannon,1 +*** ingredients +- steel-plate,15 +- iron-gear-wheel,5 + +* module-beacon +** beacon +*** products +- beacon,1 +*** ingredients +- copper-cable,10 +- steel-plate,10 +- electronic-circuit,20 +- advanced-circuit,20 +- crystal-splinter-harmonic,1 + +* module-beacon +** beacon-2 +*** products +- beacon-2,1 +*** ingredients +- aluminium-plate,10 +- tinned-copper-cable,10 +- electronic-circuit,20 +- advanced-circuit,20 +- processing-unit,20 +- crystal-shard-harmonic,1 +- beacon,1 + +* module-beacon +** beacon-3 +*** products +- beacon-3,1 +*** ingredients +- gold-plate,10 +- titanium-plate,10 +- insulated-cable,10 +- advanced-circuit,20 +- processing-unit,20 +- advanced-processing-unit,20 +- crystal-full-harmonic,1 +- beacon-2,1 + +* module-intermediates +** module-case +*** products +- module-case,1 +*** ingredients +- aluminium-plate,5 +- plastic-bar,2 + +* module-intermediates +** module-processor-board +*** products +- module-processor-board,4 +*** ingredients +- copper-plate,1 +- tin-plate,1 +- phenolic-board,1 +- liquid-ferric-chloride-solution,5 + +* module-intermediates +** speed-processor +*** products +- speed-processor,1 +*** ingredients +- solder,1 +- basic-electronic-components,2 +- electronic-components,2 +- crystal-splinter-blue,1 +- module-processor-board,1 + +* module-intermediates +** effectivity-processor +*** products +- effectivity-processor,1 +*** ingredients +- solder,1 +- basic-electronic-components,2 +- electronic-components,2 +- crystal-splinter-green,1 +- module-processor-board,1 + +* module-intermediates +** productivity-processor +*** products +- productivity-processor,1 +*** ingredients +- solder,1 +- basic-electronic-components,2 +- electronic-components,2 +- crystal-splinter-red,1 +- module-processor-board,1 + +* module-intermediates +** pollution-clean-processor +*** products +- pollution-clean-processor,1 +*** ingredients +- solder,1 +- basic-electronic-components,2 +- electronic-components,2 +- crystal-splinter-harmonic,1 +- module-processor-board,1 + +* module-intermediates +** pollution-create-processor +*** products +- pollution-create-processor,1 +*** ingredients +- solder,1 +- basic-electronic-components,2 +- electronic-components,2 +- crystal-splinter-harmonic,1 +- module-processor-board,1 + +* module-intermediates-2 +** module-contact +*** products +- module-contact,5 +*** ingredients +- copper-plate,1 +- silver-plate,1 + +* module-intermediates-2 +** module-processor-board-2 +*** products +- module-processor-board-2,4 +*** ingredients +- copper-plate,1 +- silver-plate,1 +- fibreglass-board,1 +- liquid-ferric-chloride-solution,5 + +* module-intermediates-2 +** speed-processor-2 +*** products +- speed-processor-2,1 +*** ingredients +- solder,2 +- electronic-components,2 +- intergrated-electronics,2 +- crystal-shard-blue,1 +- module-processor-board-2,1 + +* module-intermediates-2 +** effectivity-processor-2 +*** products +- effectivity-processor-2,1 +*** ingredients +- solder,2 +- electronic-components,2 +- intergrated-electronics,2 +- crystal-shard-green,1 +- module-processor-board-2,1 + +* module-intermediates-2 +** productivity-processor-2 +*** products +- productivity-processor-2,1 +*** ingredients +- solder,2 +- electronic-components,2 +- intergrated-electronics,2 +- crystal-shard-red,1 +- module-processor-board-2,1 + +* module-intermediates-2 +** pollution-clean-processor-2 +*** products +- pollution-clean-processor-2,1 +*** ingredients +- solder,2 +- electronic-components,2 +- intergrated-electronics,2 +- crystal-shard-harmonic,1 +- module-processor-board-2,1 + +* module-intermediates-2 +** pollution-create-processor-2 +*** products +- pollution-create-processor-2,1 +*** ingredients +- solder,2 +- electronic-components,2 +- intergrated-electronics,2 +- crystal-shard-harmonic,1 +- module-processor-board-2,1 + +* module-intermediates-3 +** module-circuit-board +*** products +- module-circuit-board,1 +*** ingredients +- copper-plate,1 +- tin-plate,1 +- phenolic-board,1 +- liquid-ferric-chloride-solution,5 + +* module-intermediates-3 +** module-processor-board-3 +*** products +- module-processor-board-3,4 +*** ingredients +- copper-plate,2 +- gold-plate,2 +- fibreglass-board,1 +- liquid-ferric-chloride-solution,10 + +* module-intermediates-3 +** speed-processor-3 +*** products +- speed-processor-3,1 +*** ingredients +- solder,3 +- intergrated-electronics,2 +- processing-electronics,1 +- crystal-full-blue,1 +- module-processor-board-3,1 + +* module-intermediates-3 +** effectivity-processor-3 +*** products +- effectivity-processor-3,1 +*** ingredients +- solder,3 +- intergrated-electronics,2 +- processing-electronics,1 +- crystal-full-green,1 +- module-processor-board-3,1 + +* module-intermediates-3 +** productivity-processor-3 +*** products +- productivity-processor-3,1 +*** ingredients +- solder,3 +- intergrated-electronics,2 +- processing-electronics,1 +- crystal-full-red,1 +- module-processor-board-3,1 + +* module-intermediates-3 +** pollution-clean-processor-3 +*** products +- pollution-clean-processor-3,1 +*** ingredients +- solder,3 +- intergrated-electronics,2 +- processing-electronics,1 +- crystal-full-harmonic,1 +- module-processor-board-3,1 + +* module-intermediates-3 +** pollution-create-processor-3 +*** products +- pollution-create-processor-3,1 +*** ingredients +- solder,3 +- intergrated-electronics,2 +- processing-electronics,1 +- crystal-full-harmonic,1 +- module-processor-board-3,1 + +* ore-crusher +** burner-ore-crusher +*** products +- burner-ore-crusher,1 +*** ingredients +- stone-furnace,1 +- stone,5 +- iron-gear-wheel,3 + +* ore-crusher +** ore-crusher +*** products +- ore-crusher,1 +*** ingredients +- burner-ore-crusher,1 +- stone-brick,15 +- iron-plate,9 +- iron-gear-wheel,6 + +* ore-crusher +** ore-crusher-2 +*** products +- ore-crusher-2,1 +*** ingredients +- ore-crusher,1 +- clay-brick,15 +- steel-plate,9 +- steel-gear-wheel,6 + +* ore-crusher +** ore-crusher-3 +*** products +- ore-crusher-3,1 +*** ingredients +- ore-crusher-2,1 +- aluminium-plate,12 +- concrete-brick,15 +- brass-gear-wheel,6 + +* ore-floatation +** ore-floatation-cell +*** products +- ore-floatation-cell,1 +*** ingredients +- clay-brick,40 +- bronze-alloy,12 +- electronic-circuit,8 +- bronze-pipe,12 + +* ore-floatation +** ore-floatation-cell-2 +*** products +- ore-floatation-cell-2,1 +*** ingredients +- ore-floatation-cell,1 +- aluminium-plate,16 +- concrete-brick,40 +- advanced-circuit,8 +- brass-pipe,12 + +* ore-floatation +** ore-floatation-cell-3 +*** products +- ore-floatation-cell-3,1 +*** ingredients +- ore-floatation-cell-2,1 +- reinforced-concrete-brick,40 +- titanium-plate,16 +- processing-unit,8 +- titanium-pipe,12 + +* ore-leaching +** ore-leaching-plant +*** products +- ore-leaching-plant,1 +*** ingredients +- aluminium-plate,16 +- concrete-brick,40 +- advanced-circuit,8 +- brass-pipe,12 + +* ore-leaching +** ore-leaching-plant-2 +*** products +- ore-leaching-plant-2,1 +*** ingredients +- ore-leaching-plant,1 +- reinforced-concrete-brick,40 +- titanium-plate,16 +- processing-unit,8 +- titanium-pipe,12 + +* ore-leaching +** ore-leaching-plant-3 +*** products +- ore-leaching-plant-3,1 +*** ingredients +- ore-leaching-plant-2,1 +- reinforced-concrete-brick,40 +- tungsten-plate,16 +- advanced-processing-unit,8 +- tungsten-pipe,12 + +* ore-powderizer +** ore-powderizer +*** products +- ore-powderizer,1 +*** ingredients +- clay-brick,5 +- bronze-alloy,3 +- steel-gear-wheel,3 + +* ore-powderizer +** ore-powderizer-2 +*** products +- ore-powderizer-2,1 +*** ingredients +- ore-powderizer,1 +- aluminium-plate,4 +- concrete-brick,5 +- brass-gear-wheel,3 + +* ore-powderizer +** ore-powderizer-3 +*** products +- ore-powderizer-3,1 +*** ingredients +- ore-powderizer-2,1 +- reinforced-concrete-brick,5 +- titanium-plate,4 +- titanium-gear-wheel,3 + +* ore-powderizer +** milling-drum +*** products +- milling-drum,1 +*** ingredients +- steel-plate,1 +- lubricant,10 + +* ore-powderizer +** milling-drum-used +*** products +- milling-drum,1 +*** ingredients +- milling-drum-used,1 +- lubricant,10 + +* ore-processing-a +** angelsore1-crushed +*** products +- angels-ore1-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore1,2 + +* ore-processing-a +** angelsore2-crushed +*** products +- angels-ore2-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore2,2 + +* ore-processing-a +** angelsore3-crushed +*** products +- angels-ore3-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore3,2 + +* ore-processing-a +** angelsore4-crushed +*** products +- angels-ore4-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore4,2 + +* ore-processing-a +** angelsore5-crushed +*** products +- angels-ore5-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore5,2 + +* ore-processing-a +** angelsore6-crushed +*** products +- angels-ore6-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore6,2 + +* ore-processing-a +** angelsore8-crushed +*** products +- angels-ore8-crushed,6 +*** ingredients +- angels-ore1-crushed,2 +- angels-ore2-crushed,2 +- angels-ore5-crushed,2 + +* ore-processing-a +** angelsore8-powder +*** products +- angels-ore8-powder,3 +- milling-drum-used,1 +*** ingredients +- angels-ore8-crushed,3 +- milling-drum,1 + +* ore-processing-a +** angelsore9-crushed +*** products +- angels-ore9-crushed,6 +*** ingredients +- angels-ore3-crushed,2 +- angels-ore4-crushed,2 +- angels-ore6-crushed,2 + +* ore-processing-a +** angelsore9-powder +*** products +- angels-ore9-powder,3 +- milling-drum-used,1 +*** ingredients +- angels-ore9-crushed,3 +- milling-drum,1 + +* ore-processing-b +** angelsore1-chunk +*** products +- angels-ore1-chunk,2 +- geode-blue,1 +- water-yellow-waste,50 +*** ingredients +- angels-ore1-crushed,2 +- water-purified,50 + +* ore-processing-b +** angelsore2-chunk +*** products +- angels-ore2-chunk,2 +- geode-purple,1 +- water-greenyellow-waste,50 +*** ingredients +- angels-ore2-crushed,2 +- water-purified,50 + +* ore-processing-b +** angelsore3-chunk +*** products +- angels-ore3-chunk,2 +- geode-yellow,1 +- water-yellow-waste,50 +*** ingredients +- angels-ore3-crushed,2 +- water-purified,50 + +* ore-processing-b +** angelsore4-chunk +*** products +- angels-ore4-chunk,2 +- geode-lightgreen,1 +- water-green-waste,50 +*** ingredients +- angels-ore4-crushed,2 +- water-purified,50 + +* ore-processing-b +** angelsore5-chunk +*** products +- angels-ore5-chunk,2 +- geode-cyan,1 +- water-red-waste,50 +*** ingredients +- angels-ore5-crushed,2 +- water-purified,50 + +* ore-processing-b +** angelsore6-chunk +*** products +- angels-ore6-chunk,2 +- geode-red,1 +- water-yellow-waste,50 +*** ingredients +- angels-ore6-crushed,2 +- water-purified,50 + +* ore-processing-b +** angelsore8-sludge +*** products +- angels-ore8-sludge,6 +*** ingredients +- angels-ore8-powder,3 +- angels-ore1-chunk,1 +- angels-ore2-chunk,1 +- angels-ore5-chunk,1 +- thermal-water,20 +- liquid-sulfuric-acid,20 + +* ore-processing-b +** angelsore8-dust +*** products +- angels-ore8-dust,4 +- water-yellow-waste,20 +*** ingredients +- solid-sodium-hydroxide,1 +- angels-ore8-sludge,4 + +* ore-processing-b +** angelsore9-sludge +*** products +- angels-ore9-sludge,6 +*** ingredients +- angels-ore9-powder,3 +- angels-ore3-chunk,1 +- angels-ore4-chunk,1 +- angels-ore6-chunk,1 +- thermal-water,20 +- liquid-sulfuric-acid,20 + +* ore-processing-b +** angelsore9-dust +*** products +- angels-ore9-dust,4 +- water-yellow-waste,20 +*** ingredients +- solid-sodium-hydroxide,1 +- angels-ore9-sludge,4 + +* ore-processing-c +** angelsore1-crystal +*** products +- angels-ore1-crystal,2 +*** ingredients +- angels-ore1-chunk,2 +- liquid-sulfuric-acid,10 + +* ore-processing-c +** angelsore2-crystal +*** products +- angels-ore2-crystal,2 +*** ingredients +- angels-ore2-chunk,2 +- liquid-hydrofluoric-acid,10 + +* ore-processing-c +** angelsore3-crystal +*** products +- angels-ore3-crystal,2 +*** ingredients +- angels-ore3-chunk,2 +- liquid-sulfuric-acid,10 + +* ore-processing-c +** angelsore4-crystal +*** products +- angels-ore4-crystal,2 +*** ingredients +- angels-ore4-chunk,2 +- liquid-hydrochloric-acid,10 + +* ore-processing-c +** angelsore5-crystal +*** products +- angels-ore5-crystal,2 +*** ingredients +- angels-ore5-chunk,2 +- liquid-nitric-acid,10 + +* ore-processing-c +** angelsore6-crystal +*** products +- angels-ore6-crystal,2 +*** ingredients +- angels-ore6-chunk,2 +- liquid-sulfuric-acid,10 + +* ore-processing-c +** angelsore8-solution +*** products +- angels-ore8-solution,60 +*** ingredients +- angels-ore8-dust,3 +- angels-ore1-crystal,1 +- angels-ore2-crystal,1 +- angels-ore5-crystal,1 +- liquid-sulfuric-acid,20 + +* ore-processing-c +** angelsore8-anode-sludge-filtering +*** products +- filter-ceramic-used,1 +- angels-ore8-slime,60 +- water-yellow-waste,10 +*** ingredients +- filter-ceramic,1 +- angels-ore8-solution,60 +- water-purified,50 + +* ore-processing-c +** angelsore9-solution +*** products +- angels-ore9-solution,60 +*** ingredients +- angels-ore9-dust,3 +- angels-ore3-crystal,1 +- angels-ore4-crystal,1 +- angels-ore6-crystal,1 +- liquid-sulfuric-acid,20 + +* ore-processing-c +** angelsore9-anode-sludge-filtering +*** products +- filter-ceramic-used,1 +- angels-ore9-slime,60 +- water-yellow-waste,10 +*** ingredients +- filter-ceramic,1 +- angels-ore9-solution,60 +- water-purified,50 + +* ore-processing-d +** angelsore1-pure +*** products +- angels-ore1-pure,4 +*** ingredients +- angels-ore1-crystal,4 + +* ore-processing-d +** angelsore2-pure +*** products +- angels-ore2-pure,4 +*** ingredients +- angels-ore2-crystal,4 + +* ore-processing-d +** angelsore3-pure +*** products +- angels-ore3-pure,4 +*** ingredients +- angels-ore3-crystal,4 + +* ore-processing-d +** angelsore4-pure +*** products +- angels-ore4-pure,4 +*** ingredients +- angels-ore4-crystal,4 + +* ore-processing-d +** angelsore5-pure +*** products +- angels-ore5-pure,4 +*** ingredients +- angels-ore5-crystal,4 + +* ore-processing-d +** angelsore6-pure +*** products +- angels-ore6-pure,4 +*** ingredients +- angels-ore6-crystal,4 + +* ore-processing-d +** angelsore8-anode-sludge +*** products +- slag,1 +- angels-ore8-anode-sludge,60 +- water-yellow-waste,20 +*** ingredients +- angels-ore8-slime,60 +- liquid-ferric-chloride-solution,10 + +* ore-processing-d +** angelsore8-crystal +*** products +- angels-ore8-crystal,6 +*** ingredients +- angels-ore8-anode-sludge,60 + +* ore-processing-d +** angelsore9-anode-sludge +*** products +- slag,1 +- angels-ore9-anode-sludge,60 +- water-yellow-waste,20 +*** ingredients +- angels-ore9-slime,60 +- liquid-cupric-chloride-solution,10 + +* ore-processing-d +** angelsore9-crystal +*** products +- angels-ore9-crystal,6 +*** ingredients +- angels-ore9-anode-sludge,60 + +* ore-refining +** ore-refinery +*** products +- ore-refinery,1 +*** ingredients +- reinforced-concrete-brick,100 +- titanium-plate,48 +- processing-unit,12 + +* ore-refining +** ore-refinery-2 +*** products +- ore-refinery-2,1 +*** ingredients +- ore-refinery,1 +- reinforced-concrete-brick,100 +- tungsten-plate,48 +- advanced-processing-unit,12 + +* ore-sorter +** ore-sorting-facility +*** products +- ore-sorting-facility,1 +*** ingredients +- stone-brick,60 +- iron-plate,36 +- iron-gear-wheel,24 +- basic-circuit-board,12 + +* ore-sorter +** ore-sorting-facility-2 +*** products +- ore-sorting-facility-2,1 +*** ingredients +- ore-sorting-facility,1 +- clay-brick,60 +- steel-plate,36 +- steel-gear-wheel,24 +- electronic-circuit,12 + +* ore-sorter +** ore-sorting-facility-3 +*** products +- ore-sorting-facility-3,1 +*** ingredients +- ore-sorting-facility-2,1 +- aluminium-plate,48 +- concrete-brick,60 +- brass-gear-wheel,24 +- advanced-circuit,12 + +* ore-sorter +** ore-sorting-facility-4 +*** products +- ore-sorting-facility-4,1 +*** ingredients +- ore-sorting-facility-3,1 +- reinforced-concrete-brick,60 +- titanium-plate,48 +- titanium-gear-wheel,24 +- processing-unit,12 + +* ore-sorting-advanced +** angelsore-crushed-mix1-processing +*** products +- iron-ore,4 +*** ingredients +- catalysator-brown,1 +- angels-ore1-crushed,2 +- angels-ore2-crushed,2 + +* ore-sorting-advanced +** angels-iron-pebbles +*** products +- angels-iron-pebbles,4 +*** ingredients +- iron-ore,2 + +* ore-sorting-advanced +** angelsore-crushed-mix2-processing +*** products +- copper-ore,4 +*** ingredients +- catalysator-brown,1 +- angels-ore3-crushed,2 +- angels-ore4-crushed,2 + +* ore-sorting-advanced +** angels-copper-pebbles +*** products +- angels-copper-pebbles,4 +*** ingredients +- copper-ore,2 + +* ore-sorting-advanced +** angelsore-crushed-mix3-processing +*** products +- lead-ore,4 +*** ingredients +- catalysator-brown,1 +- angels-ore4-crushed,2 +- angels-ore5-crushed,2 + +* ore-sorting-advanced +** angelsore-crushed-mix4-processing +*** products +- tin-ore,4 +*** ingredients +- catalysator-brown,1 +- angels-ore3-crushed,2 +- angels-ore6-crushed,2 + +* ore-sorting-advanced +** angelsore-chunk-mix1-processing +*** products +- quartz,4 +*** ingredients +- catalysator-green,1 +- angels-ore5-chunk,2 +- angels-ore6-chunk,2 + +* ore-sorting-advanced +** angelsore-chunk-mix2-processing +*** products +- nickel-ore,4 +*** ingredients +- catalysator-green,1 +- angels-ore1-chunk,2 +- angels-ore5-chunk,2 + +* ore-sorting-advanced +** angelsore-chunk-mix3-processing +*** products +- bauxite-ore,4 +*** ingredients +- catalysator-green,1 +- angels-ore2-chunk,2 +- angels-ore4-chunk,2 + +* ore-sorting-advanced +** angelsore-chunk-mix4-processing +*** products +- zinc-ore,4 +*** ingredients +- catalysator-green,1 +- angels-ore2-chunk,2 +- angels-ore6-chunk,2 + +* ore-sorting-advanced +** angelsore-chunk-mix5-processing +*** products +- silver-ore,4 +*** ingredients +- catalysator-green,1 +- angels-ore3-chunk,2 +- angels-ore6-chunk,2 + +* ore-sorting-advanced +** angelsore-chunk-mix6-processing +*** products +- fluorite-ore,2 +*** ingredients +- catalysator-green,1 +- angels-ore8-powder,2 +- angels-ore2-chunk,2 + +* ore-sorting-advanced +** angelsore-chunk-mix7-processing +*** products +- angels-void,1 +*** ingredients +- catalysator-green,1 +- angels-ore1-chunk,2 +- angels-ore2-chunk,2 + +* ore-sorting-advanced +** angelsore-crystal-mix1-processing +*** products +- rutile-ore,6 +*** ingredients +- catalysator-orange,1 +- angels-ore1-crystal,2 +- angels-ore4-crystal,2 +- angels-ore5-crystal,2 + +* ore-sorting-advanced +** angelsore-crystal-mix2-processing +*** products +- gold-ore,6 +*** ingredients +- catalysator-orange,1 +- angels-ore1-crystal,2 +- angels-ore5-crystal,2 +- angels-ore6-crystal,2 + +* ore-sorting-advanced +** angelsore-crystal-mix3-processing +*** products +- cobalt-ore,6 +*** ingredients +- catalysator-orange,1 +- angels-ore2-crystal,2 +- angels-ore4-crystal,2 +- angels-ore6-crystal,2 + +* ore-sorting-advanced +** angelsore-crystal-mix4-processing +*** products +- angels-void,1 +*** ingredients +- catalysator-orange,1 +- angels-ore2-crystal,2 +- angels-ore4-crystal,2 +- angels-ore5-crystal,2 + +* ore-sorting-advanced +** angelsore-crystal-mix5-processing +*** products +- uranium-ore,3 +*** ingredients +- catalysator-orange,1 +- angels-ore1-crystal,2 +- angels-ore3-crystal,2 +- angels-ore5-crystal,2 + +* ore-sorting-advanced +** angelsore-crystal-mix6-processing +*** products +- thorium-ore,3 +*** ingredients +- catalysator-green,1 +- angels-ore8-crystal,2 +- angels-ore9-crystal,2 + +* ore-sorting-advanced +** angelsore-pure-mix1-processing +*** products +- tungsten-ore,6 +*** ingredients +- catalysator-orange,1 +- angels-ore1-pure,2 +- angels-ore2-pure,2 +- angels-ore3-pure,2 + +* ore-sorting-advanced +** angelsore-pure-mix2-processing +*** products +- angels-void,1 +*** ingredients +- catalysator-orange,1 +- angels-ore3-pure,2 +- angels-ore5-pure,2 +- angels-ore6-pure,2 + +* ore-sorting-advanced +** angelsore-pure-mix3-processing +*** products +- angels-void,1 +*** ingredients +- catalysator-orange,1 +- angels-ore2-pure,2 +- angels-ore4-pure,2 +- angels-ore5-pure,2 + +* ore-sorting-t1 +** angelsore1-crushed-processing +*** products +- slag,1 +- iron-ore,2 +- copper-ore,1 +*** ingredients +- angels-ore1-crushed,4 + +* ore-sorting-t1 +** angelsore2-crushed-processing +*** products +- slag,1 +- iron-ore,2 +- copper-ore,1 +*** ingredients +- angels-ore2-crushed,4 + +* ore-sorting-t1 +** angelsore3-crushed-processing +*** products +- slag,1 +- copper-ore,2 +- iron-ore,1 +*** ingredients +- angels-ore3-crushed,4 + +* ore-sorting-t1 +** angelsore4-crushed-processing +*** products +- slag,1 +- copper-ore,2 +- iron-ore,1 +*** ingredients +- angels-ore4-crushed,4 + +* ore-sorting-t1 +** angelsore5-crushed-processing +*** products +- slag,1 +- lead-ore,2 +- nickel-ore,1 +*** ingredients +- angels-ore5-crushed,4 + +* ore-sorting-t1 +** angelsore6-crushed-processing +*** products +- slag,1 +- tin-ore,2 +- quartz,1 +*** ingredients +- angels-ore6-crushed,4 + +* ore-sorting-t1 +** angelsore8-crushed-processing +*** products +- iron-ore,2 +- manganese-ore,2 +*** ingredients +- angels-ore8-crushed,4 + +* ore-sorting-t1 +** angelsore9-crushed-processing +*** products +- copper-ore,2 +- tin-ore,2 +*** ingredients +- angels-ore9-crushed,4 + +* ore-sorting-t2 +** angelsore1-chunk-processing +*** products +- slag,1 +- iron-ore,2 +- copper-ore,1 +- quartz,1 +- nickel-ore,1 +*** ingredients +- angels-ore1-chunk,6 + +* ore-sorting-t2 +** angelsore2-chunk-processing +*** products +- slag,1 +- iron-ore,2 +- copper-ore,1 +- bauxite-ore,1 +- zinc-ore,1 +*** ingredients +- angels-ore2-chunk,6 + +* ore-sorting-t2 +** angelsore3-chunk-processing +*** products +- slag,1 +- copper-ore,2 +- iron-ore,1 +- silver-ore,1 +- tin-ore,1 +*** ingredients +- angels-ore3-chunk,6 + +* ore-sorting-t2 +** angelsore4-chunk-processing +*** products +- slag,1 +- copper-ore,2 +- iron-ore,1 +- lead-ore,1 +- bauxite-ore,1 +*** ingredients +- angels-ore4-chunk,6 + +* ore-sorting-t2 +** angelsore5-chunk-processing +*** products +- slag,1 +- lead-ore,2 +- nickel-ore,1 +- bauxite-ore,1 +- quartz,1 +*** ingredients +- angels-ore5-chunk,6 + +* ore-sorting-t2 +** angelsore6-chunk-processing +*** products +- slag,1 +- tin-ore,2 +- quartz,1 +- silver-ore,1 +- zinc-ore,1 +*** ingredients +- angels-ore6-chunk,6 + +* ore-sorting-t2 +** angelsore8-powder-processing +*** products +- iron-ore,3 +- manganese-ore,2 +- nickel-ore,1 +*** ingredients +- angels-ore8-powder,6 + +* ore-sorting-t2 +** angelsore9-powder-processing +*** products +- copper-ore,3 +- tin-ore,2 +- silver-ore,1 +*** ingredients +- angels-ore9-powder,6 + +* ore-sorting-t3 +** angelsore1-crystal-processing +*** products +- slag,1 +- iron-ore,3 +- copper-ore,1 +- quartz,1 +- nickel-ore,1 +- rutile-ore,1 +*** ingredients +- angels-ore1-crystal,8 + +* ore-sorting-t3 +** angelsore2-crystal-processing +*** products +- slag,1 +- iron-ore,3 +- copper-ore,1 +- bauxite-ore,1 +- zinc-ore,1 +- cobalt-ore,1 +*** ingredients +- angels-ore2-crystal,8 + +* ore-sorting-t3 +** angelsore3-crystal-processing +*** products +- slag,1 +- copper-ore,3 +- iron-ore,1 +- silver-ore,1 +- tin-ore,1 +- uranium-ore,1 +*** ingredients +- angels-ore3-crystal,8 + +* ore-sorting-t3 +** angelsore4-crystal-processing +*** products +- slag,1 +- copper-ore,3 +- iron-ore,1 +- lead-ore,1 +- bauxite-ore,1 +- rutile-ore,1 +*** ingredients +- angels-ore4-crystal,8 + +* ore-sorting-t3 +** angelsore5-crystal-processing +*** products +- slag,1 +- lead-ore,3 +- nickel-ore,1 +- bauxite-ore,1 +- quartz,1 +- gold-ore,1 +*** ingredients +- angels-ore5-crystal,8 + +* ore-sorting-t3 +** angelsore6-crystal-processing +*** products +- slag,1 +- tin-ore,3 +- quartz,1 +- silver-ore,1 +- zinc-ore,1 +- gold-ore,1 +*** ingredients +- angels-ore6-crystal,8 + +* ore-sorting-t3 +** angelsore8-dust-processing +*** products +- iron-ore,4 +- manganese-ore,2 +- nickel-ore,1 +- cobalt-ore,1 +*** ingredients +- angels-ore8-dust,8 + +* ore-sorting-t3 +** angelsore9-dust-processing +*** products +- copper-ore,4 +- tin-ore,2 +- silver-ore,1 +- gold-ore,1 +*** ingredients +- angels-ore9-dust,8 + +* ore-sorting-t4 +** angelsore1-pure-processing +*** products +- iron-ore,3 +- copper-ore,2 +- quartz,1 +- nickel-ore,1 +- rutile-ore,1 +- tungsten-ore,1 +*** ingredients +- angels-ore1-pure,9 + +* ore-sorting-t4 +** angelsore2-pure-processing +*** products +- iron-ore,3 +- copper-ore,2 +- bauxite-ore,1 +- zinc-ore,1 +- cobalt-ore,1 +- tungsten-ore,1 +*** ingredients +- angels-ore2-pure,9 + +* ore-sorting-t4 +** angelsore3-pure-processing +*** products +- copper-ore,3 +- iron-ore,2 +- silver-ore,1 +- tin-ore,1 +- uranium-ore,1 +- tungsten-ore,1 +*** ingredients +- angels-ore3-pure,9 + +* ore-sorting-t4 +** angelsore4-pure-processing +*** products +- copper-ore,3 +- iron-ore,2 +- lead-ore,1 +- bauxite-ore,1 +- rutile-ore,1 +- cobalt-ore,1 +*** ingredients +- angels-ore4-pure,9 + +* ore-sorting-t4 +** angelsore5-pure-processing +*** products +- lead-ore,3 +- nickel-ore,2 +- bauxite-ore,1 +- quartz,1 +- gold-ore,1 +- uranium-ore,1 +*** ingredients +- angels-ore5-pure,9 + +* ore-sorting-t4 +** angelsore6-pure-processing +*** products +- tin-ore,3 +- quartz,2 +- silver-ore,1 +- zinc-ore,1 +- gold-ore,1 +- cobalt-ore,1 +*** ingredients +- angels-ore6-pure,9 + +* ore-sorting-t4 +** angelsore8-crystal-processing +*** products +- iron-ore,4 +- manganese-ore,2 +- nickel-ore,1 +- cobalt-ore,1 +- chrome-ore,1 +*** ingredients +- angels-ore8-crystal,9 + +* ore-sorting-t4 +** angelsore9-crystal-processing +*** products +- copper-ore,4 +- tin-ore,2 +- silver-ore,1 +- gold-ore,1 +- quartz,1 +*** ingredients +- angels-ore9-crystal,9 + +* ore-whinning +** electro-whinning-cell +*** products +- electro-whinning-cell,1 +*** ingredients +- aluminium-plate,16 +- concrete-brick,20 +- advanced-circuit,8 +- brass-pipe,18 + +* ore-whinning +** electro-whinning-cell-2 +*** products +- electro-whinning-cell-2,1 +*** ingredients +- electro-whinning-cell,1 +- reinforced-concrete-brick,20 +- titanium-plate,16 +- processing-unit,8 +- titanium-pipe,18 + +* ore-whinning +** electro-whinning-cell-3 +*** products +- electro-whinning-cell-3,1 +*** ingredients +- electro-whinning-cell-2,1 +- reinforced-concrete-brick,20 +- tungsten-plate,16 +- advanced-processing-unit,8 +- tungsten-pipe,18 + +* other +** electric-energy-interface +*** products +- electric-energy-interface,1 +*** ingredients +- iron-plate,2 +- electronic-circuit,5 + +* petrochem-basics +** heavy-water-electrolysis +*** products +- gas-deuterium,20 +- gas-oxygen,12.5 +*** ingredients +- liquid-water-heavy,10 + +* petrochem-basics +** dirt-water-separation +*** products +- slag,1 +- gas-oxygen,30 +- gas-hydrogen,40 +*** ingredients +- water,100 + +* petrochem-basics +** dirt-water-separation-2 +*** products +- slag,1 +- angels-electrode-used,1 +- gas-oxygen,30 +- gas-hydrogen,40 +*** ingredients +- angels-electrode,1 +- water,100 + +* petrochem-basics +** water-separation +*** products +- gas-oxygen,40 +- gas-hydrogen,60 +*** ingredients +- water-purified,100 + +* petrochem-basics +** water-separation-2 +*** products +- angels-electrode-used,1 +- gas-oxygen,40 +- gas-hydrogen,60 +*** ingredients +- angels-electrode,1 +- water-purified,100 + +* petrochem-basics +** angels-heavy-water-separation +*** products +- gas-oxygen,40 +- gas-deuterium,60 +*** ingredients +- liquid-water-heavy,100 + +* petrochem-basics +** angels-heavy-water-separation-2 +*** products +- angels-electrode-used,1 +- gas-oxygen,40 +- gas-deuterium,60 +*** ingredients +- angels-electrode,1 +- liquid-water-heavy,100 + +* petrochem-basics +** water-synthesis +*** products +- water-purified,100 +*** ingredients +- gas-oxygen,60 +- gas-hydrogen,90 + +* petrochem-basics +** carbon-separation-1 +*** products +- gas-carbon-monoxide,50 +*** ingredients +- solid-carbon,1 +- water-purified,50 + +* petrochem-basics +** carbon-separation-2 +*** products +- gas-carbon-dioxide,50 +*** ingredients +- coal,1 + +* petrochem-basics +** solid-calcium-chloride +*** products +- solid-calcium-chloride,3 +*** ingredients +- stone-crushed,6 +- gas-hydrogen-chloride,30 + +* petrochem-basics +** water-gas-shift-1 +*** products +- gas-carbon-dioxide,50 +- gas-hydrogen,50 +*** ingredients +- gas-carbon-monoxide,50 +- steam,50 + +* petrochem-basics +** water-gas-shift-2 +*** products +- water-purified,50 +- gas-carbon-monoxide,50 +*** ingredients +- gas-hydrogen,50 +- gas-carbon-dioxide,50 + +* petrochem-buildings-chemical-plant +** angels-chemical-plant +*** products +- angels-chemical-plant,1 +*** ingredients +- iron-plate,6 +- iron-gear-wheel,3 +- basic-circuit-board,1 +- pipe,12 + +* petrochem-buildings-chemical-plant +** bob-distillery +*** products +- angels-chemical-plant,1 +*** ingredients +- copper-plate,3 +- iron-plate,3 +- copper-pipe,2 + +* petrochem-buildings-chemical-plant +** chemical-plant +*** products +- angels-chemical-plant,1 +*** ingredients +- steel-plate,5 +- iron-gear-wheel,5 +- electronic-circuit,5 +- pipe,5 + +* petrochem-buildings-chemical-plant +** angels-chemical-plant-2 +*** products +- angels-chemical-plant-2,1 +*** ingredients +- bronze-alloy,6 +- angels-chemical-plant,1 +- steel-gear-wheel,3 +- electronic-circuit,1 +- bronze-pipe,12 + +* petrochem-buildings-chemical-plant +** chemical-plant-2 +*** products +- angels-chemical-plant-2,1 +*** ingredients +- glass,10 +- angels-chemical-plant,1 +- steel-gear-wheel,5 +- steel-bearing,5 +- advanced-circuit,5 +- steel-pipe,5 + +* petrochem-buildings-chemical-plant +** angels-chemical-plant-3 +*** products +- angels-chemical-plant-3,1 +*** ingredients +- aluminium-plate,8 +- angels-chemical-plant-2,1 +- brass-gear-wheel,3 +- advanced-circuit,1 +- brass-pipe,12 + +* petrochem-buildings-chemical-plant +** chemical-plant-3 +*** products +- angels-chemical-plant-3,1 +*** ingredients +- titanium-plate,10 +- angels-chemical-plant-2,1 +- titanium-gear-wheel,5 +- titanium-bearing,5 +- processing-unit,10 +- titanium-pipe,5 + +* petrochem-buildings-chemical-plant +** angels-chemical-plant-4 +*** products +- angels-chemical-plant-4,1 +*** ingredients +- titanium-plate,4 +- angels-chemical-plant-3,1 +- titanium-gear-wheel,3 +- processing-unit,1 +- titanium-pipe,12 + +* petrochem-buildings-chemical-plant +** chemical-plant-4 +*** products +- angels-chemical-plant-4,1 +*** ingredients +- nitinol-alloy,10 +- angels-chemical-plant-3,1 +- nitinol-gear-wheel,5 +- nitinol-bearing,5 +- advanced-processing-unit,10 +- nitinol-pipe,5 + +* petrochem-buildings-chemical-plant +** advanced-chemical-plant +*** products +- advanced-chemical-plant,1 +*** ingredients +- clay-brick,20 +- bronze-alloy,6 +- electronic-circuit,4 +- bronze-pipe,36 + +* petrochem-buildings-chemical-plant +** advanced-chemical-plant-2 +*** products +- advanced-chemical-plant-2,1 +*** ingredients +- reinforced-concrete-brick,20 +- titanium-plate,8 +- advanced-chemical-plant,1 +- processing-unit,4 +- titanium-pipe,36 + +* petrochem-buildings-electrolyser +** angels-electrolyser +*** products +- angels-electrolyser,1 +*** ingredients +- stone-brick,15 +- iron-plate,9 +- basic-circuit-board,3 +- pipe,39 + +* petrochem-buildings-electrolyser +** electrolyser +*** products +- angels-electrolyser,1 +*** ingredients +- stone-brick,5 +- iron-plate,5 +- basic-circuit-board,5 +- stone-pipe,2 + +* petrochem-buildings-electrolyser +** angels-electrolyser-2 +*** products +- angels-electrolyser-2,1 +*** ingredients +- clay-brick,15 +- bronze-alloy,9 +- angels-electrolyser,1 +- electronic-circuit,3 +- bronze-pipe,39 + +* petrochem-buildings-electrolyser +** electrolyser-2 +*** products +- angels-electrolyser-2,1 +*** ingredients +- glass,10 +- steel-plate,10 +- angels-electrolyser,1 +- electronic-circuit,5 +- bronze-pipe,5 + +* petrochem-buildings-electrolyser +** angels-electrolyser-3 +*** products +- angels-electrolyser-3,1 +*** ingredients +- aluminium-plate,12 +- concrete-brick,15 +- angels-electrolyser-2,1 +- advanced-circuit,3 +- brass-pipe,39 + +* petrochem-buildings-electrolyser +** electrolyser-3 +*** products +- angels-electrolyser-3,1 +*** ingredients +- aluminium-plate,10 +- invar-alloy,10 +- plastic-bar,10 +- angels-electrolyser-2,1 +- advanced-circuit,10 +- plastic-pipe,5 + +* petrochem-buildings-electrolyser +** angels-electrolyser-4 +*** products +- angels-electrolyser-4,1 +*** ingredients +- reinforced-concrete-brick,15 +- titanium-plate,12 +- angels-electrolyser-3,1 +- processing-unit,3 +- titanium-pipe,39 + +* petrochem-buildings-electrolyser +** electrolyser-4 +*** products +- angels-electrolyser-4,1 +*** ingredients +- silicon-nitride,10 +- titanium-plate,10 +- tungsten-plate,10 +- angels-electrolyser-3,1 +- processing-unit,10 +- ceramic-pipe,5 + +* petrochem-buildings-electrolyser +** electrolyser-5 +*** products +- angels-electrolyser-4,1 +*** ingredients +- tungsten-carbide,10 +- copper-tungsten-alloy,10 +- nitinol-alloy,10 +- angels-electrolyser-4,1 +- advanced-processing-unit,10 +- copper-tungsten-pipe,5 + +* petrochem-buildings-electrolyser +** angels-air-filter +*** products +- angels-air-filter,1 +*** ingredients +- stone-brick,25 +- iron-plate,12 +- basic-circuit-board,5 +- pipe,24 + +* petrochem-buildings-electrolyser +** angels-air-filter-2 +*** products +- angels-air-filter-2,1 +*** ingredients +- clay-brick,25 +- bronze-alloy,12 +- angels-air-filter,1 +- electronic-circuit,5 +- bronze-pipe,24 + +* petrochem-buildings-electrolyser +** angels-air-filter-3 +*** products +- angels-air-filter-3,1 +*** ingredients +- aluminium-plate,16 +- concrete-brick,25 +- angels-air-filter-2,1 +- advanced-circuit,5 +- brass-pipe,24 + +* petrochem-buildings-electrolyser +** liquifier +*** products +- liquifier,1 +*** ingredients +- stone-brick,10 +- iron-plate,6 +- basic-circuit-board,2 +- pipe,6 + +* petrochem-buildings-electrolyser +** liquifier-2 +*** products +- liquifier-2,1 +*** ingredients +- clay-brick,10 +- bronze-alloy,6 +- liquifier,1 +- electronic-circuit,2 +- bronze-pipe,6 + +* petrochem-buildings-electrolyser +** liquifier-3 +*** products +- liquifier-3,1 +*** ingredients +- aluminium-plate,8 +- concrete-brick,10 +- liquifier-2,1 +- advanced-circuit,2 +- brass-pipe,6 + +* petrochem-buildings-electrolyser +** liquifier-4 +*** products +- liquifier-4,1 +*** ingredients +- reinforced-concrete-brick,10 +- titanium-plate,8 +- liquifier-3,1 +- processing-unit,2 +- titanium-pipe,6 + +* petrochem-buildings-gas-refinery +** gas-refinery-small +*** products +- gas-refinery-small,1 +*** ingredients +- clay-brick,20 +- steel-plate,6 +- electronic-circuit,4 +- steel-pipe,36 + +* petrochem-buildings-gas-refinery +** gas-refinery-small-2 +*** products +- gas-refinery-small-2,1 +*** ingredients +- aluminium-plate,8 +- concrete-brick,20 +- gas-refinery-small,1 +- advanced-circuit,4 +- brass-pipe,36 + +* petrochem-buildings-gas-refinery +** gas-refinery-small-3 +*** products +- gas-refinery-small-3,1 +*** ingredients +- reinforced-concrete-brick,20 +- titanium-plate,8 +- gas-refinery-small-2,1 +- processing-unit,4 +- titanium-pipe,36 + +* petrochem-buildings-gas-refinery +** gas-refinery-small-4 +*** products +- gas-refinery-small-4,1 +*** ingredients +- reinforced-concrete-brick,20 +- tungsten-plate,8 +- gas-refinery-small-3,1 +- advanced-processing-unit,4 +- tungsten-pipe,36 + +* petrochem-buildings-gas-refinery +** gas-refinery +*** products +- gas-refinery,1 +*** ingredients +- aluminium-plate,20 +- concrete-brick,50 +- advanced-circuit,10 +- brass-pipe,57 + +* petrochem-buildings-gas-refinery +** gas-refinery-2 +*** products +- gas-refinery-2,1 +*** ingredients +- reinforced-concrete-brick,50 +- titanium-plate,20 +- gas-refinery,1 +- processing-unit,10 +- titanium-pipe,57 + +* petrochem-buildings-gas-refinery +** gas-refinery-3 +*** products +- gas-refinery-3,1 +*** ingredients +- reinforced-concrete-brick,50 +- tungsten-plate,20 +- gas-refinery-2,1 +- advanced-processing-unit,10 +- tungsten-pipe,57 + +* petrochem-buildings-gas-refinery +** gas-refinery-4 +*** products +- gas-refinery-4,1 +*** ingredients +- reinforced-concrete-brick,50 +- tungsten-carbide,40 +- gas-refinery-3,1 +- advanced-processing-unit,5 +- copper-tungsten-pipe,30 + +* petrochem-buildings-oil-refinery +** separator +*** products +- separator,1 +*** ingredients +- clay-brick,25 +- steel-plate,6 +- electronic-circuit,5 +- steel-pipe,30 + +* petrochem-buildings-oil-refinery +** separator-2 +*** products +- separator-2,1 +*** ingredients +- aluminium-plate,8 +- concrete-brick,25 +- separator,1 +- advanced-circuit,5 +- brass-pipe,30 + +* petrochem-buildings-oil-refinery +** separator-3 +*** products +- separator-3,1 +*** ingredients +- reinforced-concrete-brick,25 +- titanium-plate,8 +- separator-2,1 +- processing-unit,5 +- titanium-pipe,30 + +* petrochem-buildings-oil-refinery +** separator-4 +*** products +- separator-4,1 +*** ingredients +- reinforced-concrete-brick,25 +- tungsten-plate,8 +- separator-3,1 +- advanced-processing-unit,5 +- tungsten-pipe,30 + +* petrochem-buildings-oil-refinery +** oil-refinery +*** products +- oil-refinery,1 +*** ingredients +- steel-plate,6 +- steel-gear-wheel,12 +- electronic-circuit,4 +- steel-pipe,36 + +* petrochem-buildings-oil-refinery +** oil-refinery-2 +*** products +- oil-refinery-2,1 +*** ingredients +- aluminium-plate,8 +- oil-refinery,1 +- brass-gear-wheel,12 +- advanced-circuit,4 +- brass-pipe,36 + +* petrochem-buildings-oil-refinery +** oil-refinery-3 +*** products +- oil-refinery-3,1 +*** ingredients +- titanium-plate,8 +- oil-refinery-2,1 +- titanium-gear-wheel,12 +- processing-unit,4 +- titanium-pipe,36 + +* petrochem-buildings-oil-refinery +** oil-refinery-4 +*** products +- oil-refinery-4,1 +*** ingredients +- tungsten-plate,8 +- oil-refinery-3,1 +- tungsten-gear-wheel,12 +- advanced-processing-unit,4 +- tungsten-pipe,36 + +* petrochem-buildings-steam +** steam-cracker +*** products +- steam-cracker,1 +*** ingredients +- clay-brick,20 +- bronze-alloy,6 +- electronic-circuit,4 +- bronze-pipe,36 + +* petrochem-buildings-steam +** steam-cracker-2 +*** products +- steam-cracker-2,1 +*** ingredients +- aluminium-plate,8 +- concrete-brick,20 +- steam-cracker,1 +- advanced-circuit,4 +- brass-pipe,36 + +* petrochem-buildings-steam +** steam-cracker-3 +*** products +- steam-cracker-3,1 +*** ingredients +- reinforced-concrete-brick,20 +- titanium-plate,8 +- steam-cracker-2,1 +- processing-unit,4 +- titanium-pipe,36 + +* petrochem-buildings-steam +** steam-cracker-4 +*** products +- steam-cracker-4,1 +*** ingredients +- reinforced-concrete-brick,20 +- tungsten-plate,8 +- steam-cracker-3,1 +- advanced-processing-unit,4 +- tungsten-pipe,36 + +* petrochem-buildings-steam +** angels-flare-stack +*** products +- angels-flare-stack,1 +*** ingredients +- stone-brick,5 +- iron-plate,3 +- basic-circuit-board,1 +- pipe,3 + +* petrochem-carbon-gas-feed +** gas-separation +*** products +- gas-raw-1,60 +- liquid-condensates,30 +- water-yellow-waste,10 +*** ingredients +- gas-natural-1,100 + +* petrochem-carbon-gas-feed +** gas-refining +*** products +- gas-acid,20 +- liquid-ngl,80 +*** ingredients +- gas-raw-1,100 + +* petrochem-carbon-gas-feed +** gas-fractioning +*** products +- gas-methane,50 +- gas-ethane,30 +- gas-butane,20 +*** ingredients +- liquid-ngl,100 + +* petrochem-carbon-gas-feed +** gas-fractioning-synthesis +*** products +- gas-methane,90 +- gas-ethane,30 +- gas-butane,20 +- gas-carbon-monoxide,10 +*** ingredients +- liquid-ngl,100 +- gas-synthesis,50 + +* petrochem-carbon-gas-feed +** gas-fractioning-condensates +*** products +- gas-methane,30 +- gas-ethane,30 +- gas-butane,70 +- liquid-naphtha,20 +*** ingredients +- liquid-ngl,100 +- liquid-condensates,50 + +* petrochem-carbon-gas-feed +** gas-fractioning-residual +*** products +- gas-methane,40 +- gas-ethane,40 +- gas-butane,50 +- liquid-toluene,20 +*** ingredients +- liquid-ngl,100 +- gas-residual,50 + +* petrochem-carbon-gas-feed +** condensates-refining +*** products +- solid-coke,2 +- liquid-naphtha,50 +- gas-methane,30 +*** ingredients +- liquid-condensates,60 +- thermal-water,20 +- gas-carbon-monoxide,20 + +* petrochem-carbon-oil-feed +** oil-separation +*** products +- gas-raw-1,20 +- crude-oil,70 +- water-yellow-waste,10 +*** ingredients +- liquid-multi-phase-oil,100 + +* petrochem-carbon-oil-feed +** oil-refining +*** products +- solid-oil-residual,1 +- liquid-mineral-oil,20 +- liquid-fuel-oil,30 +- liquid-naphtha,50 +*** ingredients +- crude-oil,100 + +* petrochem-carbon-oil-feed +** advanced-oil-refining +*** products +- solid-oil-residual,1 +- liquid-mineral-oil,20 +- liquid-fuel-oil,20 +- liquid-naphtha,70 +*** ingredients +- crude-oil,90 +- gas-hydrogen,20 + +* petrochem-carbon-oil-feed +** condensates-oil-refining +*** products +- solid-oil-residual,1 +- liquid-mineral-oil,40 +- liquid-fuel-oil,30 +- liquid-naphtha,30 +*** ingredients +- crude-oil,40 +- liquid-condensates,60 + +* petrochem-carbon-oil-feed +** residual-oil-refining +*** products +- solid-oil-residual,1 +- liquid-mineral-oil,60 +- liquid-fuel-oil,30 +- liquid-naphtha,10 +*** ingredients +- crude-oil,60 +- gas-residual,40 + +* petrochem-carbon-oil-feed +** liquid-mineral-oil-catalyst +*** products +- liquid-mineral-oil,100 +*** ingredients +- liquid-naphtha,60 +- thermal-water,20 +- gas-carbon-monoxide,20 + +* petrochem-carbon-oil-feed +** mineral-oil-lubricant +*** products +- lubricant,50 +*** ingredients +- liquid-mineral-oil,40 +- gas-residual,10 + +* petrochem-carbon-oil-feed +** liquid-fuel +*** products +- liquid-fuel,50 +*** ingredients +- liquid-fuel-oil,40 +- gas-residual,10 + +* petrochem-carbon-synthesis +** gas-synthesis-separation +*** products +- gas-carbon-monoxide,40 +- gas-hydrogen,60 +*** ingredients +- gas-synthesis,100 + +* petrochem-carbon-synthesis +** gas-synthesis-reforming +*** products +- gas-synthesis,100 +*** ingredients +- gas-carbon-monoxide,60 +- gas-hydrogen,90 + +* petrochem-carbon-synthesis +** gas-synthesis-methanation +*** products +- catalyst-metal-carrier,1 +- gas-methane,60 +- gas-ethane,20 +- gas-butane,20 +*** ingredients +- catalyst-metal-blue,1 +- gas-synthesis,100 +- gas-hydrogen,40 + +* petrochem-carbon-synthesis +** liquid-naphtha-catalyst +*** products +- catalyst-metal-carrier,1 +- liquid-naphtha,100 +*** ingredients +- catalyst-metal-red,1 +- gas-synthesis,150 +- gas-carbon-monoxide,50 + +* petrochem-carbon-synthesis +** gas-synthesis-methanol +*** products +- catalyst-metal-carrier,1 +- water-purified,20 +- gas-methanol,80 +*** ingredients +- catalyst-metal-green,1 +- gas-synthesis,100 +- gas-carbon-dioxide,40 + +* petrochem-carbon-synthesis +** steam-cracking-gas-residual +*** products +- gas-synthesis,150 +*** ingredients +- gas-residual,100 +- steam,100 + +* petrochem-carbon-synthesis +** steam-cracking-oil-residual +*** products +- gas-residual,100 +*** ingredients +- solid-oil-residual,10 +- steam,100 + +* petrochem-catalysts +** angels-electrode +*** products +- angels-electrode,1 +*** ingredients +- steel-plate,1 +- solid-carbon,1 + +* petrochem-catalysts +** angels-electrode-used +*** products +- angels-electrode,1 +- water-mineralized,10 +- water,40 +*** ingredients +- angels-electrode-used,1 +- water-purified,50 + +* petrochem-catalysts +** filter-lime +*** products +- filter-lime,1 +*** ingredients +- filter-frame,1 +- solid-lime,5 + +* petrochem-catalysts +** catalyst-metal-carrier +*** products +- catalyst-metal-carrier,10 +*** ingredients +- iron-plate,5 + +* petrochem-catalysts +** catalyst-metal-red +*** products +- catalyst-metal-red,10 +*** ingredients +- copper-ore,1 +- iron-ore,1 +- catalyst-metal-carrier,10 + +* petrochem-catalysts +** catalyst-metal-green +*** products +- catalyst-metal-green,10 +*** ingredients +- bauxite-ore,1 +- silver-ore,1 +- catalyst-metal-carrier,10 + +* petrochem-catalysts +** catalyst-metal-blue +*** products +- catalyst-metal-blue,10 +*** ingredients +- cobalt-ore,1 +- rutile-ore,1 +- catalyst-metal-carrier,10 + +* petrochem-catalysts +** catalyst-metal-yellow +*** products +- catalyst-metal-yellow,10 +*** ingredients +- nickel-ore,1 +- tungsten-ore,1 +- catalyst-metal-carrier,10 + +* petrochem-chemistry +** gas-formaldehyde-catalyst +*** products +- catalyst-metal-carrier,1 +- gas-formaldehyde,100 +*** ingredients +- catalyst-metal-green,1 +- gas-methanol,100 + +* petrochem-chemistry +** liquid-styrene-catalyst +*** products +- catalyst-metal-carrier,1 +- liquid-styrene,50 +*** ingredients +- catalyst-metal-green,1 +- liquid-ethylbenzene,100 + +* petrochem-chemistry +** liquid-ethylbenzene-catalyst +*** products +- liquid-ethylbenzene,80 +- gas-hydrogen-fluoride,20 +*** ingredients +- gas-benzene,50 +- gas-ethylene,50 +- liquid-hydrofluoric-acid,20 + +* petrochem-chemistry +** liquid-ethylene-carbonate +*** products +- liquid-ethylene-carbonate,90 +*** ingredients +- gas-ethylene-oxide,100 +- gas-carbon-dioxide,100 + +* petrochem-chemistry +** liquid-phenol-catalyst +*** products +- catalyst-metal-carrier,1 +- liquid-phenol,100 +*** ingredients +- catalyst-metal-yellow,1 +- gas-benzene,100 +- gas-oxygen,100 + +* petrochem-chemistry +** cumene-process +*** products +- catalyst-metal-carrier,1 +- liquid-phenol,60 +- gas-acetone,60 +*** ingredients +- catalyst-metal-blue,1 +- gas-benzene,50 +- gas-propene,50 +- gas-oxygen,20 + +* petrochem-chemistry +** liquid-bisphenol-a +*** products +- liquid-bisphenol-a,100 +*** ingredients +- liquid-phenol,60 +- gas-acetone,40 +- liquid-hydrochloric-acid,20 + +* petrochem-chemistry +** gas-propene-synthesis +*** products +- gas-propene,80 +- gas-residual,20 +*** ingredients +- gas-methanol,100 +- steam,50 + +* petrochem-chlorine +** water-saline-separation +*** products +- solid-sodium-hydroxide,1 +- gas-chlorine,40 +- gas-hydrogen,60 +*** ingredients +- water-saline,100 + +* petrochem-chlorine +** gas-hydrogen-chloride +*** products +- gas-hydrogen-chloride,100 +*** ingredients +- gas-chlorine,50 +- gas-hydrogen,50 + +* petrochem-chlorine +** gas-hydrogen-chloride-separation +*** products +- gas-chlorine,50 +- gas-hydrogen,50 +*** ingredients +- gas-hydrogen-chloride,100 + +* petrochem-chlorine +** gas-chlor-methane +*** products +- gas-chlor-methane,100 +*** ingredients +- gas-chlorine,60 +- gas-methane,40 + +* petrochem-chlorine +** liquid-hydrochloric-acid +*** products +- liquid-hydrochloric-acid,50 +*** ingredients +- gas-hydrogen-chloride,100 +- water-purified,50 + +* petrochem-chlorine +** liquid-hydrochloric-acid-solid-sodium-sulfate +*** products +- solid-sodium-sulfate,3 +- liquid-hydrochloric-acid,70 +*** ingredients +- solid-salt,6 +- liquid-sulfuric-acid,120 + +* petrochem-chlorine +** liquid-ferric-chloride-solution +*** products +- liquid-ferric-chloride-solution,40 +*** ingredients +- iron-ore,2 +- gas-hydrogen-chloride,40 + +* petrochem-chlorine +** liquid-cupric-chloride-solution +*** products +- liquid-cupric-chloride-solution,40 +*** ingredients +- copper-ore,2 +- gas-hydrogen-chloride,40 + +* petrochem-chlorine-2 +** gas-allylchlorid +*** products +- gas-allylchlorid,50 +- gas-hydrogen-chloride,50 +*** ingredients +- gas-propene,50 +- gas-chlorine,50 + +* petrochem-chlorine-2 +** gas-epichlorhydrin +*** products +- gas-epichlorhydrin,90 +*** ingredients +- solid-sodium-hydroxide,5 +- gas-allylchlorid,100 +- liquid-hydrochloric-acid,50 + +* petrochem-chlorine-2 +** liquid-glycerol +*** products +- liquid-glycerol,50 +*** ingredients +- gas-epichlorhydrin,100 +- water-purified,50 + +* petrochem-chlorine-2 +** liquid-perchloric-acid +*** products +- liquid-perchloric-acid,50 +*** ingredients +- solid-sodium-perchlorate,2 +- liquid-hydrochloric-acid,50 + +* petrochem-chlorine-2 +** gas-phosgene +*** products +- gas-phosgene,100 +*** ingredients +- solid-carbon,1 +- gas-carbon-monoxide,60 +- gas-chlorine,40 + +* petrochem-coal +** bob-coal-from-wood +*** products +- coal,1 +*** ingredients +- wood,5 + +* petrochem-coal +** coal-crushed +*** products +- coal-crushed,2 +*** ingredients +- coal,1 + +* petrochem-coal +** solid-coke +*** products +- solid-coke,2 +*** ingredients +- coal-crushed,2 + +* petrochem-coal +** solid-coke-sulfur +*** products +- solid-coke,2 +- water-yellow-waste,50 +*** ingredients +- coal-crushed,2 +- water-purified,50 + +* petrochem-coal +** coke-purification +*** products +- solid-carbon,3 +*** ingredients +- solid-coke,2 +- steam,30 + +* petrochem-coal +** coke-purification-2 +*** products +- solid-carbon,6 +- solid-sodium-carbonate,1 +- water,10 +*** ingredients +- solid-coke,4 +- solid-sodium-hydroxide,1 +- gas-nitrogen,30 + +* petrochem-coal +** pellet-coke +*** products +- pellet-coke,1 +*** ingredients +- solid-coke,5 + +* petrochem-coal +** coal-cracking-1 +*** products +- solid-coke,6 +- gas-hydrogen-sulfide,50 +- gas-benzene,30 +- gas-methane,70 +*** ingredients +- coal,5 + +* petrochem-coal +** coal-cracking-2 +*** products +- solid-coke,6 +- catalyst-metal-carrier,1 +- liquid-naphtha,60 +- liquid-ngl,30 +- liquid-mineral-oil,20 +*** ingredients +- coal,5 +- catalyst-metal-red,1 +- gas-hydrogen,50 + +* petrochem-coal +** coal-cracking-3 +*** products +- gas-synthesis,100 +- gas-carbon-dioxide,20 +- gas-hydrogen-sulfide,30 +*** ingredients +- coal,5 +- steam,50 +- gas-oxygen,50 + +* petrochem-cracking +** steam-cracking-methane +*** products +- gas-methanol,80 +- gas-residual,20 +*** ingredients +- gas-methane,60 +- steam,60 + +* petrochem-cracking +** steam-cracking-ethane +*** products +- gas-ethylene,80 +- gas-residual,20 +*** ingredients +- gas-ethane,60 +- steam,60 + +* petrochem-cracking +** steam-cracking-butane +*** products +- gas-benzene,80 +- gas-residual,20 +*** ingredients +- gas-butane,60 +- steam,60 + +* petrochem-cracking +** catalyst-steam-cracking-butane +*** products +- catalyst-metal-carrier,1 +- gas-butadiene,80 +- gas-residual,20 +*** ingredients +- catalyst-metal-green,1 +- liquid-naphtha,60 +- steam,60 + +* petrochem-cracking +** catalyst-steam-cracking-naphtha +*** products +- catalyst-metal-carrier,1 +- gas-propene,100 +*** ingredients +- catalyst-metal-red,1 +- liquid-naphtha,100 +- steam,100 + +* petrochem-cracking +** steam-cracking-naphtha +*** products +- gas-synthesis,150 +- gas-residual,10 +*** ingredients +- liquid-naphtha,100 +- steam,100 + +* petrochem-cracking +** steam-cracking-mineral-oil +*** products +- gas-synthesis,100 +- gas-residual,10 +*** ingredients +- liquid-mineral-oil,100 +- steam,100 + +* petrochem-cracking +** steam-cracking-fuel-oil +*** products +- gas-synthesis,100 +- gas-residual,10 +*** ingredients +- liquid-fuel-oil,100 +- steam,100 + +* petrochem-feedstock +** gas-methanol-catalyst +*** products +- catalyst-metal-carrier,1 +- gas-methanol,100 +*** ingredients +- catalyst-metal-green,1 +- gas-carbon-dioxide,100 +- gas-hydrogen,100 + +* petrochem-feedstock +** gas-ethylene-oxide +*** products +- catalyst-metal-carrier,1 +- gas-ethylene-oxide,100 +*** ingredients +- catalyst-metal-green,1 +- gas-ethylene,100 +- gas-oxygen,50 + +* petrochem-feedstock +** liquid-polyethylene-catalyst +*** products +- catalyst-metal-carrier,1 +- liquid-polyethylene,50 +*** ingredients +- catalyst-metal-blue,1 +- gas-ethylene,100 + +* petrochem-feedstock +** gas-benzene-catalyst +*** products +- catalyst-metal-carrier,1 +- gas-benzene,100 +*** ingredients +- catalyst-metal-green,1 +- gas-methane,100 + +* petrochem-feedstock +** liquid-toluene-from-naphtha +*** products +- catalyst-metal-carrier,1 +- liquid-toluene,100 +*** ingredients +- catalyst-metal-green,1 +- liquid-naphtha,100 +- gas-hydrogen,100 + +* petrochem-feedstock +** liquid-toluene-from-benzene +*** products +- catalyst-metal-carrier,1 +- liquid-toluene,100 +- gas-hydrogen-chloride,50 +*** ingredients +- catalyst-metal-green,1 +- gas-benzene,100 +- gas-chlor-methane,50 + +* petrochem-fuel +** solid-fuel-methane +*** products +- solid-fuel,2 +*** ingredients +- solid-coke,1 +- gas-methane,100 + +* petrochem-fuel +** solid-fuel-naphtha +*** products +- solid-fuel,2 +*** ingredients +- solid-coke,1 +- liquid-naphtha,100 + +* petrochem-fuel +** solid-fuel-fuel-oil +*** products +- solid-fuel,2 +*** ingredients +- solid-coke,1 +- liquid-fuel-oil,50 + +* petrochem-fuel +** solid-fuel-synthesis +*** products +- solid-fuel,2 +*** ingredients +- solid-coke,1 +- gas-synthesis,100 + +* petrochem-fuel +** solid-fuel-from-light-oil +*** products +- solid-fuel,1 +*** ingredients +- liquid-fuel-oil,10 + +* petrochem-fuel +** solid-fuel-from-petroleum-gas +*** products +- solid-fuel,1 +*** ingredients +- gas-methane,20 + +* petrochem-fuel +** solid-fuel-from-heavy-oil +*** products +- solid-fuel,1 +*** ingredients +- liquid-naphtha,20 + +* petrochem-fuel +** solid-fuel-from-hydrogen +*** products +- solid-fuel,1 +*** ingredients +- coal,1 +- gas-hydrogen,175 + +* petrochem-fuel +** solid-fuel-hydrazine +*** products +- solid-fuel,2 +*** ingredients +- gas-hydrazine,50 + +* petrochem-fuel +** enriched-fuel-from-liquid-fuel +*** products +- enriched-fuel,1 +*** ingredients +- liquid-fuel,100 + +* petrochem-fuel +** rocket-oxidizer-capsule +*** products +- rocket-oxidizer-capsule,2 +*** ingredients +- liquid-nitric-acid,10 +- gas-dinitrogen-tetroxide,10 + +* petrochem-fuel +** rocket-fuel-capsule +*** products +- rocket-fuel-capsule,2 +*** ingredients +- gas-dimethylhydrazine,30 +- gas-hydrazine,30 + +* petrochem-fuel +** rocket-fuel +*** products +- rocket-fuel,1 +*** ingredients +- rocket-oxidizer-capsule,10 +- rocket-fuel-capsule,10 + +* petrochem-fuel +** rocket-booster-1 +*** products +- rocket-booster,2 +*** ingredients +- solid-ammonium-nitrate,3 +- pipe,1 + +* petrochem-fuel +** rocket-booster-2 +*** products +- rocket-booster,3 +*** ingredients +- solid-ammonium-perchlorate,3 +- pipe,1 + +* petrochem-fuel +** nuclear-fuel +*** products +- nuclear-fuel,1 +*** ingredients +- rocket-fuel,1 +- uranium-235,1 + +* petrochem-fuel +** angels-nuclear-fuel +*** products +- angels-nuclear-fuel,1 +*** ingredients +- rocket-fuel,1 +- plutonium-239,1 + +* petrochem-fuel +** angels-nuclear-fuel-2 +*** products +- angels-nuclear-fuel-2,3 +*** ingredients +- rocket-fuel,3 +- plutonium-239,2 +- thorium-232,1 + +* petrochem-nitrogen +** angels-air-filtering +*** products +- gas-compressed-air,200 +*** ingredients +- + +* petrochem-nitrogen +** air-separation +*** products +- gas-nitrogen,50 +- gas-oxygen,50 +*** ingredients +- gas-compressed-air,100 + +* petrochem-nitrogen +** solid-sodium-nitrate-processing +*** products +- gas-nitrogen-monoxide,40 +- gas-nitrogen-dioxide,20 +*** ingredients +- solid-sodium-nitrate,5 +- gas-compressed-air,60 + +* petrochem-nitrogen +** gas-nitrogen-monoxide +*** products +- catalyst-metal-carrier,1 +- gas-nitrogen-monoxide,100 +*** ingredients +- catalyst-metal-green,1 +- gas-ammonia,60 +- gas-oxygen,40 + +* petrochem-nitrogen +** gas-nitrogen-dioxide +*** products +- gas-nitrogen-dioxide,100 +*** ingredients +- gas-oxygen,60 +- gas-nitrogen-monoxide,40 + +* petrochem-nitrogen +** gas-ammonia +*** products +- catalyst-metal-carrier,1 +- gas-ammonia,100 +*** ingredients +- catalyst-metal-red,1 +- gas-hydrogen,50 +- gas-nitrogen,50 + +* petrochem-nitrogen +** gas-ammonium-chloride +*** products +- gas-ammonium-chloride,100 +*** ingredients +- gas-ammonia,50 +- gas-hydrogen-chloride,50 + +* petrochem-nitrogen +** gas-urea +*** products +- gas-urea,80 +- water-purified,20 +*** ingredients +- gas-ammonia,60 +- gas-carbon-dioxide,40 + +* petrochem-nitrogen +** liquid-nitric-acid +*** products +- liquid-nitric-acid,50 +*** ingredients +- gas-nitrogen-dioxide,100 +- water-purified,50 + +* petrochem-nitrogen +** sodium-nitrate-acid-processing +*** products +- liquid-nitric-acid,40 +*** ingredients +- solid-sodium-nitrate,5 +- liquid-sulfuric-acid,40 + +* petrochem-nitrogen +** gas-melamine +*** products +- catalyst-metal-carrier,1 +- gas-melamine,100 +*** ingredients +- catalyst-metal-blue,1 +- gas-urea,100 + +* petrochem-rocket +** gas-monochloramine +*** products +- gas-monochloramine,50 +*** ingredients +- solid-sodium-hypochlorite,5 +- gas-ammonia,250 + +* petrochem-rocket +** gas-hydrazine +*** products +- catalyst-metal-carrier,1 +- gas-hydrazine,100 +- gas-hydrogen-chloride,100 +*** ingredients +- catalyst-metal-blue,1 +- gas-monochloramine,50 +- gas-ammonia,200 + +* petrochem-rocket +** gas-methylamine +*** products +- gas-methylamine,200 +- water-purified,50 +*** ingredients +- gas-methanol,50 +- gas-ammonia,250 + +* petrochem-rocket +** gas-dimethylamine +*** products +- gas-dimethylamine,200 +- water-purified,50 +*** ingredients +- gas-methylamine,200 +- gas-methanol,50 + +* petrochem-rocket +** gas-dimethylhydrazine +*** products +- gas-dimethylhydrazine,200 +- water-purified,50 +*** ingredients +- gas-dimethylamine,200 +- gas-monochloramine,50 + +* petrochem-rocket +** gas-dinitrogen-tetroxide +*** products +- catalyst-metal-carrier,1 +- gas-dinitrogen-tetroxide,50 +*** ingredients +- catalyst-metal-yellow,1 +- gas-nitrogen-dioxide,100 + +* petrochem-rocket +** solid-ammonium-nitrate +*** products +- solid-ammonium-nitrate,3 +*** ingredients +- gas-ammonia,100 +- liquid-nitric-acid,100 + +* petrochem-rocket +** solid-ammonium-perchlorate +*** products +- solid-ammonium-perchlorate,3 +- solid-salt,1 +*** ingredients +- gas-ammonia,100 +- liquid-perchloric-acid,100 + +* petrochem-rocket +** sulfuric-nitric-acid +*** products +- sulfuric-nitric-acid,20 +*** ingredients +- liquid-sulfuric-acid,10 +- liquid-nitric-acid,10 + +* petrochem-rocket +** nitroglycerin +*** products +- nitroglycerin,10 +*** ingredients +- liquid-glycerol,10 +- liquid-sulfuric-acid,15 +- liquid-nitric-acid,15 + +* petrochem-sodium +** solid-salt-separation +*** products +- solid-sodium,5 +- angels-electrode-used,1 +- gas-chlorine,200 +*** ingredients +- solid-salt,10 +- angels-electrode,1 + +* petrochem-sodium +** solid-sodium +*** products +- solid-sodium,5 +- angels-electrode-used,1 +- water-purified,50 +*** ingredients +- solid-sodium-hydroxide,5 +- angels-electrode,1 + +* petrochem-sodium +** solid-sodium-sulfate-separation +*** products +- solid-sodium,4 +- sulfur,2 +*** ingredients +- solid-sodium-sulfate,2 + +* petrochem-sodium +** solid-sodium-carbonate +*** products +- solid-sodium-carbonate,5 +*** ingredients +- solid-sodium,5 +- gas-carbon-dioxide,50 + +* petrochem-sodium +** solid-sodium-cyanide +*** products +- solid-sodium-cyanide,5 +- catalyst-metal-carrier,1 +- gas-hydrogen,30 +*** ingredients +- solid-carbon,1 +- solid-sodium,5 +- catalyst-metal-green,1 +- gas-ammonia,30 + +* petrochem-sodium +** sodium-cobaltate +*** products +- sodium-cobaltate,5 +- gas-oxygen,200 +- gas-carbon-dioxide,150 +*** ingredients +- cobalt-oxide,5 +- solid-sodium-carbonate,6 + +* petrochem-sodium +** solid-sodium-hydroxide +*** products +- solid-sodium-hydroxide,5 +*** ingredients +- solid-sodium,5 +- water-purified,50 + +* petrochem-sodium +** liquid-aqueous-sodium-hydroxide-reverse +*** products +- solid-sodium-hydroxide,5 +- water-purified,50 +*** ingredients +- liquid-aqueous-sodium-hydroxide,50 + +* petrochem-sodium +** solid-sodium-hydroxide-solid-sodium-sulfate +*** products +- solid-sodium-sulfate,2 +- water-purified,60 +*** ingredients +- solid-sodium-hydroxide,4 +- liquid-sulfuric-acid,80 + +* petrochem-sodium +** solid-sodium-carbonate-electrolysis +*** products +- angels-electrode-used,1 +- liquid-aqueous-sodium-hydroxide,50 +- gas-carbon-dioxide,50 +*** ingredients +- solid-sodium-carbonate,5 +- angels-electrode,1 +- water-purified,50 + +* petrochem-sodium +** liquid-aqueous-sodium-hydroxide +*** products +- liquid-aqueous-sodium-hydroxide,50 +*** ingredients +- solid-sodium-hydroxide,5 +- water-purified,50 + +* petrochem-sodium +** solid-sodium-hypochlorite +*** products +- solid-sodium-hypochlorite,5 +*** ingredients +- liquid-aqueous-sodium-hydroxide,50 +- gas-chlorine,200 + +* petrochem-sodium +** solid-sodium-chlorate +*** products +- solid-sodium-chlorate,5 +*** ingredients +- liquid-aqueous-sodium-hydroxide,50 +- gas-hydrogen-chloride,50 + +* petrochem-sodium +** solid-sodium-perchlorate +*** products +- solid-sodium-perchlorate,5 +- catalyst-metal-carrier,1 +*** ingredients +- solid-sodium-chlorate,5 +- catalyst-metal-blue,1 +- water-purified,50 + +* petrochem-solids +** plastic-bar +*** products +- plastic-bar,2 +*** ingredients +- gas-methane,20 +- gas-chlorine,10 + +* petrochem-solids +** liquid-plastic-1 +*** products +- liquid-plastic,10 +*** ingredients +- gas-propene,40 + +* petrochem-solids +** liquid-plastic-2 +*** products +- liquid-plastic,20 +*** ingredients +- liquid-naphtha,20 +- liquid-polyethylene,20 + +* petrochem-solids +** liquid-plastic-3 +*** products +- liquid-plastic,30 +*** ingredients +- gas-formaldehyde,20 +- liquid-phenol,20 + +* petrochem-solids +** solid-plastic +*** products +- plastic-bar,4 +*** ingredients +- liquid-plastic,40 + +* petrochem-solids +** liquid-resin-1 +*** products +- liquid-resin,10 +*** ingredients +- gas-urea,20 +- gas-formaldehyde,20 + +* petrochem-solids +** liquid-resin-2 +*** products +- liquid-resin,20 +*** ingredients +- gas-melamine,20 +- gas-formaldehyde,20 + +* petrochem-solids +** liquid-resin-3 +*** products +- liquid-resin,30 +*** ingredients +- liquid-bisphenol-a,20 +- gas-epichlorhydrin,20 + +* petrochem-solids +** bob-resin-wood +*** products +- resin,1 +*** ingredients +- wood,9 + +* petrochem-solids +** solid-resin +*** products +- resin,4 +*** ingredients +- liquid-resin,40 + +* petrochem-solids-2 +** explosives +*** products +- explosives,2 +*** ingredients +- coal,1 +- sulfur,1 +- water-purified,10 + +* petrochem-solids-2 +** solid-nitroglycerin +*** products +- explosives,2 +*** ingredients +- coal,1 +- liquid-glycerol,50 +- liquid-sulfuric-acid,25 +- liquid-nitric-acid,25 + +* petrochem-solids-2 +** solid-trinitrotoluene +*** products +- explosives,3 +- water-yellow-waste,25 +*** ingredients +- liquid-toluene,50 +- liquid-sulfuric-acid,25 +- liquid-nitric-acid,25 + +* petrochem-solids-2 +** cliff-explosives +*** products +- cliff-explosives,1 +*** ingredients +- explosives,10 +- empty-barrel,1 +- grenade,1 + +* petrochem-solids-2 +** liquid-rubber-1 +*** products +- liquid-rubber,10 +*** ingredients +- liquid-styrene,20 +- gas-butadiene,20 + +* petrochem-solids-2 +** bob-rubber +*** products +- rubber,1 +*** ingredients +- resin,3 + +* petrochem-solids-2 +** solid-rubber +*** products +- rubber,4 +*** ingredients +- liquid-rubber,40 + +* petrochem-solids-2 +** insulated-cable +*** products +- insulated-cable,60 +*** ingredients +- tinned-copper-cable,60 +- rubber,1 + +* petrochem-sulfur +** gas-acid-catalyst +*** products +- catalyst-metal-carrier,1 +- gas-hydrogen-sulfide,60 +- gas-carbon-dioxide,20 +- gas-hydrogen-fluoride,20 +*** ingredients +- catalyst-metal-green,1 +- gas-acid,100 + +* petrochem-sulfur +** sulfur +*** products +- sulfur,2 +*** ingredients +- water-purified,30 +- gas-methane,30 + +* petrochem-sulfur +** solid-sulfur +*** products +- sulfur,3 +*** ingredients +- gas-hydrogen-sulfide,60 +- gas-oxygen,40 + +* petrochem-sulfur +** gas-sulfur-dioxide +*** products +- gas-sulfur-dioxide,60 +*** ingredients +- sulfur,1 +- gas-oxygen,60 + +* petrochem-sulfur +** gas-sulfur-dioxide-calcium-sulfate +*** products +- solid-lime,1 +- gas-sulfur-dioxide,50 +*** ingredients +- solid-calcium-sulfate,2 +- water-purified,50 + +* petrochem-sulfur +** liquid-sulfuric-acid +*** products +- liquid-sulfuric-acid,60 +*** ingredients +- gas-sulfur-dioxide,90 +- water-purified,40 + +* petrochem-sulfur +** liquid-hydrofluoric-acid +*** products +- solid-calcium-sulfate,1 +- liquid-hydrofluoric-acid,50 +*** ingredients +- fluorite-ore,5 +- liquid-sulfuric-acid,50 + +* petrochem-sulfur +** liquid-hydrogen-fluoride +*** products +- liquid-hydrofluoric-acid,60 +*** ingredients +- gas-hydrogen-fluoride,90 +- water-purified,40 + +* petrochem-sulfur +** gas-hydrogen-fluoride +*** products +- gas-hydrogen-fluoride,55 +- water-greenyellow-waste,50 +*** ingredients +- liquid-hydrofluoric-acid,50 + +* petrochem-sulfur +** angels-sulfur-scrubber +*** products +- filter-lime-used,1 +- water-yellow-waste,20 +*** ingredients +- filter-lime,1 +- water,20 + +* petrochem-sulfur +** filter-lime-used +*** products +- filter-frame,1 +- gas-acid,20 +*** ingredients +- filter-lime-used,1 + +* petrochem-sulfur +** angels-hydrogen-sulfide-enrichment +*** products +- water-purified,50 +- gas-enriched-hydrogen-sulfide,50 +*** ingredients +- steam,50 +- gas-hydrogen-sulfide,50 + +* pipe +** copper-pipe +*** products +- copper-pipe,1 +*** ingredients +- copper-plate,1 + +* pipe +** pipe +*** products +- pipe,1 +*** ingredients +- iron-plate,1 + +* pipe +** stone-pipe +*** products +- stone-pipe,1 +*** ingredients +- stone-brick,1 + +* pipe +** bronze-pipe +*** products +- bronze-pipe,1 +*** ingredients +- bronze-alloy,1 + +* pipe +** steel-pipe +*** products +- steel-pipe,1 +*** ingredients +- steel-plate,1 + +* pipe +** plastic-pipe +*** products +- plastic-pipe,1 +*** ingredients +- plastic-bar,1 + +* pipe +** brass-pipe +*** products +- brass-pipe,1 +*** ingredients +- brass-alloy,1 + +* pipe +** titanium-pipe +*** products +- titanium-pipe,1 +*** ingredients +- titanium-plate,1 + +* pipe +** ceramic-pipe +*** products +- ceramic-pipe,1 +*** ingredients +- silicon-nitride,1 + +* pipe +** tungsten-pipe +*** products +- tungsten-pipe,1 +*** ingredients +- tungsten-plate,1 + +* pipe +** nitinol-pipe +*** products +- nitinol-pipe,1 +*** ingredients +- nitinol-alloy,1 + +* pipe +** copper-tungsten-pipe +*** products +- copper-tungsten-pipe,1 +*** ingredients +- copper-tungsten-alloy,1 + +* pipe-to-ground +** copper-pipe-to-ground +*** products +- copper-pipe-to-ground,2 +*** ingredients +- copper-plate,5 +- copper-pipe,10 + +* pipe-to-ground +** pipe-to-ground +*** products +- pipe-to-ground,2 +*** ingredients +- iron-plate,5 +- pipe,10 + +* pipe-to-ground +** stone-pipe-to-ground +*** products +- stone-pipe-to-ground,2 +*** ingredients +- stone-brick,5 +- stone-pipe,10 + +* pipe-to-ground +** bronze-pipe-to-ground +*** products +- bronze-pipe-to-ground,2 +*** ingredients +- bronze-alloy,5 +- bronze-pipe,12 + +* pipe-to-ground +** steel-pipe-to-ground +*** products +- steel-pipe-to-ground,2 +*** ingredients +- steel-plate,5 +- steel-pipe,12 + +* pipe-to-ground +** plastic-pipe-to-ground +*** products +- plastic-pipe-to-ground,2 +*** ingredients +- plastic-bar,5 +- plastic-pipe,14 + +* pipe-to-ground +** brass-pipe-to-ground +*** products +- brass-pipe-to-ground,2 +*** ingredients +- brass-alloy,5 +- brass-pipe,14 + +* pipe-to-ground +** titanium-pipe-to-ground +*** products +- titanium-pipe-to-ground,2 +*** ingredients +- titanium-plate,5 +- titanium-pipe,16 + +* pipe-to-ground +** ceramic-pipe-to-ground +*** products +- ceramic-pipe-to-ground,2 +*** ingredients +- silicon-nitride,5 +- ceramic-pipe,16 + +* pipe-to-ground +** tungsten-pipe-to-ground +*** products +- tungsten-pipe-to-ground,2 +*** ingredients +- tungsten-plate,5 +- tungsten-pipe,16 + +* pipe-to-ground +** nitinol-pipe-to-ground +*** products +- nitinol-pipe-to-ground,2 +*** ingredients +- nitinol-alloy,5 +- nitinol-pipe,18 + +* pipe-to-ground +** copper-tungsten-pipe-to-ground +*** products +- copper-tungsten-pipe-to-ground,2 +*** ingredients +- copper-tungsten-alloy,5 +- copper-tungsten-pipe,18 + +* pollution-clean-module +** pollution-clean-module-1 +*** products +- pollution-clean-module-1,1 +*** ingredients +- module-case,1 +- pollution-clean-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* pollution-clean-module +** pollution-clean-module-2 +*** products +- pollution-clean-module-2,1 +*** ingredients +- solder,1 +- pollution-clean-processor,2 +- module-contact,5 +- pollution-clean-module-1,1 + +* pollution-clean-module +** pollution-clean-module-3 +*** products +- pollution-clean-module-3,1 +*** ingredients +- solder,2 +- electronic-components,5 +- pollution-clean-processor-2,3 +- pollution-clean-module-2,1 + +* pollution-clean-module +** pollution-clean-module-4 +*** products +- pollution-clean-module-4,1 +*** ingredients +- solder,3 +- intergrated-electronics,5 +- module-contact,5 +- pollution-clean-processor-2,4 +- pollution-clean-module-3,1 + +* pollution-clean-module +** pollution-clean-module-5 +*** products +- pollution-clean-module-5,1 +*** ingredients +- solder,4 +- intergrated-electronics,5 +- ruby-5,1 +- module-contact,5 +- pollution-clean-processor-2,5 +- pollution-clean-module-4,1 + +* pollution-clean-module +** pollution-clean-module-6 +*** products +- pollution-clean-module-6,1 +*** ingredients +- solder,5 +- intergrated-electronics,5 +- emerald-5,1 +- module-contact,5 +- pollution-clean-processor-3,6 +- pollution-clean-module-5,1 + +* pollution-clean-module +** pollution-clean-module-7 +*** products +- pollution-clean-module-7,1 +*** ingredients +- solder,7 +- intergrated-electronics,5 +- processing-electronics,3 +- topaz-5,1 +- module-contact,5 +- pollution-clean-processor-3,8 +- pollution-clean-module-6,1 + +* pollution-clean-module +** pollution-clean-module-8 +*** products +- pollution-clean-module-8,1 +*** ingredients +- solder,8 +- electronic-components,5 +- intergrated-electronics,5 +- processing-electronics,5 +- diamond-5,1 +- module-contact,5 +- pollution-clean-processor-3,10 +- pollution-clean-module-7,1 + +* pollution-create-module +** pollution-create-module-1 +*** products +- pollution-create-module-1,1 +*** ingredients +- module-case,1 +- pollution-create-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* pollution-create-module +** pollution-create-module-2 +*** products +- pollution-create-module-2,1 +*** ingredients +- solder,1 +- pollution-create-processor,2 +- module-contact,5 +- pollution-create-module-1,1 + +* pollution-create-module +** pollution-create-module-3 +*** products +- pollution-create-module-3,1 +*** ingredients +- solder,2 +- electronic-components,5 +- pollution-create-processor-2,3 +- pollution-create-module-2,1 + +* pollution-create-module +** pollution-create-module-4 +*** products +- pollution-create-module-4,1 +*** ingredients +- solder,3 +- intergrated-electronics,5 +- module-contact,5 +- pollution-create-processor-2,4 +- pollution-create-module-3,1 + +* pollution-create-module +** pollution-create-module-5 +*** products +- pollution-create-module-5,1 +*** ingredients +- solder,4 +- intergrated-electronics,5 +- ruby-5,1 +- module-contact,5 +- pollution-create-processor-2,5 +- pollution-create-module-4,1 + +* pollution-create-module +** pollution-create-module-6 +*** products +- pollution-create-module-6,1 +*** ingredients +- solder,5 +- intergrated-electronics,5 +- emerald-5,1 +- module-contact,5 +- pollution-create-processor-3,6 +- pollution-create-module-5,1 + +* pollution-create-module +** pollution-create-module-7 +*** products +- pollution-create-module-7,1 +*** ingredients +- solder,7 +- intergrated-electronics,5 +- processing-electronics,3 +- topaz-5,1 +- module-contact,5 +- pollution-create-processor-3,8 +- pollution-create-module-6,1 + +* pollution-create-module +** pollution-create-module-8 +*** products +- pollution-create-module-8,1 +*** ingredients +- solder,8 +- electronic-components,5 +- intergrated-electronics,5 +- processing-electronics,5 +- diamond-5,1 +- module-contact,5 +- pollution-create-processor-3,10 +- pollution-create-module-7,1 + +* processing-crafting +** angelsore1-crushed-hand +*** products +- angels-ore1-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore1,2 + +* processing-crafting +** angelsore3-crushed-hand +*** products +- angels-ore3-crushed,2 +- stone-crushed,1 +*** ingredients +- angels-ore3,2 + +* processing-crafting +** slag-processing-stone +*** products +- stone-crushed,2 +*** ingredients +- slag,1 + +* processing-crafting +** stone-crushed +*** products +- stone,1 +*** ingredients +- stone-crushed,2 + +* processing-crafting +** landfill +*** products +- landfill,1 +*** ingredients +- stone,20 + +* production-machine +** centrifuge +*** products +- centrifuge,1 +*** ingredients +- concrete,100 +- steel-plate,50 +- iron-gear-wheel,100 +- advanced-circuit,100 + +* production-machine +** centrifuge-2 +*** products +- centrifuge-2,1 +*** ingredients +- centrifuge,1 +- silicon-nitride,100 +- titanium-plate,50 +- titanium-gear-wheel,100 +- titanium-bearing,50 +- processing-unit,100 + +* production-machine +** centrifuge-3 +*** products +- centrifuge-3,1 +*** ingredients +- centrifuge-2,1 +- tungsten-carbide,100 +- nitinol-alloy,50 +- nitinol-gear-wheel,100 +- nitinol-bearing,50 +- advanced-processing-unit,100 + +* production-machine +** lab-2 +*** products +- lab-2,1 +*** ingredients +- lab,1 +- advanced-circuit,10 +- express-transport-belt,4 +- filter-inserter,4 + +* production-machine +** lab-alien +*** products +- lab-alien,1 +*** ingredients +- lab,1 +- alien-artifact-orange,5 +- alien-artifact-blue,5 +- alien-artifact,10 + +* production-machine +** lab +*** products +- lab,1 +*** ingredients +- iron-gear-wheel,10 +- basic-circuit-board,10 +- basic-transport-belt,4 + +* production-machine +** lab-module +*** products +- lab-module,1 +*** ingredients +- lab,1 +- speed-processor,5 +- effectivity-processor,5 +- productivity-processor,5 + +* production-machine +** rocket-silo +*** products +- rocket-silo,1 +*** ingredients +- concrete,200 +- nitinol-alloy,500 +- electric-engine-unit,100 +- rocket-control-unit,25 +- low-density-structure,50 +- heat-shield-tile,100 +- advanced-processing-unit,50 +- titanium-pipe,50 + +* productivity-module +** productivity-module +*** products +- productivity-module,1 +*** ingredients +- module-case,1 +- productivity-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* productivity-module +** productivity-module-2 +*** products +- productivity-module-2,1 +*** ingredients +- solder,1 +- productivity-processor,2 +- module-contact,5 +- productivity-module,1 + +* productivity-module +** productivity-module-3 +*** products +- productivity-module-3,1 +*** ingredients +- solder,2 +- electronic-components,5 +- productivity-processor-2,3 +- productivity-module-2,1 + +* productivity-module +** productivity-module-4 +*** products +- productivity-module-4,1 +*** ingredients +- solder,3 +- intergrated-electronics,5 +- module-contact,5 +- productivity-processor-2,4 +- productivity-module-3,1 + +* productivity-module +** productivity-module-5 +*** products +- productivity-module-5,1 +*** ingredients +- solder,4 +- intergrated-electronics,5 +- ruby-5,1 +- module-contact,5 +- productivity-processor-2,5 +- productivity-module-4,1 + +* productivity-module +** productivity-module-6 +*** products +- productivity-module-6,1 +*** ingredients +- solder,5 +- intergrated-electronics,5 +- emerald-5,1 +- module-contact,5 +- productivity-processor-3,6 +- productivity-module-5,1 + +* productivity-module +** productivity-module-7 +*** products +- productivity-module-7,1 +*** ingredients +- solder,7 +- intergrated-electronics,5 +- processing-electronics,3 +- topaz-5,1 +- module-contact,5 +- productivity-processor-3,8 +- productivity-module-6,1 + +* productivity-module +** productivity-module-8 +*** products +- productivity-module-8,1 +*** ingredients +- solder,8 +- electronic-components,5 +- intergrated-electronics,5 +- processing-electronics,5 +- diamond-5,1 +- module-contact,5 +- productivity-processor-3,10 +- productivity-module-7,1 + +* raw-productivity-module +** raw-productivity-module-1 +*** products +- raw-productivity-module-1,1 +*** ingredients +- module-case,1 +- effectivity-processor,1 +- productivity-processor,1 +- pollution-clean-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* raw-productivity-module +** raw-productivity-module-2 +*** products +- raw-productivity-module-2,1 +*** ingredients +- solder,2 +- effectivity-processor,2 +- productivity-processor,2 +- pollution-clean-processor,2 +- module-contact,5 +- raw-productivity-module-1,1 + +* raw-productivity-module +** raw-productivity-module-3 +*** products +- raw-productivity-module-3,1 +*** ingredients +- solder,3 +- electronic-components,7 +- effectivity-processor-2,3 +- productivity-processor-2,3 +- pollution-clean-processor-2,3 +- raw-productivity-module-2,1 + +* raw-productivity-module +** raw-productivity-module-4 +*** products +- raw-productivity-module-4,1 +*** ingredients +- solder,5 +- intergrated-electronics,7 +- module-contact,5 +- effectivity-processor-2,4 +- productivity-processor-2,4 +- pollution-clean-processor-2,4 +- raw-productivity-module-3,1 + +* raw-productivity-module +** raw-productivity-module-5 +*** products +- raw-productivity-module-5,1 +*** ingredients +- solder,6 +- intergrated-electronics,7 +- ruby-5,1 +- module-contact,5 +- effectivity-processor-2,5 +- productivity-processor-2,5 +- pollution-clean-processor-2,5 +- raw-productivity-module-4,1 + +* raw-productivity-module +** raw-productivity-module-6 +*** products +- raw-productivity-module-6,1 +*** ingredients +- solder,7 +- intergrated-electronics,7 +- emerald-5,1 +- module-contact,5 +- effectivity-processor-3,6 +- productivity-processor-3,6 +- pollution-clean-processor-3,6 +- raw-productivity-module-5,1 + +* raw-productivity-module +** raw-productivity-module-7 +*** products +- raw-productivity-module-7,1 +*** ingredients +- solder,10 +- intergrated-electronics,8 +- processing-electronics,5 +- topaz-5,1 +- module-contact,5 +- effectivity-processor-3,8 +- productivity-processor-3,8 +- pollution-clean-processor-3,8 +- raw-productivity-module-6,1 + +* raw-productivity-module +** raw-productivity-module-8 +*** products +- raw-productivity-module-8,1 +*** ingredients +- solder,12 +- electronic-components,8 +- intergrated-electronics,8 +- processing-electronics,8 +- diamond-5,1 +- module-contact,5 +- effectivity-processor-3,10 +- productivity-processor-3,10 +- pollution-clean-processor-3,10 +- raw-productivity-module-7,1 + +* raw-productivity-module-combine +** raw-productivity-module-1-combine +*** products +- raw-productivity-module-1,1 +*** ingredients +- solder,1 +- effectivity-module,1 +- productivity-module,1 +- pollution-clean-module-1,1 + +* raw-productivity-module-combine +** raw-productivity-module-2-combine +*** products +- raw-productivity-module-2,1 +*** ingredients +- solder,2 +- effectivity-module-2,1 +- productivity-module-2,1 +- pollution-clean-module-2,1 + +* raw-productivity-module-combine +** raw-productivity-module-3-combine +*** products +- raw-productivity-module-3,1 +*** ingredients +- solder,3 +- effectivity-module-3,1 +- productivity-module-3,1 +- pollution-clean-module-3,1 + +* raw-productivity-module-combine +** raw-productivity-module-4-combine +*** products +- raw-productivity-module-4,1 +*** ingredients +- solder,4 +- effectivity-module-4,1 +- productivity-module-4,1 +- pollution-clean-module-4,1 + +* raw-productivity-module-combine +** raw-productivity-module-5-combine +*** products +- raw-productivity-module-5,1 +*** ingredients +- solder,6 +- effectivity-module-5,1 +- productivity-module-5,1 +- pollution-clean-module-5,1 + +* raw-productivity-module-combine +** raw-productivity-module-6-combine +*** products +- raw-productivity-module-6,1 +*** ingredients +- solder,7 +- effectivity-module-6,1 +- productivity-module-6,1 +- pollution-clean-module-6,1 + +* raw-productivity-module-combine +** raw-productivity-module-7-combine +*** products +- raw-productivity-module-7,1 +*** ingredients +- solder,8 +- effectivity-module-7,1 +- productivity-module-7,1 +- pollution-clean-module-7,1 + +* raw-productivity-module-combine +** raw-productivity-module-8-combine +*** products +- raw-productivity-module-8,1 +*** ingredients +- solder,10 +- effectivity-module-8,1 +- productivity-module-8,1 +- pollution-clean-module-8,1 + +* raw-speed-module +** raw-speed-module-1 +*** products +- raw-speed-module-1,1 +*** ingredients +- module-case,1 +- speed-processor,1 +- effectivity-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* raw-speed-module +** raw-speed-module-2 +*** products +- raw-speed-module-2,1 +*** ingredients +- solder,2 +- speed-processor,2 +- effectivity-processor,2 +- module-contact,5 +- raw-speed-module-1,1 + +* raw-speed-module +** raw-speed-module-3 +*** products +- raw-speed-module-3,1 +*** ingredients +- solder,3 +- electronic-components,7 +- speed-processor-2,3 +- effectivity-processor-2,3 +- raw-speed-module-2,1 + +* raw-speed-module +** raw-speed-module-4 +*** products +- raw-speed-module-4,1 +*** ingredients +- solder,5 +- intergrated-electronics,7 +- module-contact,5 +- speed-processor-2,4 +- effectivity-processor-2,4 +- raw-speed-module-3,1 + +* raw-speed-module +** raw-speed-module-5 +*** products +- raw-speed-module-5,1 +*** ingredients +- solder,6 +- intergrated-electronics,7 +- ruby-5,1 +- module-contact,5 +- speed-processor-2,5 +- effectivity-processor-2,5 +- raw-speed-module-4,1 + +* raw-speed-module +** raw-speed-module-6 +*** products +- raw-speed-module-6,1 +*** ingredients +- solder,7 +- intergrated-electronics,7 +- emerald-5,1 +- module-contact,5 +- speed-processor-3,6 +- effectivity-processor-3,6 +- raw-speed-module-5,1 + +* raw-speed-module +** raw-speed-module-7 +*** products +- raw-speed-module-7,1 +*** ingredients +- solder,10 +- intergrated-electronics,8 +- processing-electronics,5 +- topaz-5,1 +- module-contact,5 +- speed-processor-3,8 +- effectivity-processor-3,8 +- raw-speed-module-6,1 + +* raw-speed-module +** raw-speed-module-8 +*** products +- raw-speed-module-8,1 +*** ingredients +- solder,12 +- electronic-components,8 +- intergrated-electronics,8 +- processing-electronics,8 +- diamond-5,1 +- module-contact,5 +- speed-processor-3,10 +- effectivity-processor-3,10 +- raw-speed-module-7,1 + +* raw-speed-module-combine +** raw-speed-module-1-combine +*** products +- raw-speed-module-1,1 +*** ingredients +- solder,1 +- speed-module,1 +- effectivity-module,1 + +* raw-speed-module-combine +** raw-speed-module-2-combine +*** products +- raw-speed-module-2,1 +*** ingredients +- solder,2 +- speed-module-2,1 +- effectivity-module-2,1 + +* raw-speed-module-combine +** raw-speed-module-3-combine +*** products +- raw-speed-module-3,1 +*** ingredients +- solder,3 +- speed-module-3,1 +- effectivity-module-3,1 + +* raw-speed-module-combine +** raw-speed-module-4-combine +*** products +- raw-speed-module-4,1 +*** ingredients +- solder,4 +- speed-module-4,1 +- effectivity-module-4,1 + +* raw-speed-module-combine +** raw-speed-module-5-combine +*** products +- raw-speed-module-5,1 +*** ingredients +- solder,6 +- speed-module-5,1 +- effectivity-module-5,1 + +* raw-speed-module-combine +** raw-speed-module-6-combine +*** products +- raw-speed-module-6,1 +*** ingredients +- solder,7 +- speed-module-6,1 +- effectivity-module-6,1 + +* raw-speed-module-combine +** raw-speed-module-7-combine +*** products +- raw-speed-module-7,1 +*** ingredients +- solder,8 +- speed-module-7,1 +- effectivity-module-7,1 + +* raw-speed-module-combine +** raw-speed-module-8-combine +*** products +- raw-speed-module-8,1 +*** ingredients +- solder,10 +- speed-module-8,1 +- effectivity-module-8,1 + +* refining-buildings +** thermal-bore +*** products +- thermal-bore,1 +*** ingredients +- clay-brick,20 +- bronze-alloy,18 +- steel-gear-wheel,12 +- electronic-circuit,4 +- bronze-pipe,12 + +* refining-buildings +** thermal-extractor +*** products +- thermal-extractor,1 +*** ingredients +- aluminium-plate,24 +- concrete-brick,20 +- brass-gear-wheel,12 +- advanced-circuit,4 +- brass-pipe,12 + +* refining-buildings +** filtration-unit +*** products +- filtration-unit,1 +*** ingredients +- clay-brick,25 +- steel-plate,6 +- electronic-circuit,5 +- steel-pipe,24 + +* refining-buildings +** filtration-unit-2 +*** products +- filtration-unit-2,1 +*** ingredients +- filtration-unit,1 +- aluminium-plate,8 +- concrete-brick,25 +- advanced-circuit,5 +- brass-pipe,24 + +* refining-buildings +** filtration-unit-3 +*** products +- filtration-unit-3,1 +*** ingredients +- filtration-unit-2,1 +- reinforced-concrete-brick,25 +- titanium-plate,8 +- processing-unit,5 +- titanium-pipe,24 + +* refining-buildings +** crystallizer +*** products +- crystallizer,1 +*** ingredients +- clay-brick,50 +- steel-plate,30 +- electronic-circuit,5 +- steel-pipe,15 + +* refining-buildings +** crystallizer-2 +*** products +- crystallizer-2,1 +*** ingredients +- crystallizer,1 +- aluminium-plate,40 +- concrete-brick,50 +- advanced-circuit,5 +- brass-pipe,15 + +* refining-buildings +** crystallizer-3 +*** products +- crystallizer-3,1 +*** ingredients +- crystallizer-2,1 +- reinforced-concrete-brick,50 +- titanium-plate,40 +- processing-unit,5 +- titanium-pipe,15 + +* science-pack +** automation-science-pack +*** products +- automation-science-pack,1 +*** ingredients +- copper-plate,1 +- iron-gear-wheel,1 + +* science-pack +** logistic-science-pack +*** products +- logistic-science-pack,1 +*** ingredients +- basic-transport-belt,1 +- inserter,1 + +* science-pack +** military-science-pack +*** products +- military-science-pack,2 +*** ingredients +- piercing-rounds-magazine,1 +- grenade,1 +- stone-wall,2 + +* science-pack +** chemical-science-pack +*** products +- chemical-science-pack,2 +*** ingredients +- solid-sodium-hydroxide,2 +- sulfur,1 +- engine-unit,2 +- advanced-circuit,3 + +* science-pack +** advanced-logistic-science-pack +*** products +- advanced-logistic-science-pack,3 +*** ingredients +- brass-chest,2 +- flying-robot-frame,1 +- express-transport-belt,1 +- filter-inserter,1 + +* science-pack +** production-science-pack +*** products +- production-science-pack,3 +*** ingredients +- electric-furnace,1 +- assembling-machine-2,1 +- angels-chemical-plant,1 + +* science-pack +** utility-science-pack +*** products +- utility-science-pack,4 +*** ingredients +- silicon-nitride,4 +- electric-engine-unit,1 +- lithium-ion-battery,4 +- low-density-structure,3 +- titanium-bearing,4 +- processing-unit,6 + +* science-pack +** science-pack-gold +*** products +- science-pack-gold,1 +*** ingredients +- automation-science-pack,1 +- logistic-science-pack,1 +- military-science-pack,1 +- chemical-science-pack,1 + +* science-pack +** alien-science-pack +*** products +- alien-science-pack,10 +*** ingredients +- alien-artifact,1 + +* science-pack +** alien-science-pack-blue +*** products +- alien-science-pack-blue,10 +*** ingredients +- alien-artifact-blue,1 + +* science-pack +** alien-science-pack-orange +*** products +- alien-science-pack-orange,10 +*** ingredients +- alien-artifact-orange,1 + +* science-pack +** alien-science-pack-purple +*** products +- alien-science-pack-purple,10 +*** ingredients +- alien-artifact-purple,1 + +* science-pack +** alien-science-pack-yellow +*** products +- alien-science-pack-yellow,10 +*** ingredients +- alien-artifact-yellow,1 + +* science-pack +** alien-science-pack-green +*** products +- alien-science-pack-green,10 +*** ingredients +- alien-artifact-green,1 + +* science-pack +** alien-science-pack-red +*** products +- alien-science-pack-red,10 +*** ingredients +- alien-artifact-red,1 + +* slag-processing-1 +** slag-processing-1 +*** products +- iron-ore,1 +- copper-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-2 +*** products +- lead-ore,1 +- tin-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-3 +*** products +- quartz,1 +- silver-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-4 +*** products +- gold-ore,1 +- nickel-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-5 +*** products +- zinc-ore,1 +- rutile-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-6 +*** products +- bauxite-ore,1 +- manganese-ore,1 +- chrome-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-7 +*** products +- angels-void,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-8 +*** products +- cobalt-ore,1 +- tungsten-ore,1 +*** ingredients +- mineral-sludge,50 + +* slag-processing-1 +** slag-processing-9 +*** products +- uranium-ore,1 +- fluorite-ore,1 +- thorium-ore,1 +*** ingredients +- mineral-sludge,50 + +* smelting-machine +** stone-chemical-furnace +*** products +- stone-furnace,1 +*** ingredients +- stone,5 +- pipe,2 + +* smelting-machine +** stone-furnace +*** products +- stone-furnace,1 +*** ingredients +- stone,5 + +* smelting-machine +** steel-chemical-furnace +*** products +- steel-furnace,1 +*** ingredients +- stone-brick,10 +- steel-plate,6 +- steel-pipe,5 + +* smelting-machine +** steel-furnace +*** products +- steel-furnace,1 +*** ingredients +- stone-brick,10 +- steel-plate,6 + +* smelting-machine +** fluid-furnace +*** products +- fluid-furnace,1 +*** ingredients +- steel-furnace,1 +- steel-pipe,2 + +* smelting-machine +** electric-chemical-furnace +*** products +- electric-furnace,1 +*** ingredients +- stone-brick,10 +- steel-plate,10 +- advanced-circuit,5 +- steel-pipe,5 + +* smelting-machine +** electric-furnace +*** products +- electric-furnace,1 +*** ingredients +- stone-brick,10 +- steel-plate,10 +- advanced-circuit,5 + +* smelting-machine +** electric-furnace-2 +*** products +- electric-furnace-2,1 +*** ingredients +- electric-furnace,1 +- tungsten-plate,10 +- invar-alloy,10 +- processing-unit,5 + +* smelting-machine +** electric-furnace-3 +*** products +- electric-furnace-3,1 +*** ingredients +- electric-furnace-2,1 +- tungsten-carbide,10 +- copper-tungsten-alloy,10 +- advanced-processing-unit,5 + +* speed-module +** speed-module +*** products +- speed-module,1 +*** ingredients +- module-case,1 +- speed-processor,1 +- module-contact,4 +- module-circuit-board,1 + +* speed-module +** speed-module-2 +*** products +- speed-module-2,1 +*** ingredients +- solder,1 +- speed-processor,2 +- module-contact,5 +- speed-module,1 + +* speed-module +** speed-module-3 +*** products +- speed-module-3,1 +*** ingredients +- solder,2 +- electronic-components,5 +- speed-processor-2,3 +- speed-module-2,1 + +* speed-module +** speed-module-4 +*** products +- speed-module-4,1 +*** ingredients +- solder,3 +- intergrated-electronics,5 +- module-contact,5 +- speed-processor-2,4 +- speed-module-3,1 + +* speed-module +** speed-module-5 +*** products +- speed-module-5,1 +*** ingredients +- solder,4 +- intergrated-electronics,5 +- ruby-5,1 +- module-contact,5 +- speed-processor-2,5 +- speed-module-4,1 + +* speed-module +** speed-module-6 +*** products +- speed-module-6,1 +*** ingredients +- solder,5 +- intergrated-electronics,5 +- emerald-5,1 +- module-contact,5 +- speed-processor-3,6 +- speed-module-5,1 + +* speed-module +** speed-module-7 +*** products +- speed-module-7,1 +*** ingredients +- solder,7 +- intergrated-electronics,5 +- processing-electronics,3 +- topaz-5,1 +- module-contact,5 +- speed-processor-3,8 +- speed-module-6,1 + +* speed-module +** speed-module-8 +*** products +- speed-module-8,1 +*** ingredients +- solder,8 +- electronic-components,5 +- intergrated-electronics,5 +- processing-electronics,5 +- diamond-5,1 +- module-contact,5 +- speed-processor-3,10 +- speed-module-7,1 + +* train-transport +** rail +*** products +- rail,2 +*** ingredients +- stone,1 +- steel-plate,1 +- iron-stick,1 + +* train-transport +** train-stop +*** products +- train-stop,1 +*** ingredients +- iron-plate,6 +- steel-plate,3 +- iron-stick,6 +- electronic-circuit,5 + +* train-transport +** rail-signal +*** products +- rail-signal,1 +*** ingredients +- iron-plate,5 +- electronic-circuit,1 + +* train-transport +** rail-chain-signal +*** products +- rail-chain-signal,1 +*** ingredients +- iron-plate,5 +- electronic-circuit,1 + +* void +** void-ammonia +*** products +- void,1 +*** ingredients +- gas-ammonia,25 + +* void +** void-carbon-dioxide +*** products +- void,1 +*** ingredients +- gas-carbon-dioxide,25 + +* void +** void-chlorine +*** products +- void,1 +*** ingredients +- gas-chlorine,25 + +* void +** void-deuterium +*** products +- void,1 +*** ingredients +- gas-deuterium,20 + +* void +** void-hydrogen +*** products +- void,1 +*** ingredients +- gas-hydrogen,20 + +* void +** void-hydrogen-chloride +*** products +- void,1 +*** ingredients +- gas-hydrogen-chloride,25 + +* void +** void-hydrogen-sulfide +*** products +- void,1 +*** ingredients +- gas-hydrogen-sulfide,25 + +* void +** void-nitrogen +*** products +- void,1 +*** ingredients +- gas-nitrogen,25 + +* void +** void-oxygen +*** products +- void,1 +*** ingredients +- gas-oxygen,25 + +* void +** void-petroleum-gas +*** products +- void,1 +*** ingredients +- gas-methane,10 + +* void +** void-sour-gas +*** products +- void,1 +*** ingredients +- sour-gas,25 + +* void +** void-steam +*** products +- void,1 +*** ingredients +- steam,10 + +* void +** void-sulfur-dioxide +*** products +- void,1 +*** ingredients +- gas-sulfur-dioxide,25 + +* washing-building +** seafloor-pump +*** products +- seafloor-pump,1 +*** ingredients +- iron-plate,6 +- basic-circuit-board,2 +- pipe,6 + +* washing-building +** washing-plant +*** products +- washing-plant,1 +*** ingredients +- stone-brick,25 +- iron-plate,12 +- basic-circuit-board,4 +- pipe,27 + +* washing-building +** washing-plant-2 +*** products +- washing-plant-2,1 +*** ingredients +- clay-brick,25 +- bronze-alloy,12 +- washing-plant,1 +- electronic-circuit,4 +- bronze-pipe,27 + +* washing-building +** offshore-pump +*** products +- offshore-pump,1 +*** ingredients +- iron-gear-wheel,1 +- basic-circuit-board,2 +- pipe,1 + +* washing-building +** ground-water-pump +*** products +- ground-water-pump,1 +*** ingredients +- stone-brick,5 +- basic-circuit-board,2 +- pipe,6 + +* water-boiling +** angels-steam-water +*** products +- steam,40 +*** ingredients +- water,40 + +* water-boiling +** angels-steam-water-purified +*** products +- steam,40 +*** ingredients +- water-purified,40 + +* water-cleaning +** yellow-waste-water-purification +*** products +- sulfur,1 +- water-mineralized,20 +- water-purified,70 +*** ingredients +- water-yellow-waste,100 + +* water-cleaning +** greenyellow-waste-water-purification +*** products +- fluorite-ore,1 +- water-mineralized,20 +- water-purified,70 +*** ingredients +- water-greenyellow-waste,100 + +* water-cleaning +** green-waste-water-purification +*** products +- solid-salt,1 +- water-saline,20 +- water-purified,70 +*** ingredients +- water-green-waste,100 + +* water-cleaning +** red-waste-water-purification +*** products +- solid-sodium-nitrate,1 +- water-mineralized,20 +- water-purified,70 +*** ingredients +- water-red-waste,100 + +* water-enrichment +** angels-water-enrichment-1 +*** products +- gas-hydrogen-sulfide,100 +- liquid-water-semiheavy-1,50 +- water-green-waste,60 +*** ingredients +- water-saline,60 +- water-purified,50 +- gas-enriched-hydrogen-sulfide,100 + +* water-enrichment +** angels-water-enrichment-2 +*** products +- gas-hydrogen-sulfide,100 +- liquid-water-semiheavy-2,50 +- water-green-waste,60 +*** ingredients +- water-saline,60 +- liquid-water-semiheavy-1,50 +- gas-enriched-hydrogen-sulfide,100 + +* water-enrichment +** angels-water-enrichment-3 +*** products +- gas-hydrogen-sulfide,100 +- liquid-water-semiheavy-3,50 +- water-green-waste,60 +*** ingredients +- water-saline,60 +- liquid-water-semiheavy-2,50 +- gas-enriched-hydrogen-sulfide,100 + +* water-enrichment +** angels-heavy-water-extraction +*** products +- liquid-water-heavy,5 +- steam,95 +*** ingredients +- liquid-water-semiheavy-3,100 + +* water-enrichment +** angels-water-enriched-cooling-1 +*** products +- liquid-water-semiheavy-1,200 +- steam,50 +*** ingredients +- liquid-water-semiheavy-1,200 +- water-purified,50 + +* water-enrichment +** angels-water-enriched-cooling-2 +*** products +- liquid-water-semiheavy-2,200 +- steam,50 +*** ingredients +- liquid-water-semiheavy-2,200 +- water-purified,50 + +* water-enrichment +** angels-water-enriched-cooling-3 +*** products +- liquid-water-semiheavy-3,200 +- steam,50 +*** ingredients +- liquid-water-semiheavy-3,200 +- water-purified,50 + +* water-enrichment +** angels-heavy-water-cooling +*** products +- liquid-water-heavy,100 +- steam,25 +*** ingredients +- liquid-water-heavy,100 +- water-purified,25 + +* water-salination +** water-saline +*** products +- water-saline,400 +*** ingredients +- water,1000 + +* water-salination +** solid-salt-dissolving +*** products +- water-saline,400 +*** ingredients +- solid-salt,10 +- water-purified,1000 + +* water-salination +** solid-salt-from-saline +*** products +- solid-salt,25 +*** ingredients +- water-saline,1000 + +* water-salination +** solid-salt +*** products +- solid-salt,10 +*** ingredients +- water,1000 + +* water-salination +** solid-lithium +*** products +- solid-lithium,20 +*** ingredients +- thermal-water,1000 + +* water-treatment +** water-mineralized +*** products +- water-mineralized,100 +*** ingredients +- stone-crushed,10 +- water,100 + +* water-treatment +** water-purification +*** products +- water-saline,20 +- water-purified,100 +*** ingredients +- water,150 + +* water-treatment +** thermal-water-purification +*** products +- mineral-sludge,20 +- water-purified,30 +*** ingredients +- thermal-water,50 + +* water-treatment +** water-thermal-lithia +*** products +- lithia-water,40 +- water-purified,60 +*** ingredients +- thermal-water,100 + +* water-treatment-building +** hydro-plant +*** products +- hydro-plant,1 +*** ingredients +- stone-brick,60 +- iron-plate,12 +- basic-circuit-board,12 +- pipe,48 + +* water-treatment-building +** hydro-plant-2 +*** products +- hydro-plant-2,1 +*** ingredients +- clay-brick,60 +- steel-plate,12 +- hydro-plant,1 +- electronic-circuit,12 +- steel-pipe,48 + +* water-treatment-building +** hydro-plant-3 +*** products +- hydro-plant-3,1 +*** ingredients +- aluminium-plate,16 +- concrete-brick,60 +- hydro-plant-2,1 +- advanced-circuit,12 +- brass-pipe,48 + +* water-treatment-building +** clarifier +*** products +- clarifier,1 +*** ingredients +- stone-brick,30 +- iron-plate,12 +- basic-circuit-board,4 +- pipe,33 + +* water-treatment-building +** salination-plant +*** products +- salination-plant,1 +*** ingredients +- aluminium-plate,56 +- concrete-brick,75 +- advanced-circuit,12 +- brass-pipe,24 + +* water-treatment-building +** salination-plant-2 +*** products +- salination-plant-2,1 +*** ingredients +- reinforced-concrete-brick,75 +- titanium-plate,56 +- salination-plant,1 +- processing-unit,12 +- titanium-pipe,24 + +* water-washing +** water-viscous-mud +*** products +- water-viscous-mud,150 +*** ingredients +- solid-mud,10 +- water,150 + +* water-washing +** washing-1 +*** products +- solid-mud,0-3 +- water-heavy-mud,200 +*** ingredients +- water-viscous-mud,200 +- water,50 + +* water-washing +** washing-2 +*** products +- solid-mud,0-3 +- water-concentrated-mud,200 +*** ingredients +- water-heavy-mud,200 +- water,50 + +* water-washing +** washing-3 +*** products +- solid-mud,0-3 +- water-light-mud,200 +*** ingredients +- water-concentrated-mud,200 +- water,50 + +* water-washing +** washing-4 +*** products +- solid-mud,0-3 +- water-thin-mud,200 +*** ingredients +- water-light-mud,200 +- water,50 + +* water-washing +** washing-5 +*** products +- solid-mud,0-3 +- water-saline,200 +*** ingredients +- water-thin-mud,200 +- water,50 + +* water-washing-filtering +** solid-mud-landfill +*** products +- landfill,1 +*** ingredients +- solid-mud,25 + +* water-washing-filtering +** solid-geodes +*** products +- geode-blue,2 +- geode-cyan,1 +- geode-lightgreen,1 +- geode-purple,1 +- geode-red,2 +- geode-yellow,1 +*** ingredients +- water-heavy-mud,40 +- water,25 + +* water-washing-filtering +** solid-clay +*** products +- solid-clay,3 +*** ingredients +- water-concentrated-mud,30 +- water,25 + +* water-washing-filtering +** solid-limestone +*** products +- solid-limestone,3 +*** ingredients +- water-light-mud,20 +- water,25 + +* water-washing-filtering +** solid-sand +*** products +- solid-sand,5 +*** ingredients +- water-thin-mud,10 +- water,25 diff --git a/mod-recipes/recipesmaybe.csv b/mod-recipes/recipesmaybe.csv new file mode 100644 index 0000000..ea07daf --- /dev/null +++ b/mod-recipes/recipesmaybe.csv @@ -0,0 +1,8529 @@ +salt bob-material-chemical + recipe solid-salt 1 + product water 25 +burner-assembling-machine bob-assembly-machine + recipe burner-assembling-machine 1 + product iron-plate 9 iron-gear-wheel 5 +steam-assembling-machine bob-assembly-machine + recipe steam-assembling-machine 1 + product iron-plate 10 iron-gear-wheel 10 pipe 5 +angels-air-filtering petrochem-nitrogen + recipe gas-compressed-air 200 + product +angels-big-chest angels-chests-big + recipe angels-big-chest 1 + product iron-plate 10 iron-chest 1 +angels-logistic-chest-active-provider angels-chests-big + recipe angels-logistic-chest-active-provider 1 + product iron-plate 10 advanced-circuit 5 angels-big-chest 1 +angels-warehouse angels-warehouse + recipe angels-warehouse 1 + product stone-brick 100 iron-plate 100 steel-plate 50 +angelsore7-crystallization-3 bob-gems-crystallization + recipe ruby-ore 1 + product catalysator-green 1 crystal-seedling 50 +artillery-wagon angels-artillery + recipe artillery-wagon 1 + product invar-alloy 40 engine-unit 64 iron-gear-wheel 10 advanced-circuit 20 pipe 16 +battery-equipment angels-personal-equipment-power-c + recipe battery-equipment 1 + product steel-plate 10 battery 5 +big-electric-pole angels-big-power-poles + recipe big-electric-pole 1 + product copper-plate 5 steel-plate 5 iron-stick 8 +bio-refugium-fish bio-processing-buildings-alien-a + recipe bio-refugium-fish 1 + product clay-brick 20 glass 10 bronze-alloy 6 electronic-circuit 5 bronze-pipe 75 +bob-burner-generator angels-power-fluid-generator + recipe bob-burner-generator 1 + product stone-furnace 1 iron-plate 8 iron-gear-wheel 5 +brass-chest angels-chests-small-c + recipe brass-chest 1 + product brass-alloy 8 +coolant-cool-steam coolant + recipe water-purified 100 + product steam 100 +crop-farm bio-processing-buildings-vegetabilis-a + recipe crop-farm 1 + product clay-brick 45 steel-plate 24 solid-soil 15 electronic-circuit 2 steel-pipe 9 +energy-shield-equipment angels-personal-equipment-combat-a + recipe energy-shield-equipment 1 + product steel-plate 10 advanced-circuit 5 +exoskeleton-equipment angels-personal-equipment-combat-c + recipe exoskeleton-equipment 1 + product steel-plate 20 electric-engine-unit 30 advanced-circuit 10 +fermentation-corn bio-processor-fermentation + recipe liquid-fermentation-raw 75 + product solid-corn 10 water 50 +fusion-reactor-equipment angels-personal-equipment-power-b + recipe fusion-reactor-equipment 1 + product low-density-structure 50 processing-unit 200 +gas-monochloramine petrochem-rocket + recipe gas-monochloramine 50 + product solid-sodium-hypochlorite 5 gas-ammonia 250 +heat-pipe angels-power-nuclear-heat-pipe + recipe heat-pipe 1 + product copper-plate 10 steel-plate 5 +hogger-breeding-1 bio-hogger-breeding + recipe bio-hogger-1 2 bio-hogger-1 1 bio-hogger-2 1 bio-hogger-3 1 bio-hogger-4 1 bio-hogger-5 1 + product iron-plate 1 bio-hogger-1 2 liquid-nutrient-pulp 20 +hogger-butchery-1 bio-hogger-butchery + recipe bio-raw-meat 1 + product bio-hogger-1 1 +hogger-hogging-1 bio-hogger + recipe bio-hogger-1 3 - 5 copper-ore 10 + product iron-ore 10 iron-plate 1 bio-hogger-1 4 liquid-nutrient-pulp 20 +liquid-acetic-acid-catalyst bio-plastic + recipe catalyst-metal-carrier 1 liquid-acetic-acid 100 + product catalyst-metal-red 1 gas-methanol 70 gas-carbon-monoxide 30 water-purified 50 +medium-electric-pole angels-medium-power-poles + recipe medium-electric-pole 1 + product copper-plate 2 steel-plate 2 iron-stick 4 +night-vision-equipment angels-personal-equipment-power-d + recipe night-vision-equipment 1 + product steel-plate 10 advanced-circuit 5 +nuclear-reactor angels-power-nuclear-reactor-b + recipe nuclear-reactor 1 + product concrete 500 steel-plate 250 advanced-circuit 500 heat-pipe-2 25 +ore-powderizer ore-powderizer + recipe ore-powderizer 1 + product clay-brick 5 bronze-alloy 3 steel-gear-wheel 3 +personal-laser-defense-equipment angels-personal-equipment-combat-b + recipe personal-laser-defense-equipment 1 + product steel-plate 5 battery 3 electronic-circuit 5 +personal-roboport-antenna-equipment angels-personal-equipment-robot-c + recipe personal-roboport-antenna-equipment 1 + product roboport-antenna-1 2 roboport-door-1 1 +personal-roboport-chargepad-equipment angels-personal-equipment-robot-b + recipe personal-roboport-chargepad-equipment 1 + product roboport-chargepad-1 2 +personal-roboport-equipment angels-personal-equipment-robot-d + recipe personal-roboport-equipment 1 + product steel-plate 5 roboport-antenna-1 2 roboport-door-1 1 roboport-chargepad-1 2 +personal-roboport-robot-equipment angels-personal-equipment-robot-a + recipe personal-roboport-robot-equipment 1 + product solder 2 circuit-board 1 basic-electronic-components 30 electronic-components 15 module-case 1 +seafloor-pump washing-building + recipe seafloor-pump 1 + product iron-plate 6 basic-circuit-board 2 pipe 6 +seed-extractor bio-processing-buildings-vegetabilis-b + recipe seed-extractor 1 + product clay-brick 5 steel-plate 3 steel-gear-wheel 6 basic-circuit-board 4 +silo angels-silo + recipe silo 1 + product stone-brick 20 iron-plate 20 steel-plate 10 +slag-processing-1 slag-processing-1 + recipe iron-ore 1 copper-ore 1 + product mineral-sludge 50 +solar-panel-equipment angels-personal-equipment-power-a + recipe solar-panel-equipment 1 + product copper-cable 4 steel-plate 2 electronic-circuit 5 +solid-mud-landfill water-washing-filtering + recipe landfill 1 + product solid-mud 25 +steam-engine angels-power-steam-generator + recipe steam-engine 1 + product iron-plate 10 iron-gear-wheel 8 pipe 5 +steel-chest angels-chests-small-b + recipe steel-chest 1 + product steel-plate 8 +substation angels-sub-power-poles + recipe substation 1 + product copper-plate 5 steel-plate 10 advanced-circuit 5 +titanium-chest angels-chests-small-d + recipe titanium-chest 1 + product titanium-plate 8 +vehicle-battery-1 angels-vehicle-equipment-bobpower-d + recipe vehicle-battery-1 1 + product steel-plate 10 battery 5 +vehicle-big-turret-1 angels-vehicle-equipment-bobcombat-c + recipe vehicle-big-turret-1 1 + product steel-plate 20 alien-artifact 30 battery 12 electronic-circuit 20 +vehicle-fusion-cell-1 angels-vehicle-equipment-bobpower-b + recipe vehicle-fusion-cell-1 1 + product processing-unit 125 +vehicle-fusion-reactor-1 angels-vehicle-equipment-bobpower-c + recipe vehicle-fusion-reactor-1 1 + product processing-unit 250 +vehicle-laser-defense-1 angels-vehicle-equipment-bobcombat-b + recipe vehicle-laser-defense-1 1 + product steel-plate 5 battery 3 electronic-circuit 5 ruby-5 1 +vehicle-motor angels-vehicle-equipment-bobpower-e + recipe vehicle-motor 1 + product steel-plate 20 electric-engine-unit 30 processing-unit 10 +vehicle-roboport angels-vehicle-equipment-bobrobot-d + recipe vehicle-roboport 1 + product steel-plate 5 roboport-antenna-1 2 roboport-door-1 1 roboport-chargepad-1 2 +vehicle-roboport-antenna-equipment angels-vehicle-equipment-bobrobot-c + recipe vehicle-roboport-antenna-equipment 1 + product roboport-antenna-1 2 roboport-door-1 1 +vehicle-roboport-chargepad-equipment angels-vehicle-equipment-bobrobot-b + recipe vehicle-roboport-chargepad-equipment 1 + product roboport-chargepad-1 2 +vehicle-roboport-robot-equipment angels-vehicle-equipment-bobrobot-a + recipe vehicle-roboport-robot-equipment 1 + product solder 2 circuit-board 1 basic-electronic-components 30 electronic-components 15 module-case 1 +vehicle-shield-1 angels-vehicle-equipment-bobcombat-a + recipe vehicle-shield-1 1 + product steel-plate 10 advanced-circuit 5 +vehicle-solar-panel-1 angels-vehicle-equipment-bobpower-a + recipe vehicle-solar-panel-1 1 + product copper-cable 4 steel-plate 2 electronic-circuit 5 +water-viscous-mud water-washing + recipe water-viscous-mud 150 + product solid-mud 10 water 150 +bob-ruby-3 bob-gems-raw + recipe ruby-3 1 + product ruby-ore 1 +bob-ruby-4 bob-gems-cut + recipe ruby-4 1 + product ruby-3 1 grinding-wheel 1 water 10 +bob-ruby-5 bob-gems-polished + recipe ruby-5 1 + product ruby-4 1 polishing-wheel 1 polishing-compound 1 +fill-chlorine-barrel angels-fluid-control-bob-gas-bottle + recipe chlorine-barrel 1 + product gas-canister 1 gas-chlorine 50 +fill-gas-chlorine-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-chlorine-barrel 1 + product gas-canister 1 gas-chlorine 50 +fill-gas-nitrogen-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-nitrogen-barrel 1 + product gas-canister 1 gas-nitrogen 50 +fill-liquid-pulping-liquor-barrel angels-fluid-control-bio-liquor + recipe liquid-pulping-liquor-barrel 1 + product empty-barrel 1 liquid-pulping-liquor 50 +fill-nitrogen-barrel angels-fluid-control-bob-gas-bottle + recipe nitrogen-barrel 1 + product gas-canister 1 gas-nitrogen 50 +fill-water-barrel angels-fluid-control-water-treatment-fluid + recipe water-barrel 1 + product empty-barrel 1 water 50 +fill-water-viscous-mud-barrel angels-fluid-control-water-washing-fluid + recipe water-viscous-mud-barrel 1 + product empty-barrel 1 water-viscous-mud 50 +fill-water-yellow-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe water-yellow-waste-barrel 1 + product empty-barrel 1 water-yellow-waste 50 +light-armor angels-personal-equipment-armor + recipe light-armor 1 + product iron-plate 40 +empty-chlorine-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-chlorine 50 + product chlorine-barrel 1 +empty-gas-chlorine-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-canister 1 gas-chlorine 50 + product gas-chlorine-barrel 1 +empty-gas-nitrogen-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-nitrogen 50 + product gas-nitrogen-barrel 1 +empty-liquid-pulping-liquor-barrel angels-fluid-control-bio-liquor + recipe empty-barrel 1 liquid-pulping-liquor 50 + product liquid-pulping-liquor-barrel 1 +empty-nitrogen-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-nitrogen 50 + product nitrogen-barrel 1 +empty-water-barrel angels-fluid-control-water-treatment-fluid + recipe empty-barrel 1 water 50 + product water-barrel 1 +empty-water-viscous-mud-barrel angels-fluid-control-water-washing-fluid + recipe empty-barrel 1 water-viscous-mud 50 + product water-viscous-mud-barrel 1 +empty-water-yellow-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe empty-barrel 1 water-yellow-waste 50 + product water-yellow-waste-barrel 1 +heavy-armor angels-personal-equipment-armor + recipe heavy-armor 1 + product copper-plate 100 steel-plate 50 +heavy-armor-2 angels-personal-equipment-armor + recipe heavy-armor-2 1 + product gunmetal-alloy 50 invar-alloy 100 +heavy-armor-3 angels-personal-equipment-armor + recipe heavy-armor-3 1 + product silicon-nitride 50 titanium-plate 100 +converter-other-sulfuric-acid angels-converter + recipe sulfuric-acid 50 + product liquid-sulfuric-acid 50 +converter-other-sulfur-dioxide angels-converter + recipe sulfur-dioxide 50 + product gas-sulfur-dioxide 50 +converter-other-nitric-acid angels-converter + recipe nitric-acid 50 + product liquid-nitric-acid 50 +converter-other-nitrogen-dioxide angels-converter + recipe nitrogen-dioxide 50 + product gas-nitrogen-dioxide 50 +converter-other-liquid-air angels-converter + recipe liquid-air 50 + product gas-compressed-air 50 +converter-other-ferric-chloride-solution angels-converter + recipe ferric-chloride-solution 50 + product liquid-ferric-chloride-solution 50 +converter-other-hydrogen-sulfide angels-converter + recipe hydrogen-sulfide 50 + product gas-hydrogen-sulfide 50 +converter-other-ammonia angels-converter + recipe ammonia 50 + product gas-ammonia 50 +converter-other-nitric-oxide angels-converter + recipe nitric-oxide 50 + product gas-nitrogen-monoxide 50 +converter-other-dinitrogen-tetroxide angels-converter + recipe dinitrogen-tetroxide 50 + product gas-dinitrogen-tetroxide 50 +converter-other-hydrazine angels-converter + recipe hydrazine 50 + product gas-hydrazine 50 +converter-other-heavy-oil angels-converter + recipe heavy-oil 50 + product liquid-naphtha 50 +converter-other-tungstic-acid angels-converter + recipe tungstic-acid 50 + product liquid-tungstic-acid 50 +converter-other-light-oil angels-converter + recipe light-oil 50 + product liquid-fuel-oil 50 +converter-other-petroleum-gas angels-converter + recipe petroleum-gas 50 + product gas-methane 50 +converter-other-chlorine angels-converter + recipe chlorine 50 + product gas-chlorine 50 +converter-other-oxygen angels-converter + recipe oxygen 50 + product gas-oxygen 50 +converter-other-hydrogen angels-converter + recipe hydrogen 50 + product gas-hydrogen 50 +converter-other-hydrogen-chloride angels-converter + recipe hydrogen-chloride 50 + product gas-hydrogen-chloride 50 +converter-other-nitrogen angels-converter + recipe nitrogen 50 + product gas-nitrogen 50 +algae-blue bio-processing-blue + recipe algae-blue 40 + product water-yellow-waste 100 gas-carbon-dioxide 100 +algae-brown bio-processing-brown + recipe algae-brown 40 + product water-saline 100 +algae-red bio-processing-red + recipe algae-red 40 + product thermal-water 100 gas-ammonia 100 +algae-farm bio-processing-buildings-nauvis-a + recipe algae-farm 1 + product stone-brick 55 iron-plate 33 basic-circuit-board 4 pipe 54 +algae-farm-2 bio-processing-buildings-nauvis-a + recipe algae-farm-2 1 + product clay-brick 55 steel-plate 33 algae-farm 1 electronic-circuit 4 steel-pipe 54 +algae-farm-3 bio-processing-buildings-nauvis-a + recipe algae-farm-3 1 + product clay-brick 55 bronze-alloy 33 algae-farm-2 1 electronic-circuit 4 bronze-pipe 54 +algae-farm-4 bio-processing-buildings-nauvis-a + recipe algae-farm-4 1 + product aluminium-plate 44 concrete-brick 55 algae-farm-3 1 advanced-circuit 4 brass-pipe 54 +alien-spores bio-processing-alien-intermediate + recipe alien-spores 70 - 80 water-yellow-waste 30 - 40 + product liquid-polluted-fish-atmosphere 100 +fill-alien-spores-barrel angels-fluid-control-bio-processing-alien-intermediate + recipe alien-spores-barrel 1 + product empty-barrel 1 alien-spores 50 +empty-alien-spores-barrel angels-fluid-control-bio-processing-alien-intermediate + recipe empty-barrel 1 alien-spores 50 + product alien-spores-barrel 1 +alien-bacteria bio-processing-alien-intermediate + recipe alien-bacteria 1 + product solid-calcium-carbonate 1 alien-spores 50 liquid-hydrochloric-acid 50 +alien-goo bio-processing-alien-intermediate + recipe alien-goo 5 - 10 + product alien-bacteria 1 +fill-alien-goo-barrel angels-fluid-control-bio-processing-alien-intermediate + recipe alien-goo-barrel 1 + product empty-barrel 1 alien-goo 50 +empty-alien-goo-barrel angels-fluid-control-bio-processing-alien-intermediate + recipe empty-barrel 1 alien-goo 50 + product alien-goo-barrel 1 +angels-burner-generator-vequip angels-vehicle-equipment + recipe angels-burner-generator-vequip 1 + product iron-plate 20 electronic-circuit 20 +angels-chemical-furnace angels-chemical-furnace + recipe angels-chemical-furnace 1 + product clay-brick 25 steel-plate 6 electronic-circuit 5 steel-pipe 30 +angels-construction-robot angels-cargo-bots + recipe angels-construction-robot 1 + product steel-plate 5 engine-unit 1 iron-gear-wheel 5 electronic-circuit 2 +angelsore-crushed-mix1-processing ore-sorting-advanced + recipe iron-ore 4 + product catalysator-brown 1 angels-ore1-crushed 2 angels-ore2-crushed 2 +angelsore1-chunk-processing ore-sorting-t2 + recipe slag 1 iron-ore 2 copper-ore 1 quartz 1 nickel-ore 1 + product angels-ore1-chunk 6 +angelsore1-chunk ore-processing-b + recipe angels-ore1-chunk 2 geode-blue 1 water-yellow-waste 50 + product angels-ore1-crushed 2 water-purified 50 +angelsore1-crushed-hand processing-crafting + recipe angels-ore1-crushed 2 stone-crushed 1 + product angels-ore1 2 +angelsore1-crushed-processing ore-sorting-t1 + recipe slag 1 iron-ore 2 copper-ore 1 + product angels-ore1-crushed 4 +angelsore1-crushed ore-processing-a + recipe angels-ore1-crushed 2 stone-crushed 1 + product angels-ore1 2 +angelsore1-crystal-processing ore-sorting-t3 + recipe slag 1 iron-ore 3 copper-ore 1 quartz 1 nickel-ore 1 rutile-ore 1 + product angels-ore1-crystal 8 +angelsore1-crystal ore-processing-c + recipe angels-ore1-crystal 2 + product angels-ore1-chunk 2 liquid-sulfuric-acid 10 +angelsore1-pure-processing ore-sorting-t4 + recipe iron-ore 3 copper-ore 2 quartz 1 nickel-ore 1 rutile-ore 1 tungsten-ore 1 + product angels-ore1-pure 9 +angelsore1-pure ore-processing-d + recipe angels-ore1-pure 4 + product angels-ore1-crystal 4 +assembling-machine-1 bob-assembly-machine + recipe assembling-machine-1 1 + product iron-plate 9 iron-gear-wheel 5 basic-circuit-board 3 +automation-science-pack science-pack + recipe automation-science-pack 1 + product copper-plate 1 iron-gear-wheel 1 +iron-stick angels-basic-intermediate + recipe iron-stick 2 + product iron-plate 1 +beacon module-beacon + recipe beacon 1 + product copper-cable 10 steel-plate 10 electronic-circuit 20 advanced-circuit 20 crystal-splinter-harmonic 1 +beacon-2 module-beacon + recipe beacon-2 1 + product aluminium-plate 10 tinned-copper-cable 10 electronic-circuit 20 advanced-circuit 20 processing-unit 20 crystal-shard-harmonic 1 beacon 1 +beacon-3 module-beacon + recipe beacon-3 1 + product gold-plate 10 titanium-plate 10 insulated-cable 10 advanced-circuit 20 processing-unit 20 advanced-processing-unit 20 crystal-full-harmonic 1 beacon-2 1 +blast-furnace angels-blast-furnace + recipe blast-furnace 1 + product stone-brick 50 iron-plate 12 basic-circuit-board 3 pipe 15 +angels-bronze-smelting-1 angels-alloys-casting + recipe liquid-molten-bronze 240 + product ingot-copper 18 ingot-tin 6 +angels-bronze-smelting-2 angels-alloys-casting + recipe liquid-molten-bronze 360 + product ingot-copper 18 ingot-nickel 6 ingot-tin 12 +angels-bronze-smelting-3 angels-alloys-casting + recipe liquid-molten-bronze 360 + product ingot-copper 18 ingot-tin 12 ingot-zinc 6 +angels-plate-bronze angels-alloys-casting + recipe bronze-alloy 4 + product liquid-molten-bronze 40 +bronze-alloy angels-alloys-casting + recipe bronze-alloy 5 + product copper-plate 3 tin-plate 2 +burner-ore-crusher ore-crusher + recipe burner-ore-crusher 1 + product stone-furnace 1 stone 5 iron-gear-wheel 3 +accumulator angels-power-accumulator + recipe accumulator 1 + product iron-plate 2 battery 10 electronic-circuit 2 +large-accumulator-2 angels-power-accumulator + recipe large-accumulator-2 1 + product steel-plate 2 lithium-ion-battery 10 advanced-circuit 2 accumulator 1 +large-accumulator-3 angels-power-accumulator + recipe large-accumulator-3 1 + product titanium-plate 2 silver-zinc-battery 10 processing-unit 2 large-accumulator-2 1 +car angels-vehicle-car + recipe car 1 + product iron-plate 20 steel-plate 5 engine-unit 8 +bob-coal-from-wood petrochem-coal + recipe coal 1 + product wood 5 +carbon bob-material-chemical + recipe solid-carbon 2 + product coal 1 water 5 +casting-machine angels-casting-machine + recipe casting-machine 1 + product stone-brick 5 iron-plate 9 iron-gear-wheel 3 basic-circuit-board 1 pipe 6 +character bodies + recipe character 1 + product assembling-machine-2 1 player-frame 1 +bob-character-builder bodies + recipe bob-character-builder 1 + product assembling-machine-3 1 player-frame 1 +bob-character-fighter bodies + recipe bob-character-fighter 1 + product assembling-machine-2 1 player-frame 1 exoskeleton-equipment 1 +bob-character-miner bodies + recipe bob-character-miner 1 + product electric-furnace 1 assembling-machine-2 1 player-frame 1 +bob-character-balanced-2 bodies + recipe bob-character-balanced-2 1 + product assembling-machine-2 1 player-frame-2 1 +bob-character-builder-2 bodies + recipe bob-character-builder-2 1 + product assembling-machine-4 1 player-frame-2 1 +bob-character-engineer bodies + recipe bob-character-engineer 1 + product electric-furnace 1 assembling-machine-3 1 player-frame-2 1 +bob-character-fighter-2 bodies + recipe bob-character-fighter-2 1 + product assembling-machine-2 1 player-frame-2 1 exoskeleton-equipment-2 1 +bob-character-miner-2 bodies + recipe bob-character-miner-2 1 + product electric-furnace-2 1 assembling-machine-2 1 player-frame-2 1 +bob-character-prospector bodies + recipe bob-character-prospector 1 + product electric-furnace 1 assembling-machine-2 1 player-frame-2 1 exoskeleton-equipment 1 +wooden-chest angels-chests-small-a + recipe wooden-chest 1 + product wood 2 +iron-chest angels-chests-small-a + recipe iron-chest 1 + product iron-plate 8 +coal-crushed petrochem-coal + recipe coal-crushed 2 + product coal 1 +crystal-powder-from-dust bio-biter-processing-crystal-full + recipe crystal-powder 20 milling-drum-used 1 + product crystal-dust 10 milling-drum 1 +crystal-powder-slurry bio-biter-processing-crystal-full + recipe crystal-slurry 1 + product crystal-powder 1 water-purified 1 +crystal-shard-crystalization-1 bio-biter-processing-crystal-shard + recipe crystal-shard-raw 1 + product egg-shell-seed 1 liquid-polluted-fish-atmosphere 50 +crystal-splinter-crystalization-1 bio-biter-processing-crystal-splinter + recipe crystal-splinter-raw 1 + product liquid-polluted-fish-atmosphere 50 +crystal-shard-crystalization-2 bio-biter-processing-crystal-shard + recipe crystal-shard-raw 1 + product egg-shell-seed 1 crystal-enhancer 1 liquid-polluted-fish-atmosphere 50 +crystal-splinter-crystalization-2 bio-biter-processing-crystal-splinter + recipe crystal-splinter-raw 1 + product crystal-seed 1 liquid-polluted-fish-atmosphere 50 +electric-energy-interface other + recipe electric-energy-interface 1 + product iron-plate 2 electronic-circuit 5 +angels-electrode petrochem-catalysts + recipe angels-electrode 1 + product steel-plate 1 solid-carbon 1 +angels-electrode-used petrochem-catalysts + recipe angels-electrode 1 water-mineralized 10 water 40 + product angels-electrode-used 1 water-purified 50 +explosives petrochem-solids-2 + recipe explosives 2 + product coal 1 sulfur 1 water-purified 10 +solid-nitroglycerin petrochem-solids-2 + recipe explosives 2 + product coal 1 liquid-glycerol 50 liquid-sulfuric-acid 25 liquid-nitric-acid 25 +solid-trinitrotoluene petrochem-solids-2 + recipe explosives 3 water-yellow-waste 25 + product liquid-toluene 50 liquid-sulfuric-acid 25 liquid-nitric-acid 25 +cliff-explosives petrochem-solids-2 + recipe cliff-explosives 1 + product explosives 10 empty-barrel 1 grenade 1 +fill-angels-ore8-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore8-sludge-barrel 1 + product empty-barrel 1 angels-ore8-sludge 50 +empty-angels-ore8-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore8-sludge 50 + product angels-ore8-sludge-barrel 1 +fill-angels-ore8-solution-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore8-solution-barrel 1 + product empty-barrel 1 angels-ore8-solution 50 +empty-angels-ore8-solution-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore8-solution 50 + product angels-ore8-solution-barrel 1 +fill-angels-ore8-anode-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore8-anode-sludge-barrel 1 + product empty-barrel 1 angels-ore8-anode-sludge 50 +empty-angels-ore8-anode-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore8-anode-sludge 50 + product angels-ore8-anode-sludge-barrel 1 +fill-angels-ore8-slime-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore8-slime-barrel 1 + product empty-barrel 1 angels-ore8-slime 50 +empty-angels-ore8-slime-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore8-slime 50 + product angels-ore8-slime-barrel 1 +fill-ferric-chloride-solution-barrel angels-fluid-control-bob-canister + recipe ferric-chloride-solution-barrel 1 + product empty-canister 1 liquid-ferric-chloride-solution 50 +fill-liquid-ferric-chloride-solution-barrel angels-fluid-control-ore-processing-fluid + recipe liquid-ferric-chloride-solution-barrel 1 + product empty-canister 1 liquid-ferric-chloride-solution 50 +empty-ferric-chloride-solution-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 liquid-ferric-chloride-solution 50 + product ferric-chloride-solution-barrel 1 +empty-liquid-ferric-chloride-solution-barrel angels-fluid-control-ore-processing-fluid + recipe empty-canister 1 liquid-ferric-chloride-solution 50 + product liquid-ferric-chloride-solution-barrel 1 +slag-processing-filtering-1 filtering + recipe filter-frame 1 mineral-sludge 50 water-yellow-waste 40 + product filter-coal 1 slag-slurry 50 water-purified 50 +slag-processing-filtering-2 filtering + recipe filter-ceramic-used 1 mineral-sludge 35 water-yellow-waste 20 + product filter-ceramic 1 slag-slurry 35 water-purified 50 +thermal-water-filtering-1 filtering + recipe filter-frame 1 mineral-sludge 50 + product filter-coal 1 thermal-water 50 +thermal-water-filtering-2 filtering + recipe filter-ceramic-used 1 mineral-sludge 35 + product filter-ceramic 1 thermal-water 35 +crystal-slurry-filtering-conversion-1 filtering + recipe filter-frame 1 mineral-sludge 50 water-yellow-waste 40 + product filter-coal 1 crystal-slurry 50 water-mineralized 100 +crystal-slurry-filtering-conversion-2 filtering + recipe filter-ceramic-used 1 mineral-sludge 35 water-yellow-waste 20 + product filter-ceramic 1 crystal-slurry 35 water-mineralized 100 +fill-ammoniated-brine-barrel angels-fluid-control-bob-fluid + recipe ammoniated-brine-barrel 1 + product empty-barrel 1 ammoniated-brine 50 +fill-brine-barrel angels-fluid-control-bob-fluid + recipe brine-barrel 1 + product empty-barrel 1 water-saline 50 +empty-ammoniated-brine-barrel angels-fluid-control-bob-fluid + recipe empty-barrel 1 ammoniated-brine 50 + product ammoniated-brine-barrel 1 +empty-brine-barrel angels-fluid-control-bob-fluid + recipe empty-barrel 1 water-saline 50 + product brine-barrel 1 +fill-heavy-oil-barrel angels-fluid-control-vanilla + recipe heavy-oil-barrel 1 + product empty-barrel 1 liquid-naphtha 50 +empty-heavy-oil-barrel angels-fluid-control-vanilla + recipe empty-barrel 1 liquid-naphtha 50 + product heavy-oil-barrel 1 +fill-light-oil-barrel angels-fluid-control-vanilla + recipe light-oil-barrel 1 + product empty-barrel 1 liquid-fuel-oil 50 +empty-light-oil-barrel angels-fluid-control-vanilla + recipe empty-barrel 1 liquid-fuel-oil 50 + product light-oil-barrel 1 +fill-petroleum-gas-barrel angels-fluid-control-bob-gas-bottle + recipe petroleum-gas-barrel 1 + product gas-canister 1 gas-methane 50 +empty-petroleum-gas-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-methane 50 + product petroleum-gas-barrel 1 +fill-sour-gas-barrel angels-fluid-control-bob-gas-bottle + recipe sour-gas-barrel 1 + product gas-canister 1 sour-gas 50 +empty-sour-gas-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 sour-gas 50 + product sour-gas-barrel 1 +fill-sulfuric-acid-barrel angels-fluid-control-bob-canister + recipe sulfuric-acid-barrel 1 + product empty-canister 1 liquid-sulfuric-acid 50 +empty-sulfuric-acid-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 liquid-sulfuric-acid 50 + product sulfuric-acid-barrel 1 +fill-ammonia-barrel angels-fluid-control-bob-gas-bottle + recipe ammonia-barrel 1 + product gas-canister 1 gas-ammonia 50 +empty-ammonia-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-ammonia 50 + product ammonia-barrel 1 +fill-carbon-dioxide-barrel angels-fluid-control-bob-gas-bottle + recipe carbon-dioxide-barrel 1 + product gas-canister 1 gas-carbon-dioxide 50 +empty-carbon-dioxide-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-carbon-dioxide 50 + product carbon-dioxide-barrel 1 +fill-dinitrogen-tetroxide-barrel angels-fluid-control-bob-fluid + recipe dinitrogen-tetroxide-barrel 1 + product empty-barrel 1 gas-dinitrogen-tetroxide 50 +empty-dinitrogen-tetroxide-barrel angels-fluid-control-bob-fluid + recipe empty-barrel 1 gas-dinitrogen-tetroxide 50 + product dinitrogen-tetroxide-barrel 1 +fill-glycerol-barrel angels-fluid-control-bob-fluid + recipe glycerol-barrel 1 + product empty-barrel 1 liquid-glycerol 50 +empty-glycerol-barrel angels-fluid-control-bob-fluid + recipe empty-barrel 1 liquid-glycerol 50 + product glycerol-barrel 1 +fill-hydrazine-barrel angels-fluid-control-bob-fluid + recipe hydrazine-barrel 1 + product empty-barrel 1 gas-hydrazine 50 +empty-hydrazine-barrel angels-fluid-control-bob-fluid + recipe empty-barrel 1 gas-hydrazine 50 + product hydrazine-barrel 1 +fill-hydrogen-peroxide-barrel angels-fluid-control-bob-fluid + recipe hydrogen-peroxide-barrel 1 + product empty-barrel 1 gas-hydrogen-peroxide 50 +empty-hydrogen-peroxide-barrel angels-fluid-control-bob-fluid + recipe empty-barrel 1 gas-hydrogen-peroxide 50 + product hydrogen-peroxide-barrel 1 +hydrogen-sulfide bob-fluid + recipe gas-hydrogen-sulfide 50 + product sulfur 5 gas-hydrogen 80 +fill-nitric-oxide-barrel angels-fluid-control-bob-gas-bottle + recipe nitric-oxide-barrel 1 + product gas-canister 1 gas-nitrogen-monoxide 50 +empty-nitric-oxide-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-nitrogen-monoxide 50 + product nitric-oxide-barrel 1 +sulfur-dioxide bob-fluid + recipe gas-sulfur-dioxide 50 + product sulfur 5 gas-oxygen 50 +fill-sulfuric-nitric-acid-barrel angels-fluid-control-bob-canister + recipe sulfuric-nitric-acid-barrel 1 + product empty-canister 1 sulfuric-nitric-acid 50 +empty-sulfuric-nitric-acid-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 sulfuric-nitric-acid 50 + product sulfuric-nitric-acid-barrel 1 +flying-robot-frame angels-robot-a + recipe flying-robot-frame 1 + product steel-plate 1 electric-engine-unit 1 battery 2 electronic-circuit 3 +flying-robot-frame-2 angels-robot-b + recipe flying-robot-frame-2 1 + product aluminium-plate 1 electric-engine-unit 1 battery 2 advanced-circuit 3 +flying-robot-frame-3 angels-robot-c + recipe flying-robot-frame-3 1 + product titanium-plate 1 electric-engine-unit 1 lithium-ion-battery 2 processing-unit 3 +flying-robot-frame-4 angels-robot-d + recipe flying-robot-frame-4 1 + product silicon-nitride 1 electric-engine-unit 1 silver-zinc-battery 2 advanced-processing-unit 3 +burner-reactor angels-power-nuclear-reactor-a + recipe burner-reactor 1 + product steel-furnace 1 steel-plate 6 heat-pipe 8 +burner-reactor-2 angels-power-nuclear-reactor-a + recipe burner-reactor-2 1 + product concrete 10 invar-alloy 6 burner-reactor 1 heat-pipe-2 8 +gas-acid-catalyst petrochem-sulfur + recipe catalyst-metal-carrier 1 gas-hydrogen-sulfide 60 gas-carbon-dioxide 20 gas-hydrogen-fluoride 20 + product catalyst-metal-green 1 gas-acid 100 +gas-formaldehyde-catalyst petrochem-chemistry + recipe catalyst-metal-carrier 1 gas-formaldehyde 100 + product catalyst-metal-green 1 gas-methanol 100 +gas-methanol-catalyst petrochem-feedstock + recipe catalyst-metal-carrier 1 gas-methanol 100 + product catalyst-metal-green 1 gas-carbon-dioxide 100 gas-hydrogen 100 +gas-refinery-small petrochem-buildings-gas-refinery + recipe gas-refinery-small 1 + product clay-brick 20 steel-plate 6 electronic-circuit 4 steel-pipe 36 +gas-refinery-small-2 petrochem-buildings-gas-refinery + recipe gas-refinery-small-2 1 + product aluminium-plate 8 concrete-brick 20 gas-refinery-small 1 advanced-circuit 4 brass-pipe 36 +gas-refinery-small-3 petrochem-buildings-gas-refinery + recipe gas-refinery-small-3 1 + product reinforced-concrete-brick 20 titanium-plate 8 gas-refinery-small-2 1 processing-unit 4 titanium-pipe 36 +gas-refinery-small-4 petrochem-buildings-gas-refinery + recipe gas-refinery-small-4 1 + product reinforced-concrete-brick 20 tungsten-plate 8 gas-refinery-small-3 1 advanced-processing-unit 4 tungsten-pipe 36 +gas-separation petrochem-carbon-gas-feed + recipe gas-raw-1 60 liquid-condensates 30 water-yellow-waste 10 + product gas-natural-1 100 +gas-synthesis-separation petrochem-carbon-synthesis + recipe gas-carbon-monoxide 40 gas-hydrogen 60 + product gas-synthesis 100 +desert-tree-generator-1 bio-arboretum-desert + recipe tree-desert-seed 4 + product solid-sand 5 seedling 4 water-saline 50 +swamp-tree-generator-1 bio-arboretum-swamp + recipe tree-swamp-seed 4 + product solid-mud 5 seedling 4 water-light-mud 50 +temperate-tree-generator-1 bio-arboretum-temperate + recipe tree-temperate-seed 4 + product solid-soil 5 seedling 4 water 50 +tree-generator-1 bio-arboretum + recipe tree-seed 4 + product solid-soil 5 seedling 4 water 50 +desert-tree-generator-2 bio-arboretum-desert + recipe tree-desert-seed 6 + product solid-sand 5 solid-fertilizer 1 seedling 6 water-saline 50 +swamp-tree-generator-2 bio-arboretum-swamp + recipe tree-swamp-seed 6 + product solid-mud 5 solid-fertilizer 1 seedling 6 water-light-mud 50 +temperate-tree-generator-2 bio-arboretum-temperate + recipe tree-temperate-seed 6 + product solid-soil 5 solid-fertilizer 1 seedling 6 water 50 +tree-generator-2 bio-arboretum + recipe tree-seed 6 + product solid-soil 5 solid-fertilizer 1 seedling 6 water 50 +desert-tree-generator-3 bio-arboretum-desert + recipe tree-desert-seed 8 + product solid-sand 5 solid-fertilizer 1 seedling 8 water-saline 50 gas-nitrogen 20 +swamp-tree-generator-3 bio-arboretum-swamp + recipe tree-swamp-seed 8 + product solid-mud 5 solid-fertilizer 1 seedling 8 water-light-mud 50 gas-nitrogen 20 +temperate-tree-generator-3 bio-arboretum-temperate + recipe tree-temperate-seed 8 + product solid-soil 5 solid-fertilizer 1 seedling 8 water 50 gas-carbon-dioxide 20 +tree-generator-3 bio-arboretum + recipe tree-seed 8 + product solid-soil 5 solid-fertilizer 1 seedling 8 water 50 gas-carbon-dioxide 20 +geode-blue-liquify liquifying + recipe crystal-slurry 20 + product geode-blue 5 liquid-sulfuric-acid 15 +geode-blue-processing geode-processing-1 + recipe crystal-dust 1 stone-crushed 2 + product geode-blue 2 +shotgun angels-physical-ba + recipe shotgun 1 + product iron-plate 5 wood 5 iron-gear-wheel 5 pistol 2 +flamethrower angels-fire + recipe flamethrower 1 + product steel-plate 5 iron-gear-wheel 5 submachine-gun 1 +rocket-launcher angels-explosion-a + recipe rocket-launcher 1 + product steel-plate 5 electronic-circuit 5 shotgun 2 +pistol angels-physical-aa + recipe pistol 1 + product copper-plate 5 iron-plate 5 +artillery-targeting-remote angels-artillery-a + recipe artillery-targeting-remote 1 + product processing-unit 1 radar 1 +laser-rifle angels-electric-a + recipe laser-rifle 1 + product steel-plate 10 steel-gear-wheel 5 advanced-circuit 5 rifle 1 +rifle angels-physical-ab + recipe rifle 1 + product aluminium-plate 5 steel-plate 5 steel-gear-wheel 10 submachine-gun 1 +bio-gun angels-fire + recipe bio-gun 1 + product steel-plate 5 iron-gear-wheel 5 submachine-gun 1 +combat-shotgun angels-physical-ba + recipe combat-shotgun 1 + product steel-plate 15 wood 5 shotgun 1 +sniper-rifle angels-physical-ab + recipe sniper-rifle 1 + product glass 2 wood 10 rifle 1 +submachine-gun angels-physical-aa + recipe submachine-gun 1 + product iron-plate 5 iron-gear-wheel 10 pistol 1 +hydro-plant water-treatment-building + recipe hydro-plant 1 + product stone-brick 60 iron-plate 12 basic-circuit-board 12 pipe 48 +fill-gas-hydrogen-sulfide-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-hydrogen-sulfide-barrel 1 + product gas-canister 1 gas-hydrogen-sulfide 50 +fill-hydrogen-sulfide-barrel angels-fluid-control-bob-gas-bottle + recipe hydrogen-sulfide-barrel 1 + product gas-canister 1 gas-hydrogen-sulfide 50 +empty-gas-hydrogen-sulfide-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-canister 1 gas-hydrogen-sulfide 50 + product gas-hydrogen-sulfide-barrel 1 +empty-hydrogen-sulfide-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-hydrogen-sulfide 50 + product hydrogen-sulfide-barrel 1 +induction-furnace angels-induction-furnace + recipe induction-furnace 1 + product stone-brick 25 iron-plate 15 iron-gear-wheel 9 basic-circuit-board 5 pipe 12 +iron-gear-wheel bob-gears + recipe iron-gear-wheel 1 + product iron-plate 2 +angels-iron-pebbles ore-sorting-advanced + recipe angels-iron-pebbles 4 + product iron-ore 2 +burner-mining-drill extraction-machine + recipe burner-mining-drill 1 + product stone-furnace 1 iron-plate 3 iron-gear-wheel 3 +steam-mining-drill extraction-machine + recipe steam-mining-drill 1 + product burner-mining-drill 1 pipe 2 +electric-mining-drill extraction-machine + recipe electric-mining-drill 1 + product iron-plate 10 iron-gear-wheel 5 basic-circuit-board 3 +bob-mining-drill-1 extraction-machine + recipe bob-mining-drill-1 1 + product electric-mining-drill 1 steel-plate 10 steel-gear-wheel 5 electronic-circuit 5 +bob-mining-drill-2 extraction-machine + recipe bob-mining-drill-2 1 + product bob-mining-drill-1 1 invar-alloy 10 brass-gear-wheel 5 advanced-circuit 5 +bob-mining-drill-3 extraction-machine + recipe bob-mining-drill-3 1 + product bob-mining-drill-2 1 titanium-plate 10 titanium-gear-wheel 5 processing-unit 5 +bob-mining-drill-4 extraction-machine + recipe bob-mining-drill-4 1 + product bob-mining-drill-3 1 tungsten-carbide 10 nitinol-gear-wheel 5 advanced-processing-unit 5 +bob-area-mining-drill-1 extraction-machine + recipe bob-area-mining-drill-1 1 + product electric-mining-drill 1 steel-plate 10 steel-gear-wheel 5 electronic-circuit 5 +bob-area-mining-drill-2 extraction-machine + recipe bob-area-mining-drill-2 1 + product bob-area-mining-drill-1 1 invar-alloy 10 brass-gear-wheel 5 advanced-circuit 5 +bob-area-mining-drill-3 extraction-machine + recipe bob-area-mining-drill-3 1 + product bob-area-mining-drill-2 1 titanium-plate 10 titanium-gear-wheel 5 processing-unit 5 +bob-area-mining-drill-4 extraction-machine + recipe bob-area-mining-drill-4 1 + product bob-area-mining-drill-3 1 tungsten-carbide 10 nitinol-gear-wheel 5 advanced-processing-unit 5 +small-lamp circuit-network + recipe small-lamp 1 + product copper-cable 3 iron-plate 1 basic-circuit-board 1 +angels-lamp circuit-network + recipe angels-lamp 1 + product copper-cable 3 iron-plate 1 basic-circuit-board 1 +liquid-styrene-catalyst petrochem-chemistry + recipe catalyst-metal-carrier 1 liquid-styrene 50 + product catalyst-metal-green 1 liquid-ethylbenzene 100 +crawler-locomotive angels-vehicle-train-crawler + recipe crawler-locomotive 1 + product steel-plate 40 engine-unit 25 electronic-circuit 20 locomotive 1 +crawler-locomotive-2 angels-vehicle-train-crawler + recipe crawler-locomotive-2 1 + product steel-plate 50 engine-unit 30 crawler-locomotive 1 speed-module 2 +crawler-locomotive-3 angels-vehicle-train-crawler + recipe crawler-locomotive-3 1 + product electric-engine-unit 40 low-density-structure 50 crawler-locomotive-2 1 speed-module-2 2 +crawler-locomotive-4 angels-vehicle-train-crawler + recipe crawler-locomotive-4 1 + product electric-engine-unit 45 low-density-structure 75 crawler-locomotive-3 1 speed-module-3 2 +crawler-locomotive-5 angels-vehicle-train-crawler + recipe crawler-locomotive-5 1 + product electric-engine-unit 50 rocket-control-unit 2 low-density-structure 100 crawler-locomotive-4 1 +land-mine angels-capsules-a + recipe land-mine 4 + product steel-plate 1 explosives 2 +poison-mine angels-capsules-a + recipe poison-mine 4 + product steel-plate 1 poison-capsule 4 +slowdown-mine angels-capsules-a + recipe slowdown-mine 4 + product steel-plate 1 slowdown-capsule 4 +distractor-mine angels-capsules-a + recipe distractor-mine 3 + product steel-plate 1 distractor-capsule 1 +solid-beans-nutrients bio-processor-nutrient + recipe liquid-nutrient-pulp 80 + product solid-beans 5 +solid-corn-nutrients bio-processor-nutrient + recipe liquid-nutrient-pulp 70 + product solid-corn 5 +solid-leafs-nutrients bio-processor-nutrient + recipe liquid-nutrient-pulp 10 + product solid-leafs 5 +solid-nuts-nutrients bio-processor-nutrient + recipe liquid-nutrient-pulp 40 + product solid-nuts 5 +solid-pips-nutrients bio-processor-nutrient + recipe liquid-nutrient-pulp 20 + product solid-pips 5 +solid-fruit-nutrients bio-processor-nutrient + recipe liquid-nutrient-pulp 60 + product solid-fruit 5 +liquid-raw-vegetable-oil-nuts bio-processor-press-vegetables + recipe liquid-raw-vegetable-oil 50 + product solid-nuts 10 +fish-pressing-0 bio-processor-press-fish + recipe fish-pulp 5 liquid-raw-fish-oil 200 + product raw-fish 1 +liquid-raw-vegetable-oil-pips bio-processor-press-vegetables + recipe liquid-raw-vegetable-oil 40 + product solid-pips 10 +fish-pressing-1 bio-processor-press-fish + recipe fish-pulp 1 liquid-raw-fish-oil 200 + product alien-fish-1-raw 1 +liquid-raw-vegetable-oil-beans bio-processor-press-vegetables + recipe liquid-raw-vegetable-oil 30 + product solid-beans 10 +fish-pressing-2 bio-processor-press-fish + recipe fish-pulp 2 liquid-raw-fish-oil 100 + product alien-fish-2-raw 1 +fish-pressing-3 bio-processor-press-fish + recipe fish-pulp 1 liquid-raw-fish-oil 50 + product alien-fish-3-raw 1 +basic-oil-processing fluid-recipes + recipe sour-gas 70 + product crude-oil 100 +advanced-oil-processing fluid-recipes + recipe liquid-naphtha 25 liquid-fuel-oil 45 sour-gas 55 + product water-purified 50 crude-oil 100 +bob-oil-processing fluid-recipes + recipe liquid-naphtha 50 liquid-fuel-oil 20 sour-gas 30 + product crude-oil 100 +carbon-dioxide-oil-processing fluid-recipes + recipe liquid-naphtha 60 liquid-fuel-oil 40 sour-gas 25 + product gas-carbon-dioxide 50 crude-oil 100 +coal-liquefaction fluid-recipes + recipe liquid-naphtha 90 liquid-fuel-oil 20 sour-gas 10 + product coal 10 liquid-naphtha 10 steam 50 +oil-separation petrochem-carbon-oil-feed + recipe gas-raw-1 20 crude-oil 70 water-yellow-waste 10 + product liquid-multi-phase-oil 100 +ore-floatation-cell ore-floatation + recipe ore-floatation-cell 1 + product clay-brick 40 bronze-alloy 12 electronic-circuit 8 bronze-pipe 12 +ore-leaching-plant ore-leaching + recipe ore-leaching-plant 1 + product aluminium-plate 16 concrete-brick 40 advanced-circuit 8 brass-pipe 12 +ore-processing-machine angels-processing-machine + recipe ore-processing-machine 1 + product clay-brick 20 bronze-alloy 6 steel-gear-wheel 6 +ore-refinery ore-refining + recipe ore-refinery 1 + product reinforced-concrete-brick 100 titanium-plate 48 processing-unit 12 +ore-sorting-facility ore-sorter + recipe ore-sorting-facility 1 + product stone-brick 60 iron-plate 36 iron-gear-wheel 24 basic-circuit-board 12 +silo-ore1 angels-ore-silo + recipe silo-ore1 1 + product angels-ore1-crushed 10 silo 1 +silo-ore2 angels-ore-silo + recipe silo-ore2 1 + product angels-ore2-crushed 10 silo 1 +silo-ore3 angels-ore-silo + recipe silo-ore3 1 + product angels-ore3-crushed 10 silo 1 +silo-ore4 angels-ore-silo + recipe silo-ore4 1 + product angels-ore4-crushed 10 silo 1 +silo-ore5 angels-ore-silo + recipe silo-ore5 1 + product angels-ore5-crushed 10 silo 1 +silo-ore6 angels-ore-silo + recipe silo-ore6 1 + product angels-ore6-crushed 10 silo 1 +silo-coal angels-ore-silo + recipe silo-coal 1 + product coal-crushed 10 silo 1 +roboport-antenna-1 angels-roboport-a + recipe roboport-antenna-1 1 + product copper-cable 2 steel-plate 1 advanced-circuit 5 +roboport-antenna-2 angels-roboport-b + recipe roboport-antenna-2 1 + product aluminium-plate 1 tinned-copper-cable 2 advanced-circuit 5 +roboport-antenna-3 angels-roboport-c + recipe roboport-antenna-3 1 + product nickel-plate 1 insulated-cable 2 processing-unit 5 +roboport-antenna-4 angels-roboport-d + recipe roboport-antenna-4 1 + product gold-plate 1 gilded-copper-cable 2 nickel-plate 1 advanced-processing-unit 5 +roboport-door-1 angels-roboport-a + recipe roboport-door-1 1 + product steel-plate 15 iron-gear-wheel 20 +roboport-door-2 angels-roboport-b + recipe roboport-door-2 1 + product invar-alloy 15 brass-gear-wheel 20 steel-bearing 20 +roboport-door-3 angels-roboport-c + recipe roboport-door-3 1 + product titanium-plate 15 titanium-gear-wheel 20 titanium-bearing 20 +roboport-door-4 angels-roboport-d + recipe roboport-door-4 1 + product nitinol-alloy 15 nitinol-gear-wheel 20 nitinol-bearing 20 +roboport-chargepad-1 angels-roboport-a + recipe roboport-chargepad-1 1 + product steel-plate 2 advanced-circuit 5 +roboport-chargepad-2 angels-roboport-b + recipe roboport-chargepad-2 1 + product invar-alloy 2 battery 2 advanced-circuit 5 +roboport-chargepad-3 angels-roboport-c + recipe roboport-chargepad-3 1 + product titanium-plate 2 lithium-ion-battery 2 processing-unit 5 +roboport-chargepad-4 angels-roboport-d + recipe roboport-chargepad-4 1 + product nitinol-alloy 2 silver-zinc-battery 2 advanced-processing-unit 5 +pellet-press angels-pellet-press + recipe pellet-press 1 + product aluminium-plate 8 concrete-brick 10 brass-gear-wheel 12 +plastic-bar petrochem-solids + recipe plastic-bar 2 + product gas-methane 20 gas-chlorine 10 +bob-resin-oil bob-resource-chemical + recipe resin 1 + product liquid-naphtha 10 +copper-pipe pipe + recipe copper-pipe 1 + product copper-plate 1 +pipe pipe + recipe pipe 1 + product iron-plate 1 +stone-pipe pipe + recipe stone-pipe 1 + product stone-brick 1 +bronze-pipe pipe + recipe bronze-pipe 1 + product bronze-alloy 1 +steel-pipe pipe + recipe steel-pipe 1 + product steel-plate 1 +plastic-pipe pipe + recipe plastic-pipe 1 + product plastic-bar 1 +brass-pipe pipe + recipe brass-pipe 1 + product brass-alloy 1 +titanium-pipe pipe + recipe titanium-pipe 1 + product titanium-plate 1 +ceramic-pipe pipe + recipe ceramic-pipe 1 + product silicon-nitride 1 +tungsten-pipe pipe + recipe tungsten-pipe 1 + product tungsten-plate 1 +nitinol-pipe pipe + recipe nitinol-pipe 1 + product nitinol-alloy 1 +copper-tungsten-pipe pipe + recipe copper-tungsten-pipe 1 + product copper-tungsten-alloy 1 +copper-pipe-to-ground pipe-to-ground + recipe copper-pipe-to-ground 2 + product copper-plate 5 copper-pipe 10 +pipe-to-ground pipe-to-ground + recipe pipe-to-ground 2 + product iron-plate 5 pipe 10 +stone-pipe-to-ground pipe-to-ground + recipe stone-pipe-to-ground 2 + product stone-brick 5 stone-pipe 10 +bronze-pipe-to-ground pipe-to-ground + recipe bronze-pipe-to-ground 2 + product bronze-alloy 5 bronze-pipe 12 +steel-pipe-to-ground pipe-to-ground + recipe steel-pipe-to-ground 2 + product steel-plate 5 steel-pipe 12 +plastic-pipe-to-ground pipe-to-ground + recipe plastic-pipe-to-ground 2 + product plastic-bar 5 plastic-pipe 14 +brass-pipe-to-ground pipe-to-ground + recipe brass-pipe-to-ground 2 + product brass-alloy 5 brass-pipe 14 +titanium-pipe-to-ground pipe-to-ground + recipe titanium-pipe-to-ground 2 + product titanium-plate 5 titanium-pipe 16 +ceramic-pipe-to-ground pipe-to-ground + recipe ceramic-pipe-to-ground 2 + product silicon-nitride 5 ceramic-pipe 16 +tungsten-pipe-to-ground pipe-to-ground + recipe tungsten-pipe-to-ground 2 + product tungsten-plate 5 tungsten-pipe 16 +nitinol-pipe-to-ground pipe-to-ground + recipe nitinol-pipe-to-ground 2 + product nitinol-alloy 5 nitinol-pipe 18 +copper-tungsten-pipe-to-ground pipe-to-ground + recipe copper-tungsten-pipe-to-ground 2 + product copper-tungsten-alloy 5 copper-tungsten-pipe 18 +fill-liquid-plastic-barrel angels-fluid-control-petrochem-solids-fluids + recipe liquid-plastic-barrel 1 + product empty-barrel 1 liquid-plastic 50 +liquid-plastic-1 petrochem-solids + recipe liquid-plastic 10 + product gas-propene 40 +liquid-plastic-2 petrochem-solids + recipe liquid-plastic 20 + product liquid-naphtha 20 liquid-polyethylene 20 +liquid-plastic-3 petrochem-solids + recipe liquid-plastic 30 + product gas-formaldehyde 20 liquid-phenol 20 +empty-liquid-plastic-barrel angels-fluid-control-petrochem-solids-fluids + recipe empty-barrel 1 liquid-plastic 50 + product liquid-plastic-barrel 1 +solid-plastic petrochem-solids + recipe plastic-bar 4 + product liquid-plastic 40 +player-boots body-parts + recipe player-boots 1 + product steel-plate 5 rubber 15 +player-boots-2 body-parts + recipe player-boots-2 1 + product titanium-plate 5 rubber 15 +player-brain body-parts + recipe player-brain 1 + product solder 5 superior-circuit-board 5 basic-electronic-components 10 electronic-components 25 intergrated-electronics 10 module-case 1 +player-brain-2 body-parts + recipe player-brain-2 1 + product solder 10 superior-circuit-board 8 basic-electronic-components 8 electronic-components 30 intergrated-electronics 20 processing-electronics 2 module-case 1 +player-gloves body-parts + recipe player-gloves 1 + product steel-plate 5 steel-gear-wheel 15 steel-bearing 8 +player-gloves-2 body-parts + recipe player-gloves-2 1 + product titanium-plate 5 titanium-gear-wheel 15 titanium-bearing 8 +player-head body-parts + recipe player-head 1 + product steel-plate 5 player-brain 1 +player-head-2 body-parts + recipe player-head-2 1 + product titanium-plate 5 player-brain-2 1 +player-frame body-parts + recipe player-frame 1 + product steel-plate 5 electric-engine-unit 8 advanced-circuit 15 steel-chest 1 player-boots 1 player-gloves 1 player-head 1 player-power-core 1 +player-frame-2 body-parts + recipe player-frame-2 1 + product titanium-plate 5 electric-engine-unit 12 processing-unit 15 titanium-chest 1 player-boots-2 1 player-gloves-2 1 player-head-2 1 player-power-core 1 +player-power-core body-parts + recipe player-power-core 1 + product battery 15 rtg 1 processing-unit 50 +angels-casing-resin-mold angels-mold-casting + recipe motor-casing-0 1 + product resin 2 +powder-mixer angels-powder-mixer + recipe powder-mixer 1 + product clay-brick 5 bronze-alloy 3 steel-gear-wheel 3 +wall-0 angels-exploration-walls + recipe wall-0 1 + product stone 5 wood 1 +angels-burner-reactor angels-power-nuclear + recipe angels-burner-reactor 1 + product lead-plate 350 reinforced-concrete-brick 500 titanium-plate 400 tungsten-plate 400 processing-unit 500 +alien-artifact-red-from-basic bio-processing-alien-large-convert + recipe alien-artifact-red 5 + product alien-artifact-red 1 alien-artifact 5 +alien-artifact-red-from-small bio-processing-alien-large + recipe alien-artifact-red 1 + product small-alien-artifact-red 25 +alien-pre-artifact-red bio-processing-alien-pre + recipe alien-pre-artifact-red 1 + product seeded-dish 1 paste-copper 1 ruby-4 1 +small-alien-artifact-red bio-processing-alien-small + recipe small-alien-artifact-red 1 + product alien-pre-artifact-red 1 +better-shotgun-shell angels-physical-bb + recipe better-shotgun-shell 1 + product cordite 1 shot 1 shotgun-shell-casing 1 +bob-rocket angels-explosion-bb + recipe bob-rocket 1 + product rocket-warhead 1 rocket-body 1 +bullet angels-physical-ad + recipe bullet 1 + product bullet-projectile 1 cordite 1 bullet-casing 1 +bullet-magazine angels-physical-ae + recipe bullet-magazine 1 + product bullet 5 magazine 1 +bullet-projectile angels-physical-ac + recipe bullet-projectile 2 + product copper-plate 1 lead-plate 1 +cannon-turret-shell-1 angels-physical-bc + recipe cannon-turret-shell-1 1 + product coal 2 shotgun-shell 1 +laser-rifle-battery angels-electric-c + recipe laser-rifle-battery 1 + product glass 1 battery 4 laser-rifle-battery-case 1 +rocket-warhead angels-explosion-ba + recipe rocket-warhead 1 + product steel-plate 1 explosives 1 +angels-chemical-plant petrochem-buildings-chemical-plant + recipe angels-chemical-plant 1 + product iron-plate 6 iron-gear-wheel 3 basic-circuit-board 1 pipe 12 +bob-distillery petrochem-buildings-chemical-plant + recipe angels-chemical-plant 1 + product copper-plate 3 iron-plate 3 copper-pipe 2 +chemical-plant petrochem-buildings-chemical-plant + recipe angels-chemical-plant 1 + product steel-plate 5 iron-gear-wheel 5 electronic-circuit 5 pipe 5 +angels-chemical-plant-2 petrochem-buildings-chemical-plant + recipe angels-chemical-plant-2 1 + product bronze-alloy 6 angels-chemical-plant 1 steel-gear-wheel 3 electronic-circuit 1 bronze-pipe 12 +chemical-plant-2 petrochem-buildings-chemical-plant + recipe angels-chemical-plant-2 1 + product glass 10 angels-chemical-plant 1 steel-gear-wheel 5 steel-bearing 5 advanced-circuit 5 steel-pipe 5 +angels-chemical-plant-3 petrochem-buildings-chemical-plant + recipe angels-chemical-plant-3 1 + product aluminium-plate 8 angels-chemical-plant-2 1 brass-gear-wheel 3 advanced-circuit 1 brass-pipe 12 +chemical-plant-3 petrochem-buildings-chemical-plant + recipe angels-chemical-plant-3 1 + product titanium-plate 10 angels-chemical-plant-2 1 titanium-gear-wheel 5 titanium-bearing 5 processing-unit 10 titanium-pipe 5 +angels-chemical-plant-4 petrochem-buildings-chemical-plant + recipe angels-chemical-plant-4 1 + product titanium-plate 4 angels-chemical-plant-3 1 titanium-gear-wheel 3 processing-unit 1 titanium-pipe 12 +chemical-plant-4 petrochem-buildings-chemical-plant + recipe angels-chemical-plant-4 1 + product nitinol-alloy 10 angels-chemical-plant-3 1 nitinol-gear-wheel 5 nitinol-bearing 5 advanced-processing-unit 10 nitinol-pipe 5 +spidertron-remote angels-vehicle-spidertron + recipe spidertron-remote 1 + product rocket-control-unit 1 radar 1 +cargo-roboport angels-cargo-ports + recipe cargo-roboport 1 + product stone-brick 40 steel-plate 60 iron-gear-wheel 60 electronic-circuit 60 +cargo-box angels-cargo-ports + recipe cargo-box 1 + product stone-brick 40 steel-plate 60 iron-gear-wheel 60 electronic-circuit 60 +cargo-hub angels-cargo-ports + recipe cargo-hub 1 + product stone-brick 40 steel-plate 60 iron-gear-wheel 60 electronic-circuit 60 +angels-charging-station angels-cargo-ports + recipe angels-charging-station 1 + product iron-plate 5 steel-plate 5 processing-unit 2 angels-relay-station-2 2 +separator petrochem-buildings-oil-refinery + recipe separator 1 + product clay-brick 25 steel-plate 6 electronic-circuit 5 steel-pipe 30 +separator-2 petrochem-buildings-oil-refinery + recipe separator-2 1 + product aluminium-plate 8 concrete-brick 25 separator 1 advanced-circuit 5 brass-pipe 30 +separator-3 petrochem-buildings-oil-refinery + recipe separator-3 1 + product reinforced-concrete-brick 25 titanium-plate 8 separator-2 1 processing-unit 5 titanium-pipe 30 +separator-4 petrochem-buildings-oil-refinery + recipe separator-4 1 + product reinforced-concrete-brick 25 tungsten-plate 8 separator-3 1 advanced-processing-unit 5 tungsten-pipe 30 +silo-active-provider angels-silo + recipe silo-active-provider 1 + product steel-plate 10 advanced-circuit 10 silo 1 +silo-passive-provider angels-silo + recipe silo-passive-provider 1 + product steel-plate 10 electronic-circuit 10 silo 1 +silo-storage angels-silo + recipe silo-storage 1 + product steel-plate 10 electronic-circuit 10 silo 1 +silo-buffer angels-silo + recipe silo-buffer 1 + product steel-plate 10 advanced-circuit 10 silo 1 +silo-requester angels-silo + recipe silo-requester 1 + product steel-plate 10 electronic-circuit 10 silo 1 +sintering-oven angels-sintering-oven + recipe sintering-oven 1 + product clay-brick 45 steel-plate 24 electronic-circuit 5 +fill-thermal-water-barrel angels-fluid-control-ore-sorting-fluid + recipe thermal-water-barrel 1 + product empty-barrel 1 thermal-water 50 +empty-thermal-water-barrel angels-fluid-control-ore-sorting-fluid + recipe empty-barrel 1 thermal-water 50 + product thermal-water-barrel 1 +fill-slag-slurry-barrel angels-fluid-control-ore-sorting-fluid + recipe slag-slurry-barrel 1 + product empty-barrel 1 slag-slurry 50 +empty-slag-slurry-barrel angels-fluid-control-ore-sorting-fluid + recipe empty-barrel 1 slag-slurry 50 + product slag-slurry-barrel 1 +bob-small-inline-storage-tank angels-fluid-tanks + recipe bob-small-inline-storage-tank 1 + product iron-plate 3 pipe 1 +bob-small-storage-tank angels-fluid-tanks + recipe bob-small-storage-tank 1 + product bob-small-inline-storage-tank 1 pipe 1 +small-electric-pole angels-power-poles + recipe small-electric-pole 2 + product copper-cable 2 wood 1 +biter-small-eggsperiment bio-biter-egg + recipe biter-small-egg 1 + product crystal-dust 1 bio-puffer-egg-3 1 crystal-seed 1 +biter-small-keeping bio-biter + recipe biter-small 3 biter-small 1 crystal-splinter-raw 4 + product biter-small 4 bio-alien-processed-meat 2 liquid-nutrient-pulp 20 +biter-small-butchering bio-biter-butchery + recipe bio-raw-meat 1 crystal-splinter-raw 1 + product biter-small 1 +biter-small-breeding bio-biter + recipe biter-queen-small 1 biter-queen-small 1 biter-small-egg 1 biter-small-egg 1 + product biter-queen-small 2 bio-alien-processed-meat 2 liquid-nutrient-pulp 20 +biter-small bio-biter-egg + recipe biter-small 1 biter-queen-small 1 + product biter-small-egg 1 bio-alien-processed-meat 1 liquid-nutrient-pulp 10 +biter-queen-small-butchering bio-biter-butchery + recipe bio-raw-meat 1 - 2 crystal-splinter-raw 1 + product biter-queen-small 1 +solid-salt-separation petrochem-sodium + recipe solid-sodium 5 angels-electrode-used 1 gas-chlorine 200 + product solid-salt 10 angels-electrode 1 +solid-sodium petrochem-sodium + recipe solid-sodium 5 angels-electrode-used 1 water-purified 50 + product solid-sodium-hydroxide 5 angels-electrode 1 +solid-sodium-sulfate-separation petrochem-sodium + recipe solid-sodium 4 sulfur 2 + product solid-sodium-sulfate 2 +solar-panel-small angels-power-solar-panel + recipe solar-panel-small 1 + product copper-plate 2 steel-plate 2 electronic-circuit 6 +solar-panel-small-2 angels-power-solar-panel + recipe solar-panel-small-2 1 + product glass 2 silver-plate 2 advanced-circuit 4 solar-panel-small 1 +solar-panel-small-3 angels-power-solar-panel + recipe solar-panel-small-3 1 + product gold-plate 2 silicon-wafer 16 titanium-plate 2 processing-unit 4 solar-panel-small-2 1 +solar-panel angels-power-solar-panel + recipe solar-panel 1 + product copper-plate 4 steel-plate 4 electronic-circuit 14 +solar-panel-2 angels-power-solar-panel + recipe solar-panel-2 1 + product glass 4 silver-plate 4 advanced-circuit 9 solar-panel 1 +solar-panel-3 angels-power-solar-panel + recipe solar-panel-3 1 + product gold-plate 4 silicon-wafer 36 titanium-plate 4 processing-unit 9 solar-panel-2 1 +solar-panel-large angels-power-solar-panel + recipe solar-panel-large 1 + product copper-plate 8 steel-plate 8 electronic-circuit 24 +solar-panel-large-2 angels-power-solar-panel + recipe solar-panel-large-2 1 + product glass 8 silver-plate 8 advanced-circuit 16 solar-panel-large 1 +solar-panel-large-3 angels-power-solar-panel + recipe solar-panel-large-3 1 + product gold-plate 8 silicon-wafer 64 titanium-plate 8 processing-unit 16 solar-panel-large-2 1 +angels-solder-mixture angels-alloys + recipe angels-solder-mixture 2 + product lead-plate 2 tin-plate 2 +solid-fuel-methane petrochem-fuel + recipe solid-fuel 2 + product solid-coke 1 gas-methane 100 +glass-mixture-1 angels-glass + recipe solid-glass-mixture 1 + product quartz 1 +glass-mixture-2 angels-glass + recipe solid-glass-mixture 2 + product quartz 1 solid-lime 1 +glass-mixture-3 angels-glass + recipe solid-glass-mixture 3 + product alumina 1 quartz 1 solid-lime 1 +glass-mixture-4 angels-glass + recipe solid-glass-mixture 4 + product solid-lime 1 solid-sand 1 solid-sodium-carbonate 1 solid-sodium-sulfate 1 +steam-cracker petrochem-buildings-steam + recipe steam-cracker 1 + product clay-brick 20 bronze-alloy 6 electronic-circuit 4 bronze-pipe 36 +steam-cracker-2 petrochem-buildings-steam + recipe steam-cracker-2 1 + product aluminium-plate 8 concrete-brick 20 steam-cracker 1 advanced-circuit 4 brass-pipe 36 +steam-cracker-3 petrochem-buildings-steam + recipe steam-cracker-3 1 + product reinforced-concrete-brick 20 titanium-plate 8 steam-cracker-2 1 processing-unit 4 titanium-pipe 36 +steam-cracker-4 petrochem-buildings-steam + recipe steam-cracker-4 1 + product reinforced-concrete-brick 20 tungsten-plate 8 steam-cracker-3 1 advanced-processing-unit 4 tungsten-pipe 36 +steam-cracking-methane petrochem-cracking + recipe gas-methanol 80 gas-residual 20 + product gas-methane 60 steam 60 +angels-steam-water water-boiling + recipe steam 40 + product water 40 +angels-steam-water-purified water-boiling + recipe steam 40 + product water-purified 40 +stone-chemical-furnace smelting-machine + recipe stone-furnace 1 + product stone 5 pipe 2 +stone-furnace smelting-machine + recipe stone-furnace 1 + product stone 5 +strand-casting-machine angels-strand-casting-machine + recipe strand-casting-machine 1 + product clay-brick 15 bronze-alloy 18 steel-gear-wheel 12 electronic-circuit 3 bronze-pipe 18 +sulfur petrochem-sulfur + recipe sulfur 2 + product water-purified 30 gas-methane 30 +solid-soil bio-wood + recipe solid-soil 1 + product solid-mud 1 solid-compost 1 +solid-soil-alternative bio-wood + recipe solid-soil 1 + product solid-sand 1 solid-compost 2 +solid-fertilizer bio-wood + recipe solid-fertilizer 1 + product solid-compost 2 gas-urea 20 +bob-fertiliser bio-wood + recipe solid-fertilizer 1 + product liquid-nitric-acid 10 gas-ammonia 10 gas-urea 20 +solid-alienated-fertilizer bio-wood + recipe solid-alienated-fertilizer 1 + product solid-fertilizer 1 alien-goo 5 +angels-heavy-tank angels-exploration-tank-b + recipe angels-heavy-tank 1 + product steel-plate 50 engine-unit 20 advanced-circuit 10 +tank angels-exploration-tank-a + recipe tank 1 + product steel-plate 50 engine-unit 32 iron-gear-wheel 15 advanced-circuit 10 +bob-tank-2 angels-exploration-tank-a + recipe bob-tank-2 1 + product titanium-plate 50 titanium-gear-wheel 15 titanium-bearing 15 processing-unit 5 tank 1 +bob-tank-3 angels-exploration-tank-a + recipe bob-tank-3 1 + product silicon-nitride 40 tungsten-carbide 40 nitinol-gear-wheel 15 nitinol-bearing 15 advanced-processing-unit 5 bob-tank-2 1 +thermal-bore refining-buildings + recipe thermal-bore 1 + product clay-brick 20 bronze-alloy 18 steel-gear-wheel 12 electronic-circuit 4 bronze-pipe 12 +thermal-extractor refining-buildings + recipe thermal-extractor 1 + product aluminium-plate 24 concrete-brick 20 brass-gear-wheel 12 advanced-circuit 4 brass-pipe 12 +rail train-transport + recipe rail 2 + product stone 1 steel-plate 1 iron-stick 1 +train-stop train-transport + recipe train-stop 1 + product iron-plate 6 steel-plate 3 iron-stick 6 electronic-circuit 5 +rail-signal train-transport + recipe rail-signal 1 + product iron-plate 5 electronic-circuit 1 +locomotive bob-locomotive + recipe locomotive 1 + product steel-plate 30 engine-unit 20 electronic-circuit 10 +bob-locomotive-2 bob-locomotive + recipe bob-locomotive-2 1 + product invar-alloy 10 steel-gear-wheel 20 steel-bearing 16 advanced-circuit 5 locomotive 1 +bob-locomotive-3 bob-locomotive + recipe bob-locomotive-3 1 + product titanium-plate 10 titanium-gear-wheel 20 titanium-bearing 16 processing-unit 5 bob-locomotive-2 1 +bob-armoured-locomotive bob-locomotive + recipe bob-armoured-locomotive 1 + product titanium-plate 25 locomotive 1 +bob-armoured-locomotive-2 bob-locomotive + recipe bob-armoured-locomotive-2 1 + product silicon-nitride 15 tungsten-carbide 15 titanium-gear-wheel 20 titanium-bearing 16 processing-unit 5 bob-armoured-locomotive 1 +rail-chain-signal train-transport + recipe rail-chain-signal 1 + product iron-plate 5 electronic-circuit 1 +cargo-wagon bob-cargo-wagon + recipe cargo-wagon 1 + product iron-plate 20 steel-plate 20 iron-gear-wheel 10 +bob-cargo-wagon-2 bob-cargo-wagon + recipe bob-cargo-wagon-2 1 + product invar-alloy 20 steel-gear-wheel 12 steel-bearing 8 cargo-wagon 1 +bob-cargo-wagon-3 bob-cargo-wagon + recipe bob-cargo-wagon-3 1 + product titanium-plate 20 titanium-gear-wheel 12 titanium-bearing 8 bob-cargo-wagon-2 1 +bob-armoured-cargo-wagon bob-cargo-wagon + recipe bob-armoured-cargo-wagon 1 + product titanium-plate 25 cargo-wagon 1 +bob-armoured-cargo-wagon-2 bob-cargo-wagon + recipe bob-armoured-cargo-wagon-2 1 + product silicon-nitride 15 tungsten-carbide 15 titanium-gear-wheel 12 titanium-bearing 8 bob-armoured-cargo-wagon 1 +fluid-wagon bob-fluid-wagon + recipe fluid-wagon 1 + product steel-plate 16 storage-tank 1 iron-gear-wheel 10 pipe 8 +bob-fluid-wagon-2 bob-fluid-wagon + recipe bob-fluid-wagon-2 1 + product invar-alloy 16 storage-tank-2 1 steel-gear-wheel 12 steel-bearing 8 fluid-wagon 1 +bob-fluid-wagon-3 bob-fluid-wagon + recipe bob-fluid-wagon-3 1 + product titanium-plate 16 storage-tank-3 1 titanium-gear-wheel 12 titanium-bearing 8 bob-fluid-wagon-2 1 +bob-armoured-fluid-wagon bob-fluid-wagon + recipe bob-armoured-fluid-wagon 1 + product titanium-plate 25 fluid-wagon 1 +bob-armoured-fluid-wagon-2 bob-fluid-wagon + recipe bob-armoured-fluid-wagon-2 1 + product silicon-nitride 15 tungsten-carbide 15 storage-tank-3 1 titanium-gear-wheel 12 titanium-bearing 8 bob-armoured-fluid-wagon 1 +basic-transport-belt bob-logistic-tier-0 + recipe basic-transport-belt 2 + product iron-plate 1 iron-gear-wheel 1 +transport-belt bob-logistic-tier-1 + recipe transport-belt 1 + product tin-plate 2 iron-gear-wheel 2 basic-transport-belt 1 +fast-transport-belt bob-logistic-tier-2 + recipe fast-transport-belt 1 + product bronze-alloy 2 steel-gear-wheel 4 transport-belt 1 +express-transport-belt bob-logistic-tier-3 + recipe express-transport-belt 1 + product aluminium-plate 2 cobalt-steel-gear-wheel 4 cobalt-steel-bearing 4 fast-transport-belt 1 +turbo-transport-belt bob-logistic-tier-4 + recipe turbo-transport-belt 1 + product titanium-plate 2 titanium-gear-wheel 4 titanium-bearing 4 express-transport-belt 1 +ultimate-transport-belt bob-logistic-tier-5 + recipe ultimate-transport-belt 1 + product nitinol-alloy 2 nitinol-gear-wheel 4 nitinol-bearing 4 turbo-transport-belt 1 +uranium-fuel-cell angels-power-nuclear-fuel-cell + recipe uranium-fuel-cell 15 + product iron-plate 15 uranium-235 1 uranium-238 29 +uranium-processing angels-power-nuclear-processing + recipe uranium-235 1 uranium-238 1 uranium-234 1 + product uranium-ore 10 +angels-uranium-fuel-cell angels-power-nuclear-fuel-cell + recipe angels-uranium-fuel-cell 100 + product iron-plate 100 uranium-234 1 uranium-238 199 +kovarex-enrichment-process angels-power-nuclear-processing + recipe uranium-235 41 uranium-238 2 + product uranium-235 40 uranium-238 5 +nuclear-fuel-reprocessing angels-power-nuclear-fuel-cell + recipe uranium-238 3 slag 5 + product used-up-uranium-fuel-cell 5 +angels-advanced-uranium-reprocessing angels-power-nuclear-fuel-cell + recipe uranium-238 5 slag 10 neptunium-240 1 water-greenyellow-waste 60 + product used-up-uranium-fuel-cell 10 liquid-hydrofluoric-acid 60 +plutonium-nucleosynthesis angels-power-nuclear-processing + recipe uranium-235 3 uranium-238 10 plutonium-239 1 + product uranium-235 5 uranium-238 15 +bob-valve angels-fluid-control + recipe bob-valve 1 + product iron-plate 1 pipe 1 +valve-inspector angels-fluid-control + recipe valve-inspector 1 + product basic-circuit-board 1 pipe 3 +bob-overflow-valve angels-fluid-control + recipe bob-overflow-valve 1 + product iron-plate 1 pipe 1 +valve-return angels-fluid-control + recipe valve-return 1 + product basic-circuit-board 1 pipe 3 +bob-topup-valve angels-fluid-control + recipe bob-topup-valve 1 + product iron-plate 1 pipe 1 +valve-overflow angels-fluid-control + recipe valve-overflow 1 + product basic-circuit-board 1 pipe 3 +valve-underflow angels-fluid-control + recipe valve-underflow 1 + product basic-circuit-board 1 pipe 3 +valve-converter angels-fluid-control + recipe valve-converter 1 + product basic-circuit-board 1 pipe 3 +water-saline-separation petrochem-chlorine + recipe solid-sodium-hydroxide 1 gas-chlorine 40 gas-hydrogen 60 + product water-saline 100 +water-saline water-salination + recipe water-saline 400 + product water 1000 +solid-salt-dissolving water-salination + recipe water-saline 400 + product solid-salt 10 water-purified 1000 +heavy-water-electrolysis petrochem-basics + recipe gas-deuterium 20 gas-oxygen 12.5 + product liquid-water-heavy 10 +dirt-water-separation petrochem-basics + recipe slag 1 gas-oxygen 30 gas-hydrogen 40 + product water 100 +dirt-water-separation-2 petrochem-basics + recipe slag 1 angels-electrode-used 1 gas-oxygen 30 gas-hydrogen 40 + product angels-electrode 1 water 100 +water-separation petrochem-basics + recipe gas-oxygen 40 gas-hydrogen 60 + product water-purified 100 +water-separation-2 petrochem-basics + recipe angels-electrode-used 1 gas-oxygen 40 gas-hydrogen 60 + product angels-electrode 1 water-purified 100 +angels-heavy-water-separation petrochem-basics + recipe gas-oxygen 40 gas-deuterium 60 + product liquid-water-heavy 100 +angels-heavy-water-separation-2 petrochem-basics + recipe angels-electrode-used 1 gas-oxygen 40 gas-deuterium 60 + product angels-electrode 1 liquid-water-heavy 100 +water-synthesis petrochem-basics + recipe water-purified 100 + product gas-oxygen 60 gas-hydrogen 90 +water-mineralized water-treatment + recipe water-mineralized 100 + product stone-crushed 10 water 100 +synthetic-wood bob-resource-chemical + recipe wood 2 + product liquid-naphtha 10 +wood-sawing-manual bio-processing-wood + recipe wood 5 + product solid-tree 1 +wood-sawing-1 bio-processing-wood + recipe wood 6 - 8 solid-saw 1 + product solid-saw 1 solid-tree 1 +wood-sawing-2 bio-processing-wood + recipe wood 6 - 8 solid-crystal-tipped-saw 1 + product solid-crystal-tipped-saw 1 solid-tree 1 +wood-sawing-3 bio-processing-wood + recipe wood 6 - 8 solid-crystal-full-saw 1 + product solid-crystal-full-saw 1 solid-tree 1 +boiler angels-power-steam-boiler + recipe boiler 1 + product stone-furnace 1 pipe 4 +desert-1 farming-desert + recipe desert-1 30 - 40 + product solid-sand 10 desert-1-seed 5 water-saline 50 +desert-1-seed farming-desert-seed + recipe desert-1-seed 5 - 6 + product desert-1 5 +fish-breeding-0 bio-fish-breeding + recipe raw-fish 2 - 4 liquid-polluted-fish-atmosphere 100 + product raw-fish 2 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +fish-butchery-0 bio-fish-butchery + recipe bio-raw-meat 1 + product raw-fish 1 +fish-keeping-0 bio-fish + recipe raw-fish 2 raw-fish 1 liquid-polluted-fish-atmosphere 100 + product raw-fish 4 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +heat-exchanger angels-power-nuclear-heat-exchanger + recipe heat-exchanger 1 + product boiler-2 1 heat-pipe 4 +puffer-breeding-1 bio-puffer-breeding-1 + recipe bio-puffer-1 2 bio-puffer-egg-1 1 bio-puffer-egg-2 1 bio-puffer-egg-3 1 bio-puffer-egg-4 1 bio-puffer-egg-5 1 gas-acid 20 + product solid-beans 5 bio-puffer-1 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-breeding-23 bio-puffer-breeding-2 + recipe bio-puffer-2 1 bio-puffer-3 1 bio-puffer-egg-1 1 gas-acid 20 + product solid-fruit 5 bio-puffer-2 1 bio-puffer-3 1 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-butchery-1 bio-puffer-butchery + recipe bio-raw-meat 1 + product bio-puffer-1 1 +puffer-egg-1 bio-puffer-egg + recipe bio-puffer-egg-shell 1 bio-puffer-1 1 bio-puffer-2 1 + product bio-puffer-egg-1 1 +puffer-puffing-1 bio-puffer-1 + recipe bio-puffer-1 3 bio-puffer-1 1 gas-acid 220 + product bio-puffer-1 4 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 gas-compressed-air 100 +puffer-puffing-23 bio-puffer-2 + recipe bio-puffer-2 1 bio-puffer-2 1 bio-puffer-3 1 bio-puffer-3 1 gas-puffer-atmosphere 100 + product bio-puffer-2 2 bio-puffer-3 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 gas-acid 100 +solid-wood-pulp bio-paper + recipe solid-wood-pulp 20 + product solid-alginic-acid 5 cellulose-fiber 20 +swamp-1 farming-swamp + recipe swamp-1 40 - 50 + product solid-mud 10 swamp-1-seed 5 water-viscous-mud 50 +swamp-1-seed farming-swamp-seed + recipe swamp-1-seed 5 - 6 + product swamp-1 5 +temperate-1 farming-temperate + recipe temperate-1 40 - 60 + product solid-soil 5 temperate-1-seed 5 water 50 +temperate-1-seed farming-temperate-seed + recipe temperate-1-seed 5 - 6 + product temperate-1 5 +temperate-upgrade bio-processing-blocks + recipe temperate-upgrade 1 + product clay-brick 5 token-bio 5 electronic-circuit 1 bronze-pipe 3 +fill-gas-natural-1-barrel angels-fluid-control-petrochem-raw-fluids + recipe gas-natural-1-barrel 1 + product gas-canister 1 gas-natural-1 50 +empty-gas-natural-1-barrel angels-fluid-control-petrochem-raw-fluids + recipe gas-canister 1 gas-natural-1 50 + product gas-natural-1-barrel 1 +algae-green-simple bio-processing-green + recipe algae-green 25 algae-brown 5 + product water 100 +desert-2 farming-desert + recipe desert-2 30 - 40 + product solid-sand 10 desert-2-seed 5 water-saline 50 +desert-2-seed farming-desert-seed + recipe desert-2-seed 5 - 6 + product desert-2 5 +desert-upgrade bio-processing-blocks + recipe desert-upgrade 1 + product clay-brick 10 token-bio 5 electronic-circuit 1 +fish-breeding-1 bio-fish-breeding + recipe alien-fish-1-raw 5 - 10 liquid-polluted-fish-atmosphere 100 + product algae-brown 2 alien-fish-1-raw 2 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +fish-butchery-1 bio-fish-butchery + recipe bio-raw-meat 1 + product alien-fish-1-raw 1 +fish-keeping-1 bio-fish + recipe alien-fish-1-raw 3 alien-fish-1-raw 1 liquid-polluted-fish-atmosphere 100 + product alien-fish-1-raw 4 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +puffer-breeding-12 bio-puffer-breeding-2 + recipe bio-puffer-1 1 bio-puffer-2 1 bio-puffer-egg-2 1 gas-acid 20 + product solid-pips 5 bio-puffer-1 1 bio-puffer-2 1 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-breeding-2 bio-puffer-breeding-1 + recipe bio-puffer-2 2 bio-puffer-egg-1 1 bio-puffer-egg-2 1 bio-puffer-egg-3 1 bio-puffer-egg-4 1 bio-puffer-egg-5 1 gas-acid 20 + product solid-leafs 5 bio-puffer-2 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-butchery-2 bio-puffer-butchery + recipe bio-raw-meat 1 + product bio-puffer-2 1 +puffer-egg-2 bio-puffer-egg + recipe bio-puffer-egg-shell 1 bio-puffer-2 1 bio-puffer-1 1 + product bio-puffer-egg-2 1 +puffer-puffing-12 bio-puffer-2 + recipe bio-puffer-1 1 bio-puffer-1 1 bio-puffer-2 1 bio-puffer-2 1 gas-acid 20 gas-hydrogen-sulfide 100 + product bio-puffer-1 2 bio-puffer-2 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 water-yellow-waste 100 +puffer-puffing-2 bio-puffer-1 + recipe bio-puffer-2 3 bio-puffer-2 1 gas-acid 20 gas-raw-1 200 + product bio-puffer-2 4 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 gas-ammonia 100 +sulfite-pulping bio-paper + recipe solid-wood-pulp 25 liquid-brown-liquor 75 + product cellulose-fiber 20 liquid-pulping-liquor 75 gas-ammonia 25 water 50 +swamp-2 farming-swamp + recipe swamp-2 40 - 50 + product solid-mud 10 swamp-2-seed 5 water-heavy-mud 50 +swamp-2-seed farming-swamp-seed + recipe swamp-2-seed 5 - 6 + product swamp-2 5 +temperate-2 farming-temperate + recipe temperate-2 40 - 60 + product solid-soil 5 temperate-2-seed 5 water 50 +temperate-2-seed farming-temperate-seed + recipe temperate-2-seed 5 - 6 + product temperate-2 5 +fill-gas-raw-1-barrel angels-fluid-control-petrochem-raw-fluids + recipe gas-raw-1-barrel 1 + product gas-canister 1 gas-raw-1 50 +empty-gas-raw-1-barrel angels-fluid-control-petrochem-raw-fluids + recipe gas-canister 1 gas-raw-1 50 + product gas-raw-1-barrel 1 +algae-green bio-processing-green + recipe algae-green 50 + product water-mineralized 80 gas-carbon-dioxide 80 +angels-electrolyser petrochem-buildings-electrolyser + recipe angels-electrolyser 1 + product stone-brick 15 iron-plate 9 basic-circuit-board 3 pipe 39 +electrolyser petrochem-buildings-electrolyser + recipe angels-electrolyser 1 + product stone-brick 5 iron-plate 5 basic-circuit-board 5 stone-pipe 2 +angels-electrolyser-2 petrochem-buildings-electrolyser + recipe angels-electrolyser-2 1 + product clay-brick 15 bronze-alloy 9 angels-electrolyser 1 electronic-circuit 3 bronze-pipe 39 +electrolyser-2 petrochem-buildings-electrolyser + recipe angels-electrolyser-2 1 + product glass 10 steel-plate 10 angels-electrolyser 1 electronic-circuit 5 bronze-pipe 5 +angels-electrolyser-3 petrochem-buildings-electrolyser + recipe angels-electrolyser-3 1 + product aluminium-plate 12 concrete-brick 15 angels-electrolyser-2 1 advanced-circuit 3 brass-pipe 39 +electrolyser-3 petrochem-buildings-electrolyser + recipe angels-electrolyser-3 1 + product aluminium-plate 10 invar-alloy 10 plastic-bar 10 angels-electrolyser-2 1 advanced-circuit 10 plastic-pipe 5 +angels-electrolyser-4 petrochem-buildings-electrolyser + recipe angels-electrolyser-4 1 + product reinforced-concrete-brick 15 titanium-plate 12 angels-electrolyser-3 1 processing-unit 3 titanium-pipe 39 +electrolyser-4 petrochem-buildings-electrolyser + recipe angels-electrolyser-4 1 + product silicon-nitride 10 titanium-plate 10 tungsten-plate 10 angels-electrolyser-3 1 processing-unit 10 ceramic-pipe 5 +electrolyser-5 petrochem-buildings-electrolyser + recipe angels-electrolyser-4 1 + product tungsten-carbide 10 copper-tungsten-alloy 10 nitinol-alloy 10 angels-electrolyser-4 1 advanced-processing-unit 10 copper-tungsten-pipe 5 +desert-3 farming-desert + recipe desert-3 30 - 40 desert-3-seed-dormant 5 + product solid-sand 10 desert-3-seed 5 water-saline 50 +desert-3-seed farming-desert-seed + recipe desert-3-seed 5 desert-3-seed 1 + product desert-3-seed-dormant 5 +fish-breeding-2 bio-fish-breeding + recipe alien-fish-2-raw 5 - 10 liquid-polluted-fish-atmosphere 100 + product algae-green 2 alien-fish-2-raw 2 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +fish-butchery-2 bio-fish-butchery + recipe bio-raw-meat 1 + product alien-fish-2-raw 1 +fish-keeping-2 bio-fish + recipe alien-fish-2-raw 3 alien-fish-2-raw 1 liquid-polluted-fish-atmosphere 100 + product alien-fish-2-raw 4 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +kraft-cooking-washing bio-paper + recipe solid-wood-pulp 30 liquid-black-liquor 35 - 40 + product cellulose-fiber 20 liquid-white-liquor 40 +puffer-breeding-13 bio-puffer-breeding-2 + recipe bio-puffer-1 1 bio-puffer-3 1 bio-puffer-egg-3 1 gas-acid 20 + product solid-beans 5 bio-puffer-1 1 bio-puffer-3 1 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-breeding-3 bio-puffer-breeding-1 + recipe bio-puffer-3 2 bio-puffer-egg-1 1 bio-puffer-egg-2 1 bio-puffer-egg-3 1 bio-puffer-egg-4 1 bio-puffer-egg-5 1 gas-acid 20 + product solid-nuts 5 bio-puffer-3 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-butchery-3 bio-puffer-butchery + recipe bio-raw-meat 1 + product bio-puffer-3 1 +puffer-egg-3 bio-puffer-egg + recipe bio-puffer-egg-shell 1 bio-puffer-3 1 bio-puffer-1 1 + product bio-puffer-egg-3 1 +puffer-puffing-13 bio-puffer-2 + recipe bio-puffer-1 1 bio-puffer-1 1 bio-puffer-3 1 bio-puffer-3 1 gas-acid 20 gas-ammonia 100 + product bio-puffer-1 2 bio-puffer-3 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 water-red-waste 100 +puffer-puffing-3 bio-puffer-1 + recipe bio-puffer-3 3 bio-puffer-3 1 gas-acid 20 gas-urea 200 + product bio-puffer-3 4 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 gas-carbon-monoxide 100 +swamp-3 farming-swamp + recipe swamp-3 40 - 50 swamp-3-seed-dormant 5 + product solid-mud 10 swamp-3-seed 5 water-concentrated-mud 50 +swamp-3-seed farming-swamp-seed + recipe swamp-3-seed 5 swamp-3-seed 1 + product swamp-3-seed-dormant 5 +swamp-upgrade bio-processing-blocks + recipe swamp-upgrade 1 + product token-bio 5 electronic-circuit 1 bronze-pipe 6 +temperate-3 farming-temperate + recipe temperate-3 40 - 60 temperate-3-seed-dormant 5 + product solid-soil 5 temperate-3-seed 5 water 50 +temperate-3-seed farming-temperate-seed + recipe temperate-3-seed 5 temperate-3-seed 1 + product temperate-3-seed-dormant 5 +fill-liquid-ngl-barrel angels-fluid-control-petrochem-raw-fluids + recipe liquid-ngl-barrel 1 + product empty-barrel 1 liquid-ngl 50 +empty-liquid-ngl-barrel angels-fluid-control-petrochem-raw-fluids + recipe empty-barrel 1 liquid-ngl 50 + product liquid-ngl-barrel 1 +desert-4 farming-desert + recipe desert-4 30 - 40 desert-4-seed-dormant 5 + product solid-sand 10 solid-fertilizer 1 desert-4-seed 5 water-saline 50 +desert-4-seed farming-desert-seed + recipe desert-4-seed 5 desert-4-seed 1 + product desert-4-seed-dormant 5 +fish-breeding-3 bio-fish-breeding + recipe alien-fish-3-raw 5 - 10 liquid-polluted-fish-atmosphere 100 + product alien-fish-3-raw 2 bio-raw-meat 2 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +fish-butchery-3 bio-fish-butchery + recipe bio-raw-meat 2 + product alien-fish-3-raw 1 +fish-keeping-3 bio-fish + recipe alien-fish-3-raw 3 alien-fish-3-raw 1 liquid-polluted-fish-atmosphere 100 + product alien-fish-3-raw 4 liquid-nutrient-pulp 20 liquid-fish-atmosphere 100 +puffer-breeding-14 bio-puffer-breeding-2 + recipe bio-puffer-1 1 bio-puffer-4 1 bio-puffer-egg-4 1 gas-acid 20 + product solid-corn 5 bio-puffer-1 1 bio-puffer-4 1 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-breeding-4 bio-puffer-breeding-1 + recipe bio-puffer-4 2 bio-puffer-egg-1 1 bio-puffer-egg-2 1 bio-puffer-egg-3 1 bio-puffer-egg-4 1 bio-puffer-egg-5 1 gas-acid 20 + product solid-pips 5 bio-puffer-4 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-butchery-4 bio-puffer-butchery + recipe bio-raw-meat 1 + product bio-puffer-4 1 +puffer-egg-4 bio-puffer-egg + recipe bio-puffer-egg-shell 1 bio-puffer-4 1 bio-puffer-1 1 + product bio-puffer-egg-4 1 +puffer-puffing-14 bio-puffer-2 + recipe bio-puffer-1 1 bio-puffer-1 1 bio-puffer-4 1 bio-puffer-4 1 gas-acid 20 gas-hydrogen-fluoride 100 + product bio-puffer-1 2 bio-puffer-4 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 water-greenyellow-waste 100 +puffer-puffing-4 bio-puffer-1 + recipe bio-puffer-4 3 bio-puffer-4 1 gas-acid 20 gas-synthesis 200 + product bio-puffer-4 4 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 gas-sulfur-dioxide 100 +swamp-4 farming-swamp + recipe swamp-4 40 - 50 swamp-4-seed-dormant 5 + product solid-mud 10 solid-fertilizer 1 swamp-4-seed 5 water-light-mud 50 +swamp-4-seed farming-swamp-seed + recipe swamp-4-seed 5 swamp-4-seed 1 + product swamp-4-seed-dormant 5 +temperate-4 farming-temperate + recipe temperate-4 40 - 60 temperate-4-seed-dormant 5 + product solid-soil 5 solid-fertilizer 1 temperate-4-seed 5 water 50 +temperate-4-seed farming-temperate-seed + recipe temperate-4-seed 5 temperate-4-seed 1 + product temperate-4-seed-dormant 5 +desert-5 farming-desert + recipe desert-5 30 - 40 desert-5-seed-dormant 5 + product solid-sand 10 solid-fertilizer 1 desert-5-seed 5 water-saline 50 +desert-5-seed farming-desert-seed + recipe desert-5-seed 5 desert-5-seed 1 + product desert-5-seed-dormant 5 +puffer-breeding-15 bio-puffer-breeding-2 + recipe bio-puffer-1 1 bio-puffer-5 1 bio-puffer-egg-5 1 gas-acid 20 + product solid-leafs 5 bio-puffer-1 1 bio-puffer-5 1 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-breeding-5 bio-puffer-breeding-1 + recipe bio-puffer-5 2 bio-puffer-egg-1 1 bio-puffer-egg-2 1 bio-puffer-egg-3 1 bio-puffer-egg-4 1 bio-puffer-egg-5 1 gas-acid 20 + product solid-fruit 5 bio-puffer-5 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 +puffer-butchery-5 bio-puffer-butchery + recipe bio-raw-meat 1 + product bio-puffer-5 1 +puffer-egg-5 bio-puffer-egg + recipe bio-puffer-egg-shell 1 bio-puffer-5 1 bio-puffer-1 1 + product bio-puffer-egg-5 1 +puffer-puffing-15 bio-puffer-2 + recipe bio-puffer-1 1 bio-puffer-1 1 bio-puffer-5 1 bio-puffer-5 1 gas-acid 20 gas-hydrogen-chloride 100 + product bio-puffer-1 2 bio-puffer-5 2 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 water-green-waste 100 +puffer-puffing-5 bio-puffer-1 + recipe bio-puffer-5 3 bio-puffer-5 1 gas-acid 20 gas-hydrazine 200 + product bio-puffer-5 4 liquid-nutrient-pulp 20 gas-puffer-atmosphere 20 gas-hydrogen-chloride 100 +swamp-5 farming-swamp + recipe swamp-5 40 - 50 swamp-5-seed-dormant 5 + product solid-mud 10 solid-fertilizer 1 swamp-5-seed 5 water-thin-mud 50 +swamp-5-seed farming-swamp-seed + recipe swamp-5-seed 5 swamp-5-seed 1 + product swamp-5-seed-dormant 5 +temperate-5 farming-temperate + recipe temperate-5 40 - 60 temperate-5-seed-dormant 5 + product solid-soil 5 solid-fertilizer 1 temperate-5-seed 5 water 50 +temperate-5-seed farming-temperate-seed + recipe temperate-5-seed 5 temperate-5-seed 1 + product temperate-5-seed-dormant 5 +void-ammonia void + recipe void 1 + product gas-ammonia 25 +angels-warehouse-active-provider angels-warehouse + recipe angels-warehouse-active-provider 1 + product steel-plate 20 advanced-circuit 20 angels-warehouse 1 +angelsore7-crystallization-1 bob-gems-crystallization + recipe sapphire-ore 1 + product catalysator-green 1 crystal-seedling 50 +battery-mk2-equipment angels-personal-equipment-power-c + recipe battery-mk2-equipment 1 + product processing-unit 5 battery-equipment 2 +big-electric-pole-2 angels-big-power-poles + recipe big-electric-pole-2 1 + product tinned-copper-cable 5 brass-alloy 5 big-electric-pole 1 +bio-butchery bio-processing-buildings-alien-a + recipe bio-butchery 1 + product clay-brick 10 bronze-alloy 9 steel-gear-wheel 6 electronic-circuit 1 +bob-artillery-wagon-2 angels-artillery + recipe bob-artillery-wagon-2 1 + product titanium-plate 40 titanium-gear-wheel 12 titanium-bearing 8 processing-unit 20 artillery-wagon 1 titanium-pipe 16 +cellulose-fiber-raw-wood bio-processing-wood + recipe cellulose-fiber 4 + product wood 2 +composter bio-processing-buildings-vegetabilis-b + recipe composter 1 + product clay-brick 10 steel-plate 6 steel-gear-wheel 6 electronic-circuit 2 wooden-chest 1 +coolant coolant + recipe liquid-coolant 100 + product water 80 liquid-mineral-oil 20 +energy-shield-mk2-equipment angels-personal-equipment-combat-a + recipe energy-shield-mk2-equipment 1 + product processing-unit 5 energy-shield-equipment 2 +exoskeleton-equipment-2 angels-personal-equipment-combat-c + recipe exoskeleton-equipment-2 1 + product invar-alloy 20 cobalt-steel-gear-wheel 30 cobalt-steel-bearing 30 processing-unit 10 exoskeleton-equipment 1 +fermentation-fruit bio-processor-fermentation + recipe liquid-fermentation-raw 100 + product solid-fruit 10 water 50 +fluid-generator angels-power-fluid-generator + recipe fluid-generator 1 + product steel-plate 10 bronze-alloy 5 steel-gear-wheel 10 steel-bearing 10 electronic-circuit 5 steel-pipe 5 +fusion-reactor-equipment-2 angels-personal-equipment-power-b + recipe fusion-reactor-equipment-2 1 + product alien-artifact-orange 15 alien-artifact-blue 15 advanced-processing-unit 50 fusion-reactor-equipment 1 speed-module-4 2 effectivity-module-4 2 productivity-module-4 2 +gas-hydrazine petrochem-rocket + recipe catalyst-metal-carrier 1 gas-hydrazine 100 gas-hydrogen-chloride 100 + product catalyst-metal-blue 1 gas-monochloramine 50 gas-ammonia 200 +gas-puffer-atmosphere bio-puffer-1 + recipe gas-puffer-atmosphere 60 + product gas-sulfur-dioxide 20 gas-hydrogen-fluoride 10 gas-oxygen 10 +heat-pipe-2 angels-power-nuclear-heat-pipe + recipe heat-pipe-2 1 + product aluminium-plate 10 invar-alloy 5 +hogger-breeding-2 bio-hogger-breeding + recipe bio-hogger-2 2 bio-hogger-1 1 bio-hogger-2 1 bio-hogger-3 1 bio-hogger-4 1 bio-hogger-5 1 + product iron-plate 1 bio-hogger-2 2 liquid-nutrient-pulp 20 +hogger-butchery-2 bio-hogger-butchery + recipe bio-raw-meat 1 + product bio-hogger-2 1 +hogger-hogging-2 bio-hogger + recipe bio-hogger-2 3 - 5 copper-ore 10 + product iron-ore 10 iron-plate 1 bio-hogger-2 4 liquid-nutrient-pulp 20 +liquid-acetic-anhydride bio-plastic + recipe liquid-acetic-anhydride 150 + product liquid-acetic-acid 100 gas-methanol 50 gas-carbon-monoxide 50 +liquid-fish-atmosphere bio-fish + recipe liquid-fish-atmosphere 100 + product water 50 water-saline 50 +liquid-polluted-fish-atmosphere bio-fish-breeding + recipe liquid-polluted-fish-atmosphere 100 + product bio-raw-meat 25 liquid-fish-atmosphere 100 +logistic-chest-active-provider angels-chests-small-b + recipe logistic-chest-active-provider 1 + product electronic-circuit 3 advanced-circuit 1 steel-chest 1 +logistic-chest-active-provider-2 angels-chests-small-c + recipe logistic-chest-active-provider-2 1 + product advanced-circuit 3 processing-unit 1 brass-chest 1 +logistic-chest-active-provider-3 angels-chests-small-d + recipe logistic-chest-active-provider-3 1 + product processing-unit 3 advanced-processing-unit 1 titanium-chest 1 +medium-electric-pole-2 angels-medium-power-poles + recipe medium-electric-pole-2 1 + product tinned-copper-cable 2 brass-alloy 2 medium-electric-pole 1 +night-vision-equipment-2 angels-personal-equipment-power-d + recipe night-vision-equipment-2 1 + product glass 2 processing-unit 5 night-vision-equipment 1 +nuclear-reactor-2 angels-power-nuclear-reactor-b + recipe nuclear-reactor-2 1 + product lead-plate 500 tungsten-plate 250 processing-unit 500 heat-pipe-3 25 +ore-powderizer-2 ore-powderizer + recipe ore-powderizer-2 1 + product ore-powderizer 1 aluminium-plate 4 concrete-brick 5 brass-gear-wheel 3 +paste-copper bio-processing-paste + recipe paste-copper 1 + product powder-copper 2 paste-cellulose 1 +personal-laser-defense-equipment-2 angels-personal-equipment-combat-b + recipe personal-laser-defense-equipment-2 1 + product steel-plate 5 advanced-circuit 5 personal-laser-defense-equipment 1 sapphire-5 1 +personal-roboport-antenna-equipment-2 angels-personal-equipment-robot-c + recipe personal-roboport-antenna-equipment-2 1 + product roboport-antenna-2 2 roboport-door-2 1 personal-roboport-antenna-equipment 1 +personal-roboport-chargepad-equipment-2 angels-personal-equipment-robot-b + recipe personal-roboport-chargepad-equipment-2 1 + product roboport-chargepad-2 2 personal-roboport-chargepad-equipment 1 +personal-roboport-mk2-equipment angels-personal-equipment-robot-d + recipe personal-roboport-mk2-equipment 1 + product aluminium-plate 5 roboport-antenna-2 2 roboport-door-2 1 roboport-chargepad-2 2 personal-roboport-equipment 1 +personal-roboport-robot-equipment-2 angels-personal-equipment-robot-a + recipe personal-roboport-robot-equipment-2 1 + product solder 3 circuit-board 1 basic-electronic-components 15 electronic-components 30 personal-roboport-robot-equipment 1 +slag-processing-2 slag-processing-1 + recipe lead-ore 1 tin-ore 1 + product mineral-sludge 50 +solar-panel-equipment-2 angels-personal-equipment-power-a + recipe solar-panel-equipment-2 1 + product glass 2 silver-plate 2 advanced-circuit 5 solar-panel-equipment 1 +solid-geodes water-washing-filtering + recipe geode-blue 2 geode-cyan 1 geode-lightgreen 1 geode-purple 1 geode-red 2 geode-yellow 1 + product water-heavy-mud 40 water 25 +steam-engine-2 angels-power-steam-generator + recipe steam-engine-2 1 + product steel-plate 5 steel-gear-wheel 5 steel-bearing 5 steam-engine 1 steel-pipe 5 +substation-2 angels-sub-power-poles + recipe substation-2 1 + product tinned-copper-cable 5 brass-alloy 10 advanced-circuit 5 substation 1 +vehicle-battery-2 angels-vehicle-equipment-bobpower-d + recipe vehicle-battery-2 1 + product processing-unit 5 vehicle-battery-1 2 +vehicle-big-turret-2 angels-vehicle-equipment-bobcombat-c + recipe vehicle-big-turret-2 1 + product steel-plate 20 alien-artifact 30 battery 12 advanced-circuit 20 vehicle-big-turret-1 1 +vehicle-engine angels-vehicle-equipment-bobpower-e + recipe vehicle-engine 1 + product nitinol-alloy 20 nitinol-gear-wheel 30 nitinol-bearing 30 advanced-processing-unit 10 vehicle-motor 1 +vehicle-fusion-cell-2 angels-vehicle-equipment-bobpower-b + recipe vehicle-fusion-cell-2 1 + product alien-artifact 15 processing-unit 25 vehicle-fusion-cell-1 1 speed-module-2 1 effectivity-module-2 1 productivity-module-2 1 +vehicle-fusion-reactor-2 angels-vehicle-equipment-bobpower-c + recipe vehicle-fusion-reactor-2 1 + product alien-artifact 30 processing-unit 50 vehicle-fusion-reactor-1 1 speed-module-2 2 effectivity-module-2 2 productivity-module-2 2 +vehicle-laser-defense-2 angels-vehicle-equipment-bobcombat-b + recipe vehicle-laser-defense-2 1 + product steel-plate 5 advanced-circuit 5 vehicle-laser-defense-1 1 sapphire-5 1 +vehicle-roboport-2 angels-vehicle-equipment-bobrobot-d + recipe vehicle-roboport-2 1 + product aluminium-plate 5 roboport-antenna-2 2 roboport-door-2 1 roboport-chargepad-2 2 vehicle-roboport 1 +vehicle-roboport-antenna-equipment-2 angels-vehicle-equipment-bobrobot-c + recipe vehicle-roboport-antenna-equipment-2 1 + product roboport-antenna-2 2 roboport-door-2 1 vehicle-roboport-antenna-equipment 1 +vehicle-roboport-chargepad-equipment-2 angels-vehicle-equipment-bobrobot-b + recipe vehicle-roboport-chargepad-equipment-2 1 + product roboport-chargepad-2 2 vehicle-roboport-chargepad-equipment 1 +vehicle-roboport-robot-equipment-2 angels-vehicle-equipment-bobrobot-a + recipe vehicle-roboport-robot-equipment-2 1 + product solder 3 circuit-board 1 basic-electronic-components 15 electronic-components 30 vehicle-roboport-robot-equipment 1 +vehicle-shield-2 angels-vehicle-equipment-bobcombat-a + recipe vehicle-shield-2 1 + product processing-unit 5 vehicle-shield-1 2 +vehicle-solar-panel-2 angels-vehicle-equipment-bobpower-a + recipe vehicle-solar-panel-2 1 + product glass 2 silver-plate 2 advanced-circuit 5 vehicle-solar-panel-1 1 +washing-1 water-washing + recipe solid-mud 0 - 3 water-heavy-mud 200 + product water-viscous-mud 200 water 50 +washing-plant washing-building + recipe washing-plant 1 + product stone-brick 25 iron-plate 12 basic-circuit-board 4 pipe 27 +bob-sapphire-3 bob-gems-raw + recipe sapphire-3 1 + product sapphire-ore 1 +bob-sapphire-4 bob-gems-cut + recipe sapphire-4 1 + product sapphire-3 1 grinding-wheel 1 water 10 +bob-sapphire-5 bob-gems-polished + recipe sapphire-5 1 + product sapphire-4 1 polishing-wheel 1 polishing-compound 1 +fill-gas-ammonia-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-ammonia-barrel 1 + product gas-canister 1 gas-ammonia 50 +fill-gas-compressed-air-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-compressed-air-barrel 1 + product gas-canister 1 gas-compressed-air 50 +fill-gas-hydrogen-chloride-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-hydrogen-chloride-barrel 1 + product gas-canister 1 gas-hydrogen-chloride 50 +fill-gas-puffer-atmosphere-barrel angels-fluid-control-bio-puffer-1 + recipe gas-puffer-atmosphere-barrel 1 + product gas-canister 1 gas-puffer-atmosphere 50 +fill-gas-sulfur-dioxide-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-sulfur-dioxide-barrel 1 + product gas-canister 1 gas-sulfur-dioxide 50 +fill-hydrogen-chloride-barrel angels-fluid-control-bob-gas-bottle + recipe hydrogen-chloride-barrel 1 + product gas-canister 1 gas-hydrogen-chloride 50 +fill-liquid-brown-liquor-barrel angels-fluid-control-bio-liquor + recipe liquid-brown-liquor-barrel 1 + product empty-barrel 1 liquid-brown-liquor 50 +fill-pure-water-barrel angels-fluid-control-angels-fluid-converter-water-treatment-fluid + recipe pure-water-barrel 1 + product empty-barrel 1 water-purified 50 +fill-sulfur-dioxide-barrel angels-fluid-control-bob-gas-bottle + recipe sulfur-dioxide-barrel 1 + product gas-canister 1 gas-sulfur-dioxide 50 +fill-water-greenyellow-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe water-greenyellow-waste-barrel 1 + product empty-barrel 1 water-greenyellow-waste 50 +fill-water-heavy-mud-barrel angels-fluid-control-water-washing-fluid + recipe water-heavy-mud-barrel 1 + product empty-barrel 1 water-heavy-mud 50 +fill-water-purified-barrel angels-fluid-control-water-treatment-fluid + recipe water-purified-barrel 1 + product empty-barrel 1 water-purified 50 +modular-armor angels-personal-equipment-armor + recipe modular-armor 1 + product steel-plate 50 advanced-circuit 30 +empty-gas-ammonia-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-ammonia 50 + product gas-ammonia-barrel 1 +empty-gas-compressed-air-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-compressed-air 50 + product gas-compressed-air-barrel 1 +empty-gas-hydrogen-chloride-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-canister 1 gas-hydrogen-chloride 50 + product gas-hydrogen-chloride-barrel 1 +empty-gas-puffer-atmosphere-barrel angels-fluid-control-bio-puffer-1 + recipe gas-canister 1 gas-puffer-atmosphere 50 + product gas-puffer-atmosphere-barrel 1 +empty-gas-sulfur-dioxide-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-canister 1 gas-sulfur-dioxide 50 + product gas-sulfur-dioxide-barrel 1 +empty-hydrogen-chloride-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-hydrogen-chloride 50 + product hydrogen-chloride-barrel 1 +empty-liquid-brown-liquor-barrel angels-fluid-control-bio-liquor + recipe empty-barrel 1 liquid-brown-liquor 50 + product liquid-brown-liquor-barrel 1 +empty-pure-water-barrel angels-fluid-control-angels-fluid-converter-water-treatment-fluid + recipe empty-barrel 1 water-purified 50 + product pure-water-barrel 1 +empty-sulfur-dioxide-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-sulfur-dioxide 50 + product sulfur-dioxide-barrel 1 +empty-water-greenyellow-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe empty-barrel 1 water-greenyellow-waste 50 + product water-greenyellow-waste-barrel 1 +empty-water-heavy-mud-barrel angels-fluid-control-water-washing-fluid + recipe empty-barrel 1 water-heavy-mud 50 + product water-heavy-mud-barrel 1 +empty-water-purified-barrel angels-fluid-control-water-treatment-fluid + recipe empty-barrel 1 water-purified 50 + product water-purified-barrel 1 +power-armor angels-personal-equipment-armor + recipe power-armor 1 + product steel-plate 40 electric-engine-unit 20 processing-unit 40 +power-armor-mk2 angels-personal-equipment-armor + recipe power-armor-mk2 1 + product electric-engine-unit 40 low-density-structure 30 processing-unit 60 speed-module-2 25 effectivity-module-2 25 +bob-power-armor-mk3 angels-personal-equipment-armor + recipe bob-power-armor-mk3 1 + product aluminium-plate 25 invar-alloy 25 alien-artifact-orange 25 alien-artifact-blue 25 processing-unit 50 power-armor-mk2 1 speed-module-4 5 effectivity-module-4 5 +bob-power-armor-mk4 angels-personal-equipment-armor + recipe bob-power-armor-mk4 1 + product silicon-nitride 25 titanium-plate 25 alien-artifact-yellow 25 alien-artifact-purple 25 processing-unit 40 advanced-processing-unit 20 bob-power-armor-mk3 1 speed-module-6 5 effectivity-module-6 5 +bob-power-armor-mk5 angels-personal-equipment-armor + recipe bob-power-armor-mk5 1 + product copper-tungsten-alloy 25 nitinol-alloy 25 alien-artifact-red 25 alien-artifact-green 25 processing-unit 50 advanced-processing-unit 50 bob-power-armor-mk4 1 speed-module-8 5 effectivity-module-8 5 +angels-bio-yield-module bio-yield-module + recipe angels-bio-yield-module 1 + product solder 1 token-bio 1 effectivity-module 1 productivity-module 1 +angels-bio-yield-module-2 bio-yield-module + recipe angels-bio-yield-module-2 1 + product solder 2 token-bio 1 effectivity-module-2 1 productivity-module-2 1 +angels-bio-yield-module-3 bio-yield-module + recipe angels-bio-yield-module-3 1 + product solder 3 token-bio 1 effectivity-module-3 1 productivity-module-3 1 +angels-bio-yield-module-4 bio-yield-module + recipe angels-bio-yield-module-4 1 + product solder 4 token-bio 1 effectivity-module-4 1 productivity-module-4 1 +angels-bio-yield-module-5 bio-yield-module + recipe angels-bio-yield-module-5 1 + product solder 6 token-bio 1 effectivity-module-5 1 productivity-module-5 1 +angels-bio-yield-module-6 bio-yield-module + recipe angels-bio-yield-module-6 1 + product solder 7 token-bio 1 effectivity-module-6 1 productivity-module-6 1 +angels-bio-yield-module-7 bio-yield-module + recipe angels-bio-yield-module-7 1 + product solder 8 token-bio 1 effectivity-module-7 1 productivity-module-7 1 +angels-bio-yield-module-8 bio-yield-module + recipe angels-bio-yield-module-8 1 + product solder 10 token-bio 1 effectivity-module-8 1 productivity-module-8 1 +converter-angels-liquid-sulfuric-acid angels-converter + recipe liquid-sulfuric-acid 50 + product sulfuric-acid 50 +converter-angels-gas-sulfur-dioxide angels-converter + recipe gas-sulfur-dioxide 50 + product sulfur-dioxide 50 +converter-angels-liquid-nitric-acid angels-converter + recipe liquid-nitric-acid 50 + product nitric-acid 50 +converter-angels-gas-nitrogen-dioxide angels-converter + recipe gas-nitrogen-dioxide 50 + product nitrogen-dioxide 50 +converter-angels-gas-compressed-air angels-converter + recipe gas-compressed-air 50 + product liquid-air 50 +converter-angels-liquid-ferric-chloride-solution angels-converter + recipe liquid-ferric-chloride-solution 50 + product ferric-chloride-solution 50 +converter-angels-gas-hydrogen-sulfide angels-converter + recipe gas-hydrogen-sulfide 50 + product hydrogen-sulfide 50 +converter-angels-gas-ammonia angels-converter + recipe gas-ammonia 50 + product ammonia 50 +converter-angels-gas-nitrogen-monoxide angels-converter + recipe gas-nitrogen-monoxide 50 + product nitric-oxide 50 +converter-angels-gas-dinitrogen-tetroxide angels-converter + recipe gas-dinitrogen-tetroxide 50 + product dinitrogen-tetroxide 50 +converter-angels-gas-hydrazine angels-converter + recipe gas-hydrazine 50 + product hydrazine 50 +converter-angels-liquid-naphtha angels-converter + recipe liquid-naphtha 50 + product heavy-oil 50 +converter-angels-liquid-tungstic-acid angels-converter + recipe liquid-tungstic-acid 50 + product tungstic-acid 50 +converter-angels-liquid-fuel-oil angels-converter + recipe liquid-fuel-oil 50 + product light-oil 50 +converter-angels-gas-methane angels-converter + recipe gas-methane 50 + product petroleum-gas 50 +converter-angels-gas-chlorine angels-converter + recipe gas-chlorine 50 + product chlorine 50 +converter-angels-gas-oxygen angels-converter + recipe gas-oxygen 50 + product oxygen 50 +converter-angels-gas-hydrogen angels-converter + recipe gas-hydrogen 50 + product hydrogen 50 +converter-angels-gas-hydrogen-chloride angels-converter + recipe gas-hydrogen-chloride 50 + product hydrogen-chloride 50 +converter-angels-gas-nitrogen angels-converter + recipe gas-nitrogen 50 + product nitrogen 50 +angels-mixed-oxide-cell angels-power-nuclear-fuel-cell + recipe AMOX-cell 20 + product lead-plate 20 uranium-238 38 plutonium-239 2 +angels-plutonium-synthesis angels-power-nuclear-processing + recipe plutonium-239 5 + product neptunium-240 8 +angels-mixed-oxide-reprocessing angels-power-nuclear-fuel-cell + recipe americium-241 1 americium-241 1 curium-245 1 uranium-238 1 slag 5 + product used-up-AMOX-cell 5 +angels-americium-regeneration angels-power-nuclear-processing + recipe plutonium-239 6 uranium-238 15 lead-oxide 5 + product uranium-238 60 plutonium-239 1 americium-241 5 +angels-advanced-mixed-oxide-reprocessing angels-power-nuclear-fuel-cell + recipe plutonium-239 2 slag 10 curium-245 3 uranium-235 1 water-greenyellow-waste 60 + product used-up-AMOX-cell 10 liquid-hydrofluoric-acid 60 +bobingabout-enrichment-process angels-power-nuclear-processing + recipe plutonium-239 41 uranium-238 2 + product uranium-238 5 plutonium-239 40 +advanced-chemical-plant petrochem-buildings-chemical-plant + recipe advanced-chemical-plant 1 + product clay-brick 20 bronze-alloy 6 electronic-circuit 4 bronze-pipe 36 +advanced-chemical-plant-2 petrochem-buildings-chemical-plant + recipe advanced-chemical-plant-2 1 + product reinforced-concrete-brick 20 titanium-plate 8 advanced-chemical-plant 1 processing-unit 4 titanium-pipe 36 +air-separation petrochem-nitrogen + recipe gas-nitrogen 50 gas-oxygen 50 + product gas-compressed-air 100 +solid-sodium-nitrate-processing petrochem-nitrogen + recipe gas-nitrogen-monoxide 40 gas-nitrogen-dioxide 20 + product solid-sodium-nitrate 5 gas-compressed-air 60 +algae-brown-burning-wash bio-processing-brown + recipe solid-sodium-carbonate 1 + product algae-brown 20 water-purified 50 +algae-brown-burning bio-processing-brown + recipe solid-lithium 2 + product algae-brown 20 +angels-air-filter petrochem-buildings-electrolyser + recipe angels-air-filter 1 + product stone-brick 25 iron-plate 12 basic-circuit-board 5 pipe 24 +angels-air-filter-2 petrochem-buildings-electrolyser + recipe angels-air-filter-2 1 + product clay-brick 25 bronze-alloy 12 angels-air-filter 1 electronic-circuit 5 bronze-pipe 24 +angels-air-filter-3 petrochem-buildings-electrolyser + recipe angels-air-filter-3 1 + product aluminium-plate 16 concrete-brick 25 angels-air-filter-2 1 advanced-circuit 5 brass-pipe 24 +angels-chemical-furnace-2 angels-chemical-furnace + recipe angels-chemical-furnace-2 1 + product angels-chemical-furnace 1 aluminium-plate 8 concrete-brick 25 advanced-circuit 5 brass-pipe 30 +angels-flare-stack petrochem-buildings-steam + recipe angels-flare-stack 1 + product stone-brick 5 iron-plate 3 basic-circuit-board 1 pipe 3 +angels-fusion-reactor-vequip angels-vehicle-equipment + recipe angels-fusion-reactor-vequip 1 + product iron-plate 20 steel-plate 20 advanced-circuit 20 +cargo-robot angels-cargo-bots + recipe cargo-robot 1 + product steel-plate 5 engine-unit 1 iron-gear-wheel 5 electronic-circuit 2 +cargo-robot-2 angels-cargo-bots + recipe cargo-robot-2 1 + product steel-plate 5 electric-engine-unit 5 iron-gear-wheel 5 advanced-circuit 5 cargo-robot 1 +angelsore-crushed-mix2-processing ore-sorting-advanced + recipe copper-ore 4 + product catalysator-brown 1 angels-ore3-crushed 2 angels-ore4-crushed 2 +angelsore2-chunk-processing ore-sorting-t2 + recipe slag 1 iron-ore 2 copper-ore 1 bauxite-ore 1 zinc-ore 1 + product angels-ore2-chunk 6 +angelsore2-chunk ore-processing-b + recipe angels-ore2-chunk 2 geode-purple 1 water-greenyellow-waste 50 + product angels-ore2-crushed 2 water-purified 50 +angelsore2-crushed-processing ore-sorting-t1 + recipe slag 1 iron-ore 2 copper-ore 1 + product angels-ore2-crushed 4 +angelsore2-crushed ore-processing-a + recipe angels-ore2-crushed 2 stone-crushed 1 + product angels-ore2 2 +angelsore2-crystal-processing ore-sorting-t3 + recipe slag 1 iron-ore 3 copper-ore 1 bauxite-ore 1 zinc-ore 1 cobalt-ore 1 + product angels-ore2-crystal 8 +angelsore2-crystal ore-processing-c + recipe angels-ore2-crystal 2 + product angels-ore2-chunk 2 liquid-hydrofluoric-acid 10 +angelsore2-pure-processing ore-sorting-t4 + recipe iron-ore 3 copper-ore 2 bauxite-ore 1 zinc-ore 1 cobalt-ore 1 tungsten-ore 1 + product angels-ore2-pure 9 +angelsore2-pure ore-processing-d + recipe angels-ore2-pure 4 + product angels-ore2-crystal 4 +angelsore3-crushed-hand processing-crafting + recipe angels-ore3-crushed 2 stone-crushed 1 + product angels-ore3 2 +desert-tree-arboretum-0 bio-arboretum-desert + recipe desert-tree 1 + product solid-alienated-fertilizer 2 tree-desert-seed 2 token-bio 16 water-saline 50 +desert-tree-arboretum-1 bio-arboretum-desert + recipe bio-rubber 4 solid-tree 2 + product solid-sand 5 tree-desert-seed 2 water-saline 50 +swamp-tree-arboretum-0 bio-arboretum-swamp + recipe swamp-tree 1 + product solid-alienated-fertilizer 2 tree-swamp-seed 2 token-bio 16 water-light-mud 50 +temperate-tree-arboretum-0 bio-arboretum-temperate + recipe temperate-tree 1 + product solid-alienated-fertilizer 2 tree-temperate-seed 2 token-bio 16 water 50 +tree-arboretum-0 bio-arboretum + recipe temperate-tree 1 swamp-tree 1 desert-tree 1 + product solid-alienated-fertilizer 2 tree-seed 2 token-bio 16 water 50 +desert-tree-arboretum-2 bio-arboretum-desert + recipe bio-rubber 7 solid-tree 3 + product solid-sand 5 solid-fertilizer 1 tree-desert-seed 2 water-saline 50 +swamp-tree-arboretum-1 bio-arboretum-swamp + recipe bio-plastic 4 solid-tree 2 + product solid-mud 5 tree-swamp-seed 2 water-light-mud 50 +temperate-tree-arboretum-1 bio-arboretum-temperate + recipe bio-resin 4 solid-tree 2 + product solid-soil 5 tree-temperate-seed 2 water 50 +bob-basic-greenhouse-cycle bio-arboretum + recipe solid-tree 2 - 4 + product seedling 10 water 20 +swamp-tree-arboretum-2 bio-arboretum-swamp + recipe bio-plastic 7 solid-tree 3 + product solid-mud 5 solid-fertilizer 1 tree-swamp-seed 2 water-light-mud 50 +temperate-tree-arboretum-2 bio-arboretum-temperate + recipe bio-resin 7 solid-tree 3 + product solid-soil 5 solid-fertilizer 1 tree-temperate-seed 2 water 50 +bob-advanced-greenhouse-cycle bio-arboretum + recipe solid-tree 4 - 8 + product solid-fertilizer 5 seedling 10 water 20 +tree-arboretum-1 bio-arboretum + recipe solid-tree 4 + product solid-soil 5 tree-seed 2 water 50 +tree-arboretum-2 bio-arboretum + recipe solid-tree 6 + product solid-soil 5 solid-fertilizer 1 tree-seed 2 water 50 +tree-arboretum-3 bio-arboretum + recipe solid-tree 8 + product solid-soil 5 solid-fertilizer 1 tree-seed 2 water 50 liquid-nutrient-pulp 10 +bio-plastic-tree bio-arboretum-swamp + recipe bio-plastic 10 + product swamp-tree 1 +bio-resin-tree bio-arboretum-temperate + recipe bio-resin 10 + product temperate-tree 1 +bio-rubber-tree bio-arboretum-desert + recipe bio-rubber 10 + product desert-tree 1 +assembling-machine-2 bob-assembly-machine + recipe assembling-machine-2 1 + product assembling-machine-1 1 steel-plate 2 iron-gear-wheel 5 electronic-circuit 3 +blast-furnace-2 angels-blast-furnace + recipe blast-furnace-2 1 + product clay-brick 50 blast-furnace 1 steel-plate 12 electronic-circuit 3 steel-pipe 15 +blue-fiber-algae bio-processing-blue + recipe blue-cellulose-fiber 5 + product algae-blue 10 +angels-brass-smelting-1 angels-alloys-casting + recipe liquid-molten-brass 240 + product ingot-copper 18 ingot-zinc 6 +angels-brass-smelting-2 angels-alloys-casting + recipe liquid-molten-brass 360 + product ingot-copper 18 ingot-tin 6 ingot-zinc 12 +angels-brass-smelting-3 angels-alloys-casting + recipe liquid-molten-brass 360 + product ingot-copper 18 ingot-lead 6 ingot-zinc 12 +angels-plate-brass angels-alloys-casting + recipe brass-alloy 4 + product liquid-molten-brass 40 +brass-alloy angels-alloys-casting + recipe brass-alloy 5 + product copper-plate 3 zinc-plate 2 +carbon-separation-1 petrochem-basics + recipe gas-carbon-monoxide 50 + product solid-carbon 1 water-purified 50 +casting-machine-2 angels-casting-machine + recipe casting-machine-2 1 + product clay-brick 5 steel-plate 9 casting-machine 1 steel-gear-wheel 3 electronic-circuit 1 steel-pipe 6 +cellulose-fiber-algae bio-processing-green + recipe cellulose-fiber 5 + product algae-green 10 +fluid-chemical-furnace bob-smelting-machine + recipe fluid-chemical-furnace 1 + product steel-furnace 1 steel-pipe 2 +solid-coke petrochem-coal + recipe solid-coke 2 + product coal-crushed 2 +robot-brain-construction angels-robot-a + recipe robot-brain-construction 1 + product solder 5 circuit-board 1 basic-electronic-components 8 electronic-components 3 +robot-brain-construction-2 angels-robot-b + recipe robot-brain-construction-2 1 + product solder 5 circuit-board 1 basic-electronic-components 12 electronic-components 4 +robot-brain-construction-3 angels-robot-c + recipe robot-brain-construction-3 1 + product solder 5 superior-circuit-board 1 basic-electronic-components 4 electronic-components 8 intergrated-electronics 4 +robot-brain-construction-4 angels-robot-d + recipe robot-brain-construction-4 1 + product solder 5 multi-layer-circuit-board 1 basic-electronic-components 2 electronic-components 6 intergrated-electronics 6 processing-electronics 4 +robot-tool-construction angels-robot-a + recipe robot-tool-construction 1 + product steel-plate 1 steel-gear-wheel 2 +robot-tool-construction-2 angels-robot-b + recipe robot-tool-construction-2 1 + product aluminium-plate 1 brass-gear-wheel 2 steel-bearing 2 +robot-tool-construction-3 angels-robot-c + recipe robot-tool-construction-3 1 + product titanium-plate 1 titanium-gear-wheel 2 titanium-bearing 2 +robot-tool-construction-4 angels-robot-d + recipe robot-tool-construction-4 1 + product silicon-nitride 1 tungsten-carbide 1 nitinol-gear-wheel 2 ceramic-bearing 2 +bob-construction-robot-2 angels-robot-b + recipe bob-construction-robot-2 1 + product construction-robot 1 flying-robot-frame-2 1 robot-brain-construction-2 1 robot-tool-construction-2 1 +bob-construction-robot-3 angels-robot-c + recipe bob-construction-robot-3 1 + product bob-construction-robot-2 1 flying-robot-frame-3 1 robot-brain-construction-3 1 robot-tool-construction-3 1 +bob-construction-robot-4 angels-robot-d + recipe bob-construction-robot-4 1 + product bob-construction-robot-3 1 flying-robot-frame-4 1 robot-brain-construction-4 1 robot-tool-construction-4 1 +construction-robot angels-robot-a + recipe construction-robot 1 + product flying-robot-frame 1 robot-brain-construction 1 robot-tool-construction 1 +angels-copper-pebbles ore-sorting-advanced + recipe angels-copper-pebbles 4 + product copper-ore 2 +angels-crawler angels-vehicle-car + recipe angels-crawler 1 + product steel-plate 75 engine-unit 20 iron-gear-wheel 25 electronic-circuit 20 +angels-cab angels-vehicle-car + recipe angels-cab 1 + product steel-plate 75 engine-unit 20 iron-gear-wheel 25 electronic-circuit 20 +angels-cab-deploy-charge angels-vehicle-car + recipe angels-cab-deploy-charge 1 + product iron-plate 1 steel-plate 1 iron-gear-wheel 1 electronic-circuit 1 +angels-cab-undeploy-charge angels-vehicle-car + recipe angels-cab-undeploy-charge 1 + product iron-plate 1 steel-plate 1 iron-gear-wheel 1 electronic-circuit 1 +angels-cab-energy-interface-mk1 angels-vehicle-car + recipe angels-cab-energy-interface-mk1 1 + product red-wire 10 green-wire 10 electronic-circuit 20 medium-electric-pole 1 +fill-angels-ore9-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore9-sludge-barrel 1 + product empty-barrel 1 angels-ore9-sludge 50 +empty-angels-ore9-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore9-sludge 50 + product angels-ore9-sludge-barrel 1 +fill-angels-ore9-solution-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore9-solution-barrel 1 + product empty-barrel 1 angels-ore9-solution 50 +empty-angels-ore9-solution-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore9-solution 50 + product angels-ore9-solution-barrel 1 +fill-angels-ore9-anode-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore9-anode-sludge-barrel 1 + product empty-barrel 1 angels-ore9-anode-sludge 50 +empty-angels-ore9-anode-sludge-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore9-anode-sludge 50 + product angels-ore9-anode-sludge-barrel 1 +fill-angels-ore9-slime-barrel angels-fluid-control-ore-processing-fluid + recipe angels-ore9-slime-barrel 1 + product empty-barrel 1 angels-ore9-slime 50 +empty-angels-ore9-slime-barrel angels-fluid-control-ore-processing-fluid + recipe empty-barrel 1 angels-ore9-slime 50 + product angels-ore9-slime-barrel 1 +fill-liquid-cupric-chloride-solution-barrel angels-fluid-control-ore-processing-fluid + recipe liquid-cupric-chloride-solution-barrel 1 + product empty-canister 1 liquid-cupric-chloride-solution 50 +empty-liquid-cupric-chloride-solution-barrel angels-fluid-control-ore-processing-fluid + recipe empty-canister 1 liquid-cupric-chloride-solution 50 + product liquid-cupric-chloride-solution-barrel 1 +petri-dish bio-processing-alien-intermediate + recipe petri-dish 2 + product glass 1 +substrate-dish bio-processing-alien-intermediate + recipe substrate-dish 3 + product paste-cellulose 1 petri-dish 3 +seeded-dish bio-processing-alien-intermediate + recipe seeded-dish 5 + product alien-bacteria 1 substrate-dish 5 +crystal-seed bio-processing-alien-intermediate + recipe crystal-seed 1 + product crystal-dust 1 seeded-dish 1 +egg-shell-seed bio-processing-alien-intermediate + recipe egg-shell-seed 1 + product bio-puffer-egg-shell-powder 1 seeded-dish 1 +angels-relay-station angels-cargo-expander + recipe angels-relay-station 1 + product iron-plate 5 electronic-circuit 2 +angels-relay-station-2 angels-cargo-expander + recipe angels-relay-station-2 1 + product iron-plate 5 steel-plate 5 advanced-circuit 2 angels-relay-station 4 +angels-relay-station-3 angels-cargo-expander + recipe angels-relay-station-3 1 + product steel-plate 5 low-density-structure 5 processing-unit 2 angels-relay-station-2 4 +angels-zone-expander angels-cargo-expander + recipe angels-zone-expander 1 + product iron-plate 5 electronic-circuit 2 +angels-zone-expander-2 angels-cargo-expander + recipe angels-zone-expander-2 1 + product iron-plate 5 steel-plate 5 advanced-circuit 2 angels-zone-expander 4 +angels-zone-expander-3 angels-cargo-expander + recipe angels-zone-expander-3 1 + product steel-plate 5 low-density-structure 5 processing-unit 2 angels-zone-expander-2 4 +angels-construction-zone-expander angels-cargo-expander + recipe angels-construction-zone-expander 1 + product iron-plate 5 electronic-circuit 2 +angels-construction-zone-expander-2 angels-cargo-expander + recipe angels-construction-zone-expander-2 1 + product iron-plate 5 steel-plate 5 advanced-circuit 2 angels-construction-zone-expander 4 +angels-construction-zone-expander-3 angels-cargo-expander + recipe angels-construction-zone-expander-3 1 + product steel-plate 5 low-density-structure 5 processing-unit 2 angels-construction-zone-expander-2 4 +filter-lime petrochem-catalysts + recipe filter-lime 1 + product filter-frame 1 solid-lime 5 +crystal-slurry-filtering-1 filtering + recipe filter-frame 1 crystal-seedling 50 water-yellow-waste 40 + product filter-coal 1 crystal-slurry 50 water-purified 50 +crystal-slurry-filtering-2 filtering + recipe filter-ceramic-used 1 crystal-seedling 35 water-yellow-waste 20 + product filter-ceramic 1 crystal-slurry 35 water-purified 50 +filtration-unit refining-buildings + recipe filtration-unit 1 + product clay-brick 25 steel-plate 6 electronic-circuit 5 steel-pipe 24 +filtration-unit-2 refining-buildings + recipe filtration-unit-2 1 + product filtration-unit 1 aluminium-plate 8 concrete-brick 25 advanced-circuit 5 brass-pipe 24 +filtration-unit-3 refining-buildings + recipe filtration-unit-3 1 + product filtration-unit-2 1 reinforced-concrete-brick 25 titanium-plate 8 processing-unit 5 titanium-pipe 24 +fluid-reactor angels-power-nuclear-reactor-a + recipe fluid-reactor 1 + product burner-reactor 1 steel-pipe 5 +fluid-reactor-from-fluid-furnace angels-power-nuclear-reactor-a + recipe fluid-reactor 1 + product fluid-furnace 1 steel-plate 6 heat-pipe 8 steel-pipe 3 +fluid-reactor-2 angels-power-nuclear-reactor-a + recipe fluid-reactor-2 1 + product concrete 10 invar-alloy 6 fluid-reactor 1 heat-pipe-2 8 brass-pipe 5 +coal-cracking bob-fluid + recipe liquid-naphtha 12 + product coal 2 water-purified 15 +ferric-chloride-solution bob-fluid + recipe liquid-ferric-chloride-solution 50 + product iron-ore 1 gas-hydrogen-chloride 30 +heavy-oil-cracking fluid-recipes + recipe liquid-fuel-oil 30 + product water-purified 30 liquid-naphtha 40 +ammonia bob-fluid + recipe gas-ammonia 20 + product gas-nitrogen 10 gas-hydrogen 24 +dinitrogen-tetroxide bob-fluid + recipe gas-dinitrogen-tetroxide 8 + product gas-nitrogen-dioxide 20 +glycerol bob-fluid + recipe liquid-glycerol 10 + product liquid-fuel-oil 10 +bob-heavy-water bob-fluid + recipe liquid-water-heavy 0.5 water-purified 99.5 + product water 100 gas-hydrogen-sulfide 1 +hydrazine bob-fluid + recipe gas-hydrazine 8 water-purified 4 + product gas-ammonia 20 gas-hydrogen-peroxide 4 +hydrogen-chloride bob-fluid + recipe gas-hydrogen-chloride 25 + product gas-chlorine 13 gas-hydrogen 10 +hydrogen-peroxide bob-fluid + recipe gas-hydrogen-peroxide 8 + product gas-hydrogen 16 gas-oxygen 20 +petroleum-gas-cracking bob-fluid + recipe gas-hydrogen 250 + product water-purified 20 gas-methane 5 +light-oil-cracking fluid-recipes + recipe gas-methane 20 + product water-purified 30 liquid-fuel-oil 30 +bob-liquid-air bob-fluid-pump + recipe gas-oxygen 100 + product +nitric-acid bob-fluid + recipe liquid-nitric-acid 20 + product gas-nitrogen-dioxide 20 gas-hydrogen-peroxide 20 +nitric-oxide bob-fluid + recipe gas-nitrogen-monoxide 20 water-purified 12 + product gas-ammonia 20 gas-oxygen 25 +nitrogen-dioxide bob-fluid + recipe gas-nitrogen-dioxide 20 + product gas-nitrogen-monoxide 20 gas-oxygen 10 +nitrogen bob-fluid + recipe gas-nitrogen 20 gas-oxygen 5 + product gas-oxygen 25 +pure-water bob-fluid + recipe water-purified 100 + product water 100 +pure-water-from-lithia bob-fluid + recipe water-purified 100 + product lithia-water 100 +brine-electrolysis bob-fluid-electrolysis + recipe solid-sodium-hydroxide 1 gas-chlorine 25 gas-hydrogen 20 + product water-saline 10 +salt-water-electrolysis bob-fluid-electrolysis + recipe solid-sodium-hydroxide 1 gas-chlorine 25 gas-hydrogen 20 + product solid-salt 1 water-purified 10 +sodium-chlorate bob-fluid-electrolysis + recipe solid-sodium-chlorate 1 gas-hydrogen 60 + product solid-salt 1 water-purified 30 +sodium-perchlorate bob-fluid-electrolysis + recipe solid-sodium-perchlorate 1 gas-hydrogen 20 + product solid-sodium-chlorate 1 water-purified 10 +tungstic-acid bob-fluid + recipe solid-calcium-chloride 1 liquid-tungstic-acid 20 + product tungsten-ore 2 gas-hydrogen-chloride 25 +water-electrolysis bob-fluid-electrolysis + recipe gas-hydrogen 20 gas-oxygen 12.5 + product water-purified 10 +solid-fuel-from-sour-gas bob-resource-chemical + recipe solid-fuel 1 + product sour-gas 20 +petroleum-gas-sweetening bob-fluid + recipe gas-methane 20 gas-hydrogen-sulfide 10 + product sour-gas 20 +sulfuric-acid-2 bob-fluid + recipe liquid-sulfuric-acid 50 + product gas-sulfur-dioxide 50 gas-hydrogen-peroxide 50 +sulfuric-acid-3 bob-fluid + recipe liquid-sulfuric-acid 50 + product gas-hydrogen-sulfide 50 gas-oxygen 100 +pumpjack extraction-machine + recipe pumpjack 1 + product steel-plate 5 iron-gear-wheel 10 electronic-circuit 5 pipe 10 +bob-pumpjack-1 extraction-machine + recipe bob-pumpjack-1 1 + product pumpjack 1 steel-plate 20 steel-gear-wheel 10 electronic-circuit 5 steel-pipe 10 +bob-pumpjack-2 extraction-machine + recipe bob-pumpjack-2 1 + product bob-pumpjack-1 1 aluminium-plate 20 brass-gear-wheel 10 advanced-circuit 5 brass-pipe 10 +bob-pumpjack-3 extraction-machine + recipe bob-pumpjack-3 1 + product bob-pumpjack-2 1 titanium-plate 20 titanium-gear-wheel 10 processing-unit 5 titanium-pipe 10 +bob-pumpjack-4 extraction-machine + recipe bob-pumpjack-4 1 + product bob-pumpjack-3 1 nitinol-alloy 20 nitinol-gear-wheel 10 advanced-processing-unit 5 nitinol-pipe 10 +water-miner-1 extraction-machine + recipe water-miner-1 1 + product iron-plate 10 iron-gear-wheel 10 basic-circuit-board 5 copper-pipe 10 +water-miner-2 extraction-machine + recipe water-miner-2 1 + product water-miner-1 1 steel-plate 10 steel-gear-wheel 10 electronic-circuit 5 bronze-pipe 10 +water-miner-3 extraction-machine + recipe water-miner-3 1 + product water-miner-2 1 aluminium-plate 10 brass-gear-wheel 10 advanced-circuit 5 brass-pipe 10 +water-miner-4 extraction-machine + recipe water-miner-4 1 + product water-miner-3 1 titanium-plate 10 titanium-gear-wheel 10 processing-unit 5 titanium-pipe 10 +water-miner-5 extraction-machine + recipe water-miner-5 1 + product water-miner-4 1 nitinol-alloy 10 nitinol-gear-wheel 10 advanced-processing-unit 5 nitinol-pipe 10 +gas-ethylene-oxide petrochem-feedstock + recipe catalyst-metal-carrier 1 gas-ethylene-oxide 100 + product catalyst-metal-green 1 gas-ethylene 100 gas-oxygen 50 +gas-refinery petrochem-buildings-gas-refinery + recipe gas-refinery 1 + product aluminium-plate 20 concrete-brick 50 advanced-circuit 10 brass-pipe 57 +gas-refinery-2 petrochem-buildings-gas-refinery + recipe gas-refinery-2 1 + product reinforced-concrete-brick 50 titanium-plate 20 gas-refinery 1 processing-unit 10 titanium-pipe 57 +gas-refinery-3 petrochem-buildings-gas-refinery + recipe gas-refinery-3 1 + product reinforced-concrete-brick 50 tungsten-plate 20 gas-refinery-2 1 advanced-processing-unit 10 tungsten-pipe 57 +gas-refinery-4 petrochem-buildings-gas-refinery + recipe gas-refinery-4 1 + product reinforced-concrete-brick 50 tungsten-carbide 40 gas-refinery-3 1 advanced-processing-unit 5 copper-tungsten-pipe 30 +gas-refining petrochem-carbon-gas-feed + recipe gas-acid 20 liquid-ngl 80 + product gas-raw-1 100 +gas-synthesis-reforming petrochem-carbon-synthesis + recipe gas-synthesis 100 + product gas-carbon-monoxide 60 gas-hydrogen 90 +bio-generator-temperate-1 bio-processing-buildings-nauvis-a + recipe bio-generator-temperate-1 1 + product clay-brick 5 steel-plate 6 temperate-tree 1 electronic-circuit 2 steel-pipe 9 +bio-generator-swamp-1 bio-processing-buildings-nauvis-a + recipe bio-generator-swamp-1 1 + product clay-brick 5 steel-plate 6 swamp-tree 1 electronic-circuit 2 steel-pipe 9 +bio-generator-desert-1 bio-processing-buildings-nauvis-a + recipe bio-generator-desert-1 1 + product clay-brick 5 steel-plate 6 desert-tree 1 electronic-circuit 2 steel-pipe 9 +geode-purple-liquify liquifying + recipe crystal-slurry 40 + product geode-purple 5 liquid-sulfuric-acid 15 +geode-purple-processing geode-processing-1 + recipe crystal-dust 2 stone-crushed 3 + product geode-purple 2 +grenade angels-capsules-a + recipe grenade 1 + product iron-plate 5 coal 10 +cluster-grenade angels-capsules-a + recipe cluster-grenade 1 + product steel-plate 5 explosives 5 grenade 7 +hydro-plant-2 water-treatment-building + recipe hydro-plant-2 1 + product clay-brick 60 steel-plate 12 hydro-plant 1 electronic-circuit 12 steel-pipe 48 +hydro-plant-3 water-treatment-building + recipe hydro-plant-3 1 + product aluminium-plate 16 concrete-brick 60 hydro-plant-2 1 advanced-circuit 12 brass-pipe 48 +induction-furnace-2 angels-induction-furnace + recipe induction-furnace-2 1 + product clay-brick 25 steel-plate 15 induction-furnace 1 steel-gear-wheel 9 electronic-circuit 5 steel-pipe 12 +liquid-ethylbenzene-catalyst petrochem-chemistry + recipe liquid-ethylbenzene 80 gas-hydrogen-fluoride 20 + product gas-benzene 50 gas-ethylene 50 liquid-hydrofluoric-acid 20 +molten-glass-smelting angels-glass-casting + recipe liquid-molten-glass 120 + product solid-glass-mixture 12 +angels-solder-smelting-1 angels-solder-casting + recipe liquid-molten-solder 120 + product angels-solder-mixture 12 +angels-solder-smelting-2 angels-solder-casting + recipe liquid-molten-solder 240 + product ingot-lead 12 ingot-tin 12 +angels-solder-smelting-3 angels-solder-casting + recipe liquid-molten-solder 240 + product ingot-tin 12 ingot-zinc 12 +angels-solder-smelting-4 angels-solder-casting + recipe liquid-molten-solder 360 + product ingot-copper 12 ingot-silver 12 ingot-tin 12 +liquifier petrochem-buildings-electrolyser + recipe liquifier 1 + product stone-brick 10 iron-plate 6 basic-circuit-board 2 pipe 6 +liquifier-2 petrochem-buildings-electrolyser + recipe liquifier-2 1 + product clay-brick 10 bronze-alloy 6 liquifier 1 electronic-circuit 2 bronze-pipe 6 +liquifier-3 petrochem-buildings-electrolyser + recipe liquifier-3 1 + product aluminium-plate 8 concrete-brick 10 liquifier-2 1 advanced-circuit 2 brass-pipe 6 +liquifier-4 petrochem-buildings-electrolyser + recipe liquifier-4 1 + product reinforced-concrete-brick 10 titanium-plate 8 liquifier-3 1 processing-unit 2 titanium-pipe 6 +lithium-chloride angels-alloys + recipe solid-lithium 1 + product lithia-water 25 +lithium angels-alloys + recipe lithium 1 + product solid-lithium 1 +lithium-cobalt-oxide angels-alloys + recipe lithium-cobalt-oxide 2 + product cobalt-oxide 1 lithium 1 +lithium-water-electrolysis angels-alloys + recipe lithium-perchlorate 1 solid-salt 1 gas-hydrogen 20 + product solid-lithium 1 solid-sodium-perchlorate 1 +crawler-locomotive-wagon angels-vehicle-train-crawler + recipe crawler-locomotive-wagon 1 + product steel-plate 35 engine-unit 25 electronic-circuit 15 locomotive 1 +crawler-locomotive-wagon-2 angels-vehicle-train-crawler + recipe crawler-locomotive-wagon-2 1 + product steel-plate 40 engine-unit 30 crawler-locomotive-wagon 1 speed-module 1 effectivity-module 1 +crawler-locomotive-wagon-3 angels-vehicle-train-crawler + recipe crawler-locomotive-wagon-3 1 + product electric-engine-unit 40 low-density-structure 40 crawler-locomotive-wagon-2 1 speed-module-2 1 effectivity-module-2 1 +crawler-locomotive-wagon-4 angels-vehicle-train-crawler + recipe crawler-locomotive-wagon-4 1 + product electric-engine-unit 45 low-density-structure 60 crawler-locomotive-wagon-3 1 speed-module-3 1 effectivity-module-3 1 +crawler-locomotive-wagon-5 angels-vehicle-train-crawler + recipe crawler-locomotive-wagon-5 1 + product electric-engine-unit 50 rocket-control-unit 2 low-density-structure 80 crawler-locomotive-wagon-4 1 +logistic-science-pack science-pack + recipe logistic-science-pack 1 + product basic-transport-belt 1 inserter 1 +storage-tank angels-fluid-tanks + recipe storage-tank 1 + product iron-plate 20 steel-plate 5 bob-small-inline-storage-tank 1 +bob-storage-tank-all-corners angels-fluid-tanks + recipe bob-storage-tank-all-corners 1 + product iron-plate 20 steel-plate 5 bob-small-storage-tank 1 pipe 2 +storage-tank-2 angels-fluid-tanks + recipe storage-tank-2 1 + product invar-alloy 20 storage-tank 1 +bob-storage-tank-all-corners-2 angels-fluid-tanks + recipe bob-storage-tank-all-corners-2 1 + product invar-alloy 20 bob-storage-tank-all-corners 1 steel-pipe 4 +storage-tank-3 angels-fluid-tanks + recipe storage-tank-3 1 + product titanium-plate 20 storage-tank-2 1 +bob-storage-tank-all-corners-3 angels-fluid-tanks + recipe bob-storage-tank-all-corners-3 1 + product titanium-plate 20 bob-storage-tank-all-corners-2 1 titanium-pipe 4 +storage-tank-4 angels-fluid-tanks + recipe storage-tank-4 1 + product nitinol-alloy 20 storage-tank-3 1 +bob-storage-tank-all-corners-4 angels-fluid-tanks + recipe bob-storage-tank-all-corners-4 1 + product nitinol-alloy 20 bob-storage-tank-all-corners-3 1 nitinol-pipe 4 +biter-medium-eggsperiment bio-biter-egg + recipe biter-medium-egg 1 + product bio-puffer-egg-4 1 crystal-seed 1 crystal-enhancer 1 crystal-splinter-raw 1 +biter-medium-keeping bio-biter + recipe biter-medium 3 biter-medium 1 crystal-shard-raw 4 + product biter-medium 4 bio-alien-processed-meat 3 liquid-nutrient-pulp 40 +biter-medium-butchering bio-biter-butchery + recipe bio-raw-meat 1 crystal-shard-raw 1 + product biter-medium 1 +biter-medium-breeding bio-biter + recipe biter-queen-medium 1 biter-queen-medium 1 biter-medium-egg 1 biter-medium-egg 1 + product biter-queen-medium 2 bio-alien-processed-meat 2 liquid-nutrient-pulp 40 +biter-medium bio-biter-egg + recipe biter-medium 1 biter-queen-medium 1 + product biter-medium-egg 1 bio-alien-processed-meat 1 liquid-nutrient-pulp 20 +biter-queen-medium-butchering bio-biter-butchery + recipe bio-raw-meat 1 - 2 crystal-shard-raw 1 + product biter-queen-medium 1 +fill-mineral-sludge-barrel angels-fluid-control-ore-sorting-fluid + recipe mineral-sludge-barrel 1 + product empty-barrel 1 mineral-sludge 50 +empty-mineral-sludge-barrel angels-fluid-control-ore-sorting-fluid + recipe empty-barrel 1 mineral-sludge 50 + product mineral-sludge-barrel 1 +stone-mixing-furnace bob-smelting-machine + recipe stone-mixing-furnace 1 + product stone 5 +steel-mixing-furnace bob-smelting-machine + recipe steel-mixing-furnace 1 + product stone-brick 10 steel-plate 6 +fluid-mixing-furnace bob-smelting-machine + recipe fluid-mixing-furnace 1 + product steel-mixing-furnace 1 steel-pipe 2 +mold-expendable angels-mold-casting + recipe mold-expendable 1 slag 1 + product motor-casing-0 1 solid-sand 40 +engine-unit angels-basic-intermediate + recipe engine-unit 1 + product steel-plate 1 iron-gear-wheel 1 pipe 2 +electric-engine-unit angels-basic-intermediate + recipe electric-engine-unit 1 + product engine-unit 1 electronic-circuit 2 lubricant 15 +nutrients-refining-1 bio-processor-nutrient + recipe liquid-fuel-oil 40 gas-acetone 40 gas-synthesis 20 + product liquid-nutrient-pulp 100 +nutrients-refining-2 bio-processor-nutrient + recipe liquid-fuel-oil 60 liquid-glycerol 40 + product liquid-nutrient-pulp 100 +nutrients-refining-3 bio-processor-nutrient + recipe gas-acetone 60 gas-ethanol 30 gas-butane 10 + product liquid-nutrient-pulp 100 +liquid-raw-vegetable-oil-filtering-1 bio-processor-press-vegetables + recipe filter-frame 1 liquid-vegetable-oil 160 liquid-nutrient-pulp 40 + product filter-coal 1 liquid-raw-vegetable-oil 100 water-purified 100 +liquid-raw-fish-oil-filtering-1 bio-processor-press-fish + recipe filter-frame 1 liquid-fish-oil 100 liquid-mineral-oil 100 + product filter-coal 1 liquid-raw-fish-oil 150 thermal-water 50 +liquid-raw-vegetable-oil-filtering-2 bio-processor-press-vegetables + recipe filter-ceramic-used 1 liquid-vegetable-oil 180 liquid-nutrient-pulp 20 + product filter-ceramic 1 liquid-raw-vegetable-oil 100 water-purified 100 +liquid-raw-fish-oil-filtering-2 bio-processor-press-fish + recipe filter-ceramic-used 1 liquid-fish-oil 125 liquid-mineral-oil 75 + product filter-ceramic 1 liquid-raw-fish-oil 150 thermal-water 50 +liquid-vegetable-oil-refining bio-processor-press-vegetables + recipe liquid-fuel-oil 70 liquid-mineral-oil 30 + product liquid-vegetable-oil 100 +liquid-fish-oil-refining bio-processor-press-fish + recipe liquid-fermentation-raw 40 lubricant 60 + product liquid-fish-oil 100 +advanced-liquid-fish-oil-refining bio-processor-press-fish + recipe liquid-fermentation-raw 75 liquid-mineral-oil 25 + product liquid-fish-oil 100 +oil-refinery petrochem-buildings-oil-refinery + recipe oil-refinery 1 + product steel-plate 6 steel-gear-wheel 12 electronic-circuit 4 steel-pipe 36 +oil-refinery-2 petrochem-buildings-oil-refinery + recipe oil-refinery-2 1 + product aluminium-plate 8 oil-refinery 1 brass-gear-wheel 12 advanced-circuit 4 brass-pipe 36 +oil-refinery-3 petrochem-buildings-oil-refinery + recipe oil-refinery-3 1 + product titanium-plate 8 oil-refinery-2 1 titanium-gear-wheel 12 processing-unit 4 titanium-pipe 36 +oil-refinery-4 petrochem-buildings-oil-refinery + recipe oil-refinery-4 1 + product tungsten-plate 8 oil-refinery-3 1 tungsten-gear-wheel 12 advanced-processing-unit 4 tungsten-pipe 36 +oil-refining petrochem-carbon-oil-feed + recipe solid-oil-residual 1 liquid-mineral-oil 20 liquid-fuel-oil 30 liquid-naphtha 50 + product crude-oil 100 +ore-crusher ore-crusher + recipe ore-crusher 1 + product burner-ore-crusher 1 stone-brick 15 iron-plate 9 iron-gear-wheel 6 +ore-floatation-cell-2 ore-floatation + recipe ore-floatation-cell-2 1 + product ore-floatation-cell 1 aluminium-plate 16 concrete-brick 40 advanced-circuit 8 brass-pipe 12 +ore-leaching-plant-2 ore-leaching + recipe ore-leaching-plant-2 1 + product ore-leaching-plant 1 reinforced-concrete-brick 40 titanium-plate 16 processing-unit 8 titanium-pipe 12 +ore-processing-machine-2 angels-processing-machine + recipe ore-processing-machine-2 1 + product ore-processing-machine 1 aluminium-plate 8 concrete-brick 20 brass-gear-wheel 6 +ore-refinery-2 ore-refining + recipe ore-refinery-2 1 + product ore-refinery 1 reinforced-concrete-brick 100 tungsten-plate 48 advanced-processing-unit 12 +ore-sorting-facility-2 ore-sorter + recipe ore-sorting-facility-2 1 + product ore-sorting-facility 1 clay-brick 60 steel-plate 36 steel-gear-wheel 24 electronic-circuit 12 +pellet-press-2 angels-pellet-press + recipe pellet-press-2 1 + product pellet-press 1 reinforced-concrete-brick 10 titanium-plate 8 titanium-gear-wheel 12 +ap-bullet angels-physical-ad + recipe ap-bullet 1 + product ap-bullet-projectile 1 cordite 1 bullet-casing 1 +ap-bullet-magazine angels-physical-ae + recipe ap-bullet-magazine 1 + product ap-bullet 5 magazine 1 +ap-bullet-projectile angels-physical-ac + recipe ap-bullet-projectile 2 + product copper-plate 1 alien-blue-alloy 1 +bob-piercing-rocket angels-explosion-bb + recipe bob-piercing-rocket 1 + product piercing-rocket-warhead 1 rocket-body 1 +piercing-rocket-warhead angels-explosion-ba + recipe piercing-rocket-warhead 1 + product steel-plate 1 alien-blue-alloy 2 +shotgun-ap-shell angels-physical-bb + recipe shotgun-ap-shell 1 + product alien-blue-alloy 1 cordite 1 shotgun-shell-casing 1 +cannon-turret-shell-2 angels-physical-bc + recipe cannon-turret-shell-2 1 + product coal 4 piercing-shotgun-shell 1 +bob-roboport-2 angels-roboport-b + recipe bob-roboport-2 1 + product aluminium-plate 15 roboport 1 roboport-antenna-2 5 roboport-door-2 1 roboport-chargepad-2 4 +bob-roboport-3 angels-roboport-c + recipe bob-roboport-3 1 + product titanium-plate 15 bob-roboport-2 1 roboport-antenna-3 5 roboport-door-3 1 roboport-chargepad-3 4 +bob-roboport-4 angels-roboport-d + recipe bob-roboport-4 1 + product nitinol-alloy 15 bob-roboport-3 1 roboport-antenna-4 5 roboport-door-4 1 roboport-chargepad-4 4 +roboport angels-roboport-a + recipe roboport 1 + product steel-plate 15 roboport-antenna-1 5 roboport-door-1 1 roboport-chargepad-1 4 +bob-logistic-zone-expander angels-roboport-a + recipe bob-logistic-zone-expander 1 + product steel-plate 5 roboport-antenna-1 3 +bob-logistic-zone-expander-2 angels-roboport-b + recipe bob-logistic-zone-expander-2 1 + product aluminium-plate 5 bob-logistic-zone-expander 1 roboport-antenna-2 3 +bob-logistic-zone-expander-3 angels-roboport-c + recipe bob-logistic-zone-expander-3 1 + product titanium-plate 5 bob-logistic-zone-expander-2 1 roboport-antenna-3 3 +bob-logistic-zone-expander-4 angels-roboport-d + recipe bob-logistic-zone-expander-4 1 + product nitinol-alloy 5 bob-logistic-zone-expander-3 1 roboport-antenna-4 3 +bob-robochest angels-roboport-a + recipe bob-robochest 1 + product steel-chest 1 roboport-antenna-1 1 roboport-door-1 1 roboport-chargepad-1 1 +bob-robochest-2 angels-roboport-b + recipe bob-robochest-2 1 + product aluminium-plate 8 bob-robochest 1 roboport-door-2 1 roboport-chargepad-2 1 +bob-robochest-3 angels-roboport-c + recipe bob-robochest-3 1 + product titanium-plate 8 bob-robochest-2 1 roboport-door-3 1 roboport-chargepad-3 1 +bob-robochest-4 angels-roboport-d + recipe bob-robochest-4 1 + product nitinol-alloy 8 bob-robochest-3 1 roboport-door-4 1 roboport-chargepad-4 1 +bob-robo-charge-port angels-roboport-a + recipe bob-robo-charge-port 1 + product steel-plate 10 roboport-antenna-1 1 roboport-chargepad-1 4 +bob-robo-charge-port-2 angels-roboport-b + recipe bob-robo-charge-port-2 1 + product aluminium-plate 10 bob-robo-charge-port 1 roboport-chargepad-2 4 +bob-robo-charge-port-3 angels-roboport-c + recipe bob-robo-charge-port-3 1 + product titanium-plate 10 bob-robo-charge-port-2 1 roboport-chargepad-3 4 +bob-robo-charge-port-4 angels-roboport-d + recipe bob-robo-charge-port-4 1 + product nitinol-alloy 10 bob-robo-charge-port-3 1 roboport-chargepad-4 4 +bob-robo-charge-port-large angels-roboport-a + recipe bob-robo-charge-port-large 1 + product steel-plate 15 roboport-antenna-1 1 roboport-chargepad-1 9 +bob-robo-charge-port-large-2 angels-roboport-b + recipe bob-robo-charge-port-large-2 1 + product aluminium-plate 15 bob-robo-charge-port-large 1 roboport-chargepad-2 9 +bob-robo-charge-port-large-3 angels-roboport-c + recipe bob-robo-charge-port-large-3 1 + product titanium-plate 15 bob-robo-charge-port-large-2 1 roboport-chargepad-3 9 +bob-robo-charge-port-large-4 angels-roboport-d + recipe bob-robo-charge-port-large-4 1 + product nitinol-alloy 15 bob-robo-charge-port-large-3 1 roboport-chargepad-4 9 +powder-mixer-2 angels-powder-mixer + recipe powder-mixer-2 1 + product powder-mixer 1 aluminium-plate 4 concrete-brick 5 brass-gear-wheel 3 +bauxite-ore-processing angels-aluminium + recipe processed-aluminium 2 + product bauxite-ore 4 +chrome-ore-processing angels-chrome + recipe processed-chrome 2 + product chrome-ore 4 +cobalt-ore-processing angels-cobalt + recipe processed-cobalt 2 + product cobalt-ore 4 +copper-ore-processing angels-copper + recipe processed-copper 2 + product copper-ore 4 +gold-ore-processing angels-gold + recipe processed-gold 2 + product gold-ore 4 +iron-ore-processing angels-iron + recipe processed-iron 2 + product iron-ore 4 +lead-ore-processing angels-lead + recipe processed-lead 2 + product lead-ore 4 +manganese-ore-processing angels-manganese + recipe processed-manganese 2 + product manganese-ore 4 +nickel-ore-processing angels-nickel + recipe processed-nickel 2 + product nickel-ore 4 +platinum-ore-processing angels-platinum + recipe processed-platinum 2 + product platinum-ore 4 +silica-ore-processing angels-silicon + recipe processed-silica 2 + product quartz 4 +silver-ore-processing angels-silver + recipe processed-silver 2 + product silver-ore 4 +tin-ore-processing angels-tin + recipe processed-tin 2 + product tin-ore 4 +titanium-ore-processing angels-titanium + recipe processed-titanium 2 + product rutile-ore 4 +tungsten-ore-processing angels-tungsten + recipe processed-tungsten 2 + product tungsten-ore 4 +zinc-ore-processing angels-zinc + recipe processed-zinc 2 + product zinc-ore 4 +fill-liquid-cellulose-acetate-mixture-barrel angels-fluid-control-bio-plastic + recipe liquid-cellulose-acetate-mixture-barrel 1 + product empty-barrel 1 liquid-cellulose-acetate-mixture 50 +empty-liquid-cellulose-acetate-mixture-barrel angels-fluid-control-bio-plastic + recipe empty-barrel 1 liquid-cellulose-acetate-mixture 50 + product liquid-cellulose-acetate-mixture-barrel 1 +fill-liquid-cellulose-acetate-barrel angels-fluid-control-bio-plastic + recipe liquid-cellulose-acetate-barrel 1 + product empty-barrel 1 liquid-cellulose-acetate 50 +empty-liquid-cellulose-acetate-barrel angels-fluid-control-bio-plastic + recipe empty-barrel 1 liquid-cellulose-acetate 50 + product liquid-cellulose-acetate-barrel 1 +fill-liquid-fermentation-raw-barrel angels-fluid-control-bio-processor-fermentation + recipe liquid-fermentation-raw-barrel 1 + product empty-barrel 1 liquid-fermentation-raw 50 +empty-liquid-fermentation-raw-barrel angels-fluid-control-bio-processor-fermentation + recipe empty-barrel 1 liquid-fermentation-raw 50 + product liquid-fermentation-raw-barrel 1 +fill-liquid-nutrient-pulp-barrel angels-fluid-control-bio-processor-nutrient + recipe liquid-nutrient-pulp-barrel 1 + product empty-barrel 1 liquid-nutrient-pulp 50 +empty-liquid-nutrient-pulp-barrel angels-fluid-control-bio-processor-nutrient + recipe empty-barrel 1 liquid-nutrient-pulp 50 + product liquid-nutrient-pulp-barrel 1 +fill-liquid-acetic-acid-barrel angels-fluid-control-bio-processor-fermentation + recipe liquid-acetic-acid-barrel 1 + product empty-canister 1 liquid-acetic-acid 50 +empty-liquid-acetic-acid-barrel angels-fluid-control-bio-processor-fermentation + recipe empty-canister 1 liquid-acetic-acid 50 + product liquid-acetic-acid-barrel 1 +fill-liquid-propionic-acid-barrel angels-fluid-control-bio-plastic + recipe liquid-propionic-acid-barrel 1 + product empty-canister 1 liquid-propionic-acid 50 +empty-liquid-propionic-acid-barrel angels-fluid-control-bio-plastic + recipe empty-canister 1 liquid-propionic-acid 50 + product liquid-propionic-acid-barrel 1 +fill-liquid-raw-vegetable-oil-barrel angels-fluid-control-bio-processor-press-vegetables + recipe liquid-raw-vegetable-oil-barrel 1 + product empty-barrel 1 liquid-raw-vegetable-oil 50 +empty-liquid-raw-vegetable-oil-barrel angels-fluid-control-bio-processor-press-vegetables + recipe empty-barrel 1 liquid-raw-vegetable-oil 50 + product liquid-raw-vegetable-oil-barrel 1 +fill-liquid-vegetable-oil-barrel angels-fluid-control-bio-processor-press-vegetables + recipe liquid-vegetable-oil-barrel 1 + product empty-barrel 1 liquid-vegetable-oil 50 +empty-liquid-vegetable-oil-barrel angels-fluid-control-bio-processor-press-vegetables + recipe empty-barrel 1 liquid-vegetable-oil 50 + product liquid-vegetable-oil-barrel 1 +fill-liquid-acetic-anhydride-barrel angels-fluid-control-bio-processor-fermentation + recipe liquid-acetic-anhydride-barrel 1 + product empty-barrel 1 liquid-acetic-anhydride 50 +empty-liquid-acetic-anhydride-barrel angels-fluid-control-bio-processor-fermentation + recipe empty-barrel 1 liquid-acetic-anhydride 50 + product liquid-acetic-anhydride-barrel 1 +fill-gas-ethanol-barrel angels-fluid-control-bio-processor-fermentation + recipe gas-ethanol-barrel 1 + product gas-canister 1 gas-ethanol 50 +empty-gas-ethanol-barrel angels-fluid-control-bio-processor-fermentation + recipe gas-canister 1 gas-ethanol 50 + product gas-ethanol-barrel 1 +pump angels-fluid-control + recipe pump 1 + product steel-plate 1 engine-unit 1 copper-pipe 1 +bob-pump-2 angels-fluid-control + recipe bob-pump-2 1 + product aluminium-plate 1 pump 1 bronze-pipe 1 +bob-pump-3 angels-fluid-control + recipe bob-pump-3 1 + product titanium-plate 1 bob-pump-2 1 brass-pipe 1 +bob-pump-4 angels-fluid-control + recipe bob-pump-4 1 + product nitinol-alloy 1 bob-pump-3 1 copper-tungsten-pipe 1 +red-fiber-algae bio-processing-red + recipe red-cellulose-fiber 5 + product algae-red 10 +stone-wall angels-exploration-walls + recipe stone-wall 1 + product stone-brick 5 +gate angels-exploration-walls + recipe gate 1 + product steel-plate 2 electronic-circuit 2 stone-wall 1 +repair-pack angels-chests-small-a + recipe repair-pack 1 + product iron-gear-wheel 2 basic-circuit-board 2 +repair-pack-2 angels-chests-small-a + recipe repair-pack-2 1 + product steel-gear-wheel 2 electronic-circuit 2 +repair-pack-3 angels-chests-small-a + recipe repair-pack-3 1 + product invar-alloy 2 brass-gear-wheel 2 advanced-circuit 2 +repair-pack-4 angels-chests-small-a + recipe repair-pack-4 1 + product titanium-plate 2 titanium-gear-wheel 2 titanium-bearing 1 processing-unit 2 +repair-pack-5 angels-chests-small-a + recipe repair-pack-5 1 + product tungsten-carbide 2 nitinol-gear-wheel 2 nitinol-bearing 1 advanced-processing-unit 2 +fill-liquid-resin-barrel angels-fluid-control-petrochem-solids-fluids + recipe liquid-resin-barrel 1 + product empty-barrel 1 liquid-resin 50 +liquid-resin-1 petrochem-solids + recipe liquid-resin 10 + product gas-urea 20 gas-formaldehyde 20 +liquid-resin-2 petrochem-solids + recipe liquid-resin 20 + product gas-melamine 20 gas-formaldehyde 20 +liquid-resin-3 petrochem-solids + recipe liquid-resin 30 + product liquid-bisphenol-a 20 gas-epichlorhydrin 20 +empty-liquid-resin-barrel angels-fluid-control-petrochem-solids-fluids + recipe empty-barrel 1 liquid-resin 50 + product liquid-resin-barrel 1 +bob-resin-wood petrochem-solids + recipe resin 1 + product wood 9 +solid-resin petrochem-solids + recipe resin 4 + product liquid-resin 40 +liquid-rubber-1 petrochem-solids-2 + recipe liquid-rubber 10 + product liquid-styrene 20 gas-butadiene 20 +bob-rubber petrochem-solids-2 + recipe rubber 1 + product resin 3 +solid-rubber petrochem-solids-2 + recipe rubber 4 + product liquid-rubber 40 +insulated-cable petrochem-solids-2 + recipe insulated-cable 60 + product tinned-copper-cable 60 rubber 1 +laser-rifle-battery-ruby angels-electric-c + recipe laser-rifle-battery-ruby 1 + product battery 4 laser-rifle-battery-case 1 ruby-5 1 +solid-saw bio-wood + recipe solid-saw 1 + product iron-plate 1 +solid-crystal-tipped-saw bio-wood + recipe solid-crystal-tipped-saw 1 + product solid-saw 1 crystal-splinter-harmonic 1 +solid-crystal-full-saw bio-wood + recipe solid-crystal-full-saw 1 + product solid-crystal-tipped-saw 1 crystal-shard-harmonic 1 +sintering-oven-2 angels-sintering-oven + recipe sintering-oven-2 1 + product clay-brick 45 bronze-alloy 24 sintering-oven 1 electronic-circuit 5 +slow-accumulator angels-power-accumulator + recipe slow-accumulator 1 + product iron-plate 2 battery 4 electronic-circuit 4 +slow-accumulator-2 angels-power-accumulator + recipe slow-accumulator-2 1 + product steel-plate 2 lithium-ion-battery 4 advanced-circuit 4 slow-accumulator 1 +slow-accumulator-3 angels-power-accumulator + recipe slow-accumulator-3 1 + product titanium-plate 2 silver-zinc-battery 4 processing-unit 4 slow-accumulator-2 1 +solid-sodium-carbonate petrochem-sodium + recipe solid-sodium-carbonate 5 + product solid-sodium 5 gas-carbon-dioxide 50 +solid-sodium-cyanide petrochem-sodium + recipe solid-sodium-cyanide 5 catalyst-metal-carrier 1 gas-hydrogen 30 + product solid-carbon 1 solid-sodium 5 catalyst-metal-green 1 gas-ammonia 30 +sodium-cobaltate petrochem-sodium + recipe sodium-cobaltate 5 gas-oxygen 200 gas-carbon-dioxide 150 + product cobalt-oxide 5 solid-sodium-carbonate 6 +solid-fuel-naphtha petrochem-fuel + recipe solid-fuel 2 + product solid-coke 1 liquid-naphtha 100 +solid-lime angels-stone + recipe solid-lime 4 gas-carbon-dioxide 50 + product solid-limestone 4 +solid-salt-from-saline water-salination + recipe solid-salt 25 + product water-saline 1000 +solid-sulfur petrochem-sulfur + recipe sulfur 3 + product gas-hydrogen-sulfide 60 gas-oxygen 40 +antron angels-vehicle-spidertron + recipe antron 1 + product mech-frame 1 mech-leg 6 gun-turret 2 +tankotron angels-vehicle-spidertron + recipe tankotron 1 + product mech-armor-plate 5 mech-frame 1 mech-leg 6 spidertron-cannon 2 +spidertron angels-vehicle-spidertron + recipe spidertron 1 + product rtg 2 mech-armor-plate 10 mech-frame 1 mech-leg 8 rocket-launcher 4 +heavy-spidertron angels-vehicle-spidertron + recipe heavy-spidertron 1 + product rtg 3 mech-armor-plate 20 mech-frame 1 mech-leg 8 rocket-launcher 8 +logistic-spidertron angels-vehicle-spidertron + recipe logistic-spidertron 1 + product titanium-chest 1 mech-armor-plate 5 mech-frame 1 mech-leg 8 gun-turret 2 +crystal-full-cutting bio-biter-processing-crystal-full + recipe crystal-full-blue-cut 1 crystal-full-red-cut 1 crystal-full-green-cut 1 crystal-powder 1 + product crystal-full-raw 1 +crystal-shard-cutting bio-biter-processing-crystal-shard + recipe crystal-shard-blue-cut 1 crystal-shard-red-cut 1 crystal-shard-green-cut 1 crystal-powder 1 + product crystal-shard-raw 1 +crystal-splinter-cutting bio-biter-processing-crystal-splinter + recipe crystal-splinter-blue-cut 1 crystal-splinter-red-cut 1 crystal-splinter-green-cut 1 crystal-powder 1 + product crystal-splinter-raw 1 +steam-cracking-ethane petrochem-cracking + recipe gas-ethylene 80 gas-residual 20 + product gas-ethane 60 steam 60 +steel-chemical-furnace smelting-machine + recipe steel-furnace 1 + product stone-brick 10 steel-plate 6 steel-pipe 5 +steel-furnace smelting-machine + recipe steel-furnace 1 + product stone-brick 10 steel-plate 6 +fluid-furnace smelting-machine + recipe fluid-furnace 1 + product steel-furnace 1 steel-pipe 2 +strand-casting-machine-2 angels-strand-casting-machine + recipe strand-casting-machine-2 1 + product aluminium-plate 24 concrete-brick 15 strand-casting-machine 1 brass-gear-wheel 12 advanced-circuit 3 brass-pipe 18 +artillery-turret angels-artillery-a + recipe artillery-turret 1 + product concrete 60 steel-plate 60 iron-gear-wheel 40 advanced-circuit 20 +flamethrower-turret angels-fire + recipe flamethrower-turret 1 + product steel-plate 20 engine-unit 5 flamethrower 1 pipe 10 +angels-cannon-turret angels-physical-ba + recipe angels-cannon-turret 1 + product steel-plate 15 electronic-circuit 10 shotgun 1 +bob-sniper-turret-1 angels-physical-ab + recipe bob-sniper-turret-1 1 + product copper-plate 5 iron-plate 10 rifle 1 +gun-turret angels-physical-aa + recipe gun-turret 1 + product copper-plate 5 iron-plate 10 submachine-gun 1 +laser-turret angels-electric-a + recipe laser-turret 1 + product steel-plate 20 battery 12 electronic-circuit 20 +bob-plasma-turret-1 angels-electric-b + recipe bob-plasma-turret-1 1 + product steel-plate 60 alien-artifact 20 battery 48 electronic-circuit 80 laser-rifle 1 +angels-rocket-turret angels-explosion-a + recipe angels-rocket-turret 1 + product steel-plate 20 electronic-circuit 10 rocket-launcher 4 +bob-artillery-turret-2 angels-artillery-a + recipe bob-artillery-turret-2 1 + product silicon-nitride 60 titanium-plate 60 titanium-gear-wheel 40 processing-unit 20 artillery-turret 1 +bob-gun-turret-2 angels-physical-aa + recipe bob-gun-turret-2 1 + product steel-plate 20 steel-gear-wheel 10 gun-turret 1 +bob-sniper-turret-2 angels-physical-ab + recipe bob-sniper-turret-2 1 + product steel-plate 20 invar-alloy 20 cobalt-steel-gear-wheel 20 cobalt-steel-bearing 20 bob-sniper-turret-1 1 +bob-laser-turret-2 angels-electric-a + recipe bob-laser-turret-2 1 + product steel-plate 20 advanced-circuit 20 laser-turret 1 sapphire-5 1 +bob-plasma-turret-2 angels-electric-b + recipe bob-plasma-turret-2 1 + product steel-plate 80 alien-artifact 30 battery 48 advanced-circuit 80 bob-plasma-turret-1 1 +bob-artillery-turret-3 angels-artillery-a + recipe bob-artillery-turret-3 1 + product tungsten-carbide 60 nitinol-alloy 60 nitinol-gear-wheel 40 advanced-processing-unit 20 bob-artillery-turret-2 1 +angels-bio-turret angels-fire + recipe angels-bio-turret 1 + product steel-plate 20 engine-unit 5 bio-gun 1 pipe 10 +bob-gun-turret-3 angels-physical-aa + recipe bob-gun-turret-3 1 + product invar-alloy 20 brass-gear-wheel 10 steel-bearing 10 bob-gun-turret-2 1 +bob-sniper-turret-3 angels-physical-ab + recipe bob-sniper-turret-3 1 + product titanium-plate 20 nitinol-alloy 20 titanium-gear-wheel 20 nitinol-bearing 20 bob-sniper-turret-2 1 +bob-laser-turret-3 angels-electric-a + recipe bob-laser-turret-3 1 + product invar-alloy 20 lithium-ion-battery 12 bob-laser-turret-2 1 emerald-5 1 +bob-plasma-turret-3 angels-electric-b + recipe bob-plasma-turret-3 1 + product invar-alloy 80 alien-artifact-orange 10 alien-artifact-blue 10 lithium-ion-battery 48 advanced-circuit 80 bob-plasma-turret-2 1 +bob-gun-turret-4 angels-physical-aa + recipe bob-gun-turret-4 1 + product titanium-plate 20 titanium-gear-wheel 10 titanium-bearing 10 bob-gun-turret-3 1 +bob-laser-turret-4 angels-electric-a + recipe bob-laser-turret-4 1 + product titanium-plate 20 lithium-ion-battery 12 processing-unit 20 bob-laser-turret-3 1 topaz-5 1 +bob-plasma-turret-4 angels-electric-b + recipe bob-plasma-turret-4 1 + product titanium-plate 80 alien-artifact-yellow 10 alien-artifact-purple 10 lithium-ion-battery 48 processing-unit 80 bob-plasma-turret-3 1 +bob-gun-turret-5 angels-physical-aa + recipe bob-gun-turret-5 1 + product nitinol-alloy 20 nitinol-gear-wheel 10 nitinol-bearing 10 bob-gun-turret-4 1 +bob-laser-turret-5 angels-electric-a + recipe bob-laser-turret-5 1 + product nitinol-alloy 20 silver-zinc-battery 12 advanced-processing-unit 20 bob-laser-turret-4 1 diamond-5 1 +bob-plasma-turret-5 angels-electric-b + recipe bob-plasma-turret-5 1 + product nitinol-alloy 80 alien-artifact-red 10 alien-artifact-green 10 silver-zinc-battery 48 advanced-processing-unit 80 bob-plasma-turret-4 1 +basic-underground-belt bob-logistic-tier-0 + recipe basic-underground-belt 2 + product stone 2 wood 2 basic-transport-belt 5 +underground-belt bob-logistic-tier-1 + recipe underground-belt 2 + product tin-plate 14 iron-gear-wheel 20 basic-underground-belt 2 +fast-underground-belt bob-logistic-tier-2 + recipe fast-underground-belt 2 + product bronze-alloy 14 steel-gear-wheel 20 underground-belt 2 +express-underground-belt bob-logistic-tier-3 + recipe express-underground-belt 2 + product aluminium-plate 14 cobalt-steel-gear-wheel 20 cobalt-steel-bearing 20 fast-underground-belt 2 +turbo-underground-belt bob-logistic-tier-4 + recipe turbo-underground-belt 2 + product titanium-plate 14 titanium-gear-wheel 20 titanium-bearing 20 express-underground-belt 2 +ultimate-underground-belt bob-logistic-tier-5 + recipe ultimate-underground-belt 2 + product nitinol-alloy 14 nitinol-gear-wheel 20 nitinol-bearing 20 turbo-underground-belt 2 +water-purification water-treatment + recipe water-saline 20 water-purified 100 + product water 150 +red-wire circuit-network + recipe red-wire 1 + product insulated-cable 1 +green-wire circuit-network + recipe green-wire 1 + product insulated-cable 1 +alien-artifact-yellow-from-basic bio-processing-alien-large-convert + recipe alien-artifact-yellow 5 + product alien-artifact-yellow 1 alien-artifact 5 +alien-artifact-yellow-from-small bio-processing-alien-large + recipe alien-artifact-yellow 1 + product small-alien-artifact-yellow 25 +alien-pre-artifact-yellow bio-processing-alien-pre + recipe alien-pre-artifact-yellow 1 + product seeded-dish 1 paste-gold 1 diamond-4 1 +small-alien-artifact-yellow bio-processing-alien-small + recipe small-alien-artifact-yellow 1 + product alien-pre-artifact-yellow 1 +angels-gathering-turret angels-electric-a + recipe angels-gathering-turret 1 + product steel-plate 30 engine-unit 5 iron-gear-wheel 15 pipe 10 +boiler-2 angels-power-steam-boiler + recipe boiler-2 1 + product steel-plate 5 boiler 1 steel-pipe 4 +desert-garden-cultivating-b farming-desert-seed + recipe desert-garden 2 + product solid-alienated-fertilizer 2 desert-garden 1 token-bio 30 water-mineralized 50 +heat-exchanger-2 angels-power-nuclear-heat-exchanger + recipe heat-exchanger-2 1 + product invar-alloy 10 heat-pipe-2 4 heat-exchanger 1 brass-pipe 4 +liquid-pulping-liquor bio-liquor + recipe liquid-pulping-liquor 100 + product gas-sulfur-dioxide 100 gas-oxygen 40 water 50 +paper-bleaching-1 bio-paper + recipe solid-paper 4 + product solid-wood-pulp 2 +sorting-desert-1 farming-desert + recipe solid-beans 12 + product desert-1 20 +sorting-swamp-1 farming-swamp + recipe solid-nuts 16 + product swamp-1 20 +sorting-temperate-1 farming-temperate + recipe solid-corn 10 + product temperate-1 20 +swamp-garden-cultivating-b farming-swamp-seed + recipe swamp-garden 2 + product solid-alienated-fertilizer 2 swamp-garden 1 token-bio 30 water-mineralized 50 +temperate-farm bio-processing-buildings-vegetabilis-a + recipe temperate-farm 1 + product aluminium-plate 32 concrete-brick 45 temperate-upgrade 1 crop-farm 1 advanced-circuit 2 brass-pipe 9 +temperate-garden-cultivating-b farming-temperate-seed + recipe temperate-garden 2 + product solid-alienated-fertilizer 2 temperate-garden 1 token-bio 30 water-mineralized 50 +fill-gas-methane-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-methane-barrel 1 + product gas-canister 1 gas-methane 50 +fill-liquid-fish-atmosphere-barrel angels-fluid-control-bio-fish + recipe liquid-fish-atmosphere-barrel 1 + product empty-barrel 1 liquid-fish-atmosphere 50 +fill-liquid-multi-phase-oil-barrel angels-fluid-control-petrochem-raw-fluids + recipe liquid-multi-phase-oil-barrel 1 + product empty-barrel 1 liquid-multi-phase-oil 50 +empty-gas-methane-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-methane 50 + product gas-methane-barrel 1 +empty-liquid-fish-atmosphere-barrel angels-fluid-control-bio-fish + recipe empty-barrel 1 liquid-fish-atmosphere 50 + product liquid-fish-atmosphere-barrel 1 +empty-liquid-multi-phase-oil-barrel angels-fluid-control-petrochem-raw-fluids + recipe empty-barrel 1 liquid-multi-phase-oil 50 + product liquid-multi-phase-oil-barrel 1 +steel-gear-wheel bob-gears + recipe steel-gear-wheel 1 + product steel-plate 1 +steel-bearing-ball bob-bearings + recipe steel-bearing-ball 12 + product steel-plate 1 +cobalt-steel-bearing-ball bob-bearings + recipe cobalt-steel-bearing-ball 12 + product cobalt-steel-alloy 1 +titanium-bearing-ball bob-bearings + recipe titanium-bearing-ball 12 + product titanium-plate 1 +ceramic-bearing-ball bob-bearings + recipe ceramic-bearing-ball 12 + product silicon-nitride 1 +nitinol-bearing-ball bob-bearings + recipe nitinol-bearing-ball 12 + product nitinol-alloy 1 +brown-liquor-recovery bio-liquor + recipe solid-sodium-sulfate 1 water-red-waste 50 + product solid-sodium-hydroxide 2 liquid-brown-liquor 50 +desert-garden-cultivating-a farming-desert-seed + recipe token-bio 32 + product desert-garden 1 +paper-bleaching-2 bio-paper + recipe solid-paper 5 solid-sodium-hypochlorite 2 + product solid-sodium-hydroxide 2 solid-wood-pulp 2 gas-chlorine 60 +sorting-desert-2 farming-desert + recipe solid-corn 12 + product desert-2 20 +sorting-swamp-2 farming-swamp + recipe solid-beans 14 + product swamp-2 20 +sorting-temperate-2 farming-temperate + recipe cellulose-fiber 22 + product temperate-2 20 +swamp-farm bio-processing-buildings-vegetabilis-a + recipe swamp-farm 1 + product aluminium-plate 32 concrete-brick 45 swamp-upgrade 1 crop-farm 1 advanced-circuit 2 brass-pipe 9 +swamp-garden-cultivating-a farming-swamp-seed + recipe token-bio 32 + product swamp-garden 1 +temperate-garden-cultivating-a farming-temperate-seed + recipe token-bio 32 + product temperate-garden 1 +fill-crude-oil-barrel angels-fluid-control-petrochem-raw-fluids + recipe crude-oil-barrel 1 + product empty-barrel 1 crude-oil 50 +fill-gas-ethane-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-ethane-barrel 1 + product gas-canister 1 gas-ethane 50 +fill-liquid-polluted-fish-atmosphere-barrel angels-fluid-control-bio-fish + recipe liquid-polluted-fish-atmosphere-barrel 1 + product empty-barrel 1 liquid-polluted-fish-atmosphere 50 +empty-crude-oil-barrel angels-fluid-control-petrochem-raw-fluids + recipe empty-barrel 1 crude-oil 50 + product crude-oil-barrel 1 +empty-gas-ethane-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-ethane 50 + product gas-ethane-barrel 1 +empty-liquid-polluted-fish-atmosphere-barrel angels-fluid-control-bio-fish + recipe empty-barrel 1 liquid-polluted-fish-atmosphere 50 + product liquid-polluted-fish-atmosphere-barrel 1 +brass-gear-wheel bob-gears + recipe brass-gear-wheel 1 + product brass-alloy 1 +steel-bearing bob-bearings + recipe steel-bearing 2 + product steel-plate 1 steel-bearing-ball 16 +cobalt-steel-bearing bob-bearings + recipe cobalt-steel-bearing 2 + product cobalt-steel-alloy 1 cobalt-steel-bearing-ball 16 +titanium-bearing bob-bearings + recipe titanium-bearing 2 + product titanium-plate 1 titanium-bearing-ball 16 lubricant 10 +ceramic-bearing bob-bearings + recipe ceramic-bearing 2 + product silicon-nitride 1 ceramic-bearing-ball 16 lubricant 10 +nitinol-bearing bob-bearings + recipe nitinol-bearing 2 + product nitinol-alloy 1 nitinol-bearing-ball 16 lubricant 10 +desert-farm bio-processing-buildings-vegetabilis-a + recipe desert-farm 1 + product aluminium-plate 32 concrete-brick 45 desert-upgrade 1 crop-farm 1 advanced-circuit 2 brass-pipe 9 +desert-garden-a farming-desert-seed + recipe token-bio 16 desert-1-seed 5 desert-2-seed 5 desert-3-seed 5 desert-4-seed 5 desert-5-seed 5 + product desert-garden 1 +paper-bleaching-3 bio-paper + recipe solid-paper 6 solid-sodium-carbonate 2 water-yellow-waste 100 + product solid-sodium-hydroxide 2 solid-wood-pulp 2 gas-oxygen 60 gas-sulfur-dioxide 40 water 100 +sorting-desert-3 farming-desert + recipe solid-pips 24 crystal-dust 4 + product desert-3 20 +sorting-swamp-3 farming-swamp + recipe solid-leafs 36 solid-nuts 6 + product swamp-3 20 +sorting-temperate-3 farming-temperate + recipe solid-leafs 32 cellulose-fiber 10 + product temperate-3 20 +swamp-garden-a farming-swamp-seed + recipe token-bio 16 swamp-1-seed 5 swamp-2-seed 5 swamp-3-seed 5 swamp-4-seed 5 swamp-5-seed 5 + product swamp-garden 1 +temperate-garden-a farming-temperate-seed + recipe token-bio 16 temperate-1-seed 5 temperate-2-seed 5 temperate-3-seed 5 temperate-4-seed 5 temperate-5-seed 5 + product temperate-garden 1 +fill-gas-butane-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-butane-barrel 1 + product gas-canister 1 gas-butane 50 +empty-gas-butane-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-butane 50 + product gas-butane-barrel 1 +cobalt-steel-gear-wheel bob-gears + recipe cobalt-steel-gear-wheel 1 + product cobalt-steel-alloy 1 +desert-garden-b farming-desert-seed + recipe desert-1-seed 5 desert-2-seed 5 desert-3-seed 5 desert-4-seed 5 desert-5-seed 5 + product desert-garden 1 +sorting-desert-4 farming-desert + recipe solid-fruit 12 cellulose-fiber 14 + product desert-4 20 +sorting-swamp-4 farming-swamp + recipe solid-leafs 24 crystal-dust 6 + product swamp-4 20 +sorting-temperate-4 farming-temperate + recipe solid-fruit 10 solid-pips 28 + product temperate-4 20 +swamp-garden-b farming-swamp-seed + recipe swamp-1-seed 5 swamp-2-seed 5 swamp-3-seed 5 swamp-4-seed 5 swamp-5-seed 5 + product swamp-garden 1 +temperate-garden-b farming-temperate-seed + recipe temperate-1-seed 5 temperate-2-seed 5 temperate-3-seed 5 temperate-4-seed 5 temperate-5-seed 5 + product temperate-garden 1 +fill-gas-propene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-propene-barrel 1 + product gas-canister 1 gas-propene 50 +empty-gas-propene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-propene 50 + product gas-propene-barrel 1 +titanium-gear-wheel bob-gears + recipe titanium-gear-wheel 1 + product titanium-plate 1 +garden-cultivating farming-temperate-seed + recipe temperate-garden 1 desert-garden 1 swamp-garden 1 + product solid-wood-pulp 5 token-bio 1 water-mineralized 50 +sorting-desert-5 farming-desert + recipe solid-nuts 4 solid-corn 12 crystal-dust 4 + product desert-5 20 +sorting-swamp-5 farming-swamp + recipe solid-fruit 16 solid-pips 12 alien-bacteria 4 + product swamp-5 20 +sorting-temperate-5 farming-temperate + recipe solid-corn 10 cellulose-fiber 8 crystal-dust 4 + product temperate-5 20 +tungsten-gear-wheel bob-gears + recipe tungsten-gear-wheel 1 + product tungsten-plate 1 +nitinol-gear-wheel bob-gears + recipe nitinol-gear-wheel 1 + product nitinol-alloy 1 +aerobic-fermentation bio-processor-fermentation + recipe solid-compost 1 liquid-acetic-acid 50 + product liquid-fermentation-raw 100 +angels-logistic-chest-passive-provider angels-chests-big + recipe angels-logistic-chest-passive-provider 1 + product iron-plate 10 electronic-circuit 5 angels-big-chest 1 +angels-warehouse-passive-provider angels-warehouse + recipe angels-warehouse-passive-provider 1 + product steel-plate 20 electronic-circuit 20 angels-warehouse 1 +angelsore7-crystallization-4 bob-gems-crystallization + recipe emerald-ore 1 + product catalysator-green 1 crystal-seedling 50 +battery-mk3-equipment angels-personal-equipment-power-c + recipe battery-mk3-equipment 1 + product lithium-ion-battery 5 battery-mk2-equipment 2 +big-electric-pole-3 angels-big-power-poles + recipe big-electric-pole-3 1 + product titanium-plate 5 insulated-cable 5 big-electric-pole-2 1 +bio-hatchery bio-processing-buildings-alien-a + recipe bio-hatchery 1 + product small-lamp 3 aluminium-plate 8 concrete-brick 10 advanced-circuit 4 +bio-processor bio-processing-buildings-vegetabilis-b + recipe bio-processor 1 + product clay-brick 25 steel-plate 15 steel-gear-wheel 12 electronic-circuit 8 +bob-artillery-wagon-3 angels-artillery + recipe bob-artillery-wagon-3 1 + product silicon-nitride 10 tungsten-carbide 10 nitinol-alloy 20 nitinol-gear-wheel 12 nitinol-bearing 8 advanced-processing-unit 20 bob-artillery-wagon-2 1 nitinol-pipe 16 +energy-shield-mk3-equipment angels-personal-equipment-combat-a + recipe energy-shield-mk3-equipment 1 + product alien-artifact 10 advanced-processing-unit 5 energy-shield-mk2-equipment 2 productivity-module-2 1 +exoskeleton-equipment-3 angels-personal-equipment-combat-c + recipe exoskeleton-equipment-3 1 + product titanium-plate 20 titanium-gear-wheel 30 titanium-bearing 30 advanced-processing-unit 10 exoskeleton-equipment-2 1 +fluid-generator-2 angels-power-fluid-generator + recipe fluid-generator-2 1 + product aluminium-plate 10 invar-alloy 5 brass-gear-wheel 10 steel-bearing 5 advanced-circuit 5 fluid-generator 1 brass-pipe 5 +fusion-reactor-equipment-3 angels-personal-equipment-power-b + recipe fusion-reactor-equipment-3 1 + product alien-artifact-yellow 15 alien-artifact-purple 15 advanced-processing-unit 50 fusion-reactor-equipment-2 1 speed-module-6 2 effectivity-module-6 2 productivity-module-6 2 +gas-methylamine petrochem-rocket + recipe gas-methylamine 200 water-purified 50 + product gas-methanol 50 gas-ammonia 250 +heat-pipe-3 angels-power-nuclear-heat-pipe + recipe heat-pipe-3 1 + product silver-plate 10 titanium-plate 5 +hogger-breeding-3 bio-hogger-breeding + recipe bio-hogger-3 2 bio-hogger-1 1 bio-hogger-2 1 bio-hogger-3 1 bio-hogger-4 1 bio-hogger-5 1 + product iron-plate 1 bio-hogger-3 2 liquid-nutrient-pulp 20 +hogger-butchery-3 bio-hogger-butchery + recipe bio-raw-meat 1 + product bio-hogger-3 1 +hogger-hogging-3 bio-hogger + recipe bio-hogger-3 3 - 5 copper-ore 10 + product iron-ore 10 iron-plate 1 bio-hogger-3 4 liquid-nutrient-pulp 20 +liquid-acetate-mixture bio-plastic + recipe liquid-cellulose-acetate-mixture 100 + product cellulose-fiber 10 liquid-acetic-acid 40 liquid-acetic-anhydride 40 liquid-sulfuric-acid 20 +logistic-chest-passive-provider angels-chests-small-b + recipe logistic-chest-passive-provider 1 + product electronic-circuit 3 advanced-circuit 1 steel-chest 1 +logistic-chest-passive-provider-2 angels-chests-small-c + recipe logistic-chest-passive-provider-2 1 + product advanced-circuit 3 processing-unit 1 brass-chest 1 +logistic-chest-passive-provider-3 angels-chests-small-d + recipe logistic-chest-passive-provider-3 1 + product processing-unit 3 advanced-processing-unit 1 titanium-chest 1 +medium-electric-pole-3 angels-medium-power-poles + recipe medium-electric-pole-3 1 + product titanium-plate 2 insulated-cable 2 medium-electric-pole-2 1 +night-vision-equipment-3 angels-personal-equipment-power-d + recipe night-vision-equipment-3 1 + product alien-artifact 10 advanced-processing-unit 5 night-vision-equipment-2 1 diamond-5 2 +nuclear-reactor-3 angels-power-nuclear-reactor-b + recipe nuclear-reactor-3 1 + product lead-plate 500 tungsten-carbide 250 advanced-processing-unit 500 heat-pipe-4 25 +ore-powderizer-3 ore-powderizer + recipe ore-powderizer-3 1 + product ore-powderizer-2 1 reinforced-concrete-brick 5 titanium-plate 4 titanium-gear-wheel 3 +paste-gold bio-processing-paste + recipe paste-gold 1 + product powder-gold 2 paste-cellulose 1 +personal-laser-defense-equipment-3 angels-personal-equipment-combat-b + recipe personal-laser-defense-equipment-3 1 + product invar-alloy 5 lithium-ion-battery 3 personal-laser-defense-equipment-2 1 emerald-5 1 +personal-roboport-antenna-equipment-3 angels-personal-equipment-robot-c + recipe personal-roboport-antenna-equipment-3 1 + product roboport-antenna-3 2 roboport-door-3 1 personal-roboport-antenna-equipment-2 1 +personal-roboport-chargepad-equipment-3 angels-personal-equipment-robot-b + recipe personal-roboport-chargepad-equipment-3 1 + product roboport-chargepad-3 2 personal-roboport-chargepad-equipment-2 1 +personal-roboport-mk3-equipment angels-personal-equipment-robot-d + recipe personal-roboport-mk3-equipment 1 + product titanium-plate 5 roboport-antenna-3 2 roboport-door-3 1 roboport-chargepad-3 2 personal-roboport-mk2-equipment 1 +personal-roboport-robot-equipment-3 angels-personal-equipment-robot-a + recipe personal-roboport-robot-equipment-3 1 + product solder 4 superior-circuit-board 1 basic-electronic-components 10 electronic-components 20 intergrated-electronics 10 personal-roboport-robot-equipment-2 1 +slag-processing-3 slag-processing-1 + recipe quartz 1 silver-ore 1 + product mineral-sludge 50 +solar-panel-equipment-3 angels-personal-equipment-power-a + recipe solar-panel-equipment-3 1 + product gold-plate 2 silicon-wafer 8 titanium-plate 2 processing-unit 5 solar-panel-equipment-2 1 +solid-clay water-washing-filtering + recipe solid-clay 3 + product water-concentrated-mud 30 water 25 +steam-engine-3 angels-power-steam-generator + recipe steam-engine-3 1 + product brass-alloy 5 brass-gear-wheel 5 steel-bearing 5 steam-engine-2 1 brass-pipe 5 +substation-3 angels-sub-power-poles + recipe substation-3 1 + product titanium-plate 10 insulated-cable 5 processing-unit 5 substation-2 1 +vehicle-battery-3 angels-vehicle-equipment-bobpower-d + recipe vehicle-battery-3 1 + product lithium-ion-battery 5 vehicle-battery-2 2 +vehicle-big-turret-3 angels-vehicle-equipment-bobcombat-c + recipe vehicle-big-turret-3 1 + product invar-alloy 20 alien-artifact 30 lithium-ion-battery 12 advanced-circuit 20 vehicle-big-turret-2 1 +vehicle-fusion-cell-3 angels-vehicle-equipment-bobpower-b + recipe vehicle-fusion-cell-3 1 + product alien-artifact 15 processing-unit 25 vehicle-fusion-cell-2 1 speed-module-3 1 effectivity-module-3 1 productivity-module-3 1 +vehicle-fusion-reactor-3 angels-vehicle-equipment-bobpower-c + recipe vehicle-fusion-reactor-3 1 + product alien-artifact 30 processing-unit 50 vehicle-fusion-reactor-2 1 speed-module-3 2 effectivity-module-3 2 productivity-module-3 2 +vehicle-laser-defense-3 angels-vehicle-equipment-bobcombat-b + recipe vehicle-laser-defense-3 1 + product invar-alloy 5 lithium-ion-battery 3 vehicle-laser-defense-2 1 emerald-5 1 +vehicle-roboport-3 angels-vehicle-equipment-bobrobot-d + recipe vehicle-roboport-3 1 + product titanium-plate 5 roboport-antenna-3 2 roboport-door-3 1 roboport-chargepad-3 2 vehicle-roboport-2 1 +vehicle-roboport-antenna-equipment-3 angels-vehicle-equipment-bobrobot-c + recipe vehicle-roboport-antenna-equipment-3 1 + product roboport-antenna-3 2 roboport-door-3 1 vehicle-roboport-antenna-equipment-2 1 +vehicle-roboport-chargepad-equipment-3 angels-vehicle-equipment-bobrobot-b + recipe vehicle-roboport-chargepad-equipment-3 1 + product roboport-chargepad-3 2 vehicle-roboport-chargepad-equipment-2 1 +vehicle-roboport-robot-equipment-3 angels-vehicle-equipment-bobrobot-a + recipe vehicle-roboport-robot-equipment-3 1 + product solder 4 superior-circuit-board 1 basic-electronic-components 10 electronic-components 20 intergrated-electronics 10 vehicle-roboport-robot-equipment-2 1 +vehicle-shield-3 angels-vehicle-equipment-bobcombat-a + recipe vehicle-shield-3 1 + product alien-artifact 10 advanced-processing-unit 5 vehicle-shield-2 2 productivity-module-2 1 +vehicle-solar-panel-3 angels-vehicle-equipment-bobpower-a + recipe vehicle-solar-panel-3 1 + product aluminium-plate 2 gold-plate 2 processing-unit 5 vehicle-solar-panel-2 1 +washing-2 water-washing + recipe solid-mud 0 - 3 water-concentrated-mud 200 + product water-heavy-mud 200 water 50 +washing-plant-2 washing-building + recipe washing-plant-2 1 + product clay-brick 25 bronze-alloy 12 washing-plant 1 electronic-circuit 4 bronze-pipe 27 +wood-pellets bio-processing-wood + recipe wood-pellets 2 + product cellulose-fiber 12 +module-case module-intermediates + recipe module-case 1 + product aluminium-plate 5 plastic-bar 2 +module-contact module-intermediates-2 + recipe module-contact 5 + product copper-plate 1 silver-plate 1 +bob-emerald-3 bob-gems-raw + recipe emerald-3 1 + product emerald-ore 1 +bob-emerald-4 bob-gems-cut + recipe emerald-4 1 + product emerald-3 1 grinding-wheel 1 water 10 +bob-emerald-5 bob-gems-polished + recipe emerald-5 1 + product emerald-4 1 polishing-wheel 1 polishing-compound 1 +fill-gas-nitrogen-monoxide-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-nitrogen-monoxide-barrel 1 + product gas-canister 1 gas-nitrogen-monoxide 50 +fill-liquid-hydrochloric-acid-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe liquid-hydrochloric-acid-barrel 1 + product empty-canister 1 liquid-hydrochloric-acid 50 +fill-liquid-white-liquor-barrel angels-fluid-control-bio-liquor + recipe liquid-white-liquor-barrel 1 + product empty-barrel 1 liquid-white-liquor 50 +fill-water-concentrated-mud-barrel angels-fluid-control-water-washing-fluid + recipe water-concentrated-mud-barrel 1 + product empty-barrel 1 water-concentrated-mud 50 +fill-water-green-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe water-green-waste-barrel 1 + product empty-barrel 1 water-green-waste 50 +fill-water-saline-barrel angels-fluid-control-water-treatment-fluid + recipe water-saline-barrel 1 + product empty-barrel 1 water-saline 50 +bob-nickel-plate bob-material-electrolysis + recipe nickel-plate 1 gas-sulfur-dioxide 10 + product nickel-ore 1 gas-oxygen 8 +cobalt-plate bob-material-chemical + recipe cobalt-plate 1 + product cobalt-oxide 1 liquid-sulfuric-acid 10 +empty-gas-nitrogen-monoxide-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-nitrogen-monoxide 50 + product gas-nitrogen-monoxide-barrel 1 +empty-liquid-hydrochloric-acid-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe empty-canister 1 liquid-hydrochloric-acid 50 + product liquid-hydrochloric-acid-barrel 1 +empty-liquid-white-liquor-barrel angels-fluid-control-bio-liquor + recipe empty-barrel 1 liquid-white-liquor 50 + product liquid-white-liquor-barrel 1 +empty-water-concentrated-mud-barrel angels-fluid-control-water-washing-fluid + recipe empty-barrel 1 water-concentrated-mud 50 + product water-concentrated-mud-barrel 1 +empty-water-green-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe empty-barrel 1 water-green-waste 50 + product water-green-waste-barrel 1 +empty-water-saline-barrel angels-fluid-control-water-treatment-fluid + recipe empty-barrel 1 water-saline 50 + product water-saline-barrel 1 +solder-alloy bob-alloy + recipe solder-alloy 11 + product copper-plate 1 silver-plate 1 tin-plate 9 +solder-alloy-lead bob-alloy + recipe solder-alloy 11 + product lead-plate 7 tin-plate 4 +module-circuit-board module-intermediates-3 + recipe module-circuit-board 1 + product copper-plate 1 tin-plate 1 phenolic-board 1 liquid-ferric-chloride-solution 5 +module-processor-board module-intermediates + recipe module-processor-board 4 + product copper-plate 1 tin-plate 1 phenolic-board 1 liquid-ferric-chloride-solution 5 +module-processor-board-2 module-intermediates-2 + recipe module-processor-board-2 4 + product copper-plate 1 silver-plate 1 fibreglass-board 1 liquid-ferric-chloride-solution 5 +module-processor-board-3 module-intermediates-3 + recipe module-processor-board-3 4 + product copper-plate 2 gold-plate 2 fibreglass-board 1 liquid-ferric-chloride-solution 10 +cobalt-oxide-from-copper bob-material-chemical + recipe copper-plate 7 - 11 cobalt-oxide 1 - 3 + product copper-ore 7 solid-limestone 1 solid-carbon 1 gas-hydrogen 5 +silver-from-lead bob-material-chemical + recipe lead-plate 7 - 11 silver-ore 1 - 3 + product lead-oxide 7 nickel-plate 1 solid-carbon 3 +speed-processor module-intermediates + recipe speed-processor 1 + product solder 1 basic-electronic-components 2 electronic-components 2 crystal-splinter-blue 1 module-processor-board 1 +speed-processor-2 module-intermediates-2 + recipe speed-processor-2 1 + product solder 2 electronic-components 2 intergrated-electronics 2 crystal-shard-blue 1 module-processor-board-2 1 +speed-processor-3 module-intermediates-3 + recipe speed-processor-3 1 + product solder 3 intergrated-electronics 2 processing-electronics 1 crystal-full-blue 1 module-processor-board-3 1 +effectivity-processor module-intermediates + recipe effectivity-processor 1 + product solder 1 basic-electronic-components 2 electronic-components 2 crystal-splinter-green 1 module-processor-board 1 +effectivity-processor-2 module-intermediates-2 + recipe effectivity-processor-2 1 + product solder 2 electronic-components 2 intergrated-electronics 2 crystal-shard-green 1 module-processor-board-2 1 +effectivity-processor-3 module-intermediates-3 + recipe effectivity-processor-3 1 + product solder 3 intergrated-electronics 2 processing-electronics 1 crystal-full-green 1 module-processor-board-3 1 +productivity-processor module-intermediates + recipe productivity-processor 1 + product solder 1 basic-electronic-components 2 electronic-components 2 crystal-splinter-red 1 module-processor-board 1 +productivity-processor-2 module-intermediates-2 + recipe productivity-processor-2 1 + product solder 2 electronic-components 2 intergrated-electronics 2 crystal-shard-red 1 module-processor-board-2 1 +productivity-processor-3 module-intermediates-3 + recipe productivity-processor-3 1 + product solder 3 intergrated-electronics 2 processing-electronics 1 crystal-full-red 1 module-processor-board-3 1 +pollution-clean-processor module-intermediates + recipe pollution-clean-processor 1 + product solder 1 basic-electronic-components 2 electronic-components 2 crystal-splinter-harmonic 1 module-processor-board 1 +pollution-clean-processor-2 module-intermediates-2 + recipe pollution-clean-processor-2 1 + product solder 2 electronic-components 2 intergrated-electronics 2 crystal-shard-harmonic 1 module-processor-board-2 1 +pollution-clean-processor-3 module-intermediates-3 + recipe pollution-clean-processor-3 1 + product solder 3 intergrated-electronics 2 processing-electronics 1 crystal-full-harmonic 1 module-processor-board-3 1 +pollution-create-processor module-intermediates + recipe pollution-create-processor 1 + product solder 1 basic-electronic-components 2 electronic-components 2 crystal-splinter-harmonic 1 module-processor-board 1 +pollution-create-processor-2 module-intermediates-2 + recipe pollution-create-processor-2 1 + product solder 2 electronic-components 2 intergrated-electronics 2 crystal-shard-harmonic 1 module-processor-board-2 1 +pollution-create-processor-3 module-intermediates-3 + recipe pollution-create-processor-3 1 + product solder 3 intergrated-electronics 2 processing-electronics 1 crystal-full-harmonic 1 module-processor-board-3 1 +advanced-oil-refining petrochem-carbon-oil-feed + recipe solid-oil-residual 1 liquid-mineral-oil 20 liquid-fuel-oil 20 liquid-naphtha 70 + product crude-oil 90 gas-hydrogen 20 +artillery-shell angels-artillery-b + recipe artillery-shell 1 + product explosives 8 explosive-cannon-shell 3 +cannon-shell angels-exploration-tank-a + recipe cannon-shell 1 + product steel-plate 2 plastic-bar 2 explosives 1 +heavy-cannon-shell angels-exploration-tank-b + recipe heavy-cannon-shell 1 + product cannon-shell 3 +flamethrower-ammo angels-fire + recipe flamethrower-ammo 1 + product steel-plate 5 liquid-fuel-oil 50 liquid-naphtha 50 +rocket angels-explosion-a + recipe rocket 1 + product rocket-booster 1 explosives 1 electronic-circuit 1 +firearm-magazine angels-physical-aa + recipe firearm-magazine 1 + product iron-plate 4 +shotgun-shell angels-physical-ba + recipe shotgun-shell 1 + product copper-plate 2 iron-plate 2 +distractor-artillery-shell angels-artillery-b + recipe distractor-artillery-shell 1 + product steel-plate 6 plastic-bar 6 explosives 3 distractor-robot 15 +explosive-rocket angels-explosion-a + recipe explosive-rocket 1 + product explosives 2 rocket 1 +explosive-cannon-shell angels-exploration-tank-a + recipe explosive-cannon-shell 1 + product steel-plate 2 plastic-bar 2 explosives 2 +heavy-explosive-cannon-shell angels-exploration-tank-b + recipe heavy-explosive-cannon-shell 1 + product explosive-cannon-shell 3 +piercing-rounds-magazine angels-physical-aa + recipe piercing-rounds-magazine 1 + product copper-plate 5 steel-plate 1 firearm-magazine 1 +piercing-shotgun-shell angels-physical-ba + recipe piercing-shotgun-shell 1 + product copper-plate 5 steel-plate 2 shotgun-shell 2 +atomic-bomb angels-explosion-a + recipe atomic-bomb 1 + product rocket-booster 1 explosives 10 rocket-control-unit 10 uranium-235 15 +poison-artillery-shell angels-artillery-b + recipe poison-artillery-shell 1 + product steel-plate 6 plastic-bar 6 explosives 3 alien-poison 150 +heavy-uranium-cannon-shell angels-exploration-tank-b + recipe heavy-uranium-cannon-shell 1 + product uranium-cannon-shell 3 +uranium-cannon-shell angels-exploration-tank-a + recipe uranium-cannon-shell 1 + product uranium-238 1 cannon-shell 1 +explosive-uranium-cannon-shell angels-exploration-tank-a + recipe explosive-uranium-cannon-shell 1 + product uranium-238 1 explosive-cannon-shell 1 +heavy-explosive-uranium-cannon-shell angels-exploration-tank-b + recipe heavy-explosive-uranium-cannon-shell 1 + product explosive-uranium-cannon-shell 3 +fire-artillery-shell angels-artillery-b + recipe fire-artillery-shell 1 + product steel-plate 6 plastic-bar 6 explosives 3 alien-fire 150 +explosive-artillery-shell angels-artillery-b + recipe explosive-artillery-shell 1 + product steel-plate 6 plastic-bar 6 explosives 3 alien-explosive 180 +scatter-cannon-shell angels-exploration-tank-a + recipe scatter-cannon-shell 1 + product steel-plate 2 plastic-bar 2 explosives 1 shot 5 +atomic-artillery-shell angels-artillery-b + recipe atomic-artillery-shell 1 + product steel-plate 6 plastic-bar 6 explosives 15 plutonium-239 30 +angels-chemical-furnace-3 angels-chemical-furnace + recipe angels-chemical-furnace-3 1 + product angels-chemical-furnace-2 1 reinforced-concrete-brick 25 titanium-plate 8 processing-unit 5 titanium-pipe 30 +angels-coil-glass-fiber angels-glass-casting + recipe angels-coil-glass-fiber 4 + product liquid-molten-glass 80 +angels-construction-roboport-vequip angels-vehicle-equipment + recipe angels-construction-roboport-vequip 1 + product iron-plate 20 electronic-circuit 20 +roll-solder-casting angels-solder-casting + recipe angels-roll-solder 4 + product liquid-molten-solder 80 water 40 +roll-solder-casting-fast angels-solder-casting + recipe angels-roll-solder 8 liquid-coolant-used 40 + product liquid-molten-solder 140 liquid-coolant 40 +angelsore-crushed-mix3-processing ore-sorting-advanced + recipe lead-ore 4 + product catalysator-brown 1 angels-ore4-crushed 2 angels-ore5-crushed 2 +angelsore3-chunk-processing ore-sorting-t2 + recipe slag 1 copper-ore 2 iron-ore 1 silver-ore 1 tin-ore 1 + product angels-ore3-chunk 6 +angelsore3-chunk ore-processing-b + recipe angels-ore3-chunk 2 geode-yellow 1 water-yellow-waste 50 + product angels-ore3-crushed 2 water-purified 50 +angelsore3-crushed-processing ore-sorting-t1 + recipe slag 1 copper-ore 2 iron-ore 1 + product angels-ore3-crushed 4 +angelsore3-crushed ore-processing-a + recipe angels-ore3-crushed 2 stone-crushed 1 + product angels-ore3 2 +angelsore3-crystal-processing ore-sorting-t3 + recipe slag 1 copper-ore 3 iron-ore 1 silver-ore 1 tin-ore 1 uranium-ore 1 + product angels-ore3-crystal 8 +angelsore3-crystal ore-processing-c + recipe angels-ore3-crystal 2 + product angels-ore3-chunk 2 liquid-sulfuric-acid 10 +angelsore3-pure-processing ore-sorting-t4 + recipe copper-ore 3 iron-ore 2 silver-ore 1 tin-ore 1 uranium-ore 1 tungsten-ore 1 + product angels-ore3-pure 9 +angelsore3-pure ore-processing-d + recipe angels-ore3-pure 4 + product angels-ore3-crystal 4 +bio-arboretum-1 bio-processing-buildings-nauvis-a + recipe bio-arboretum-1 1 + product clay-brick 30 glass 6 steel-plate 18 electronic-circuit 2 steel-pipe 24 +bob-greenhouse bio-processing-buildings-nauvis-a + recipe bob-greenhouse 1 + product stone 2 glass 4 iron-plate 5 +assembling-machine-3 bob-assembly-machine + recipe assembling-machine-3 1 + product assembling-machine-2 1 steel-plate 9 steel-gear-wheel 5 advanced-circuit 3 +assembling-machine-4 bob-assembly-machine + recipe assembling-machine-4 1 + product assembling-machine-3 1 aluminium-plate 9 brass-gear-wheel 5 steel-bearing 5 advanced-circuit 3 +assembling-machine-5 bob-assembly-machine + recipe assembling-machine-5 1 + product assembling-machine-4 1 titanium-plate 9 titanium-gear-wheel 5 titanium-bearing 5 processing-unit 3 +assembling-machine-6 bob-assembly-machine + recipe assembling-machine-6 1 + product assembling-machine-5 1 tungsten-carbide 5 nitinol-alloy 5 nitinol-gear-wheel 5 nitinol-bearing 5 advanced-processing-unit 3 +barreling-pump angels-fluid-control + recipe barreling-pump 1 + product steel-plate 6 steel-gear-wheel 9 electronic-circuit 2 steel-pipe 6 +bio-ammo angels-fire + recipe bio-ammo 1 + product copper-plate 10 sulfur 5 crude-oil 60 +battery angels-basic-intermediate + recipe battery 1 + product lead-plate 2 plastic-bar 1 liquid-sulfuric-acid 20 +lithium-ion-battery angels-basic-intermediate + recipe lithium-ion-battery 1 + product lithium-cobalt-oxide 1 lithium-perchlorate 2 solid-carbon 1 plastic-bar 1 +silver-zinc-battery angels-basic-intermediate + recipe silver-zinc-battery 1 + product silver-oxide 1 zinc-plate 1 solid-sodium-hydroxide 2 plastic-bar 1 +biter-big-eggsperiment bio-biter-egg + recipe biter-big-egg 1 + product bio-puffer-egg-5 1 crystal-seed 1 crystal-enhancer 1 crystal-shard-raw 1 +biter-big-keeping bio-biter + recipe biter-big 3 biter-big 1 crystal-full-raw 4 + product biter-big 4 bio-alien-processed-meat 4 liquid-nutrient-pulp 60 +biter-big-butchering bio-biter-butchery + recipe bio-raw-meat 1 crystal-full-raw 1 + product biter-big 1 +biter-big-breeding bio-biter + recipe biter-queen-big 1 biter-queen-big 1 biter-big-egg 1 biter-big-egg 1 + product biter-queen-big 2 bio-alien-processed-meat 2 liquid-nutrient-pulp 60 +biter-big bio-biter-egg + recipe biter-big 1 biter-queen-big 1 + product biter-big-egg 1 bio-alien-processed-meat 1 liquid-nutrient-pulp 30 +biter-queen-big-butchering bio-biter-butchery + recipe bio-raw-meat 1 - 2 crystal-full-raw 1 + product biter-queen-big 1 +blast-furnace-3 angels-blast-furnace + recipe blast-furnace-3 1 + product blast-furnace-2 1 aluminium-plate 16 concrete-brick 50 advanced-circuit 3 brass-pipe 15 +bob-construction-robot-5 angels-cargo-bots + recipe bob-construction-robot-5 1 + product rtg 1 bob-construction-robot-4 1 +bob-logistic-robot-5 angels-cargo-bots + recipe bob-logistic-robot-5 1 + product rtg 1 bob-logistic-robot-4 1 +casting-machine-3 angels-casting-machine + recipe casting-machine-3 1 + product aluminium-plate 12 concrete-brick 5 casting-machine-2 1 brass-gear-wheel 3 advanced-circuit 1 brass-pipe 6 +catalyst-metal-carrier petrochem-catalysts + recipe catalyst-metal-carrier 10 + product iron-plate 5 +catalyst-metal-red petrochem-catalysts + recipe catalyst-metal-red 10 + product copper-ore 1 iron-ore 1 catalyst-metal-carrier 10 +catalyst-metal-green petrochem-catalysts + recipe catalyst-metal-green 10 + product bauxite-ore 1 silver-ore 1 catalyst-metal-carrier 10 +catalyst-metal-blue petrochem-catalysts + recipe catalyst-metal-blue 10 + product cobalt-ore 1 rutile-ore 1 catalyst-metal-carrier 10 +catalyst-metal-yellow petrochem-catalysts + recipe catalyst-metal-yellow 10 + product nickel-ore 1 tungsten-ore 1 catalyst-metal-carrier 10 +clarifier water-treatment-building + recipe clarifier 1 + product stone-brick 30 iron-plate 12 basic-circuit-board 4 pipe 33 +poison-capsule angels-capsules-a + recipe poison-capsule 1 + product steel-plate 3 coal 10 electronic-circuit 3 +slowdown-capsule angels-capsules-a + recipe slowdown-capsule 1 + product steel-plate 2 coal 5 electronic-circuit 2 +fire-capsule angels-capsules-a + recipe fire-capsule 1 + product steel-plate 3 electronic-circuit 3 liquid-fuel 100 +arithmetic-combinator circuit-network + recipe arithmetic-combinator 1 + product copper-cable 5 electronic-circuit 5 +decider-combinator circuit-network + recipe decider-combinator 1 + product copper-cable 5 electronic-circuit 5 +constant-combinator circuit-network + recipe constant-combinator 1 + product copper-cable 5 electronic-circuit 2 +fill-crystal-slurry-barrel angels-fluid-control-ore-sorting-fluid + recipe crystal-slurry-barrel 1 + product empty-barrel 1 crystal-slurry 50 +empty-crystal-slurry-barrel angels-fluid-control-ore-sorting-fluid + recipe empty-barrel 1 crystal-slurry 50 + product crystal-slurry-barrel 1 +crystal-enhancer bio-processing-alien-intermediate + recipe crystal-enhancer 1 + product catalysator-green 1 seeded-dish 1 crystal-powder 1 +fill-crystal-seedling-barrel angels-fluid-control-ore-sorting-fluid + recipe crystal-seedling-barrel 1 + product empty-barrel 1 crystal-seedling 50 +empty-crystal-seedling-barrel angels-fluid-control-ore-sorting-fluid + recipe empty-barrel 1 crystal-seedling 50 + product crystal-seedling-barrel 1 +fill-crystal-matrix-barrel angels-fluid-control-ore-sorting-fluid + recipe crystal-matrix-barrel 1 + product empty-barrel 1 crystal-matrix 50 +empty-crystal-matrix-barrel angels-fluid-control-ore-sorting-fluid + recipe empty-barrel 1 crystal-matrix 50 + product crystal-matrix-barrel 1 +crystallizer refining-buildings + recipe crystallizer 1 + product clay-brick 50 steel-plate 30 electronic-circuit 5 steel-pipe 15 +crystallizer-2 refining-buildings + recipe crystallizer-2 1 + product crystallizer 1 aluminium-plate 40 concrete-brick 50 advanced-circuit 5 brass-pipe 15 +crystallizer-3 refining-buildings + recipe crystallizer-3 1 + product crystallizer-2 1 reinforced-concrete-brick 50 titanium-plate 40 processing-unit 5 titanium-pipe 15 +angels-electric-boiler boiler-building + recipe angels-electric-boiler 1 + product clay-brick 5 bronze-alloy 3 electronic-circuit 2 bronze-pipe 15 +angels-electric-boiler-2 boiler-building + recipe angels-electric-boiler-2 1 + product aluminium-plate 4 concrete-brick 5 angels-electric-boiler 1 advanced-circuit 2 brass-pipe 15 +angels-electric-boiler-3 boiler-building + recipe angels-electric-boiler-3 1 + product reinforced-concrete-brick 5 tungsten-plate 4 angels-electric-boiler-2 1 advanced-processing-unit 2 tungsten-pipe 15 +electric-chemical-furnace smelting-machine + recipe electric-furnace 1 + product stone-brick 10 steel-plate 10 advanced-circuit 5 steel-pipe 5 +electric-furnace smelting-machine + recipe electric-furnace 1 + product stone-brick 10 steel-plate 10 advanced-circuit 5 +electric-furnace-2 smelting-machine + recipe electric-furnace-2 1 + product electric-furnace 1 tungsten-plate 10 invar-alloy 10 processing-unit 5 +electric-furnace-3 smelting-machine + recipe electric-furnace-3 1 + product electric-furnace-2 1 tungsten-carbide 10 copper-tungsten-alloy 10 advanced-processing-unit 5 +electric-mixing-furnace bob-smelting-machine + recipe electric-mixing-furnace 1 + product stone-brick 10 steel-plate 10 advanced-circuit 5 +liquid-ethylene-carbonate petrochem-chemistry + recipe liquid-ethylene-carbonate 90 + product gas-ethylene-oxide 100 gas-carbon-dioxide 100 +bob-explosive-rocket angels-explosion-bb + recipe bob-explosive-rocket 1 + product explosive-rocket-warhead 1 rocket-body 1 +explosive-rocket-warhead angels-explosion-ba + recipe explosive-rocket-warhead 1 + product steel-plate 1 alien-explosive 20 +he-bullet angels-physical-ad + recipe he-bullet 1 + product he-bullet-projectile 1 cordite 1 bullet-casing 1 +he-bullet-magazine angels-physical-ae + recipe he-bullet-magazine 1 + product he-bullet 5 magazine 1 +he-bullet-projectile angels-physical-ac + recipe he-bullet-projectile 2 + product copper-plate 1 alien-explosive 10 +shotgun-explosive-shell angels-physical-bb + recipe shotgun-explosive-shell 1 + product cordite 1 shotgun-shell-casing 1 alien-explosive 10 +fast-accumulator angels-power-accumulator + recipe fast-accumulator 1 + product iron-plate 2 battery 4 electronic-circuit 4 +fast-accumulator-2 angels-power-accumulator + recipe fast-accumulator-2 1 + product steel-plate 2 lithium-ion-battery 4 advanced-circuit 4 fast-accumulator 1 +fast-accumulator-3 angels-power-accumulator + recipe fast-accumulator-3 1 + product titanium-plate 2 silver-zinc-battery 4 processing-unit 4 fast-accumulator-2 1 +gas-ammonia-from-blue-fiber bio-processing-blue + recipe gas-ammonia 100 + product blue-cellulose-fiber 20 +gas-fractioning petrochem-carbon-gas-feed + recipe gas-methane 50 gas-ethane 30 gas-butane 20 + product liquid-ngl 100 +gas-hydrogen-chloride petrochem-chlorine + recipe gas-hydrogen-chloride 100 + product gas-chlorine 50 gas-hydrogen 50 +gas-nitrogen-monoxide petrochem-nitrogen + recipe catalyst-metal-carrier 1 gas-nitrogen-monoxide 100 + product catalyst-metal-green 1 gas-ammonia 60 gas-oxygen 40 +gas-synthesis-methanation petrochem-carbon-synthesis + recipe catalyst-metal-carrier 1 gas-methane 60 gas-ethane 20 gas-butane 20 + product catalyst-metal-blue 1 gas-synthesis 100 gas-hydrogen 40 +geode-yellow-liquify liquifying + recipe crystal-slurry 30 + product geode-yellow 5 liquid-sulfuric-acid 15 +geode-yellow-processing geode-processing-1 + recipe crystal-dust 2 stone-crushed 1 + product geode-yellow 2 +angels-gunmetal-smelting-1 angels-alloys-casting + recipe liquid-molten-gunmetal 360 + product ingot-copper 18 ingot-tin 6 ingot-zinc 12 +angels-plate-gunmetal angels-alloys-casting + recipe gunmetal-alloy 4 + product liquid-molten-gunmetal 40 +gunmetal-alloy angels-alloys-casting + recipe gunmetal-alloy 10 + product copper-plate 8 tin-plate 1 zinc-plate 1 +induction-furnace-3 angels-induction-furnace + recipe induction-furnace-3 1 + product aluminium-plate 20 concrete-brick 25 induction-furnace-2 1 brass-gear-wheel 9 advanced-circuit 5 brass-pipe 12 +bob-logistic-zone-interface angels-roboport-a + recipe bob-logistic-zone-interface 1 + product steel-plate 5 advanced-circuit 2 roboport-antenna-1 1 +angels-storage-tank-3 angels-fluid-tanks + recipe angels-storage-tank-3 1 + product stone-brick 5 iron-plate 3 bob-small-inline-storage-tank 1 pipe 6 +angels-storage-tank-2 angels-fluid-tanks + recipe angels-storage-tank-2 1 + product clay-brick 40 steel-plate 12 steel-pipe 39 +angels-storage-tank-1 angels-fluid-tanks + recipe angels-storage-tank-1 1 + product clay-brick 20 steel-plate 6 steel-pipe 30 +angels-pressure-tank-1 angels-fluid-tanks + recipe angels-pressure-tank-1 1 + product stone-brick 20 steel-plate 20 pipe 50 +liquid-polyethylene-catalyst petrochem-feedstock + recipe catalyst-metal-carrier 1 liquid-polyethylene 50 + product catalyst-metal-blue 1 gas-ethylene 100 +robot-brain-logistic angels-robot-a + recipe robot-brain-logistic 1 + product solder 5 circuit-board 1 basic-electronic-components 6 electronic-components 4 +robot-brain-logistic-2 angels-robot-b + recipe robot-brain-logistic-2 1 + product solder 5 circuit-board 1 basic-electronic-components 10 electronic-components 6 +robot-brain-logistic-3 angels-robot-c + recipe robot-brain-logistic-3 1 + product solder 5 superior-circuit-board 1 basic-electronic-components 4 electronic-components 6 intergrated-electronics 6 +robot-brain-logistic-4 angels-robot-d + recipe robot-brain-logistic-4 1 + product solder 5 multi-layer-circuit-board 1 basic-electronic-components 2 electronic-components 4 intergrated-electronics 8 processing-electronics 4 +robot-tool-logistic angels-robot-a + recipe robot-tool-logistic 1 + product steel-plate 1 steel-gear-wheel 2 +robot-tool-logistic-2 angels-robot-b + recipe robot-tool-logistic-2 1 + product aluminium-plate 1 brass-gear-wheel 2 steel-bearing 2 +robot-tool-logistic-3 angels-robot-c + recipe robot-tool-logistic-3 1 + product titanium-plate 1 titanium-gear-wheel 2 titanium-bearing 2 +robot-tool-logistic-4 angels-robot-d + recipe robot-tool-logistic-4 1 + product silicon-nitride 1 nitinol-gear-wheel 2 ceramic-bearing 2 +bob-logistic-robot-2 angels-robot-b + recipe bob-logistic-robot-2 1 + product logistic-robot 1 flying-robot-frame-2 1 robot-brain-logistic-2 1 robot-tool-logistic-2 1 +bob-logistic-robot-3 angels-robot-c + recipe bob-logistic-robot-3 1 + product bob-logistic-robot-2 1 flying-robot-frame-3 1 robot-brain-logistic-3 1 robot-tool-logistic-3 1 +bob-logistic-robot-4 angels-robot-d + recipe bob-logistic-robot-4 1 + product bob-logistic-robot-3 1 flying-robot-frame-4 1 robot-brain-logistic-4 1 robot-tool-logistic-4 1 +logistic-robot angels-robot-a + recipe logistic-robot 1 + product flying-robot-frame 1 robot-brain-logistic 1 robot-tool-logistic 1 +military-science-pack science-pack + recipe military-science-pack 2 + product piercing-rounds-magazine 1 grenade 1 stone-wall 2 +mold-non-expendable angels-mold-casting + recipe mold-non-expendable 1 slag 1 + product motor-casing-0 1 solid-clay 50 +mold-non-expendable-wash angels-mold-casting + recipe mold-non-expendable 1 water-red-waste 20 + product spent-mold-non-expendable 1 liquid-nitric-acid 20 +fish-pulp-nutrients bio-processor-press-fish + recipe liquid-nutrient-pulp 20 + product fish-pulp 5 +alien-artifact-orange-from-basic bio-processing-alien-large-convert + recipe alien-artifact-orange 5 + product alien-artifact-orange 1 alien-artifact 5 +alien-artifact-orange-from-small bio-processing-alien-large + recipe alien-artifact-orange 1 + product small-alien-artifact-orange 25 +alien-pre-artifact-orange bio-processing-alien-pre + recipe alien-pre-artifact-orange 1 + product seeded-dish 1 paste-tungsten 1 topaz-4 1 +small-alien-artifact-orange bio-processing-alien-small + recipe small-alien-artifact-orange 1 + product alien-pre-artifact-orange 1 +ore-crusher-2 ore-crusher + recipe ore-crusher-2 1 + product ore-crusher 1 clay-brick 15 steel-plate 9 steel-gear-wheel 6 +ore-floatation-cell-3 ore-floatation + recipe ore-floatation-cell-3 1 + product ore-floatation-cell-2 1 reinforced-concrete-brick 40 titanium-plate 16 processing-unit 8 titanium-pipe 12 +ore-leaching-plant-3 ore-leaching + recipe ore-leaching-plant-3 1 + product ore-leaching-plant-2 1 reinforced-concrete-brick 40 tungsten-plate 16 advanced-processing-unit 8 tungsten-pipe 12 +ore-processing-machine-3 angels-processing-machine + recipe ore-processing-machine-3 1 + product ore-processing-machine-2 1 reinforced-concrete-brick 20 titanium-plate 8 titanium-gear-wheel 6 +ore-sorting-facility-3 ore-sorter + recipe ore-sorting-facility-3 1 + product ore-sorting-facility-2 1 aluminium-plate 48 concrete-brick 60 brass-gear-wheel 24 advanced-circuit 12 +paste-cellulose bio-processing-green + recipe paste-cellulose 10 + product solid-sodium-hydroxide 3 cellulose-fiber 5 gas-chlor-methane 10 +aluminium-processed-processing angels-aluminium + recipe pellet-aluminium 4 + product processed-aluminium 3 +chrome-processed-processing angels-chrome + recipe pellet-chrome 4 + product processed-chrome 3 +cobalt-processed-processing angels-cobalt + recipe pellet-cobalt 4 + product processed-cobalt 3 +copper-processed-processing angels-copper + recipe pellet-copper 4 + product processed-copper 3 +gold-processed-processing angels-gold + recipe pellet-gold 4 + product processed-gold 3 +iron-processed-processing angels-iron + recipe pellet-iron 4 + product processed-iron 3 +lead-processed-processing angels-lead + recipe pellet-lead 4 + product processed-lead 3 +manganese-processed-processing angels-manganese + recipe pellet-manganese 4 + product processed-manganese 3 +nickel-processed-processing angels-nickel + recipe pellet-nickel 4 + product processed-nickel 3 +platinum-processed-processing angels-platinum + recipe pellet-platinum 4 + product processed-platinum 3 +pellet-press-3 angels-pellet-press + recipe pellet-press-3 1 + product pellet-press-2 1 reinforced-concrete-brick 10 tungsten-plate 8 tungsten-gear-wheel 12 +silica-processed-processing angels-silicon + recipe pellet-silica 4 + product processed-silica 3 +silver-processed-processing angels-silver + recipe pellet-silver 4 + product processed-silver 3 +tin-processed-processing angels-tin + recipe pellet-tin 4 + product processed-tin 3 +titanium-processed-processing angels-titanium + recipe pellet-titanium 4 + product processed-titanium 3 +tungsten-processed-processing angels-tungsten + recipe pellet-tungsten 4 + product processed-tungsten 3 +zinc-processed-processing angels-zinc + recipe pellet-zinc 4 + product processed-zinc 3 +crystal-full-blue bio-biter-processing-crystal-full + recipe crystal-full-blue 1 crystal-grindstone 1 + product crystal-grindstone 1 crystal-full-blue-cut 1 crystal-slurry 2 +crystal-shard-blue bio-biter-processing-crystal-shard + recipe crystal-shard-blue 1 crystal-grindstone 1 + product crystal-grindstone 1 crystal-shard-blue-cut 1 crystal-slurry 2 +crystal-splinter-blue bio-biter-processing-crystal-splinter + recipe crystal-splinter-blue 1 crystal-grindstone 1 + product crystal-splinter-blue-cut 1 crystal-grindstone 1 crystal-slurry 2 +crystal-full-red bio-biter-processing-crystal-full + recipe crystal-full-red 1 crystal-grindstone 1 + product crystal-grindstone 1 crystal-full-red-cut 1 crystal-slurry 2 +crystal-shard-red bio-biter-processing-crystal-shard + recipe crystal-shard-red 1 crystal-grindstone 1 + product crystal-grindstone 1 crystal-shard-red-cut 1 crystal-slurry 2 +crystal-splinter-red bio-biter-processing-crystal-splinter + recipe crystal-splinter-red 1 crystal-grindstone 1 + product crystal-splinter-red-cut 1 crystal-grindstone 1 crystal-slurry 2 +crystal-full-green bio-biter-processing-crystal-full + recipe crystal-full-green 1 crystal-grindstone 1 + product crystal-grindstone 1 crystal-full-green-cut 1 crystal-slurry 2 +crystal-shard-green bio-biter-processing-crystal-shard + recipe crystal-shard-green 1 crystal-grindstone 1 + product crystal-grindstone 1 crystal-shard-green-cut 1 crystal-slurry 2 +crystal-splinter-green bio-biter-processing-crystal-splinter + recipe crystal-splinter-green 1 crystal-grindstone 1 + product crystal-splinter-green-cut 1 crystal-grindstone 1 crystal-slurry 2 +powder-mixer-3 angels-powder-mixer + recipe powder-mixer-3 1 + product powder-mixer-2 1 reinforced-concrete-brick 5 titanium-plate 4 titanium-gear-wheel 3 +bio-plastic bio-arboretum-swamp + recipe liquid-plastic 10 + product bio-plastic 1 gas-acetone 40 +bio-rubber bio-arboretum-desert + recipe liquid-rubber 10 + product bio-rubber 1 gas-acetone 40 +bio-resin bio-arboretum-temperate + recipe liquid-resin 10 + product bio-resin 1 gas-ethanol 40 +bio-resin-resin-liquification bio-arboretum-temperate + recipe liquid-resin 10 - 40 + product resin 4 gas-ethanol 100 +bio-resin-wood-reprocessing bio-arboretum-temperate + recipe resin 1 + product wood 10 +reinforced-wall angels-exploration-walls + recipe reinforced-wall 1 + product stone-brick 3 steel-plate 3 +reinforced-gate angels-exploration-walls + recipe reinforced-gate 1 + product steel-plate 2 electronic-circuit 2 reinforced-wall 1 +fill-liquid-rubber-barrel angels-fluid-control-petrochem-solids-fluids + recipe liquid-rubber-barrel 1 + product empty-barrel 1 liquid-rubber 50 +empty-liquid-rubber-barrel angels-fluid-control-petrochem-solids-fluids + recipe empty-barrel 1 liquid-rubber 50 + product liquid-rubber-barrel 1 +laser-rifle-battery-sapphire angels-electric-c + recipe laser-rifle-battery-sapphire 1 + product battery 4 laser-rifle-battery-case 1 sapphire-5 1 +bob-seedling bio-wood + recipe seedling 1 - 9 + product wood 1 +sintering-oven-3 angels-sintering-oven + recipe sintering-oven-3 1 + product aluminium-plate 32 concrete-brick 45 sintering-oven-2 1 advanced-circuit 5 +slag-processing-stone processing-crafting + recipe stone-crushed 2 + product slag 1 +solid-sodium-hydroxide petrochem-sodium + recipe solid-sodium-hydroxide 5 + product solid-sodium 5 water-purified 50 +liquid-aqueous-sodium-hydroxide-reverse petrochem-sodium + recipe solid-sodium-hydroxide 5 water-purified 50 + product liquid-aqueous-sodium-hydroxide 50 +solid-alginic-acid bio-processing-brown + recipe solid-alginic-acid 2 + product algae-brown 10 +solid-calcium-carbonate bio-processing-red + recipe solid-calcium-carbonate 5 + product red-cellulose-fiber 20 +cement-mixture-1 angels-stone + recipe solid-cement 1 + product quartz 1 solid-lime 1 +cement-mixture-2 angels-stone + recipe solid-cement 2 + product alumina 1 iron-ore 1 quartz 1 solid-lime 1 +solid-coke-sulfur petrochem-coal + recipe solid-coke 2 water-yellow-waste 50 + product coal-crushed 2 water-purified 50 +solid-fuel-fuel-oil petrochem-fuel + recipe solid-fuel 2 + product solid-coke 1 liquid-fuel-oil 50 +solid-salt water-salination + recipe solid-salt 10 + product water 1000 +basic-splitter bob-logistic-tier-0 + recipe basic-splitter 1 + product copper-cable 4 wood 4 iron-gear-wheel 2 basic-transport-belt 5 +splitter bob-logistic-tier-1 + recipe splitter 1 + product tin-plate 8 iron-gear-wheel 14 basic-circuit-board 5 basic-splitter 1 +fast-splitter bob-logistic-tier-2 + recipe fast-splitter 1 + product bronze-alloy 8 steel-gear-wheel 14 electronic-circuit 5 splitter 1 +express-splitter bob-logistic-tier-3 + recipe express-splitter 1 + product aluminium-plate 8 cobalt-steel-gear-wheel 14 cobalt-steel-bearing 12 advanced-circuit 5 fast-splitter 1 +turbo-splitter bob-logistic-tier-4 + recipe turbo-splitter 1 + product titanium-plate 8 titanium-gear-wheel 14 titanium-bearing 12 processing-unit 5 express-splitter 1 +ultimate-splitter bob-logistic-tier-5 + recipe ultimate-splitter 1 + product nitinol-alloy 8 nitinol-gear-wheel 14 nitinol-bearing 12 advanced-processing-unit 5 turbo-splitter 1 +steam-cracking-butane petrochem-cracking + recipe gas-benzene 80 gas-residual 20 + product gas-butane 60 steam 60 +strand-casting-machine-3 angels-strand-casting-machine + recipe strand-casting-machine-3 1 + product reinforced-concrete-brick 15 titanium-plate 24 strand-casting-machine-2 1 titanium-gear-wheel 12 processing-unit 3 titanium-pipe 18 +thermal-water-purification water-treatment + recipe mineral-sludge 20 water-purified 30 + product thermal-water 50 +angels-thorium-fuel-cell angels-power-nuclear-fuel-cell + recipe angels-thorium-fuel-cell 15 + product zinc-plate 15 plutonium-239 8 curium-245 1 thorium-232 17 +angels-thorium-processing angels-power-nuclear-processing + recipe thorium-232 4 plutonium-239 1 + product thorium-ore 5 +angels-thorium-fuel-cell-reprocessing angels-power-nuclear-fuel-cell + recipe slag 5 neptunium-240 1 thorium-232 2 uranium-234 1 curium-245 1 + product used-up-angels-thorium-fuel-cell 5 +angels-advanced-thorium-fuel-cell-reprocessing angels-power-nuclear-fuel-cell + recipe slag 10 neptunium-240 2 uranium-234 2 angels-muon-fusion-catalyst 1 water-greenyellow-waste 60 + product used-up-angels-thorium-fuel-cell 10 liquid-hydrofluoric-acid 60 +cannon-turret-shell-3 angels-physical-bc + recipe cannon-turret-shell-3 1 + product coal 4 uranium-238 2 cannon-turret-shell-2 1 +crawler-wagon angels-vehicle-train-crawler + recipe crawler-wagon 1 + product steel-plate 20 iron-gear-wheel 25 electronic-circuit 15 cargo-wagon 1 +crawler-wagon-2 angels-vehicle-train-crawler + recipe crawler-wagon-2 1 + product steel-plate 25 iron-chest 5 crawler-wagon 1 effectivity-module 2 +crawler-wagon-3 angels-vehicle-train-crawler + recipe crawler-wagon-3 1 + product low-density-structure 25 iron-chest 10 crawler-wagon-2 1 effectivity-module-2 2 +crawler-wagon-4 angels-vehicle-train-crawler + recipe crawler-wagon-4 1 + product low-density-structure 35 steel-chest 5 crawler-wagon-3 1 effectivity-module-3 2 +crawler-wagon-5 angels-vehicle-train-crawler + recipe crawler-wagon-5 1 + product low-density-structure 50 steel-chest 10 crawler-wagon-4 1 +boiler-3 angels-power-steam-boiler + recipe boiler-3 1 + product invar-alloy 5 boiler-2 1 brass-pipe 4 +heat-exchanger-3 angels-power-nuclear-heat-exchanger + recipe heat-exchanger-3 1 + product tungsten-plate 10 heat-pipe-3 4 heat-exchanger-2 1 ceramic-pipe 4 +sulfuric-acid fluid-recipes + recipe liquid-sulfuric-acid 50 + product iron-plate 1 sulfur 5 water-purified 100 +fill-gas-methanol-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-methanol-barrel 1 + product gas-canister 1 gas-methanol 50 +fill-liquid-condensates-barrel angels-fluid-control-petrochem-raw-fluids + recipe liquid-condensates-barrel 1 + product empty-barrel 1 liquid-condensates 50 +fill-liquid-sulfuric-acid-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe liquid-sulfuric-acid-barrel 1 + product empty-canister 1 liquid-sulfuric-acid 50 +empty-gas-methanol-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-methanol 50 + product gas-methanol-barrel 1 +empty-liquid-condensates-barrel angels-fluid-control-petrochem-raw-fluids + recipe empty-barrel 1 liquid-condensates 50 + product liquid-condensates-barrel 1 +empty-liquid-sulfuric-acid-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe empty-canister 1 liquid-sulfuric-acid 50 + product liquid-sulfuric-acid-barrel 1 +gas-sulfur-dioxide petrochem-sulfur + recipe gas-sulfur-dioxide 60 + product sulfur 1 gas-oxygen 60 +liquid-white-liquor bio-liquor + recipe liquid-white-liquor 40 + product solid-sodium-hydroxide 2 solid-sodium-sulfate 2 water 40 +kraft-causting bio-liquor + recipe solid-limestone 4 liquid-white-liquor 55 + product solid-lime 4 liquid-green-liquor 60 water 60 +void-carbon-dioxide void + recipe void 1 + product gas-carbon-dioxide 25 +kraft-recovery bio-liquor + recipe liquid-green-liquor 40 + product liquid-black-liquor 40 +fill-gas-ethylene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-ethylene-barrel 1 + product gas-canister 1 gas-ethylene 50 +fill-gas-residual-barrel angels-fluid-control-petrochem-raw-fluids + recipe gas-residual-barrel 1 + product gas-canister 1 gas-residual 50 +empty-gas-ethylene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-ethylene 50 + product gas-ethylene-barrel 1 +empty-gas-residual-barrel angels-fluid-control-petrochem-raw-fluids + recipe gas-canister 1 gas-residual 50 + product gas-residual-barrel 1 +gas-sulfur-dioxide-calcium-sulfate petrochem-sulfur + recipe solid-lime 1 gas-sulfur-dioxide 50 + product solid-calcium-sulfate 2 water-purified 50 +fill-gas-benzene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-benzene-barrel 1 + product gas-canister 1 gas-benzene 50 +empty-gas-benzene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-benzene 50 + product gas-benzene-barrel 1 +void-chlorine void + recipe void 1 + product gas-chlorine 25 +anaerobic-fermentation bio-processor-fermentation + recipe solid-compost 1 gas-ethanol 50 + product liquid-fermentation-raw 100 +angels-logistic-chest-storage angels-chests-big + recipe angels-logistic-chest-storage 1 + product iron-plate 10 electronic-circuit 5 angels-big-chest 1 +angels-warehouse-storage angels-warehouse + recipe angels-warehouse-storage 1 + product steel-plate 20 electronic-circuit 20 angels-warehouse 1 +angelsore7-crystallization-5 bob-gems-crystallization + recipe amethyst-ore 1 + product catalysator-green 1 crystal-seedling 50 +battery-mk4-equipment angels-personal-equipment-power-c + recipe battery-mk4-equipment 1 + product alien-artifact-orange 5 alien-artifact-blue 5 advanced-processing-unit 5 battery-mk3-equipment 2 +belt-immunity-equipment angels-personal-equipment-power-d + recipe belt-immunity-equipment 1 + product steel-plate 10 advanced-circuit 5 +big-electric-pole-4 angels-big-power-poles + recipe big-electric-pole-4 1 + product gilded-copper-cable 5 nitinol-alloy 5 big-electric-pole-3 1 +bio-press bio-processing-buildings-vegetabilis-b + recipe bio-press 1 + product clay-brick 5 bronze-alloy 6 steel-gear-wheel 6 electronic-circuit 2 bronze-pipe 3 +bio-refugium-puffer bio-processing-buildings-alien-a + recipe bio-refugium-puffer 1 + product aluminium-plate 16 glass 5 concrete-brick 15 advanced-circuit 4 brass-pipe 33 +coolant-used-filtration-1 coolant + recipe filter-frame 1 liquid-coolant 160 + product filter-coal 1 liquid-coolant-used 200 +coolant-used-filtration-2 coolant + recipe filter-ceramic-used 1 liquid-coolant 160 + product filter-ceramic 1 liquid-coolant-used 200 +discharge-defense-remote angels-personal-equipment-combat-c + recipe discharge-defense-remote 1 + product electronic-circuit 1 +electro-whinning-cell ore-whinning + recipe electro-whinning-cell 1 + product aluminium-plate 16 concrete-brick 20 advanced-circuit 8 brass-pipe 18 +energy-shield-mk4-equipment angels-personal-equipment-combat-a + recipe energy-shield-mk4-equipment 1 + product alien-artifact-orange 5 alien-artifact-blue 5 advanced-processing-unit 5 energy-shield-mk3-equipment 2 effectivity-module-4 1 productivity-module-4 1 +fluid-generator-3 angels-power-fluid-generator + recipe fluid-generator-3 1 + product titanium-plate 10 tungsten-plate 5 titanium-gear-wheel 10 titanium-bearing 10 processing-unit 5 fluid-generator-2 1 ceramic-pipe 5 +fusion-reactor-equipment-4 angels-personal-equipment-power-b + recipe fusion-reactor-equipment-4 1 + product alien-artifact-red 15 alien-artifact-green 15 advanced-processing-unit 50 fusion-reactor-equipment-3 1 speed-module-8 2 effectivity-module-8 2 productivity-module-8 2 +gas-dimethylamine petrochem-rocket + recipe gas-dimethylamine 200 water-purified 50 + product gas-methylamine 200 gas-methanol 50 +gas-fractioning-synthesis petrochem-carbon-gas-feed + recipe gas-methane 90 gas-ethane 30 gas-butane 20 gas-carbon-monoxide 10 + product liquid-ngl 100 gas-synthesis 50 +gas-nitrogen-dioxide petrochem-nitrogen + recipe gas-nitrogen-dioxide 100 + product gas-oxygen 60 gas-nitrogen-monoxide 40 +heat-pipe-4 angels-power-nuclear-heat-pipe + recipe heat-pipe-4 1 + product gold-plate 10 copper-tungsten-alloy 5 +hogger-breeding-4 bio-hogger-breeding + recipe bio-hogger-4 2 bio-hogger-1 1 bio-hogger-2 1 bio-hogger-3 1 bio-hogger-4 1 bio-hogger-5 1 + product iron-plate 1 bio-hogger-4 2 liquid-nutrient-pulp 20 +hogger-breeding-5 bio-hogger-breeding + recipe bio-hogger-5 2 bio-hogger-1 1 bio-hogger-2 1 bio-hogger-3 1 bio-hogger-4 1 bio-hogger-5 1 + product iron-plate 1 bio-hogger-5 2 liquid-nutrient-pulp 20 +hogger-butchery-4 bio-hogger-butchery + recipe bio-raw-meat 1 + product bio-hogger-4 1 +hogger-butchery-5 bio-hogger-butchery + recipe bio-raw-meat 1 + product bio-hogger-5 1 +hogger-hogging-4 bio-hogger + recipe bio-hogger-4 3 - 5 copper-ore 10 + product iron-ore 10 iron-plate 1 bio-hogger-4 4 liquid-nutrient-pulp 20 +hogger-hogging-5 bio-hogger + recipe bio-hogger-5 3 - 5 copper-ore 10 + product iron-ore 10 iron-plate 1 bio-hogger-5 4 liquid-nutrient-pulp 20 +liquid-cellulose-acetate bio-plastic + recipe liquid-cellulose-acetate 50 water-yellow-waste 20 + product liquid-cellulose-acetate-mixture 50 water-purified 20 +logistic-chest-storage angels-chests-small-b + recipe logistic-chest-storage 1 + product electronic-circuit 3 advanced-circuit 1 steel-chest 1 +logistic-chest-storage-2 angels-chests-small-c + recipe logistic-chest-storage-2 1 + product advanced-circuit 3 processing-unit 1 brass-chest 1 +logistic-chest-storage-3 angels-chests-small-d + recipe logistic-chest-storage-3 1 + product processing-unit 3 advanced-processing-unit 1 titanium-chest 1 +medium-electric-pole-4 angels-medium-power-poles + recipe medium-electric-pole-4 1 + product gilded-copper-cable 2 nitinol-alloy 2 medium-electric-pole-3 1 +nutrient-extractor bio-processing-buildings-vegetabilis-b + recipe nutrient-extractor 1 + product clay-brick 5 bronze-alloy 3 steel-gear-wheel 6 electronic-circuit 2 bronze-pipe 6 +offshore-pump washing-building + recipe offshore-pump 1 + product iron-gear-wheel 1 basic-circuit-board 2 pipe 1 +paste-tungsten bio-processing-paste + recipe paste-tungsten 1 + product powdered-tungsten 2 paste-cellulose 1 +personal-laser-defense-equipment-4 angels-personal-equipment-combat-b + recipe personal-laser-defense-equipment-4 1 + product titanium-plate 5 lithium-ion-battery 3 processing-unit 5 personal-laser-defense-equipment-3 1 amethyst-5 1 +personal-roboport-antenna-equipment-4 angels-personal-equipment-robot-c + recipe personal-roboport-antenna-equipment-4 1 + product roboport-antenna-4 2 roboport-door-4 1 personal-roboport-antenna-equipment-3 1 +personal-roboport-chargepad-equipment-4 angels-personal-equipment-robot-b + recipe personal-roboport-chargepad-equipment-4 1 + product roboport-chargepad-4 2 personal-roboport-chargepad-equipment-3 1 +personal-roboport-mk4-equipment angels-personal-equipment-robot-d + recipe personal-roboport-mk4-equipment 1 + product nitinol-alloy 5 roboport-antenna-4 2 roboport-door-4 1 roboport-chargepad-4 2 personal-roboport-mk3-equipment 1 +personal-roboport-robot-equipment-4 angels-personal-equipment-robot-a + recipe personal-roboport-robot-equipment-4 1 + product solder 6 multi-layer-circuit-board 1 basic-electronic-components 5 electronic-components 10 intergrated-electronics 20 processing-electronics 8 personal-roboport-robot-equipment-3 1 +slag-processing-4 slag-processing-1 + recipe gold-ore 1 nickel-ore 1 + product mineral-sludge 50 +solar-panel-equipment-4 angels-personal-equipment-power-a + recipe solar-panel-equipment-4 1 + product gilded-copper-cable 5 nitinol-alloy 2 alien-artifact 10 advanced-processing-unit 5 solar-panel-equipment-3 1 +solder angels-solder-casting + recipe solder 8 + product solder-alloy 4 resin 1 +solid-limestone water-washing-filtering + recipe solid-limestone 3 + product water-light-mud 20 water 25 +steam-engine-4 angels-power-steam-generator + recipe steam-engine-4 1 + product titanium-plate 5 titanium-gear-wheel 5 titanium-bearing 5 steam-engine-3 1 titanium-pipe 5 +substation-4 angels-sub-power-poles + recipe substation-4 1 + product gilded-copper-cable 5 nitinol-alloy 10 advanced-processing-unit 5 substation-3 1 +vehicle-battery-4 angels-vehicle-equipment-bobpower-d + recipe vehicle-battery-4 1 + product alien-artifact-orange 5 alien-artifact-blue 5 advanced-processing-unit 5 vehicle-battery-3 2 +vehicle-big-turret-4 angels-vehicle-equipment-bobcombat-c + recipe vehicle-big-turret-4 1 + product titanium-plate 20 alien-artifact-orange 15 alien-artifact-blue 15 lithium-ion-battery 12 processing-unit 20 vehicle-big-turret-3 1 +vehicle-fusion-cell-4 angels-vehicle-equipment-bobpower-b + recipe vehicle-fusion-cell-4 1 + product alien-artifact-orange 8 alien-artifact-blue 8 advanced-processing-unit 25 vehicle-fusion-cell-3 1 speed-module-5 1 effectivity-module-5 1 productivity-module-5 1 +vehicle-fusion-reactor-4 angels-vehicle-equipment-bobpower-c + recipe vehicle-fusion-reactor-4 1 + product alien-artifact-orange 15 alien-artifact-blue 15 advanced-processing-unit 50 vehicle-fusion-reactor-3 1 speed-module-5 2 effectivity-module-5 2 productivity-module-5 2 +vehicle-laser-defense-4 angels-vehicle-equipment-bobcombat-b + recipe vehicle-laser-defense-4 1 + product titanium-plate 5 lithium-ion-battery 3 processing-unit 5 vehicle-laser-defense-3 1 amethyst-5 1 +vehicle-roboport-4 angels-vehicle-equipment-bobrobot-d + recipe vehicle-roboport-4 1 + product nitinol-alloy 5 roboport-antenna-4 2 roboport-door-4 1 roboport-chargepad-4 2 vehicle-roboport-3 1 +vehicle-roboport-antenna-equipment-4 angels-vehicle-equipment-bobrobot-c + recipe vehicle-roboport-antenna-equipment-4 1 + product roboport-antenna-4 2 roboport-door-4 1 vehicle-roboport-antenna-equipment-3 1 +vehicle-roboport-chargepad-equipment-4 angels-vehicle-equipment-bobrobot-b + recipe vehicle-roboport-chargepad-equipment-4 1 + product roboport-chargepad-4 2 vehicle-roboport-chargepad-equipment-3 1 +vehicle-roboport-robot-equipment-4 angels-vehicle-equipment-bobrobot-a + recipe vehicle-roboport-robot-equipment-4 1 + product solder 6 multi-layer-circuit-board 1 basic-electronic-components 5 electronic-components 10 intergrated-electronics 20 processing-electronics 8 vehicle-roboport-robot-equipment-3 1 +vehicle-shield-4 angels-vehicle-equipment-bobcombat-a + recipe vehicle-shield-4 1 + product alien-artifact-orange 5 alien-artifact-blue 5 advanced-processing-unit 5 vehicle-shield-3 2 effectivity-module-4 1 productivity-module-4 1 +vehicle-solar-panel-4 angels-vehicle-equipment-bobpower-a + recipe vehicle-solar-panel-4 1 + product gilded-copper-cable 5 silicon-wafer 10 titanium-plate 2 advanced-processing-unit 5 vehicle-solar-panel-3 1 +washing-3 water-washing + recipe solid-mud 0 - 3 water-light-mud 200 + product water-concentrated-mud 200 water 50 +wood-bricks bio-processing-wood + recipe wood-bricks 4 + product wood-pellets 8 +bob-amethyst-3 bob-gems-raw + recipe amethyst-3 1 + product amethyst-ore 1 +bob-amethyst-4 bob-gems-cut + recipe amethyst-4 1 + product amethyst-3 1 grinding-wheel 1 water 10 +bob-amethyst-5 bob-gems-polished + recipe amethyst-5 1 + product amethyst-4 1 polishing-wheel 1 polishing-compound 1 +fill-gas-acid-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-acid-barrel 1 + product gas-canister 1 gas-acid 50 +fill-gas-allylchlorid-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-allylchlorid-barrel 1 + product gas-canister 1 gas-allylchlorid 50 +fill-gas-nitrogen-dioxide-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-nitrogen-dioxide-barrel 1 + product gas-canister 1 gas-nitrogen-dioxide 50 +fill-gas-oxygen-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-oxygen-barrel 1 + product gas-canister 1 gas-oxygen 50 +fill-liquid-black-liquor-barrel angels-fluid-control-bio-liquor + recipe liquid-black-liquor-barrel 1 + product empty-barrel 1 liquid-black-liquor 50 +fill-liquid-hexachloroplatinic-acid-barrel angels-fluid-control-angels-platinum + recipe liquid-hexachloroplatinic-acid-barrel 1 + product empty-canister 1 liquid-hexachloroplatinic-acid 50 +fill-liquid-titanium-tetrachloride-barrel angels-fluid-control-angels-titanium + recipe liquid-titanium-tetrachloride-barrel 1 + product empty-barrel 1 liquid-titanium-tetrachloride 50 +fill-liquid-trichlorosilane-barrel angels-fluid-control-angels-silicon + recipe liquid-trichlorosilane-barrel 1 + product empty-barrel 1 liquid-trichlorosilane 50 +fill-liquid-tungstic-acid-barrel angels-fluid-control-angels-tungsten + recipe liquid-tungstic-acid-barrel 1 + product empty-canister 1 liquid-tungstic-acid 50 +fill-nitrogen-dioxide-barrel angels-fluid-control-bob-gas-bottle + recipe nitrogen-dioxide-barrel 1 + product gas-canister 1 gas-nitrogen-dioxide 50 +fill-oxygen-barrel angels-fluid-control-bob-gas-bottle + recipe oxygen-barrel 1 + product gas-canister 1 gas-oxygen 50 +fill-tungstic-acid-barrel angels-fluid-control-bob-canister + recipe tungstic-acid-barrel 1 + product empty-canister 1 liquid-tungstic-acid 50 +fill-water-light-mud-barrel angels-fluid-control-water-washing-fluid + recipe water-light-mud-barrel 1 + product empty-barrel 1 water-light-mud 50 +fill-water-mineralized-barrel angels-fluid-control-water-treatment-fluid + recipe water-mineralized-barrel 1 + product empty-barrel 1 water-mineralized 50 +fill-water-red-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe water-red-waste-barrel 1 + product empty-barrel 1 water-red-waste 50 +empty-gas-acid-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-canister 1 gas-acid 50 + product gas-acid-barrel 1 +empty-gas-allylchlorid-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-canister 1 gas-allylchlorid 50 + product gas-allylchlorid-barrel 1 +empty-gas-nitrogen-dioxide-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-nitrogen-dioxide 50 + product gas-nitrogen-dioxide-barrel 1 +empty-gas-oxygen-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-oxygen 50 + product gas-oxygen-barrel 1 +empty-liquid-black-liquor-barrel angels-fluid-control-bio-liquor + recipe empty-barrel 1 liquid-black-liquor 50 + product liquid-black-liquor-barrel 1 +empty-liquid-hexachloroplatinic-acid-barrel angels-fluid-control-angels-platinum + recipe empty-canister 1 liquid-hexachloroplatinic-acid 50 + product liquid-hexachloroplatinic-acid-barrel 1 +empty-liquid-titanium-tetrachloride-barrel angels-fluid-control-angels-titanium + recipe empty-barrel 1 liquid-titanium-tetrachloride 50 + product liquid-titanium-tetrachloride-barrel 1 +empty-liquid-trichlorosilane-barrel angels-fluid-control-angels-silicon + recipe empty-barrel 1 liquid-trichlorosilane 50 + product liquid-trichlorosilane-barrel 1 +empty-liquid-tungstic-acid-barrel angels-fluid-control-angels-tungsten + recipe empty-canister 1 liquid-tungstic-acid 50 + product liquid-tungstic-acid-barrel 1 +empty-nitrogen-dioxide-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-nitrogen-dioxide 50 + product nitrogen-dioxide-barrel 1 +empty-oxygen-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-oxygen 50 + product oxygen-barrel 1 +empty-tungstic-acid-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 liquid-tungstic-acid 50 + product tungstic-acid-barrel 1 +empty-water-light-mud-barrel angels-fluid-control-water-washing-fluid + recipe empty-barrel 1 water-light-mud 50 + product water-light-mud-barrel 1 +empty-water-mineralized-barrel angels-fluid-control-water-treatment-fluid + recipe empty-barrel 1 water-mineralized 50 + product water-mineralized-barrel 1 +empty-water-red-waste-barrel angels-fluid-control-water-cleaning-fluid + recipe empty-barrel 1 water-red-waste 50 + product water-red-waste-barrel 1 +angels-chemical-furnace-4 angels-chemical-furnace + recipe angels-chemical-furnace-4 1 + product angels-chemical-furnace-3 1 reinforced-concrete-brick 25 tungsten-plate 8 advanced-processing-unit 5 tungsten-pipe 30 +quartz-glass angels-glass-casting + recipe glass 3 + product quartz 4 +angels-plate-glass-1 angels-glass-casting + recipe glass 3 + product liquid-molten-glass 40 +angels-plate-glass-2 angels-glass-casting + recipe glass 4 lead-oxide 2 + product liquid-molten-glass 40 liquid-molten-lead 20 +angels-plate-glass-3 angels-glass-casting + recipe glass 5 ingot-tin 2 + product liquid-molten-glass 40 liquid-molten-tin 20 gas-nitrogen 20 +angels-repair-roboport-vequip angels-vehicle-equipment + recipe angels-repair-roboport-vequip 1 + product iron-plate 20 steel-plate 20 advanced-circuit 20 +angels-solder-mixture-smelting angels-solder-casting + recipe solder 2 + product angels-solder-mixture 2 +angels-solder angels-solder-casting + recipe solder 6 + product liquid-molten-solder 40 +angels-roll-solder-converting angels-solder-casting + recipe solder 12 + product angels-roll-solder 4 +angelsore-crushed-mix4-processing ore-sorting-advanced + recipe tin-ore 4 + product catalysator-brown 1 angels-ore3-crushed 2 angels-ore6-crushed 2 +angelsore4-chunk-processing ore-sorting-t2 + recipe slag 1 copper-ore 2 iron-ore 1 lead-ore 1 bauxite-ore 1 + product angels-ore4-chunk 6 +angelsore4-chunk ore-processing-b + recipe angels-ore4-chunk 2 geode-lightgreen 1 water-green-waste 50 + product angels-ore4-crushed 2 water-purified 50 +angelsore4-crushed-processing ore-sorting-t1 + recipe slag 1 copper-ore 2 iron-ore 1 + product angels-ore4-crushed 4 +angelsore4-crushed ore-processing-a + recipe angels-ore4-crushed 2 stone-crushed 1 + product angels-ore4 2 +angelsore4-crystal-processing ore-sorting-t3 + recipe slag 1 copper-ore 3 iron-ore 1 lead-ore 1 bauxite-ore 1 rutile-ore 1 + product angels-ore4-crystal 8 +angelsore4-crystal ore-processing-c + recipe angels-ore4-crystal 2 + product angels-ore4-chunk 2 liquid-hydrochloric-acid 10 +angelsore4-pure-processing ore-sorting-t4 + recipe copper-ore 3 iron-ore 2 lead-ore 1 bauxite-ore 1 rutile-ore 1 cobalt-ore 1 + product angels-ore4-pure 9 +angelsore4-pure ore-processing-d + recipe angels-ore4-pure 4 + product angels-ore4-crystal 4 +pellet-copper-smelting angels-copper + recipe anode-copper 24 + product pellet-copper 8 gas-oxygen 60 +blast-furnace-4 angels-blast-furnace + recipe blast-furnace-4 1 + product blast-furnace-3 1 reinforced-concrete-brick 50 titanium-plate 16 processing-unit 3 titanium-pipe 15 +alien-artifact-blue-from-basic bio-processing-alien-large-convert + recipe alien-artifact-blue 5 + product alien-artifact-blue 1 alien-artifact 5 +alien-artifact-blue-from-small bio-processing-alien-large + recipe alien-artifact-blue 1 + product small-alien-artifact-blue 25 +alien-pre-artifact-blue bio-processing-alien-pre + recipe alien-pre-artifact-blue 1 + product seeded-dish 1 paste-cobalt 1 sapphire-4 1 +small-alien-artifact-blue bio-processing-alien-small + recipe small-alien-artifact-blue 1 + product alien-pre-artifact-blue 1 +crawler-bot-wagon angels-vehicle-train-crawler + recipe crawler-bot-wagon 1 + product steel-plate 20 iron-gear-wheel 25 electronic-circuit 15 cargo-wagon 1 +crawler-bot-wagon-2 angels-vehicle-train-crawler + recipe crawler-bot-wagon-2 1 + product steel-plate 25 iron-chest 5 crawler-bot-wagon 1 effectivity-module 2 +crawler-bot-wagon-3 angels-vehicle-train-crawler + recipe crawler-bot-wagon-3 1 + product low-density-structure 25 steel-chest 5 crawler-bot-wagon-2 1 effectivity-module-2 2 +crawler-bot-wagon-4 angels-vehicle-train-crawler + recipe crawler-bot-wagon-4 1 + product low-density-structure 35 logistic-chest-storage 5 crawler-bot-wagon-3 1 effectivity-module-3 2 +crawler-bot-wagon-5 angels-vehicle-train-crawler + recipe crawler-bot-wagon-5 1 + product rocket-control-unit 2 low-density-structure 50 logistic-chest-buffer 5 crawler-bot-wagon-4 1 +carbon-separation-2 petrochem-basics + recipe gas-carbon-dioxide 50 + product coal 1 +casting-machine-4 angels-casting-machine + recipe casting-machine-4 1 + product reinforced-concrete-brick 5 titanium-plate 12 casting-machine-3 1 titanium-gear-wheel 3 processing-unit 1 titanium-pipe 6 +catalyst-steam-cracking-butane petrochem-cracking + recipe catalyst-metal-carrier 1 gas-butadiene 80 gas-residual 20 + product catalyst-metal-green 1 liquid-naphtha 60 steam 60 +processed-nickel-smelting angels-nickel + recipe cathode-nickel 12 + product processed-nickel 4 liquid-sulfuric-acid 60 +chemical-science-pack science-pack + recipe chemical-science-pack 2 + product solid-sodium-hydroxide 2 sulfur 1 engine-unit 2 advanced-circuit 3 +angels-clay-brick-raw angels-stone + recipe clay-brick-raw 4 + product solid-lime 2 solid-clay 4 solid-sand 2 +coke-purification petrochem-coal + recipe solid-carbon 3 + product solid-coke 2 steam 30 +coke-purification-2 petrochem-coal + recipe solid-carbon 6 solid-sodium-carbonate 1 water 10 + product solid-coke 4 solid-sodium-hydroxide 1 gas-nitrogen 30 +robot-brain-combat angels-robot-a + recipe robot-brain-combat 1 + product solder 5 basic-circuit-board 1 basic-electronic-components 8 +robot-brain-combat-2 angels-robot-b + recipe robot-brain-combat-2 1 + product solder 5 circuit-board 1 basic-electronic-components 10 electronic-components 2 +robot-brain-combat-3 angels-robot-c + recipe robot-brain-combat-3 1 + product solder 5 superior-circuit-board 1 basic-electronic-components 4 electronic-components 2 intergrated-electronics 1 +robot-brain-combat-4 angels-robot-d + recipe robot-brain-combat-4 1 + product solder 5 multi-layer-circuit-board 1 basic-electronic-components 2 electronic-components 4 intergrated-electronics 2 processing-electronics 1 +robot-tool-combat angels-robot-a + recipe robot-tool-combat 1 + product steel-plate 1 steel-gear-wheel 5 +robot-tool-combat-2 angels-robot-b + recipe robot-tool-combat-2 1 + product glass 1 brass-alloy 1 battery 1 brass-gear-wheel 2 +robot-tool-combat-3 angels-robot-c + recipe robot-tool-combat-3 1 + product titanium-plate 1 lithium-ion-battery 1 titanium-gear-wheel 2 emerald-5 1 +robot-tool-combat-4 angels-robot-d + recipe robot-tool-combat-4 1 + product silicon-nitride 1 silver-zinc-battery 1 nitinol-gear-wheel 2 diamond-5 1 +bob-laser-robot angels-robot-d + recipe bob-laser-robot 1 + product destroyer-robot 1 flying-robot-frame-4 1 robot-brain-combat-4 1 robot-tool-combat-4 1 +defender-robot angels-robot-a + recipe defender-robot 1 + product flying-robot-frame 1 robot-brain-combat 1 robot-tool-combat 1 +destroyer-robot angels-robot-c + recipe destroyer-robot 1 + product distractor-robot 1 flying-robot-frame-3 1 robot-brain-combat-3 1 robot-tool-combat-3 1 +distractor-robot angels-robot-b + recipe distractor-robot 1 + product defender-robot 1 flying-robot-frame-2 1 robot-brain-combat-2 1 robot-tool-combat-2 1 +condensates-oil-refining petrochem-carbon-oil-feed + recipe solid-oil-residual 1 liquid-mineral-oil 40 liquid-fuel-oil 30 liquid-naphtha 30 + product crude-oil 40 liquid-condensates 60 +angels-deuterium-fuel-cell angels-power-nuclear-fuel-cell + recipe angels-deuterium-fuel-cell 1 + product zinc-plate 1 angels-muon-fusion-catalyst 1 gas-deuterium 600 +angels-deuterium-fuel-cell-reprocessing angels-power-nuclear-fuel-cell + recipe slag 5 angels-muon-fusion-catalyst 4 angels-muon-fusion-catalyst 1 + product used-up-angels-deuterium-fuel-cell 5 +angels-advanced-deuterium-fuel-cell-reprocessing angels-power-nuclear-fuel-cell + recipe slag 5 angels-muon-fusion-catalyst 10 water-greenyellow-waste 60 + product used-up-angels-deuterium-fuel-cell 10 liquid-hydrofluoric-acid 60 +electric-chemical-mixing-furnace bob-smelting-machine + recipe electric-chemical-mixing-furnace 1 + product electric-mixing-furnace 1 tungsten-plate 10 invar-alloy 10 processing-unit 5 tungsten-pipe 5 +electric-chemical-mixing-furnace-2 bob-smelting-machine + recipe electric-chemical-mixing-furnace-2 1 + product electric-chemical-mixing-furnace 1 tungsten-carbide 10 copper-tungsten-alloy 10 advanced-processing-unit 5 copper-tungsten-pipe 5 +electronics-machine-1 bob-assembly-machine + recipe electronics-machine-1 1 + product iron-plate 5 iron-gear-wheel 5 basic-circuit-board 5 +electronics-machine-2 bob-assembly-machine + recipe electronics-machine-2 1 + product electronics-machine-1 1 steel-plate 5 steel-gear-wheel 5 steel-bearing 5 advanced-circuit 5 +electronics-machine-3 bob-assembly-machine + recipe electronics-machine-3 1 + product electronics-machine-2 1 titanium-plate 5 titanium-gear-wheel 5 titanium-bearing 5 processing-unit 5 +laser-rifle-battery-emerald angels-electric-c + recipe laser-rifle-battery-emerald 1 + product lithium-ion-battery 4 laser-rifle-battery-case 1 emerald-5 1 +enriched-fuel-from-hydrazine bob-resource-chemical + recipe enriched-fuel 1 + product solid-fuel 1 gas-hydrazine 100 +bob-flame-rocket angels-explosion-bb + recipe bob-flame-rocket 1 + product flame-rocket-warhead 1 rocket-body 1 +flame-bullet angels-physical-ad + recipe flame-bullet 1 + product flame-bullet-projectile 1 cordite 1 bullet-casing 1 +flame-bullet-magazine angels-physical-ae + recipe flame-bullet-magazine 1 + product flame-bullet 5 magazine 1 +flame-bullet-projectile angels-physical-ac + recipe flame-bullet-projectile 2 + product copper-plate 1 alien-fire 10 +flame-rocket-warhead angels-explosion-ba + recipe flame-rocket-warhead 1 + product steel-plate 1 alien-fire 20 +shotgun-flame-shell angels-physical-bb + recipe shotgun-flame-shell 1 + product cordite 1 shotgun-shell-casing 1 alien-fire 10 +gas-benzene-catalyst petrochem-feedstock + recipe catalyst-metal-carrier 1 gas-benzene 100 + product catalyst-metal-green 1 gas-methane 100 +gas-hydrogen-chloride-separation petrochem-chlorine + recipe gas-chlorine 50 gas-hydrogen 50 + product gas-hydrogen-chloride 100 +geode-lightgreen-liquify liquifying + recipe crystal-slurry 50 + product geode-lightgreen 5 liquid-sulfuric-acid 15 +geode-lightgreen-processing geode-processing-1 + recipe crystal-dust 3 stone-crushed 2 + product geode-lightgreen 2 +crystal-full-harmonic bio-biter-processing-crystal-full + recipe crystal-full-harmonic 1 + product crystal-full-blue 1 crystal-full-red 1 crystal-full-green 1 +crystal-shard-harmonic bio-biter-processing-crystal-shard + recipe crystal-shard-harmonic 1 + product crystal-shard-blue 1 crystal-shard-red 1 crystal-shard-green 1 +crystal-splinter-harmonic bio-biter-processing-crystal-splinter + recipe crystal-splinter-harmonic 1 + product crystal-splinter-blue 1 crystal-splinter-red 1 crystal-splinter-green 1 +induction-furnace-4 angels-induction-furnace + recipe induction-furnace-4 1 + product reinforced-concrete-brick 25 titanium-plate 20 induction-furnace-3 1 titanium-gear-wheel 9 processing-unit 5 titanium-pipe 12 +tin-ore-smelting angels-tin + recipe ingot-tin 24 + product tin-ore 24 +processed-tin-smelting angels-tin + recipe ingot-tin 24 + product processed-tin 8 solid-coke 2 +pellet-tin-smelting angels-tin + recipe ingot-tin 24 + product pellet-tin 8 solid-carbon 2 +angels-invar-smelting-1 angels-alloys-casting + recipe liquid-molten-invar 360 + product ingot-steel 24 ingot-nickel 12 +angels-plate-invar angels-alloys-casting + recipe invar-alloy 4 + product liquid-molten-invar 40 +invar-alloy angels-alloys-casting + recipe invar-alloy 5 + product iron-plate 3 nickel-plate 2 +pellet-platinum-smelting angels-platinum + recipe liquid-hexachloroplatinic-acid 60 + product pellet-platinum 4 liquid-hydrochloric-acid 30 liquid-nitric-acid 30 +liquid-naphtha-catalyst petrochem-carbon-synthesis + recipe catalyst-metal-carrier 1 liquid-naphtha 100 + product catalyst-metal-red 1 gas-synthesis 150 gas-carbon-monoxide 50 +liquid-phenol-catalyst petrochem-chemistry + recipe catalyst-metal-carrier 1 liquid-phenol 100 + product catalyst-metal-yellow 1 gas-benzene 100 gas-oxygen 100 +cumene-process petrochem-chemistry + recipe catalyst-metal-carrier 1 liquid-phenol 60 gas-acetone 60 + product catalyst-metal-blue 1 gas-benzene 50 gas-propene 50 gas-oxygen 20 +liquid-sulfuric-acid petrochem-sulfur + recipe liquid-sulfuric-acid 60 + product gas-sulfur-dioxide 90 water-purified 40 +titanium-ore-smelting angels-titanium + recipe liquid-titanium-tetrachloride 120 + product rutile-ore 24 solid-carbon 6 gas-chlorine 60 +processed-titanium-smelting angels-titanium + recipe liquid-titanium-tetrachloride 120 + product processed-titanium 8 solid-carbon 6 gas-chlorine 60 +processed-silicon-smelting angels-silicon + recipe liquid-trichlorosilane 120 gas-hydrogen 30 + product processed-silica 8 gas-hydrogen-chloride 60 +tungsten-ore-smelting angels-tungsten + recipe solid-calcium-chloride 2 liquid-tungstic-acid 60 + product tungsten-ore 12 gas-hydrogen-chloride 30 +loader belt + recipe loader 1 + product iron-plate 5 iron-gear-wheel 5 electronic-circuit 5 transport-belt 5 inserter 5 +fast-loader belt + recipe fast-loader 1 + product loader 1 fast-transport-belt 5 +express-loader belt + recipe express-loader 1 + product fast-loader 1 express-transport-belt 5 +alien-processed-meat bio-biter-butchery + recipe bio-alien-processed-meat 1 + product bio-raw-meat 1 alien-goo 2 +ore-crusher-3 ore-crusher + recipe ore-crusher-3 1 + product ore-crusher-2 1 aluminium-plate 12 concrete-brick 15 brass-gear-wheel 6 +ore-processing-machine-4 angels-processing-machine + recipe ore-processing-machine-4 1 + product ore-processing-machine-3 1 reinforced-concrete-brick 20 tungsten-plate 8 tungsten-gear-wheel 6 +ore-sorting-facility-4 ore-sorter + recipe ore-sorting-facility-4 1 + product ore-sorting-facility-3 1 reinforced-concrete-brick 60 titanium-plate 48 titanium-gear-wheel 24 processing-unit 12 +power-switch circuit-network + recipe power-switch 1 + product copper-cable 5 iron-plate 5 electronic-circuit 2 +programmable-speaker circuit-network + recipe programmable-speaker 1 + product copper-cable 5 iron-plate 3 iron-stick 4 electronic-circuit 4 +pellet-press-4 angels-pellet-press + recipe pellet-press-4 1 + product pellet-press-3 1 reinforced-concrete-brick 10 tungsten-carbide 8 nitinol-gear-wheel 12 +powder-mixer-4 angels-powder-mixer + recipe powder-mixer-4 1 + product powder-mixer-3 1 reinforced-concrete-brick 5 tungsten-plate 4 tungsten-gear-wheel 3 +radar angels-artillery-a + recipe radar 1 + product iron-plate 10 iron-gear-wheel 5 basic-circuit-board 5 +radar-2 angels-artillery-a + recipe radar-2 1 + product steel-plate 10 steel-gear-wheel 5 electronic-circuit 5 radar 1 +radar-3 angels-artillery-a + recipe radar-3 1 + product aluminium-plate 10 brass-gear-wheel 5 steel-bearing 5 advanced-circuit 5 radar-2 1 +radar-4 angels-artillery-a + recipe radar-4 1 + product titanium-plate 10 titanium-gear-wheel 5 titanium-bearing 5 processing-unit 5 radar-3 1 +radar-5 angels-artillery-a + recipe radar-5 1 + product nitinol-alloy 10 nitinol-gear-wheel 5 nitinol-bearing 5 advanced-processing-unit 5 radar-4 1 +angels-atomic-bomb angels-explosion-a + recipe atomic-bomb 1 + product rocket-booster 1 explosives 10 rocket-control-unit 10 plutonium-239 30 +angels-atomic-bomb-2 angels-explosion-a + recipe atomic-bomb 2 + product rocket-booster 1 explosives 20 rocket-control-unit 20 angels-muon-fusion-catalyst 1 gas-deuterium 3600 +salination-plant water-treatment-building + recipe salination-plant 1 + product aluminium-plate 56 concrete-brick 75 advanced-circuit 12 brass-pipe 24 +sintering-oven-4 angels-sintering-oven + recipe sintering-oven-4 1 + product reinforced-concrete-brick 45 titanium-plate 32 processing-unit 5 +sintering-oven-5 angels-sintering-oven + recipe sintering-oven-5 1 + product reinforced-concrete-brick 45 tungsten-plate 32 sintering-oven-4 1 advanced-processing-unit 5 +solid-sodium-hydroxide-solid-sodium-sulfate petrochem-sodium + recipe solid-sodium-sulfate 2 water-purified 60 + product solid-sodium-hydroxide 4 liquid-sulfuric-acid 80 +pellet-chrome-smelting angels-chrome + recipe solid-chromate 24 + product pellet-chrome 8 solid-sodium-carbonate 7 gas-oxygen 60 +pellet-cobalt-smelting angels-cobalt + recipe solid-cobalt-hydroxide 6 + product pellet-cobalt 2 liquid-sulfuric-acid 20 +solid-fuel-synthesis petrochem-fuel + recipe solid-fuel 2 + product solid-coke 1 gas-synthesis 100 +processed-lead-smelting angels-lead + recipe lead-oxide 24 gas-sulfur-dioxide 120 + product processed-lead 8 gas-oxygen 120 +solid-lithium water-salination + recipe solid-lithium 20 + product thermal-water 1000 +manganese-processed-processing-alt angels-manganese + recipe solid-manganese-oxide 6 + product processed-manganese 4 gas-synthesis 60 +pellet-manganese-smelting angels-manganese + recipe solid-manganese-oxide 24 + product pellet-manganese 8 gas-natural-1 60 +processed-silver-smelting angels-silver + recipe silver-nitrate 12 + product processed-silver 4 liquid-nitric-acid 60 +pellet-aluminium-smelting angels-aluminium + recipe solid-sodium-aluminate 18 + product pellet-aluminium 6 solid-coke 3 solid-sodium-carbonate 3 +pellet-gold-smelting angels-gold + recipe solid-sodium-gold-cyanide 18 solid-sodium-hydroxide 4 + product pellet-gold 6 solid-sodium-cyanide 4 water-purified 40 gas-oxygen 40 +zinc-ore-processing-alt angels-zinc + recipe solid-zinc-oxide 8 gas-sulfur-dioxide 30 + product zinc-ore 8 gas-oxygen 60 +pellet-zinc-smelting angels-zinc + recipe solid-zinc-oxide 24 gas-sulfur-dioxide 30 + product pellet-zinc 8 gas-oxygen 60 +stone-crushed processing-crafting + recipe stone 1 + product stone-crushed 2 +strand-casting-machine-4 angels-strand-casting-machine + recipe strand-casting-machine-4 1 + product reinforced-concrete-brick 15 tungsten-plate 24 strand-casting-machine-3 1 tungsten-gear-wheel 12 advanced-processing-unit 3 tungsten-pipe 18 +defender-capsule angels-exploration-troups + recipe defender-capsule 1 + product defender-robot 1 +distractor-capsule angels-exploration-troups + recipe distractor-capsule 1 + product distractor-robot 3 +destroyer-capsule angels-exploration-troups + recipe destroyer-capsule 1 + product destroyer-robot 5 +bob-laser-robot-capsule angels-exploration-troups + recipe bob-laser-robot-capsule 1 + product bob-laser-robot 5 +yellow-waste-water-purification water-cleaning + recipe sulfur 1 water-mineralized 20 water-purified 70 + product water-yellow-waste 100 +boiler-4 angels-power-steam-boiler + recipe boiler-4 1 + product tungsten-plate 5 boiler-3 1 ceramic-pipe 4 +heat-exchanger-4 angels-power-nuclear-heat-exchanger + recipe heat-exchanger-4 1 + product copper-tungsten-alloy 10 heat-pipe-4 4 heat-exchanger-3 1 copper-tungsten-pipe 4 +fill-liquid-raw-fish-oil-barrel angels-fluid-control-bio-fish + recipe liquid-raw-fish-oil-barrel 1 + product empty-barrel 1 liquid-raw-fish-oil 50 +empty-liquid-raw-fish-oil-barrel angels-fluid-control-bio-fish + recipe empty-barrel 1 liquid-raw-fish-oil 50 + product liquid-raw-fish-oil-barrel 1 +fill-liquid-fuel-oil-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-fuel-oil-barrel 1 + product empty-barrel 1 liquid-fuel-oil 50 +empty-liquid-fuel-oil-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-fuel-oil 50 + product liquid-fuel-oil-barrel 1 +fill-liquid-fuel-barrel angels-fluid-control-bob-canister + recipe liquid-fuel-barrel 1 + product empty-canister 1 liquid-fuel 50 +empty-liquid-fuel-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 liquid-fuel 50 + product liquid-fuel-barrel 1 +fill-liquid-fish-oil-barrel angels-fluid-control-bio-fish + recipe liquid-fish-oil-barrel 1 + product empty-barrel 1 liquid-fish-oil 50 +empty-liquid-fish-oil-barrel angels-fluid-control-bio-fish + recipe empty-barrel 1 liquid-fish-oil 50 + product liquid-fish-oil-barrel 1 +fill-liquid-naphtha-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-naphtha-barrel 1 + product empty-barrel 1 liquid-naphtha 50 +empty-liquid-naphtha-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-naphtha 50 + product liquid-naphtha-barrel 1 +fill-liquid-mineral-oil-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-mineral-oil-barrel 1 + product empty-barrel 1 liquid-mineral-oil 50 +empty-liquid-mineral-oil-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-mineral-oil 50 + product liquid-mineral-oil-barrel 1 +lubricant fluid-recipes + recipe lubricant 10 + product liquid-naphtha 10 +fill-lubricant-barrel angels-fluid-control-petrochem-carbon-fluids + recipe lubricant-barrel 1 + product empty-barrel 1 lubricant 50 +empty-lubricant-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 lubricant 50 + product lubricant-barrel 1 +fill-gas-synthesis-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-synthesis-barrel 1 + product gas-canister 1 gas-synthesis 50 +empty-gas-synthesis-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-synthesis 50 + product gas-synthesis-barrel 1 +void-deuterium void + recipe void 1 + product gas-deuterium 20 +angels-logistic-chest-buffer angels-chests-big + recipe angels-logistic-chest-buffer 1 + product iron-plate 10 advanced-circuit 5 angels-big-chest 1 +angels-warehouse-buffer angels-warehouse + recipe angels-warehouse-buffer 1 + product steel-plate 20 advanced-circuit 20 angels-warehouse 1 +angelsore7-crystallization-2 bob-gems-crystallization + recipe topaz-ore 1 + product catalysator-green 1 crystal-seedling 50 +battery-mk5-equipment angels-personal-equipment-power-c + recipe battery-mk5-equipment 1 + product alien-artifact-yellow 5 alien-artifact-purple 5 silver-zinc-battery 5 battery-mk4-equipment 2 +bio-plastic-1 bio-plastic + recipe liquid-plastic 15 + product liquid-cellulose-acetate 25 gas-acetone 25 +bio-refugium-biter bio-processing-buildings-alien-a + recipe bio-refugium-biter 1 + product reinforced-concrete-brick 95 titanium-plate 40 processing-unit 4 stone-wall 4 titanium-pipe 33 +cobalt-oxide bob-material-chemical + recipe cobalt-oxide 2 + product cobalt-ore 2 solid-limestone 1 +discharge-defense-equipment angels-personal-equipment-combat-c + recipe discharge-defense-equipment 1 + product steel-plate 20 processing-unit 5 laser-turret 10 +electro-whinning-cell-2 ore-whinning + recipe electro-whinning-cell-2 1 + product electro-whinning-cell 1 reinforced-concrete-brick 20 titanium-plate 16 processing-unit 8 titanium-pipe 18 +energy-shield-mk5-equipment angels-personal-equipment-combat-a + recipe energy-shield-mk5-equipment 1 + product alien-artifact-yellow 5 alien-artifact-purple 5 advanced-processing-unit 5 energy-shield-mk4-equipment 2 effectivity-module-6 1 productivity-module-6 1 +ethanol-to-ethylene-synthesis bio-processor-fermentation + recipe gas-ethylene 50 water-yellow-waste 50 + product gas-ethanol 50 liquid-sulfuric-acid 50 +gas-ammonia petrochem-nitrogen + recipe catalyst-metal-carrier 1 gas-ammonia 100 + product catalyst-metal-red 1 gas-hydrogen 50 gas-nitrogen 50 +gas-carbon-dioxide-from-wood bio-processing-wood + recipe gas-carbon-dioxide 70 + product wood-pellets 1 +gas-dimethylhydrazine petrochem-rocket + recipe gas-dimethylhydrazine 200 water-purified 50 + product gas-dimethylamine 200 gas-monochloramine 50 +gas-fractioning-condensates petrochem-carbon-gas-feed + recipe gas-methane 30 gas-ethane 30 gas-butane 70 liquid-naphtha 20 + product liquid-ngl 100 liquid-condensates 50 +ground-water-pump washing-building + recipe ground-water-pump 1 + product stone-brick 5 basic-circuit-board 2 pipe 6 +hydrazine-generator angels-power-fluid-generator + recipe hydrazine-generator 1 + product copper-tungsten-alloy 5 nitinol-alloy 10 nitinol-gear-wheel 10 nitinol-bearing 10 advanced-processing-unit 5 fluid-generator-3 1 copper-tungsten-pipe 5 +liquid-bisphenol-a petrochem-chemistry + recipe liquid-bisphenol-a 100 + product liquid-phenol 60 gas-acetone 40 liquid-hydrochloric-acid 20 +logistic-chest-buffer angels-chests-small-b + recipe logistic-chest-buffer 1 + product electronic-circuit 3 advanced-circuit 1 steel-chest 1 +logistic-chest-buffer-2 angels-chests-small-c + recipe logistic-chest-buffer-2 1 + product advanced-circuit 3 processing-unit 1 brass-chest 1 +logistic-chest-buffer-3 angels-chests-small-d + recipe logistic-chest-buffer-3 1 + product processing-unit 3 advanced-processing-unit 1 titanium-chest 1 +paste-cobalt bio-processing-paste + recipe paste-cobalt 1 + product powder-cobalt 2 paste-cellulose 1 +personal-laser-defense-equipment-5 angels-personal-equipment-combat-b + recipe personal-laser-defense-equipment-5 1 + product nitinol-alloy 5 silver-zinc-battery 3 processing-unit 5 personal-laser-defense-equipment-4 1 topaz-5 1 +residual-oil-refining petrochem-carbon-oil-feed + recipe solid-oil-residual 1 liquid-mineral-oil 60 liquid-fuel-oil 30 liquid-naphtha 10 + product crude-oil 60 gas-residual 40 +slag-processing-5 slag-processing-1 + recipe zinc-ore 1 rutile-ore 1 + product mineral-sludge 50 +solid-sand water-washing-filtering + recipe solid-sand 5 + product water-thin-mud 10 water 25 +steam-engine-5 angels-power-steam-generator + recipe steam-engine-5 1 + product nitinol-alloy 5 nitinol-gear-wheel 5 nitinol-bearing 5 steam-engine-4 1 nitinol-pipe 5 +tungsten-oxide bob-material-chemical + recipe tungsten-oxide 1 + product liquid-tungstic-acid 10 +vehicle-battery-5 angels-vehicle-equipment-bobpower-d + recipe vehicle-battery-5 1 + product alien-artifact-yellow 5 alien-artifact-purple 5 silver-zinc-battery 5 vehicle-battery-4 2 +vehicle-big-turret-5 angels-vehicle-equipment-bobcombat-c + recipe vehicle-big-turret-5 1 + product nitinol-alloy 20 alien-artifact-yellow 15 alien-artifact-purple 15 silver-zinc-battery 12 processing-unit 20 vehicle-big-turret-4 1 +vehicle-fusion-cell-5 angels-vehicle-equipment-bobpower-b + recipe vehicle-fusion-cell-5 1 + product alien-artifact-yellow 8 alien-artifact-purple 8 advanced-processing-unit 25 vehicle-fusion-cell-4 1 speed-module-6 1 effectivity-module-6 1 productivity-module-6 1 +vehicle-fusion-reactor-5 angels-vehicle-equipment-bobpower-c + recipe vehicle-fusion-reactor-5 1 + product alien-artifact-yellow 15 alien-artifact-purple 15 advanced-processing-unit 50 vehicle-fusion-reactor-4 1 speed-module-6 2 effectivity-module-6 2 productivity-module-6 2 +vehicle-laser-defense-5 angels-vehicle-equipment-bobcombat-b + recipe vehicle-laser-defense-5 1 + product nitinol-alloy 5 silver-zinc-battery 3 processing-unit 5 vehicle-laser-defense-4 1 topaz-5 1 +vehicle-shield-5 angels-vehicle-equipment-bobcombat-a + recipe vehicle-shield-5 1 + product alien-artifact-yellow 5 alien-artifact-purple 5 advanced-processing-unit 5 vehicle-shield-4 2 effectivity-module-6 1 productivity-module-6 1 +vehicle-solar-panel-5 angels-vehicle-equipment-bobpower-a + recipe vehicle-solar-panel-5 1 + product gilded-copper-cable 5 silicon-wafer 10 nitinol-alloy 2 alien-artifact 10 advanced-processing-unit 5 vehicle-solar-panel-4 1 +washing-4 water-washing + recipe solid-mud 0 - 3 water-thin-mud 200 + product water-light-mud 200 water 50 +bob-topaz-3 bob-gems-raw + recipe topaz-3 1 + product topaz-ore 1 +bob-topaz-4 bob-gems-cut + recipe topaz-4 1 + product topaz-3 1 grinding-wheel 1 water 10 +bob-topaz-5 bob-gems-polished + recipe topaz-5 1 + product topaz-4 1 polishing-wheel 1 polishing-compound 1 +fill-gas-dinitrogen-tetroxide-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-dinitrogen-tetroxide-barrel 1 + product gas-canister 1 gas-dinitrogen-tetroxide 50 +fill-gas-epichlorhydrin-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-epichlorhydrin-barrel 1 + product gas-canister 1 gas-epichlorhydrin 50 +fill-gas-hydrogen-fluoride-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-hydrogen-fluoride-barrel 1 + product gas-canister 1 gas-hydrogen-fluoride 50 +fill-gas-hydrogen-peroxide-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-hydrogen-peroxide-barrel 1 + product gas-canister 1 gas-hydrogen-peroxide 50 +fill-gas-silane-barrel angels-fluid-control-angels-silicon + recipe gas-silane-barrel 1 + product gas-canister 1 gas-silane 50 +fill-liquid-chlorauric-acid-barrel angels-fluid-control-angels-gold + recipe liquid-chlorauric-acid-barrel 1 + product empty-canister 1 liquid-chlorauric-acid 50 +fill-liquid-green-liquor-barrel angels-fluid-control-bio-liquor + recipe liquid-green-liquor-barrel 1 + product empty-barrel 1 liquid-green-liquor 50 +fill-water-thin-mud-barrel angels-fluid-control-water-washing-fluid + recipe water-thin-mud-barrel 1 + product empty-barrel 1 water-thin-mud 50 +empty-gas-dinitrogen-tetroxide-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-dinitrogen-tetroxide 50 + product gas-dinitrogen-tetroxide-barrel 1 +empty-gas-epichlorhydrin-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-canister 1 gas-epichlorhydrin 50 + product gas-epichlorhydrin-barrel 1 +empty-gas-hydrogen-fluoride-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe gas-canister 1 gas-hydrogen-fluoride 50 + product gas-hydrogen-fluoride-barrel 1 +empty-gas-hydrogen-peroxide-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-hydrogen-peroxide 50 + product gas-hydrogen-peroxide-barrel 1 +empty-gas-silane-barrel angels-fluid-control-angels-silicon + recipe gas-canister 1 gas-silane 50 + product gas-silane-barrel 1 +empty-liquid-chlorauric-acid-barrel angels-fluid-control-angels-gold + recipe empty-canister 1 liquid-chlorauric-acid 50 + product liquid-chlorauric-acid-barrel 1 +empty-liquid-green-liquor-barrel angels-fluid-control-bio-liquor + recipe empty-barrel 1 liquid-green-liquor 50 + product liquid-green-liquor-barrel 1 +empty-water-thin-mud-barrel angels-fluid-control-water-washing-fluid + recipe empty-barrel 1 water-thin-mud 50 + product water-thin-mud-barrel 1 +acid-bullet angels-physical-ad + recipe acid-bullet 1 + product acid-bullet-projectile 1 cordite 1 bullet-casing 1 +acid-bullet-magazine angels-physical-ae + recipe acid-bullet-magazine 1 + product acid-bullet 5 magazine 1 +acid-bullet-projectile angels-physical-ac + recipe acid-bullet-projectile 2 + product copper-plate 1 alien-acid 10 +acid-rocket-warhead angels-explosion-ba + recipe acid-rocket-warhead 1 + product steel-plate 1 alien-acid 20 +bob-acid-rocket angels-explosion-bb + recipe bob-acid-rocket 1 + product acid-rocket-warhead 1 rocket-body 1 +shotgun-acid-shell angels-physical-bb + recipe shotgun-acid-shell 1 + product cordite 1 shotgun-shell-casing 1 alien-acid 10 +advanced-logistic-science-pack science-pack + recipe advanced-logistic-science-pack 3 + product brass-chest 2 flying-robot-frame 1 express-transport-belt 1 filter-inserter 1 +air-pump bob-pump + recipe air-pump 1 + product iron-plate 2 iron-gear-wheel 2 electronic-circuit 2 copper-pipe 2 +air-pump-2 bob-pump + recipe air-pump-2 1 + product air-pump 1 steel-plate 2 steel-gear-wheel 4 advanced-circuit 3 bronze-pipe 2 +air-pump-3 bob-pump + recipe air-pump-3 1 + product air-pump-2 1 titanium-plate 2 titanium-gear-wheel 4 titanium-bearing 4 processing-unit 3 brass-pipe 2 +air-pump-4 bob-pump + recipe air-pump-4 1 + product air-pump-3 1 nitinol-alloy 2 electric-engine-unit 1 nitinol-gear-wheel 4 nitinol-bearing 4 advanced-processing-unit 3 +laser-rifle-battery-amethyst angels-electric-c + recipe laser-rifle-battery-amethyst 1 + product lithium-ion-battery 4 laser-rifle-battery-case 1 amethyst-5 1 +angels-heavy-energy-shield-vequip angels-vehicle-equipment + recipe angels-heavy-energy-shield-vequip 1 + product iron-plate 20 steel-plate 20 advanced-circuit 20 +angels-glass-fiber-board angels-glass-casting + recipe fibreglass-board 4 + product angels-coil-glass-fiber 1 liquid-resin 40 +angelsore-chunk-mix1-processing ore-sorting-advanced + recipe quartz 4 + product catalysator-green 1 angels-ore5-chunk 2 angels-ore6-chunk 2 +angelsore5-chunk-processing ore-sorting-t2 + recipe slag 1 lead-ore 2 nickel-ore 1 bauxite-ore 1 quartz 1 + product angels-ore5-chunk 6 +angelsore5-chunk ore-processing-b + recipe angels-ore5-chunk 2 geode-cyan 1 water-red-waste 50 + product angels-ore5-crushed 2 water-purified 50 +angelsore5-crushed-processing ore-sorting-t1 + recipe slag 1 lead-ore 2 nickel-ore 1 + product angels-ore5-crushed 4 +angelsore5-crushed ore-processing-a + recipe angels-ore5-crushed 2 stone-crushed 1 + product angels-ore5 2 +angelsore5-crystal-processing ore-sorting-t3 + recipe slag 1 lead-ore 3 nickel-ore 1 bauxite-ore 1 quartz 1 gold-ore 1 + product angels-ore5-crystal 8 +angelsore5-crystal ore-processing-c + recipe angels-ore5-crystal 2 + product angels-ore5-chunk 2 liquid-nitric-acid 10 +angelsore5-pure-processing ore-sorting-t4 + recipe lead-ore 3 nickel-ore 2 bauxite-ore 1 quartz 1 gold-ore 1 uranium-ore 1 + product angels-ore5-pure 9 +angelsore5-pure ore-processing-d + recipe angels-ore5-pure 4 + product angels-ore5-crystal 4 +pellet-lead-smelting angels-lead + recipe anode-lead 24 gas-sulfur-dioxide 60 + product pellet-lead 8 solid-limestone 2 solid-coke 2 gas-oxygen 60 +solid-fuel-from-light-oil petrochem-fuel + recipe solid-fuel 1 + product liquid-fuel-oil 10 +solid-fuel-from-petroleum-gas petrochem-fuel + recipe solid-fuel 1 + product gas-methane 20 +solid-fuel-from-heavy-oil petrochem-fuel + recipe solid-fuel 1 + product liquid-naphtha 20 +solid-fuel-from-hydrogen petrochem-fuel + recipe solid-fuel 1 + product coal 1 gas-hydrogen 175 +catalyst-steam-cracking-naphtha petrochem-cracking + recipe catalyst-metal-carrier 1 gas-propene 100 + product catalyst-metal-red 1 liquid-naphtha 100 steam 100 +processed-manganese-smelting angels-manganese + recipe cathode-manganese 12 + product processed-manganese 4 liquid-sulfuric-acid 40 +solid-manganese-oxide-smelting angels-manganese + recipe cathode-manganese 12 solid-iron-hydroxide 4 + product ingot-iron 4 solid-manganese-oxide 12 liquid-sulfuric-acid 40 +solid-zinc-oxide-smelting angels-zinc + recipe cathode-zinc 12 + product solid-zinc-oxide 12 liquid-sulfuric-acid 40 +angels-clay-brick angels-stone + recipe clay-brick 4 + product clay-brick-raw 4 +angels-cobalt-steel-smelting-1 angels-alloys-casting + recipe liquid-molten-cobalt-steel 360 + product ingot-cobalt 12 ingot-steel 24 +angels-plate-cobalt-steel angels-alloys-casting + recipe cobalt-steel-alloy 4 + product liquid-molten-cobalt-steel 40 +cobalt-steel-alloy angels-alloys-casting + recipe cobalt-steel-alloy 10 + product cobalt-plate 1 iron-plate 14 +bob-robot-gun-drone angels-exploration-troups + recipe bob-robot-gun-drone 1 + product robot-brain-combat 1 gun-turret 1 robot-drone-frame 1 +bob-robot-laser-drone angels-exploration-troups + recipe bob-robot-laser-drone 1 + product robot-brain-combat 1 laser-turret 1 robot-drone-frame 1 +bob-robot-flamethrower-drone angels-exploration-troups + recipe bob-robot-flamethrower-drone 1 + product robot-brain-combat 1 flamethrower-turret 1 robot-drone-frame 1 +bob-robot-plasma-drone angels-exploration-troups + recipe bob-robot-plasma-drone 1 + product robot-brain-combat 1 bob-plasma-turret-1 1 robot-drone-frame-large 1 +gas-chlor-methane petrochem-chlorine + recipe gas-chlor-methane 100 + product gas-chlorine 60 gas-methane 40 +gas-propene-synthesis petrochem-chemistry + recipe gas-propene 80 gas-residual 20 + product gas-methanol 100 steam 50 +pellet-silicon-smelting angels-silicon + recipe alumina 6 gas-silane 120 + product ingot-aluminium 6 pellet-silica 8 gas-hydrogen 60 +gas-synthesis-methanol petrochem-carbon-synthesis + recipe catalyst-metal-carrier 1 water-purified 20 gas-methanol 80 + product catalyst-metal-green 1 gas-synthesis 100 gas-carbon-dioxide 40 +geode-cyan-liquify liquifying + recipe crystal-slurry 50 + product geode-cyan 5 liquid-sulfuric-acid 15 +geode-cyan-processing geode-processing-1 + recipe crystal-dust 3 stone-crushed 2 + product geode-cyan 2 +greenyellow-waste-water-purification water-cleaning + recipe fluorite-ore 1 water-mineralized 20 water-purified 70 + product water-greenyellow-waste 100 +copper-ore-smelting angels-copper + recipe ingot-copper 24 + product copper-ore 24 +processed-copper-smelting angels-copper + recipe ingot-copper 24 + product processed-copper 8 gas-oxygen 60 +anode-copper-smelting angels-copper + recipe ingot-copper 12 + product anode-copper 12 liquid-sulfuric-acid 30 +iron-ore-smelting angels-iron + recipe ingot-iron 24 + product iron-ore 24 +processed-iron-smelting angels-iron + recipe ingot-iron 24 + product processed-iron 8 solid-coke 2 +pellet-iron-smelting angels-iron + recipe ingot-iron 24 + product pellet-iron 8 solid-limestone 2 solid-coke 2 +solid-iron-hydroxide-smelting angels-iron + recipe ingot-iron 6 gas-carbon-dioxide 20 + product solid-iron-hydroxide 6 solid-coke 2 +burner-inserter bob-logistic-tier-0 + recipe burner-inserter 1 + product iron-plate 1 iron-gear-wheel 1 +steam-inserter bob-logistic-tier-0 + recipe steam-inserter 1 + product burner-inserter 1 pipe 1 +inserter bob-logistic-tier-1 + recipe inserter 1 + product iron-plate 1 iron-gear-wheel 1 basic-circuit-board 1 +yellow-filter-inserter bob-logistic-tier-1 + recipe yellow-filter-inserter 1 + product electronic-circuit 4 inserter 1 +long-handed-inserter bob-logistic-tier-2 + recipe long-handed-inserter 1 + product bronze-alloy 1 steel-gear-wheel 1 electronic-circuit 1 inserter 1 +red-filter-inserter bob-logistic-tier-2 + recipe red-filter-inserter 1 + product bronze-alloy 1 steel-gear-wheel 1 electronic-circuit 1 yellow-filter-inserter 1 +red-stack-inserter bob-logistic-tier-2 + recipe red-stack-inserter 1 + product bronze-alloy 3 steel-gear-wheel 5 long-handed-inserter 1 +red-stack-filter-inserter bob-logistic-tier-2 + recipe red-stack-filter-inserter 1 + product electronic-circuit 5 red-stack-inserter 1 +fast-inserter bob-logistic-tier-3 + recipe fast-inserter 1 + product aluminium-plate 1 cobalt-steel-gear-wheel 1 cobalt-steel-bearing 1 advanced-circuit 1 long-handed-inserter 1 +filter-inserter bob-logistic-tier-3 + recipe filter-inserter 1 + product aluminium-plate 1 cobalt-steel-gear-wheel 1 cobalt-steel-bearing 1 advanced-circuit 5 red-filter-inserter 1 +stack-inserter bob-logistic-tier-3 + recipe stack-inserter 1 + product aluminium-plate 4 cobalt-steel-gear-wheel 6 cobalt-steel-bearing 5 advanced-circuit 1 red-stack-inserter 1 +stack-filter-inserter bob-logistic-tier-3 + recipe stack-filter-inserter 1 + product aluminium-plate 4 cobalt-steel-gear-wheel 6 cobalt-steel-bearing 6 advanced-circuit 6 red-stack-filter-inserter 1 +turbo-inserter bob-logistic-tier-4 + recipe turbo-inserter 1 + product titanium-plate 1 titanium-gear-wheel 1 titanium-bearing 1 processing-unit 1 fast-inserter 1 +turbo-filter-inserter bob-logistic-tier-4 + recipe turbo-filter-inserter 1 + product titanium-plate 1 titanium-gear-wheel 1 titanium-bearing 1 processing-unit 5 filter-inserter 1 +turbo-stack-inserter bob-logistic-tier-4 + recipe turbo-stack-inserter 1 + product titanium-plate 4 titanium-gear-wheel 6 titanium-bearing 6 processing-unit 1 stack-inserter 1 +turbo-stack-filter-inserter bob-logistic-tier-4 + recipe turbo-stack-filter-inserter 1 + product titanium-plate 4 titanium-gear-wheel 6 titanium-bearing 6 processing-unit 6 stack-filter-inserter 1 +express-inserter bob-logistic-tier-5 + recipe express-inserter 1 + product nitinol-alloy 1 nitinol-gear-wheel 1 nitinol-bearing 1 advanced-processing-unit 1 turbo-inserter 1 +express-filter-inserter bob-logistic-tier-5 + recipe express-filter-inserter 1 + product nitinol-alloy 1 nitinol-gear-wheel 1 nitinol-bearing 1 advanced-processing-unit 5 turbo-filter-inserter 1 +express-stack-inserter bob-logistic-tier-5 + recipe express-stack-inserter 1 + product nitinol-alloy 4 nitinol-gear-wheel 6 nitinol-bearing 6 advanced-processing-unit 1 turbo-stack-inserter 1 +express-stack-filter-inserter bob-logistic-tier-5 + recipe express-stack-filter-inserter 1 + product nitinol-alloy 4 nitinol-gear-wheel 6 nitinol-bearing 6 advanced-processing-unit 6 turbo-stack-filter-inserter 1 +landfill processing-crafting + recipe landfill 1 + product stone 20 +liquid-chlorauric-acid angels-gold + recipe liquid-chlorauric-acid 120 + product ingot-gold 12 liquid-nitric-acid 30 liquid-hydrochloric-acid 30 +liquid-hydrofluoric-acid petrochem-sulfur + recipe solid-calcium-sulfate 1 liquid-hydrofluoric-acid 50 + product fluorite-ore 5 liquid-sulfuric-acid 50 +liquid-hydrogen-fluoride petrochem-sulfur + recipe liquid-hydrofluoric-acid 60 + product gas-hydrogen-fluoride 90 water-purified 40 +gas-hydrogen-fluoride petrochem-sulfur + recipe gas-hydrogen-fluoride 55 water-greenyellow-waste 50 + product liquid-hydrofluoric-acid 50 +solid-sodium-carbonate-electrolysis petrochem-sodium + recipe angels-electrode-used 1 liquid-aqueous-sodium-hydroxide 50 gas-carbon-dioxide 50 + product solid-sodium-carbonate 5 angels-electrode 1 water-purified 50 +liquid-aqueous-sodium-hydroxide petrochem-sodium + recipe liquid-aqueous-sodium-hydroxide 50 + product solid-sodium-hydroxide 5 water-purified 50 +pellet-coke petrochem-coal + recipe pellet-coke 1 + product solid-coke 5 +powder-tin angels-tin + recipe powder-tin 1 + product ingot-tin 1 +crystal-powder-full-blue bio-biter-processing-crystal-full + recipe crystal-powder 15 milling-drum-used 1 + product milling-drum 1 crystal-full-blue-cut 5 +crystal-powder-shard-blue bio-biter-processing-crystal-shard + recipe crystal-powder 10 milling-drum-used 1 + product milling-drum 1 crystal-shard-blue-cut 5 +crystal-powder-splinter-blue bio-biter-processing-crystal-splinter + recipe crystal-powder 5 milling-drum-used 1 + product milling-drum 1 crystal-splinter-blue-cut 5 +crystal-powder-full-red bio-biter-processing-crystal-full + recipe crystal-powder 15 milling-drum-used 1 + product milling-drum 1 crystal-full-red-cut 5 +crystal-powder-shard-red bio-biter-processing-crystal-shard + recipe crystal-powder 10 milling-drum-used 1 + product milling-drum 1 crystal-shard-red-cut 5 +crystal-powder-splinter-red bio-biter-processing-crystal-splinter + recipe crystal-powder 5 milling-drum-used 1 + product milling-drum 1 crystal-splinter-red-cut 5 +crystal-powder-full-green bio-biter-processing-crystal-full + recipe crystal-powder 15 milling-drum-used 1 + product milling-drum 1 crystal-full-green-cut 5 +crystal-powder-shard-green bio-biter-processing-crystal-shard + recipe crystal-powder 10 milling-drum-used 1 + product milling-drum 1 crystal-shard-green-cut 5 +crystal-powder-splinter-green bio-biter-processing-crystal-splinter + recipe crystal-powder 5 milling-drum-used 1 + product milling-drum 1 crystal-splinter-green-cut 5 +production-science-pack science-pack + recipe production-science-pack 3 + product electric-furnace 1 assembling-machine-2 1 angels-chemical-plant 1 +alien-artifact-purple-from-basic bio-processing-alien-large-convert + recipe alien-artifact-purple 5 + product alien-artifact-purple 1 alien-artifact 5 +alien-artifact-purple-from-small bio-processing-alien-large + recipe alien-artifact-purple 1 + product small-alien-artifact-purple 25 +alien-pre-artifact-purple bio-processing-alien-pre + recipe alien-pre-artifact-purple 1 + product seeded-dish 1 paste-titanium 1 amethyst-4 1 +small-alien-artifact-purple bio-processing-alien-small + recipe small-alien-artifact-purple 1 + product alien-pre-artifact-purple 1 +salination-plant-2 water-treatment-building + recipe salination-plant-2 1 + product reinforced-concrete-brick 75 titanium-plate 56 salination-plant 1 processing-unit 12 titanium-pipe 24 +silver-oxide angels-silver + recipe silver-oxide 1 + product silver-nitrate 1 solid-sodium-hydroxide 1 +bauxite-ore-smelting angels-aluminium + recipe solid-aluminium-hydroxide 12 + product bauxite-ore 12 solid-sodium-hydroxide 3 +processed-aluminium-smelting angels-aluminium + recipe solid-aluminium-hydroxide 12 + product processed-aluminium 4 solid-sodium-hydroxide 3 +liquid-hexachloroplatinic-acid-smelting angels-platinum + recipe solid-ammonium-chloroplatinate 24 + product liquid-hexachloroplatinic-acid 120 gas-ammonium-chloride 60 +solid-calcium-chloride petrochem-basics + recipe solid-calcium-chloride 3 + product stone-crushed 6 gas-hydrogen-chloride 30 +cobalt-ore-processing-alt angels-cobalt + recipe cobalt-oxide 8 + product cobalt-ore 8 solid-limestone 3 +processed-cobalt-smelting angels-cobalt + recipe cobalt-oxide 24 + product processed-cobalt 8 solid-limestone 6 +solid-cobalt-hydroxide-smelting angels-cobalt + recipe cobalt-oxide 24 + product solid-cobalt-hydroxide 24 solid-calcium-chloride 6 +solid-chromate-smelting angels-chrome + recipe solid-dichromate 12 solid-sodium-sulfate 1 water-purified 40 + product solid-chromate 12 liquid-sulfuric-acid 40 +solid-fuel-hydrazine petrochem-fuel + recipe solid-fuel 2 + product gas-hydrazine 50 +pellet-nickel-smelting angels-nickel + recipe solid-nickel-carbonyl 24 + product pellet-nickel 8 sulfur 1 gas-carbon-monoxide 60 +liquid-tungstic-acid-smelting angels-tungsten + recipe tungsten-oxide 24 water-purified 60 + product liquid-tungstic-acid 120 +pellet-tungsten-smelting angels-tungsten + recipe tungsten-oxide 12 + product pellet-tungsten 4 gas-ammonia 60 +liquid-titanium-tetrachloride-smelting angels-titanium + recipe sponge-titanium 24 + product liquid-titanium-tetrachloride 120 +steam-cracking-naphtha petrochem-cracking + recipe gas-synthesis 150 gas-residual 10 + product liquid-naphtha 100 steam 100 +liquid-toluene-from-naphtha petrochem-feedstock + recipe catalyst-metal-carrier 1 liquid-toluene 100 + product catalyst-metal-green 1 liquid-naphtha 100 gas-hydrogen 100 +liquid-toluene-from-benzene petrochem-feedstock + recipe catalyst-metal-carrier 1 liquid-toluene 100 gas-hydrogen-chloride 50 + product catalyst-metal-green 1 gas-benzene 100 gas-chlor-methane 50 +water-pump bob-pump + recipe water-pump 1 + product iron-plate 2 iron-gear-wheel 2 electronic-circuit 2 copper-pipe 2 +water-pump-2 bob-pump + recipe water-pump-2 1 + product water-pump 1 steel-plate 2 steel-gear-wheel 4 advanced-circuit 3 bronze-pipe 2 +water-pump-3 bob-pump + recipe water-pump-3 1 + product water-pump-2 1 titanium-plate 2 titanium-gear-wheel 4 titanium-bearing 4 processing-unit 3 brass-pipe 2 +water-pump-4 bob-pump + recipe water-pump-4 1 + product water-pump-3 1 nitinol-alloy 2 electric-engine-unit 1 nitinol-gear-wheel 4 nitinol-bearing 4 advanced-processing-unit 3 +boiler-5 angels-power-steam-boiler + recipe boiler-5 1 + product copper-tungsten-alloy 5 boiler-4 1 copper-tungsten-pipe 4 +fill-liquid-toluene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-toluene-barrel 1 + product empty-barrel 1 liquid-toluene 50 +fill-lithia-water-barrel angels-fluid-control-water-treatment-fluid + recipe lithia-water-barrel 1 + product empty-barrel 1 lithia-water 50 +empty-liquid-toluene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-toluene 50 + product liquid-toluene-barrel 1 +empty-lithia-water-barrel angels-fluid-control-water-treatment-fluid + recipe empty-barrel 1 lithia-water 50 + product lithia-water-barrel 1 +fill-gas-butadiene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-butadiene-barrel 1 + product gas-canister 1 gas-butadiene 50 +empty-gas-butadiene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-butadiene 50 + product gas-butadiene-barrel 1 +fill-liquid-phenol-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-phenol-barrel 1 + product empty-barrel 1 liquid-phenol 50 +empty-liquid-phenol-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-phenol 50 + product liquid-phenol-barrel 1 +fill-liquid-ethylbenzene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-ethylbenzene-barrel 1 + product empty-barrel 1 liquid-ethylbenzene 50 +empty-liquid-ethylbenzene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-ethylbenzene 50 + product liquid-ethylbenzene-barrel 1 +fill-liquid-styrene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-styrene-barrel 1 + product empty-barrel 1 liquid-styrene 50 +empty-liquid-styrene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-styrene 50 + product liquid-styrene-barrel 1 +fill-gas-formaldehyde-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-formaldehyde-barrel 1 + product gas-canister 1 gas-formaldehyde 50 +fill-liquid-polyethylene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-polyethylene-barrel 1 + product empty-barrel 1 liquid-polyethylene 50 +empty-gas-formaldehyde-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-formaldehyde 50 + product gas-formaldehyde-barrel 1 +empty-liquid-polyethylene-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-polyethylene 50 + product liquid-polyethylene-barrel 1 +fill-liquid-glycerol-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-glycerol-barrel 1 + product empty-barrel 1 liquid-glycerol 50 +empty-liquid-glycerol-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-glycerol 50 + product liquid-glycerol-barrel 1 +fill-liquid-bisphenol-a-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-bisphenol-a-barrel 1 + product empty-barrel 1 liquid-bisphenol-a 50 +empty-liquid-bisphenol-a-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-bisphenol-a 50 + product liquid-bisphenol-a-barrel 1 +fill-gas-acetone-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-acetone-barrel 1 + product gas-canister 1 gas-acetone 50 +empty-gas-acetone-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-acetone 50 + product gas-acetone-barrel 1 +fill-gas-ethylene-oxide-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-ethylene-oxide-barrel 1 + product gas-canister 1 gas-ethylene-oxide 50 +empty-gas-ethylene-oxide-barrel angels-fluid-control-petrochem-carbon-fluids + recipe gas-canister 1 gas-ethylene-oxide 50 + product gas-ethylene-oxide-barrel 1 +fill-liquid-ethylene-carbonate-barrel angels-fluid-control-petrochem-carbon-fluids + recipe liquid-ethylene-carbonate-barrel 1 + product empty-barrel 1 liquid-ethylene-carbonate 50 +empty-liquid-ethylene-carbonate-barrel angels-fluid-control-petrochem-carbon-fluids + recipe empty-barrel 1 liquid-ethylene-carbonate 50 + product liquid-ethylene-carbonate-barrel 1 +angels-logistic-chest-requester angels-chests-big + recipe angels-logistic-chest-requester 1 + product iron-plate 10 electronic-circuit 5 angels-big-chest 1 +angels-warehouse-requester angels-warehouse + recipe angels-warehouse-requester 1 + product steel-plate 20 electronic-circuit 20 angels-warehouse 1 +angelsore7-crystallization-6 bob-gems-crystallization + recipe diamond-ore 1 + product catalysator-green 1 crystal-seedling 50 +battery-mk6-equipment angels-personal-equipment-power-c + recipe battery-mk6-equipment 1 + product alien-artifact-red 5 alien-artifact-green 5 advanced-processing-unit 5 battery-mk5-equipment 2 +bio-puffer-egg-shell-powder bio-puffer-egg + recipe bio-puffer-egg-shell-powder 2 milling-drum-used 1 + product milling-drum 1 bio-puffer-egg-shell 2 +bio-refugium-hogger bio-processing-buildings-alien-a + recipe bio-refugium-hogger 1 + product clay-brick 15 steel-plate 12 electronic-circuit 4 steel-pipe 33 +bio-tile angels-stone + recipe bio-tile 5 - 10 + product solid-glass-mixture 1 concrete-brick 2 solid-soil 2 token-bio 1 +coolant-cool-100 coolant + recipe liquid-coolant-used 200 steam 50 + product liquid-coolant-used 200 water 50 +electro-whinning-cell-3 ore-whinning + recipe electro-whinning-cell-3 1 + product electro-whinning-cell-2 1 reinforced-concrete-brick 20 tungsten-plate 16 advanced-processing-unit 8 tungsten-pipe 18 +energy-shield-mk6-equipment angels-personal-equipment-combat-a + recipe energy-shield-mk6-equipment 1 + product alien-artifact-red 5 alien-artifact-green 5 advanced-processing-unit 5 energy-shield-mk5-equipment 2 effectivity-module-8 1 productivity-module-8 1 +gas-ammonium-chloride petrochem-nitrogen + recipe gas-ammonium-chloride 100 + product gas-ammonia 50 gas-hydrogen-chloride 50 +gas-dinitrogen-tetroxide petrochem-rocket + recipe catalyst-metal-carrier 1 gas-dinitrogen-tetroxide 50 + product catalyst-metal-yellow 1 gas-nitrogen-dioxide 100 +gas-fractioning-residual petrochem-carbon-gas-feed + recipe gas-methane 40 gas-ethane 40 gas-butane 50 liquid-toluene 20 + product liquid-ngl 100 gas-residual 50 +liquid-mineral-oil-catalyst petrochem-carbon-oil-feed + recipe liquid-mineral-oil 100 + product liquid-naphtha 60 thermal-water 20 gas-carbon-monoxide 20 +liquid-propionic-acid-catalyst bio-plastic + recipe catalyst-metal-carrier 1 liquid-propionic-acid 50 + product catalyst-metal-green 1 gas-ethylene 50 gas-carbon-monoxide 50 water-purified 50 +logistic-chest-requester angels-chests-small-b + recipe logistic-chest-requester 1 + product electronic-circuit 3 advanced-circuit 1 steel-chest 1 +logistic-chest-requester-2 angels-chests-small-c + recipe logistic-chest-requester-2 1 + product advanced-circuit 3 processing-unit 1 brass-chest 1 +logistic-chest-requester-3 angels-chests-small-d + recipe logistic-chest-requester-3 1 + product processing-unit 3 advanced-processing-unit 1 titanium-chest 1 +paste-titanium bio-processing-paste + recipe paste-titanium 1 + product powder-titanium 2 paste-cellulose 1 +personal-laser-defense-equipment-6 angels-personal-equipment-combat-b + recipe personal-laser-defense-equipment-6 1 + product nitinol-alloy 5 alien-artifact-red 5 alien-artifact-green 5 silver-zinc-battery 3 advanced-processing-unit 5 personal-laser-defense-equipment-5 1 diamond-5 1 +slag-processing-6 slag-processing-1 + recipe bauxite-ore 1 manganese-ore 1 chrome-ore 1 + product mineral-sludge 50 +steam-turbine angels-power-steam-generator + recipe steam-turbine 1 + product aluminium-plate 25 cobalt-steel-gear-wheel 20 cobalt-steel-bearing 10 advanced-circuit 5 steam-engine-3 1 +vehicle-battery-6 angels-vehicle-equipment-bobpower-d + recipe vehicle-battery-6 1 + product alien-artifact-red 5 alien-artifact-green 5 advanced-processing-unit 5 vehicle-battery-5 2 +vehicle-big-turret-6 angels-vehicle-equipment-bobcombat-c + recipe vehicle-big-turret-6 1 + product nitinol-alloy 20 alien-artifact-red 15 alien-artifact-green 15 silver-zinc-battery 12 advanced-processing-unit 20 vehicle-big-turret-5 1 +vehicle-fusion-cell-6 angels-vehicle-equipment-bobpower-b + recipe vehicle-fusion-cell-6 1 + product alien-artifact-red 8 alien-artifact-green 8 advanced-processing-unit 25 vehicle-fusion-cell-5 1 speed-module-8 1 effectivity-module-8 1 productivity-module-8 1 +vehicle-fusion-reactor-6 angels-vehicle-equipment-bobpower-c + recipe vehicle-fusion-reactor-6 1 + product alien-artifact-red 15 alien-artifact-green 15 advanced-processing-unit 50 vehicle-fusion-reactor-5 1 speed-module-8 2 effectivity-module-8 2 productivity-module-8 2 +vehicle-laser-defense-6 angels-vehicle-equipment-bobcombat-b + recipe vehicle-laser-defense-6 1 + product nitinol-alloy 5 silver-zinc-battery 3 advanced-processing-unit 5 vehicle-laser-defense-5 1 diamond-5 1 +vehicle-shield-6 angels-vehicle-equipment-bobcombat-a + recipe vehicle-shield-6 1 + product alien-artifact-red 5 alien-artifact-green 5 advanced-processing-unit 5 vehicle-shield-5 2 effectivity-module-8 1 productivity-module-8 1 +vehicle-solar-panel-6 angels-vehicle-equipment-bobpower-a + recipe vehicle-solar-panel-6 1 + product gilded-copper-cable 5 silicon-wafer 10 nitinol-alloy 2 alien-artifact 10 advanced-processing-unit 5 vehicle-solar-panel-5 1 diamond-5 1 +washing-5 water-washing + recipe solid-mud 0 - 3 water-saline 200 + product water-thin-mud 200 water 50 +water-gas-shift-1 petrochem-basics + recipe gas-carbon-dioxide 50 gas-hydrogen 50 + product gas-carbon-monoxide 50 steam 50 +wood-charcoal bio-processing-wood + recipe wood-charcoal 3 + product wood-pellets 2 +bob-diamond-3 bob-gems-raw + recipe diamond-3 1 + product diamond-ore 1 +bob-diamond-4 bob-gems-cut + recipe diamond-4 1 + product diamond-3 1 grinding-wheel 1 water 10 +bob-diamond-5 bob-gems-polished + recipe diamond-5 1 + product diamond-4 1 polishing-wheel 1 polishing-compound 1 +fill-gas-ammonium-chloride-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-ammonium-chloride-barrel 1 + product gas-canister 1 gas-ammonium-chloride 50 +fill-gas-carbon-monoxide-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-carbon-monoxide-barrel 1 + product gas-canister 1 gas-carbon-monoxide 50 +fill-gas-chlor-methane-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-chlor-methane-barrel 1 + product gas-canister 1 gas-chlor-methane 50 +fill-gas-tungsten-hexafluoride-barrel angels-fluid-control-angels-tungsten + recipe gas-tungsten-hexafluoride-barrel 1 + product gas-canister 1 gas-tungsten-hexafluoride 50 +fill-liquid-hexafluorosilicic-acid-barrel angels-fluid-control-angels-lead + recipe liquid-hexafluorosilicic-acid-barrel 1 + product empty-canister 1 liquid-hexafluorosilicic-acid 50 +fill-liquid-hydrofluoric-acid-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe liquid-hydrofluoric-acid-barrel 1 + product empty-canister 1 liquid-hydrofluoric-acid 50 +empty-gas-ammonium-chloride-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-ammonium-chloride 50 + product gas-ammonium-chloride-barrel 1 +empty-gas-carbon-monoxide-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-carbon-monoxide 50 + product gas-carbon-monoxide-barrel 1 +empty-gas-chlor-methane-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-canister 1 gas-chlor-methane 50 + product gas-chlor-methane-barrel 1 +empty-gas-tungsten-hexafluoride-barrel angels-fluid-control-angels-tungsten + recipe gas-canister 1 gas-tungsten-hexafluoride 50 + product gas-tungsten-hexafluoride-barrel 1 +empty-liquid-hexafluorosilicic-acid-barrel angels-fluid-control-angels-lead + recipe empty-canister 1 liquid-hexafluorosilicic-acid 50 + product liquid-hexafluorosilicic-acid-barrel 1 +empty-liquid-hydrofluoric-acid-barrel angels-fluid-control-petrochem-sulfer-fluids + recipe empty-canister 1 liquid-hydrofluoric-acid 50 + product liquid-hydrofluoric-acid-barrel 1 +alien-blue-alloy bob-alien-resource + recipe alien-blue-alloy 10 + product tungsten-plate 10 alien-artifact-blue 1 +alien-orange-alloy bob-alien-resource + recipe alien-orange-alloy 10 + product steel-plate 10 alien-artifact-orange 1 +alien-acid bob-alien-resource + recipe alien-acid 100 + product alien-artifact-purple 1 liquid-sulfuric-acid 100 +fill-alien-acid-barrel angels-fluid-control-bob-canister + recipe alien-acid-barrel 1 + product empty-canister 1 alien-acid 50 +empty-alien-acid-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 alien-acid 50 + product alien-acid-barrel 1 +alien-explosive bob-alien-resource + recipe alien-explosive 100 + product coal 6 sulfur 6 alien-artifact-yellow 1 +fill-alien-explosive-barrel angels-fluid-control-bob-canister + recipe alien-explosive-barrel 1 + product empty-canister 1 alien-explosive 50 +empty-alien-explosive-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 alien-explosive 50 + product alien-explosive-barrel 1 +alien-poison bob-alien-resource + recipe alien-poison 100 + product coal 6 alien-artifact-green 1 liquid-nitric-acid 60 +fill-alien-poison-barrel angels-fluid-control-bob-canister + recipe alien-poison-barrel 1 + product empty-canister 1 alien-poison 50 +empty-alien-poison-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 alien-poison 50 + product alien-poison-barrel 1 +alien-fire bob-alien-resource + recipe alien-fire 100 + product alien-artifact-red 1 liquid-naphtha 60 liquid-fuel-oil 60 +fill-alien-fire-barrel angels-fluid-control-bob-canister + recipe alien-fire-barrel 1 + product empty-canister 1 alien-fire 50 +empty-alien-fire-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 alien-fire 50 + product alien-fire-barrel 1 +alumina bob-material-chemical + recipe alumina 1 + product bauxite-ore 1 solid-sodium-hydroxide 1 +ammoniated-brine bob-fluid + recipe ammoniated-brine 10 + product water-saline 10 gas-ammonia 25 +ammonium-chloride-recycling bob-resource-chemical + recipe solid-calcium-chloride 1 gas-ammonia 50 water-purified 10 + product ammonium-chloride 2 solid-limestone 1 +angelsore-chunk-mix2-processing ore-sorting-advanced + recipe nickel-ore 4 + product catalysator-green 1 angels-ore1-chunk 2 angels-ore5-chunk 2 +angelsore6-chunk-processing ore-sorting-t2 + recipe slag 1 tin-ore 2 quartz 1 silver-ore 1 zinc-ore 1 + product angels-ore6-chunk 6 +angelsore6-chunk ore-processing-b + recipe angels-ore6-chunk 2 geode-red 1 water-yellow-waste 50 + product angels-ore6-crushed 2 water-purified 50 +angelsore6-crushed-processing ore-sorting-t1 + recipe slag 1 tin-ore 2 quartz 1 + product angels-ore6-crushed 4 +angelsore6-crushed ore-processing-a + recipe angels-ore6-crushed 2 stone-crushed 1 + product angels-ore6 2 +angelsore6-crystal-processing ore-sorting-t3 + recipe slag 1 tin-ore 3 quartz 1 silver-ore 1 zinc-ore 1 gold-ore 1 + product angels-ore6-crystal 8 +angelsore6-crystal ore-processing-c + recipe angels-ore6-crystal 2 + product angels-ore6-chunk 2 liquid-sulfuric-acid 10 +angelsore6-pure-processing ore-sorting-t4 + recipe tin-ore 3 quartz 2 silver-ore 1 zinc-ore 1 gold-ore 1 cobalt-ore 1 + product angels-ore6-pure 9 +angelsore6-pure ore-processing-d + recipe angels-ore6-pure 4 + product angels-ore6-crystal 4 +brine bob-fluid + recipe water-saline 10 + product solid-salt 1 water-purified 10 +calcium-chloride bob-resource-chemical + recipe solid-calcium-chloride 1 gas-hydrogen 20 + product solid-limestone 1 gas-hydrogen-chloride 50 +steam-cracking-mineral-oil petrochem-cracking + recipe gas-synthesis 100 gas-residual 10 + product liquid-mineral-oil 100 steam 100 +processed-gold-smelting angels-gold + recipe cathode-gold 12 + product processed-gold 2 liquid-chlorauric-acid 60 +solid-sodium-gold-cyanide-smelting angels-gold + recipe cathode-gold 12 + product solid-sodium-gold-cyanide 12 +coal-cracking-1 petrochem-coal + recipe solid-coke 6 gas-hydrogen-sulfide 50 gas-benzene 30 gas-methane 70 + product coal 5 +cooling-tower boiler-building + recipe cooling-tower 1 + product clay-brick 50 bronze-alloy 30 electronic-circuit 5 bronze-pipe 15 +robot-drone-frame angels-exploration-troups + recipe robot-drone-frame 1 + product steel-plate 10 electric-engine-unit 2 battery 6 steel-gear-wheel 10 steel-bearing 10 electronic-circuit 10 +robot-drone-frame-large angels-exploration-troups + recipe robot-drone-frame-large 1 + product steel-plate 20 electric-engine-unit 2 battery 12 steel-gear-wheel 10 steel-bearing 10 electronic-circuit 10 +solid-tungsten-oxide-smelting angels-tungsten + recipe gas-tungsten-hexafluoride 60 + product tungsten-oxide 12 gas-hydrogen-fluoride 30 +geode-red-liquify liquifying + recipe crystal-slurry 20 + product geode-red 5 liquid-sulfuric-acid 15 +geode-red-processing geode-processing-1 + recipe crystal-dust 1 stone-crushed 2 + product geode-red 2 +green-waste-water-purification water-cleaning + recipe solid-salt 1 water-saline 20 water-purified 70 + product water-green-waste 100 +alien-artifact-green-from-basic bio-processing-alien-large-convert + recipe alien-artifact-green 5 + product alien-artifact-green 1 alien-artifact 5 +alien-artifact-green-from-small bio-processing-alien-large + recipe alien-artifact-green 1 + product small-alien-artifact-green 25 +alien-pre-artifact-green bio-processing-alien-pre + recipe alien-pre-artifact-green 1 + product seeded-dish 1 paste-zinc 1 emerald-4 1 +small-alien-artifact-green bio-processing-alien-small + recipe small-alien-artifact-green 1 + product alien-pre-artifact-green 1 +cobalt-ore-smelting angels-cobalt + recipe ingot-cobalt 24 + product cobalt-ore 24 solid-carbon 6 +solid-cobalt-oxide-smelting angels-cobalt + recipe ingot-cobalt 24 + product cobalt-oxide 24 solid-carbon 6 +manganese-ore-smelting angels-manganese + recipe ingot-manganese 24 + product manganese-ore 24 solid-coke 6 +cathode-manganese-smelting angels-manganese + recipe ingot-manganese 24 + product cathode-manganese 24 +nickel-ore-smelting angels-nickel + recipe ingot-nickel 24 + product nickel-ore 24 gas-carbon-monoxide 60 +cathode-nickel-smelting angels-nickel + recipe ingot-nickel 24 + product cathode-nickel 24 +solid-nickel-carbonyl-smelting angels-nickel + recipe ingot-nickel 24 + product solid-nickel-carbonyl 18 ingot-nickel 6 +platinum-ore-smelting angels-platinum + recipe ingot-platinum 24 + product platinum-ore 24 +processed-platinum-smelting angels-platinum + recipe ingot-platinum 24 + product processed-platinum 8 liquid-sulfuric-acid 60 +solid-ammonium-chloroplatinate-smelting angels-platinum + recipe ingot-platinum 24 + product solid-ammonium-chloroplatinate 24 +silicon-ore-smelting angels-silicon + recipe ingot-silicon 24 + product quartz 24 solid-carbon 6 +liquid-trichlorosilane-smelting angels-silicon + recipe ingot-silicon 24 + product ingot-silicon 6 liquid-trichlorosilane 90 +gas-silane-smelting angels-silicon + recipe ingot-silicon 24 + product ingot-silicon 6 gas-silane 90 +ingot-iron-smelting angels-iron + recipe ingot-steel 6 + product ingot-iron 24 gas-oxygen 60 +sponge-titanium-smelting angels-titanium + recipe ingot-titanium 24 + product sponge-titanium 24 +pellet-titanium-smelting angels-titanium + recipe ingot-titanium 24 solid-limestone 6 + product pellet-titanium 8 solid-carbon 6 solid-calcium-chloride 6 +zinc-ore-smelting angels-zinc + recipe ingot-zinc 24 ingot-lead 6 gas-sulfur-dioxide 30 + product zinc-ore 24 gas-oxygen 60 liquid-molten-lead 60 +processed-zinc-smelting angels-zinc + recipe ingot-zinc 24 gas-sulfur-dioxide 30 + product processed-zinc 8 solid-carbon 6 gas-oxygen 60 +cathode-zinc-smelting angels-zinc + recipe ingot-zinc 24 + product cathode-zinc 24 +lead-oxide bob-resource-chemical + recipe lead-oxide 1 gas-sulfur-dioxide 10 + product lead-ore 1 gas-oxygen 10 +lead-oxide-2 bob-resource-chemical + recipe lead-oxide 1 gas-hydrogen-sulfide 10 + product lead-ore 1 water 4 +silver-nitrate bob-resource-chemical + recipe silver-nitrate 1 + product silver-plate 1 gas-nitrogen-dioxide 10 +limestone bob-resource-chemical + recipe solid-limestone 1 gas-carbon-dioxide 25 + product stone 1 +liquid-hexafluorosilicic-acid angels-lead + recipe liquid-hexafluorosilicic-acid 60 + product quartz 3 liquid-hydrofluoric-acid 30 +liquid-hydrochloric-acid petrochem-chlorine + recipe liquid-hydrochloric-acid 50 + product gas-hydrogen-chloride 100 water-purified 50 +molten-tin-smelting angels-tin-casting + recipe liquid-molten-tin 120 + product ingot-tin 12 +solid-sodium-hypochlorite petrochem-sodium + recipe solid-sodium-hypochlorite 5 + product liquid-aqueous-sodium-hydroxide 50 gas-chlorine 200 +solid-sodium-chlorate petrochem-sodium + recipe solid-sodium-chlorate 5 + product liquid-aqueous-sodium-hydroxide 50 gas-hydrogen-chloride 50 +solid-sodium-perchlorate petrochem-sodium + recipe solid-sodium-perchlorate 5 catalyst-metal-carrier 1 + product solid-sodium-chlorate 5 catalyst-metal-blue 1 water-purified 50 +angels-nitinol-smelting-1 angels-alloys-casting + recipe liquid-molten-nitinol 360 + product ingot-nickel 12 ingot-titanium 24 +angels-plate-nitinol angels-alloys-casting + recipe nitinol-alloy 4 + product liquid-molten-nitinol 40 +nitinol-alloy angels-alloys-casting + recipe nitinol-alloy 5 + product nickel-plate 3 titanium-plate 2 +bob-poison-rocket angels-explosion-bb + recipe bob-poison-rocket 1 + product poison-rocket-warhead 1 rocket-body 1 +poison-bullet angels-physical-ad + recipe poison-bullet 1 + product poison-bullet-projectile 1 cordite 1 bullet-casing 1 +poison-bullet-magazine angels-physical-ae + recipe poison-bullet-magazine 1 + product poison-bullet 5 magazine 1 +poison-bullet-projectile angels-physical-ac + recipe poison-bullet-projectile 2 + product copper-plate 1 alien-poison 10 +poison-rocket-warhead angels-explosion-ba + recipe poison-rocket-warhead 1 + product steel-plate 1 alien-poison 20 +shotgun-poison-shell angels-physical-bb + recipe shotgun-poison-shell 1 + product cordite 1 shotgun-shell-casing 1 alien-poison 10 +powder-copper angels-copper + recipe powder-copper 1 + product ingot-copper 1 +angels-rocket-defense-equipment-vequip angels-vehicle-equipment + recipe angels-rocket-defense-equipment-vequip 1 + product iron-plate 20 steel-plate 20 advanced-circuit 20 +sodium-bicarbonate bob-resource-chemical + recipe sodium-bicarbonate 1 ammonium-chloride 1 + product ammoniated-brine 10 gas-carbon-dioxide 25 +sodium-carbonate bob-resource-chemical + recipe solid-sodium-carbonate 1 gas-carbon-dioxide 25 water-purified 10 + product sodium-bicarbonate 2 +solid-aluminium-hydroxide-smelting angels-aluminium + recipe alumina 24 + product solid-aluminium-hydroxide 24 +solid-sodium-aluminate-smelting angels-aluminium + recipe alumina 24 solid-sodium-carbonate 2 + product solid-sodium-aluminate 24 solid-sodium-hydroxide 3 gas-carbon-dioxide 60 +solid-dichromate-smelting angels-chrome + recipe solid-chrome-oxide 24 solid-sodium-carbonate 3 gas-carbon-monoxide 30 + product solid-dichromate 24 solid-carbon 3 +pellet-silver-smelting angels-silver + recipe solid-sodium-silver-cyanide 24 solid-sodium-hydroxide 4 + product pellet-silver 8 solid-sodium-cyanide 6 water-purified 60 gas-oxygen 60 +steam-cracking-gas-residual petrochem-carbon-synthesis + recipe gas-synthesis 150 + product gas-residual 100 steam 100 +stone-brick angels-stone + recipe stone-brick 1 + product stone 2 +sulfur-2 bob-resource-chemical + recipe sulfur 5 + product gas-sulfur-dioxide 50 gas-hydrogen 80 +sulfur-3 bob-resource-chemical + recipe sulfur 5 + product gas-hydrogen-sulfide 50 gas-oxygen 25 +laser-rifle-battery-topaz angels-electric-c + recipe laser-rifle-battery-topaz 1 + product silver-zinc-battery 4 laser-rifle-battery-case 1 topaz-5 1 +utility-science-pack science-pack + recipe utility-science-pack 4 + product silicon-nitride 4 electric-engine-unit 1 lithium-ion-battery 4 low-density-structure 3 titanium-bearing 4 processing-unit 6 +oil-boiler angels-power-steam-boiler + recipe oil-boiler 1 + product boiler-2 1 steel-pipe 2 +fill-liquid-coolant-barrel angels-fluid-control-water-treatment-fluid + recipe liquid-coolant-barrel 1 + product empty-barrel 1 liquid-coolant 50 +empty-liquid-coolant-barrel angels-fluid-control-water-treatment-fluid + recipe empty-barrel 1 liquid-coolant 50 + product liquid-coolant-barrel 1 +angels-sulfur-scrubber petrochem-sulfur + recipe filter-lime-used 1 water-yellow-waste 20 + product filter-lime 1 water 20 +angelsore8-anode-sludge ore-processing-d + recipe slag 1 angels-ore8-anode-sludge 60 water-yellow-waste 20 + product angels-ore8-slime 60 liquid-ferric-chloride-solution 10 +angelsore8-crushed ore-processing-a + recipe angels-ore8-crushed 6 + product angels-ore1-crushed 2 angels-ore2-crushed 2 angels-ore5-crushed 2 +angelsore8-crushed-processing ore-sorting-t1 + recipe iron-ore 2 manganese-ore 2 + product angels-ore8-crushed 4 +angelsore8-crystal-processing ore-sorting-t4 + recipe iron-ore 4 manganese-ore 2 nickel-ore 1 cobalt-ore 1 chrome-ore 1 + product angels-ore8-crystal 9 +angelsore8-powder-processing ore-sorting-t2 + recipe iron-ore 3 manganese-ore 2 nickel-ore 1 + product angels-ore8-powder 6 +angelsore8-sludge ore-processing-b + recipe angels-ore8-sludge 6 + product angels-ore8-powder 3 angels-ore1-chunk 1 angels-ore2-chunk 1 angels-ore5-chunk 1 thermal-water 20 liquid-sulfuric-acid 20 +angelsore8-solution ore-processing-c + recipe angels-ore8-solution 60 + product angels-ore8-dust 3 angels-ore1-crystal 1 angels-ore2-crystal 1 angels-ore5-crystal 1 liquid-sulfuric-acid 20 +bio-plastic-2 bio-plastic + recipe liquid-plastic 25 + product cellulose-fiber 10 liquid-acetic-acid 25 liquid-propionic-acid 25 +carbon-dioxide bob-fluid + recipe gas-carbon-dioxide 25 + product solid-carbon 1 gas-oxygen 25 +carbon-from-charcoal bio-processing-wood + recipe solid-carbon 2 + product wood-charcoal 1 gas-oxygen 20 +condensates-refining petrochem-carbon-gas-feed + recipe solid-coke 2 liquid-naphtha 50 gas-methane 30 + product liquid-condensates 60 thermal-water 20 gas-carbon-monoxide 20 +coolant-cool-200 coolant + recipe liquid-coolant-used 200 steam 50 + product liquid-coolant-used 200 water 50 +crystal-dust-liquify liquifying + recipe crystal-slurry 50 + product crystal-dust 10 liquid-sulfuric-acid 15 +enriched-fuel-from-liquid-fuel petrochem-fuel + recipe enriched-fuel 1 + product liquid-fuel 100 +gas-urea petrochem-nitrogen + recipe gas-urea 80 water-purified 20 + product gas-ammonia 60 gas-carbon-dioxide 40 +liquid-hydrochloric-acid-solid-sodium-sulfate petrochem-chlorine + recipe solid-sodium-sulfate 3 liquid-hydrochloric-acid 70 + product solid-salt 6 liquid-sulfuric-acid 120 +mineral-oil-lubricant petrochem-carbon-oil-feed + recipe lubricant 50 + product liquid-mineral-oil 40 gas-residual 10 +paste-zinc bio-processing-paste + recipe paste-zinc 1 + product powder-zinc 2 paste-cellulose 1 +slag-processing-7 slag-processing-1 + recipe angels-void 1 + product mineral-sludge 50 +solid-ammonium-nitrate petrochem-rocket + recipe solid-ammonium-nitrate 3 + product gas-ammonia 100 liquid-nitric-acid 100 +steam-turbine-2 angels-power-steam-generator + recipe steam-turbine-2 1 + product titanium-plate 25 titanium-gear-wheel 25 titanium-bearing 15 processing-unit 5 steam-turbine 1 titanium-pipe 5 +water-gas-shift-2 petrochem-basics + recipe water-purified 50 gas-carbon-monoxide 50 + product gas-hydrogen 50 gas-carbon-dioxide 50 +grinding-wheel bob-gems-cut + recipe grinding-wheel 2 + product silicon-carbide 5 steel-plate 1 +polishing-wheel bob-gems-polished + recipe polishing-wheel 2 + product steel-plate 1 wood 5 +polishing-compound bob-gems-polished + recipe polishing-compound 2 + product alumina 1 liquid-mineral-oil 15 +fill-gas-carbon-dioxide-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-carbon-dioxide-barrel 1 + product gas-canister 1 gas-carbon-dioxide 50 +fill-gas-urea-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-urea-barrel 1 + product gas-canister 1 gas-urea 50 +fill-liquid-perchloric-acid-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe liquid-perchloric-acid-barrel 1 + product empty-canister 1 liquid-perchloric-acid 50 +empty-gas-carbon-dioxide-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-carbon-dioxide 50 + product gas-carbon-dioxide-barrel 1 +empty-gas-urea-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-urea 50 + product gas-urea-barrel 1 +empty-liquid-perchloric-acid-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe empty-canister 1 liquid-perchloric-acid 50 + product liquid-perchloric-acid-barrel 1 +roll-tin-casting angels-tin-casting + recipe angels-roll-tin 2 + product liquid-molten-tin 80 water 40 +roll-tin-casting-fast angels-tin-casting + recipe angels-roll-tin 4 liquid-coolant-used 40 + product liquid-molten-tin 140 liquid-coolant 40 +angelsore-chunk-mix3-processing ore-sorting-advanced + recipe bauxite-ore 4 + product catalysator-green 1 angels-ore2-chunk 2 angels-ore4-chunk 2 +alien-artifact-from-small bio-processing-alien-large + recipe alien-artifact 1 + product small-alien-artifact 25 +alien-pre-artifact-base bio-processing-alien-pre + recipe alien-pre-artifact-base 1 + product seeded-dish 1 paste-iron 1 +small-alien-artifact bio-processing-alien-small + recipe small-alien-artifact 1 + product alien-pre-artifact-base 1 +silicon-powder angels-silicon + recipe silicon-powder 1 + product ingot-silicon 1 +steam-cracking-fuel-oil petrochem-cracking + recipe gas-synthesis 100 gas-residual 10 + product liquid-fuel-oil 100 steam 100 +solid-sodium-silver-cyanide-smelting angels-silver + recipe cathode-silver 12 + product solid-sodium-silver-cyanide 12 +centrifuge production-machine + recipe centrifuge 1 + product concrete 100 steel-plate 50 iron-gear-wheel 100 advanced-circuit 100 +centrifuge-2 production-machine + recipe centrifuge-2 1 + product centrifuge 1 silicon-nitride 100 titanium-plate 50 titanium-gear-wheel 100 titanium-bearing 50 processing-unit 100 +centrifuge-3 production-machine + recipe centrifuge-3 1 + product centrifuge-2 1 tungsten-carbide 100 nitinol-alloy 50 nitinol-gear-wheel 100 nitinol-bearing 50 advanced-processing-unit 100 +coal-cracking-2 petrochem-coal + recipe solid-coke 6 catalyst-metal-carrier 1 liquid-naphtha 60 liquid-ngl 30 liquid-mineral-oil 20 + product coal 5 catalyst-metal-red 1 gas-hydrogen 50 +laser-rifle-battery-diamond angels-electric-c + recipe laser-rifle-battery-diamond 1 + product silver-zinc-battery 4 laser-rifle-battery-case 1 diamond-5 1 +bob-electric-rocket angels-explosion-bb + recipe bob-electric-rocket 1 + product electric-rocket-warhead 1 rocket-body 1 +electric-bullet angels-physical-ad + recipe electric-bullet 1 + product electric-bullet-projectile 1 cordite 1 bullet-casing 1 +electric-bullet-magazine angels-physical-ae + recipe electric-bullet-magazine 1 + product electric-bullet 5 magazine 1 +electric-bullet-projectile angels-physical-ac + recipe electric-bullet-projectile 2 + product copper-plate 1 alien-orange-alloy 1 +electric-rocket-warhead angels-explosion-ba + recipe electric-rocket-warhead 1 + product steel-plate 1 alien-orange-alloy 2 +shotgun-electric-shell angels-physical-bb + recipe shotgun-electric-shell 1 + product alien-orange-alloy 1 cordite 1 shotgun-shell-casing 1 +solid-aluminium-oxide-smelting angels-aluminium + recipe ingot-aluminium 24 + product alumina 24 solid-carbon 3 +chrome-ore-smelting angels-chrome + recipe ingot-chrome 24 gas-carbon-monoxide 60 + product chrome-ore 24 solid-carbon 3 +processed-chrome-smelting angels-chrome + recipe ingot-chrome 24 gas-carbon-monoxide 60 + product processed-chrome 8 solid-carbon 3 +solid-chrome-oxide-smelting angels-chrome + recipe ingot-chrome 24 solid-chrome-oxide 6 + product solid-chrome-oxide 24 ingot-chrome 6 +gold-ore-smelting angels-gold + recipe ingot-gold 24 + product gold-ore 24 gas-chlorine 60 +cathode-gold-smelting angels-gold + recipe ingot-gold 24 + product cathode-gold 24 +lead-ore-smelting angels-lead + recipe ingot-lead 24 gas-sulfur-dioxide 60 + product lead-ore 24 gas-oxygen 60 +solid-lead-oxide-smelting angels-lead + recipe ingot-lead 24 + product lead-oxide 24 solid-carbon 2 +anode-lead-smelting angels-lead + recipe ingot-lead 12 slag 1 + product anode-lead 12 liquid-hexafluorosilicic-acid 30 +lab-2 production-machine + recipe lab-2 1 + product lab 1 advanced-circuit 10 express-transport-belt 4 filter-inserter 4 +lab-alien production-machine + recipe lab-alien 1 + product lab 1 alien-artifact-orange 5 alien-artifact-blue 5 alien-artifact 10 +lab production-machine + recipe lab 1 + product iron-gear-wheel 10 basic-circuit-board 10 basic-transport-belt 4 +lab-module production-machine + recipe lab-module 1 + product lab 1 speed-processor 5 effectivity-processor 5 productivity-processor 5 +concrete-mixture-1 angels-stone-casting + recipe liquid-concrete 100 + product slag 4 solid-cement 8 water 100 +concrete-mixture-2 angels-stone-casting + recipe liquid-concrete 120 + product stone 3 solid-cement 6 solid-sand 3 water 100 +molten-copper-smelting angels-copper-casting + recipe liquid-molten-copper 120 + product ingot-copper 12 +powder-cobalt angels-cobalt + recipe powder-cobalt 1 + product ingot-cobalt 1 +powder-iron angels-iron + recipe powder-iron 1 + product ingot-iron 1 +powder-manganese angels-manganese + recipe powder-manganese 1 + product ingot-manganese 1 +powder-nickel angels-nickel + recipe powder-nickel 1 + product ingot-nickel 1 +powder-platinum angels-platinum + recipe powder-platinum 1 + product ingot-platinum 1 +powder-silicon angels-silicon + recipe silicon-powder 1 + product ingot-silicon 1 +powder-titanium angels-titanium + recipe powder-titanium 1 + product ingot-titanium 1 +powder-zinc angels-zinc + recipe powder-zinc 1 + product ingot-zinc 1 +red-waste-water-purification water-cleaning + recipe solid-sodium-nitrate 1 water-mineralized 20 water-purified 70 + product water-red-waste 100 +science-pack-gold science-pack + recipe science-pack-gold 1 + product automation-science-pack 1 logistic-science-pack 1 military-science-pack 1 chemical-science-pack 1 +alien-science-pack science-pack + recipe alien-science-pack 10 + product alien-artifact 1 +alien-science-pack-blue science-pack + recipe alien-science-pack-blue 10 + product alien-artifact-blue 1 +alien-science-pack-orange science-pack + recipe alien-science-pack-orange 10 + product alien-artifact-orange 1 +alien-science-pack-purple science-pack + recipe alien-science-pack-purple 10 + product alien-artifact-purple 1 +alien-science-pack-yellow science-pack + recipe alien-science-pack-yellow 10 + product alien-artifact-yellow 1 +alien-science-pack-green science-pack + recipe alien-science-pack-green 10 + product alien-artifact-green 1 +alien-science-pack-red science-pack + recipe alien-science-pack-red 10 + product alien-artifact-red 1 +processed-tungsten-smelting angels-tungsten + recipe solid-ammonium-paratungstate 24 + product processed-tungsten 8 gas-ammonia 60 +steam-cracking-oil-residual petrochem-carbon-synthesis + recipe gas-residual 100 + product solid-oil-residual 10 steam 100 +water-thermal-lithia water-treatment + recipe lithia-water 40 water-purified 60 + product thermal-water 100 +oil-boiler-2 angels-power-steam-boiler + recipe oil-boiler-2 1 + product invar-alloy 5 oil-boiler 1 brass-pipe 6 +angelsore8-anode-sludge-filtering ore-processing-c + recipe filter-ceramic-used 1 angels-ore8-slime 60 water-yellow-waste 10 + product filter-ceramic 1 angels-ore8-solution 60 water-purified 50 +angelsore8-crystal ore-processing-d + recipe angels-ore8-crystal 6 + product angels-ore8-anode-sludge 60 +angelsore8-dust ore-processing-b + recipe angels-ore8-dust 4 water-yellow-waste 20 + product solid-sodium-hydroxide 1 angels-ore8-sludge 4 +angelsore8-dust-processing ore-sorting-t3 + recipe iron-ore 4 manganese-ore 2 nickel-ore 1 cobalt-ore 1 + product angels-ore8-dust 8 +angelsore8-powder ore-processing-a + recipe angels-ore8-powder 3 milling-drum-used 1 + product angels-ore8-crushed 3 milling-drum 1 +angelsore9-crushed-processing ore-sorting-t1 + recipe copper-ore 2 tin-ore 2 + product angels-ore9-crushed 4 +angelsore9-crystal-processing ore-sorting-t4 + recipe copper-ore 4 tin-ore 2 silver-ore 1 gold-ore 1 quartz 1 + product angels-ore9-crystal 9 +angelsore9-powder-processing ore-sorting-t2 + recipe copper-ore 3 tin-ore 2 silver-ore 1 + product angels-ore9-powder 6 +coolant-cool-300 coolant + recipe liquid-coolant-used 200 steam 50 + product liquid-coolant-used 200 water 50 +empty-barrel angels-fluid-control + recipe empty-barrel 1 + product steel-plate 1 +filter-lime-used petrochem-sulfur + recipe filter-frame 1 gas-acid 20 + product filter-lime-used 1 +liquid-ferric-chloride-solution petrochem-chlorine + recipe liquid-ferric-chloride-solution 40 + product iron-ore 2 gas-hydrogen-chloride 40 +liquid-fuel petrochem-carbon-oil-feed + recipe liquid-fuel 50 + product liquid-fuel-oil 40 gas-residual 10 +paste-iron bio-processing-paste + recipe paste-iron 1 + product powder-iron 2 paste-cellulose 1 +powdered-tungsten bob-material-chemical + recipe powdered-tungsten 1 + product tungsten-oxide 1 gas-hydrogen 15 +slag-processing-8 slag-processing-1 + recipe cobalt-ore 1 tungsten-ore 1 + product mineral-sludge 50 +solid-ammonium-perchlorate petrochem-rocket + recipe solid-ammonium-perchlorate 3 solid-salt 1 + product gas-ammonia 100 liquid-perchloric-acid 100 +steam-turbine-3 angels-power-steam-generator + recipe steam-turbine-3 1 + product nitinol-alloy 25 nitinol-gear-wheel 25 nitinol-bearing 15 advanced-processing-unit 5 steam-turbine-2 1 nitinol-pipe 5 +crystal-grindstone bob-gems-cut + recipe crystal-grindstone 1 + product grinding-wheel 1 crystal-powder 1 +fill-gas-hydrogen-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-hydrogen-barrel 1 + product gas-canister 1 gas-hydrogen 50 +fill-gas-melamine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-melamine-barrel 1 + product gas-canister 1 gas-melamine 50 +fill-gas-phosgene-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-phosgene-barrel 1 + product gas-canister 1 gas-phosgene 50 +fill-hydrogen-barrel angels-fluid-control-bob-gas-bottle + recipe hydrogen-barrel 1 + product gas-canister 1 gas-hydrogen 50 +empty-gas-hydrogen-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-hydrogen 50 + product gas-hydrogen-barrel 1 +empty-gas-melamine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-melamine 50 + product gas-melamine-barrel 1 +empty-gas-phosgene-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe gas-canister 1 gas-phosgene 50 + product gas-phosgene-barrel 1 +empty-hydrogen-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-hydrogen 50 + product hydrogen-barrel 1 +roll-copper-casting angels-copper-casting + recipe angels-roll-copper 2 + product liquid-molten-copper 80 water 40 +roll-copper-casting-fast angels-copper-casting + recipe angels-roll-copper 4 liquid-coolant-used 40 + product liquid-molten-copper 140 liquid-coolant 40 +angels-wire-coil-tin-casting angels-tin-casting + recipe angels-wire-coil-tin 4 + product liquid-molten-tin 40 liquid-molten-copper 40 water 40 +angels-wire-coil-tin-casting-fast angels-tin-casting + recipe angels-wire-coil-tin 8 liquid-coolant-used 40 + product liquid-molten-tin 70 liquid-molten-copper 70 liquid-coolant 40 +angelsore-chunk-mix4-processing ore-sorting-advanced + recipe zinc-ore 4 + product catalysator-green 1 angels-ore2-chunk 2 angels-ore6-chunk 2 +coal-cracking-3 petrochem-coal + recipe gas-synthesis 100 gas-carbon-dioxide 20 gas-hydrogen-sulfide 30 + product coal 5 steam 50 gas-oxygen 50 +concrete angels-stone-casting + recipe concrete 10 + product iron-ore 1 stone-brick 5 water 100 +angels-concrete angels-stone-casting + recipe concrete 4 + product liquid-concrete 40 +hazard-concrete angels-stone-casting + recipe hazard-concrete 10 + product concrete 10 +refined-concrete angels-stone-casting + recipe refined-concrete 10 + product concrete 20 steel-plate 1 iron-stick 8 water 100 +gas-allylchlorid petrochem-chlorine-2 + recipe gas-allylchlorid 50 gas-hydrogen-chloride 50 + product gas-propene 50 gas-chlorine 50 +silver-ore-smelting angels-silver + recipe ingot-silver 24 + product silver-ore 24 +solid-silver-nitrate-smelting angels-silver + recipe ingot-silver 24 + product silver-nitrate 24 +cathode-silver-smelting angels-silver + recipe ingot-silver 24 + product cathode-silver 24 +molten-cobalt-smelting angels-cobalt-casting + recipe liquid-molten-cobalt 120 + product ingot-cobalt 12 +molten-manganese-smelting angels-manganese-casting + recipe liquid-molten-manganese 120 + product ingot-manganese 12 +molten-nickel-smelting angels-nickel-casting + recipe liquid-molten-nickel 120 + product ingot-nickel 12 +molten-platinum-smelting angels-platinum-casting + recipe liquid-molten-platinum 120 + product ingot-platinum 12 +molten-silicon-smelting angels-silicon-casting + recipe liquid-molten-silicon 120 + product ingot-silicon 12 +molten-titanium-smelting-1 angels-titanium-casting + recipe liquid-molten-titanium 120 + product ingot-titanium 12 +molten-titanium-smelting-2 angels-titanium-casting + recipe liquid-molten-titanium 240 + product ingot-manganese 12 ingot-titanium 12 +molten-titanium-smelting-3 angels-titanium-casting + recipe liquid-molten-titanium 240 + product ingot-nickel 12 ingot-titanium 12 +molten-titanium-smelting-4 angels-titanium-casting + recipe liquid-molten-titanium 360 + product ingot-aluminium 12 ingot-tin 12 ingot-titanium 12 +molten-titanium-smelting-5 angels-titanium-casting + recipe liquid-molten-titanium 360 + product ingot-chrome 12 ingot-cobalt 12 ingot-titanium 12 +molten-zinc-smelting angels-zinc-casting + recipe liquid-molten-zinc 120 + product ingot-zinc 12 +liquid-nitric-acid petrochem-nitrogen + recipe liquid-nitric-acid 50 + product gas-nitrogen-dioxide 100 water-purified 50 +sodium-nitrate-acid-processing petrochem-nitrogen + recipe liquid-nitric-acid 40 + product solid-sodium-nitrate 5 liquid-sulfuric-acid 40 +bob-plasma-rocket angels-explosion-bb + recipe bob-plasma-rocket 1 + product plasma-rocket-warhead 1 rocket-body 1 +plasma-bullet angels-physical-ad + recipe plasma-bullet 1 + product plasma-bullet-projectile 1 cordite 1 bullet-casing 1 +plasma-bullet-magazine angels-physical-ae + recipe plasma-bullet-magazine 1 + product plasma-bullet 5 magazine 1 +plasma-bullet-projectile angels-physical-ac + recipe plasma-bullet-projectile 12 + product copper-plate 6 alien-artifact-red 1 alien-artifact-yellow 1 alien-artifact-orange 1 alien-artifact-blue 1 alien-artifact-purple 1 alien-artifact-green 1 gas-deuterium 10 +plasma-rocket-warhead angels-explosion-ba + recipe plasma-rocket-warhead 6 + product steel-plate 6 alien-artifact-red 1 alien-artifact-yellow 1 alien-artifact-orange 1 alien-artifact-blue 1 alien-artifact-purple 1 alien-artifact-green 1 gas-deuterium 10 +shotgun-plasma-shell angels-physical-bb + recipe shotgun-plasma-shell 6 + product alien-artifact-red 1 alien-artifact-yellow 1 alien-artifact-orange 1 alien-artifact-blue 1 alien-artifact-purple 1 alien-artifact-green 1 cordite 6 shotgun-shell-casing 6 gas-deuterium 10 +powder-aluminium angels-aluminium + recipe powder-aluminium 1 + product ingot-aluminium 1 +powder-chrome angels-chrome + recipe powder-chrome 1 + product ingot-chrome 1 +powder-gold angels-gold + recipe powder-gold 1 + product ingot-gold 1 +powder-lead angels-lead + recipe powder-lead 1 + product ingot-lead 1 +powder-steel angels-iron + recipe powder-steel 1 + product ingot-steel 1 +gas-tungsten-hexafluoride-smelting angels-tungsten + recipe powdered-tungsten 24 fluorite-ore 3 + product gas-tungsten-hexafluoride 120 +solid-ammonium-paratungstate-smelting angels-tungsten + recipe powdered-tungsten 24 + product solid-ammonium-paratungstate 24 gas-hydrogen 60 +fill-liquid-water-semiheavy-1-barrel angels-fluid-control-water-enrichment + recipe liquid-water-semiheavy-1-barrel 1 + product empty-barrel 1 liquid-water-semiheavy-1 50 +empty-liquid-water-semiheavy-1-barrel angels-fluid-control-water-enrichment + recipe empty-barrel 1 liquid-water-semiheavy-1 50 + product liquid-water-semiheavy-1-barrel 1 +fill-liquid-water-semiheavy-2-barrel angels-fluid-control-water-enrichment + recipe liquid-water-semiheavy-2-barrel 1 + product empty-barrel 1 liquid-water-semiheavy-2 50 +empty-liquid-water-semiheavy-2-barrel angels-fluid-control-water-enrichment + recipe empty-barrel 1 liquid-water-semiheavy-2 50 + product liquid-water-semiheavy-2-barrel 1 +fill-liquid-water-semiheavy-3-barrel angels-fluid-control-water-enrichment + recipe liquid-water-semiheavy-3-barrel 1 + product empty-barrel 1 liquid-water-semiheavy-3 50 +empty-liquid-water-semiheavy-3-barrel angels-fluid-control-water-enrichment + recipe empty-barrel 1 liquid-water-semiheavy-3 50 + product liquid-water-semiheavy-3-barrel 1 +fill-heavy-water-barrel angels-fluid-control-angels-fluid-converter-water-enrichment + recipe heavy-water-barrel 1 + product empty-barrel 1 liquid-water-heavy 50 +fill-liquid-water-heavy-barrel angels-fluid-control-water-enrichment + recipe liquid-water-heavy-barrel 1 + product empty-barrel 1 liquid-water-heavy 50 +empty-heavy-water-barrel angels-fluid-control-angels-fluid-converter-water-enrichment + recipe empty-barrel 1 liquid-water-heavy 50 + product heavy-water-barrel 1 +empty-liquid-water-heavy-barrel angels-fluid-control-water-enrichment + recipe empty-barrel 1 liquid-water-heavy 50 + product liquid-water-heavy-barrel 1 +oil-boiler-3 angels-power-steam-boiler + recipe oil-boiler-3 1 + product tungsten-plate 5 oil-boiler-2 1 ceramic-pipe 6 +rocket-oxidizer-capsule petrochem-fuel + recipe rocket-oxidizer-capsule 2 + product liquid-nitric-acid 10 gas-dinitrogen-tetroxide 10 +rocket-fuel-capsule petrochem-fuel + recipe rocket-fuel-capsule 2 + product gas-dimethylhydrazine 30 gas-hydrazine 30 +rocket-fuel petrochem-fuel + recipe rocket-fuel 1 + product rocket-oxidizer-capsule 10 rocket-fuel-capsule 10 +refined-hazard-concrete angels-stone-casting + recipe refined-hazard-concrete 10 + product refined-concrete 10 +void-hydrogen void + recipe void 1 + product gas-hydrogen 20 +void-hydrogen-chloride void + recipe void 1 + product gas-hydrogen-chloride 25 +void-hydrogen-sulfide void + recipe void 1 + product gas-hydrogen-sulfide 25 +angelsore9-anode-sludge ore-processing-d + recipe slag 1 angels-ore9-anode-sludge 60 water-yellow-waste 20 + product angels-ore9-slime 60 liquid-cupric-chloride-solution 10 +angelsore9-crushed ore-processing-a + recipe angels-ore9-crushed 6 + product angels-ore3-crushed 2 angels-ore4-crushed 2 angels-ore6-crushed 2 +angelsore9-sludge ore-processing-b + recipe angels-ore9-sludge 6 + product angels-ore9-powder 3 angels-ore3-chunk 1 angels-ore4-chunk 1 angels-ore6-chunk 1 thermal-water 20 liquid-sulfuric-acid 20 +angelsore9-solution ore-processing-c + recipe angels-ore9-solution 60 + product angels-ore9-dust 3 angels-ore3-crystal 1 angels-ore4-crystal 1 angels-ore6-crystal 1 liquid-sulfuric-acid 20 +empty-canister angels-fluid-control + recipe empty-canister 5 + product iron-plate 1 plastic-bar 1 empty-barrel 5 +gas-melamine petrochem-nitrogen + recipe catalyst-metal-carrier 1 gas-melamine 100 + product catalyst-metal-blue 1 gas-urea 100 +liquid-cupric-chloride-solution petrochem-chlorine + recipe liquid-cupric-chloride-solution 40 + product copper-ore 2 gas-hydrogen-chloride 40 +paste-silver bio-processing-paste + recipe paste-silver 1 + product powder-silver 2 paste-cellulose 1 +slag-processing-9 slag-processing-1 + recipe uranium-ore 1 fluorite-ore 1 thorium-ore 1 + product mineral-sludge 50 +slag-processing-dissolution liquifying + recipe slag-slurry 50 + product slag 5 liquid-sulfuric-acid 15 +fill-deuterium-barrel angels-fluid-control-bob-gas-bottle + recipe deuterium-barrel 1 + product gas-canister 1 gas-deuterium 50 +fill-gas-deuterium-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-deuterium-barrel 1 + product gas-canister 1 gas-deuterium 50 +fill-liquid-nitric-acid-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe liquid-nitric-acid-barrel 1 + product empty-canister 1 liquid-nitric-acid 50 +fill-nitric-acid-barrel angels-fluid-control-bob-canister + recipe nitric-acid-barrel 1 + product empty-canister 1 liquid-nitric-acid 50 +empty-deuterium-barrel angels-fluid-control-bob-gas-bottle + recipe gas-canister 1 gas-deuterium 50 + product deuterium-barrel 1 +empty-gas-deuterium-barrel angels-fluid-control-petrochem-basic-fluids + recipe gas-canister 1 gas-deuterium 50 + product gas-deuterium-barrel 1 +empty-liquid-nitric-acid-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe empty-canister 1 liquid-nitric-acid 50 + product liquid-nitric-acid-barrel 1 +empty-nitric-acid-barrel angels-fluid-control-bob-canister + recipe empty-canister 1 liquid-nitric-acid 50 + product nitric-acid-barrel 1 +angels-mono-silicon-seed angels-silicon-casting + recipe angels-mono-silicon-seed 5 + product liquid-molten-silicon 5 gas-nitrogen 10 +angelsore6-crushed-smelting angels-tin-casting + recipe tin-plate 1 + product angels-ore6-crushed 3 +tin-plate angels-tin-casting + recipe tin-plate 3 + product tin-ore 4 +angels-plate-tin angels-tin-casting + recipe tin-plate 4 + product liquid-molten-tin 40 +angels-roll-tin-converting angels-tin-casting + recipe tin-plate 4 + product angels-roll-tin 1 +roll-cobalt-casting angels-cobalt-casting + recipe angels-roll-cobalt 2 + product liquid-molten-cobalt 80 water 40 +roll-cobalt-casting-fast angels-cobalt-casting + recipe angels-roll-cobalt 4 liquid-coolant-used 40 + product liquid-molten-cobalt 140 liquid-coolant 40 +roll-manganese-casting angels-manganese-casting + recipe angels-roll-manganese 2 + product liquid-molten-manganese 80 water 40 +roll-manganese-casting-fast angels-manganese-casting + recipe angels-roll-manganese 4 liquid-coolant-used 40 + product liquid-molten-manganese 140 liquid-coolant 40 +roll-nickel-casting angels-nickel-casting + recipe angels-roll-nickel 2 + product liquid-molten-nickel 80 water 40 +roll-nickel-casting-fast angels-nickel-casting + recipe angels-roll-nickel 4 liquid-coolant-used 40 + product liquid-molten-nickel 140 liquid-coolant 40 +roll-platinum-casting angels-platinum-casting + recipe angels-roll-platinum 2 + product liquid-molten-platinum 80 water 40 +roll-platinum-casting-fast angels-platinum-casting + recipe angels-roll-platinum 4 liquid-coolant-used 40 + product liquid-molten-platinum 140 liquid-coolant 40 +roll-titanium-casting angels-titanium-casting + recipe angels-roll-titanium 2 + product liquid-molten-titanium 80 water 40 +roll-titanium-casting-fast angels-titanium-casting + recipe angels-roll-titanium 4 liquid-coolant-used 40 + product liquid-molten-titanium 140 liquid-coolant 40 +roll-zinc-casting angels-zinc-casting + recipe angels-roll-zinc 2 + product liquid-molten-zinc 80 water 40 +roll-zinc-casting-fast angels-zinc-casting + recipe angels-roll-zinc 4 liquid-coolant-used 40 + product liquid-molten-zinc 140 liquid-coolant 40 +angels-wire-coil-copper-casting angels-copper-casting + recipe angels-wire-coil-copper 4 + product liquid-molten-copper 80 water 40 +angels-wire-coil-copper-casting-fast angels-copper-casting + recipe angels-wire-coil-copper 8 liquid-coolant-used 40 + product liquid-molten-copper 140 liquid-coolant 40 +angelsore-chunk-mix5-processing ore-sorting-advanced + recipe silver-ore 4 + product catalysator-green 1 angels-ore3-chunk 2 angels-ore6-chunk 2 +casting-powder-tungsten-1 angels-tungsten-casting + recipe casting-powder-tungsten 24 + product powder-cobalt 12 powdered-tungsten 12 +casting-powder-tungsten-2 angels-tungsten-casting + recipe casting-powder-tungsten 24 + product powder-nickel 12 powdered-tungsten 12 +catalysator-brown geode-crystallization + recipe catalysator-brown 2 + product mineral-sludge 25 +angels-concrete-brick angels-stone-casting + recipe concrete-brick 4 + product stone-brick 4 liquid-concrete 40 +angels-hydrogen-sulfide-enrichment petrochem-sulfur + recipe water-purified 50 gas-enriched-hydrogen-sulfide 50 + product steam 50 gas-hydrogen-sulfide 50 +gas-epichlorhydrin petrochem-chlorine-2 + recipe gas-epichlorhydrin 90 + product solid-sodium-hydroxide 5 gas-allylchlorid 100 liquid-hydrochloric-acid 50 +molten-aluminium-smelting-1 angels-aluminium-casting + recipe liquid-molten-aluminium 120 + product ingot-aluminium 12 +molten-aluminium-smelting-2 angels-aluminium-casting + recipe liquid-molten-aluminium 240 + product ingot-aluminium 12 ingot-manganese 12 +molten-aluminium-smelting-3 angels-aluminium-casting + recipe liquid-molten-aluminium 360 + product ingot-aluminium 12 ingot-copper 12 ingot-silicon 12 +molten-chrome-smelting angels-chrome-casting + recipe liquid-molten-chrome 120 + product ingot-chrome 12 +molten-gold-smelting angels-gold-casting + recipe liquid-molten-gold 120 + product ingot-gold 12 +molten-iron-smelting-1 angels-iron-casting + recipe liquid-molten-iron 120 + product ingot-iron 12 +molten-iron-smelting-2 angels-iron-casting + recipe liquid-molten-iron 240 + product ingot-iron 12 ingot-manganese 12 +molten-iron-smelting-3 angels-iron-casting + recipe liquid-molten-iron 240 + product ingot-iron 12 ingot-silicon 12 +molten-iron-smelting-4 angels-iron-casting + recipe liquid-molten-iron 360 + product ingot-cobalt 12 ingot-iron 12 ingot-nickel 12 +molten-iron-smelting-5 angels-iron-casting + recipe liquid-molten-iron 360 + product ingot-chrome 12 ingot-iron 12 ingot-nickel 12 +molten-lead-smelting angels-lead-casting + recipe liquid-molten-lead 120 + product ingot-lead 12 +molten-steel-smelting-1 angels-steel-casting + recipe liquid-molten-steel 120 + product ingot-steel 12 +molten-steel-smelting-2 angels-steel-casting + recipe liquid-molten-steel 240 + product ingot-steel 12 ingot-silicon 12 +molten-steel-smelting-3 angels-steel-casting + recipe liquid-molten-steel 240 + product ingot-steel 12 ingot-manganese 12 +molten-steel-smelting-4 angels-steel-casting + recipe liquid-molten-steel 360 + product ingot-cobalt 12 ingot-steel 12 ingot-nickel 12 +molten-steel-smelting-5 angels-steel-casting + recipe liquid-molten-steel 360 + product ingot-chrome 12 ingot-steel 12 powdered-tungsten 12 +shotgun-uranium-shell angels-physical-bb + recipe shotgun-uranium-shell 1 + product uranium-238 1 cordite 1 shotgun-shell-casing 1 +uranium-bullet angels-physical-ad + recipe uranium-bullet 1 + product uranium-bullet-projectile 1 cordite 1 bullet-casing 1 +uranium-bullet-projectile angels-physical-ac + recipe uranium-bullet-projectile 2 + product copper-plate 1 uranium-238 1 +uranium-rounds-magazine angels-physical-ae + recipe uranium-rounds-magazine 1 + product uranium-bullet 5 magazine 1 +powder-silver angels-silver + recipe powder-silver 1 + product ingot-silver 1 +oil-boiler-4 angels-power-steam-boiler + recipe oil-boiler-4 1 + product copper-tungsten-alloy 5 oil-boiler-3 1 copper-tungsten-pipe 6 +rocket-booster-1 petrochem-fuel + recipe rocket-booster 2 + product solid-ammonium-nitrate 3 pipe 1 +sulfuric-nitric-acid petrochem-rocket + recipe sulfuric-nitric-acid 20 + product liquid-sulfuric-acid 10 liquid-nitric-acid 10 +nitroglycerin petrochem-rocket + recipe nitroglycerin 10 + product liquid-glycerol 10 liquid-sulfuric-acid 15 liquid-nitric-acid 15 +rocket-booster-2 petrochem-fuel + recipe rocket-booster 3 + product solid-ammonium-perchlorate 3 pipe 1 +angelsore-chunk-mix6-processing ore-sorting-advanced + recipe fluorite-ore 2 + product catalysator-green 1 angels-ore8-powder 2 angels-ore2-chunk 2 +angelsore-chunk-mix7-processing ore-sorting-advanced + recipe angels-void 1 + product catalysator-green 1 angels-ore1-chunk 2 angels-ore2-chunk 2 +angelsore9-anode-sludge-filtering ore-processing-c + recipe filter-ceramic-used 1 angels-ore9-slime 60 water-yellow-waste 10 + product filter-ceramic 1 angels-ore9-solution 60 water-purified 50 +angelsore9-crystal ore-processing-d + recipe angels-ore9-crystal 6 + product angels-ore9-anode-sludge 60 +angelsore9-dust ore-processing-b + recipe angels-ore9-dust 4 water-yellow-waste 20 + product solid-sodium-hydroxide 1 angels-ore9-sludge 4 +angelsore9-dust-processing ore-sorting-t3 + recipe copper-ore 4 tin-ore 2 silver-ore 1 gold-ore 1 + product angels-ore9-dust 8 +angelsore9-powder ore-processing-a + recipe angels-ore9-powder 3 milling-drum-used 1 + product angels-ore9-crushed 3 milling-drum 1 +bob-titanium-plate bob-material-electrolysis + recipe titanium-plate 2 + product rutile-ore 2 solid-carbon 1 solid-calcium-chloride 2 +bob-tungsten-plate bob-alloy + recipe tungsten-plate 5 + product powdered-tungsten 4 nickel-plate 1 +bob-zinc-plate bob-material-electrolysis + recipe zinc-plate 1 + product zinc-ore 1 liquid-sulfuric-acid 10 +gas-canister angels-fluid-control + recipe gas-canister 5 + product steel-plate 1 empty-canister 5 +nuclear-fuel petrochem-fuel + recipe nuclear-fuel 1 + product rocket-fuel 1 uranium-235 1 +tinned-copper-cable angels-tin-casting + recipe tinned-copper-cable 3 + product copper-cable 3 tin-plate 1 +stone-crushed-dissolution liquifying + recipe slag-slurry 50 + product stone-crushed 25 liquid-sulfuric-acid 15 +fill-gas-monochloramine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-monochloramine-barrel 1 + product gas-canister 1 gas-monochloramine 50 +fill-liquid-aqueous-sodium-hydroxide-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe liquid-aqueous-sodium-hydroxide-barrel 1 + product empty-barrel 1 liquid-aqueous-sodium-hydroxide 50 +empty-gas-monochloramine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-monochloramine 50 + product gas-monochloramine-barrel 1 +empty-liquid-aqueous-sodium-hydroxide-barrel angels-fluid-control-petrochem-chlorine-fluids + recipe empty-barrel 1 liquid-aqueous-sodium-hydroxide 50 + product liquid-aqueous-sodium-hydroxide-barrel 1 +angels-plate-cobalt angels-cobalt-casting + recipe angels-plate-cobalt 4 + product liquid-molten-cobalt 40 +angels-roll-cobalt-converting angels-cobalt-casting + recipe angels-plate-cobalt 4 + product angels-roll-cobalt 1 +angelsore3-crushed-smelting angels-copper-casting + recipe copper-plate 2 + product angels-ore3-crushed 3 +angels-copper-pebbles-smelting angels-copper-casting + recipe copper-plate 2 + product angels-copper-pebbles 4 +angels-copper-nugget-smelting angels-copper-casting + recipe copper-plate 3 + product angels-copper-nugget 2 +copper-plate angels-copper-casting + recipe copper-plate 3 + product copper-ore 4 +angels-plate-copper angels-copper-casting + recipe copper-plate 4 + product liquid-molten-copper 40 +angels-roll-copper-converting angels-copper-casting + recipe copper-plate 4 + product angels-roll-copper 1 +angels-plate-manganese angels-manganese-casting + recipe angels-plate-manganese 4 + product liquid-molten-manganese 40 +angels-roll-manganese-converting angels-manganese-casting + recipe angels-plate-manganese 4 + product angels-roll-manganese 1 +angels-plate-nickel angels-nickel-casting + recipe nickel-plate 4 + product liquid-molten-nickel 40 +angels-roll-nickel-converting angels-nickel-casting + recipe nickel-plate 4 + product angels-roll-nickel 1 +angels-plate-titanium angels-titanium-casting + recipe titanium-plate 4 + product liquid-molten-titanium 40 +angels-roll-titanium-converting angels-titanium-casting + recipe titanium-plate 4 + product angels-roll-titanium 1 +angels-plate-tungsten angels-tungsten-casting + recipe tungsten-plate 12 + product casting-powder-tungsten 12 +angels-plate-zinc angels-zinc-casting + recipe zinc-plate 4 + product liquid-molten-zinc 40 +angels-roll-zinc-converting angels-zinc-casting + recipe zinc-plate 4 + product angels-roll-zinc 1 +angels-quartz-crucible angels-silicon-casting + recipe angels-quartz-crucible 1 + product quartz 1 +roll-aluminium-casting angels-aluminium-casting + recipe angels-roll-aluminium 2 + product liquid-molten-aluminium 80 water 40 +roll-aluminium-casting-fast angels-aluminium-casting + recipe angels-roll-aluminium 4 liquid-coolant-used 40 + product liquid-molten-aluminium 140 liquid-coolant 40 +roll-chrome-casting angels-chrome-casting + recipe angels-roll-chrome 2 + product liquid-molten-chrome 80 water 40 +roll-chrome-casting-fast angels-chrome-casting + recipe angels-roll-chrome 4 liquid-coolant-used 40 + product liquid-molten-chrome 140 liquid-coolant 40 +roll-gold-casting angels-gold-casting + recipe angels-roll-gold 2 + product liquid-molten-gold 80 water 40 +roll-gold-casting-fast angels-gold-casting + recipe angels-roll-gold 4 liquid-coolant-used 40 + product liquid-molten-gold 140 liquid-coolant 40 +roll-iron-casting angels-iron-casting + recipe angels-roll-iron 2 + product liquid-molten-iron 80 water 40 +roll-iron-casting-fast angels-iron-casting + recipe angels-roll-iron 4 liquid-coolant-used 40 + product liquid-molten-iron 140 liquid-coolant 40 +roll-lead-casting angels-lead-casting + recipe angels-roll-lead 2 + product liquid-molten-lead 80 water 40 +roll-lead-casting-fast angels-lead-casting + recipe angels-roll-lead 4 liquid-coolant-used 40 + product liquid-molten-lead 140 liquid-coolant 40 +angels-roll-steel-casting angels-steel-casting + recipe angels-roll-steel 2 + product liquid-molten-steel 80 water 40 +angels-roll-steel-casting-fast angels-steel-casting + recipe angels-roll-steel 4 liquid-coolant-used 40 + product liquid-molten-steel 140 liquid-coolant 40 +angels-wire-coil-platinum-casting angels-platinum-casting + recipe angels-wire-coil-platinum 4 + product liquid-molten-platinum 40 liquid-molten-copper 40 water 40 +angels-wire-coil-platinum-casting-fast angels-platinum-casting + recipe angels-wire-coil-platinum 8 liquid-coolant-used 40 + product liquid-molten-platinum 70 liquid-molten-copper 70 liquid-coolant 40 +basic-tinned-copper-wire angels-tin-casting + recipe tinned-copper-cable 5 + product copper-cable 10 tin-plate 4 +angels-wire-coil-tin-converting angels-tin-casting + recipe tinned-copper-cable 16 + product angels-wire-coil-tin 4 +catalysator-green geode-crystallization + recipe catalysator-green 2 + product crystal-seedling 25 +bullet-casing angels-physical-ad + recipe bullet-casing 1 + product gunmetal-alloy 1 +cordite angels-physical-ac + recipe cordite 5 + product gun-cotton 13 petroleum-jelly 1 nitroglycerin 60 +laser-rifle-battery-case angels-electric-c + recipe laser-rifle-battery-case 2 + product plastic-bar 1 +magazine angels-physical-ae + recipe magazine 2 + product steel-plate 1 +rocket-body angels-explosion-bb + recipe rocket-body 1 + product aluminium-plate 1 processing-unit 1 rocket-engine 1 liquid-fuel 10 +rocket-engine angels-explosion-ba + recipe rocket-engine 1 + product tungsten-plate 1 tungsten-gear-wheel 1 +shotgun-shell-casing angels-physical-bb + recipe shotgun-shell-casing 1 + product gunmetal-alloy 1 +liquid-glycerol petrochem-chlorine-2 + recipe liquid-glycerol 50 + product gas-epichlorhydrin 100 water-purified 50 +molten-silver-smelting angels-silver-casting + recipe liquid-molten-silver 120 + product ingot-silver 12 +angels-reinforced-concrete-brick angels-stone-casting + recipe reinforced-concrete-brick 4 + product stone-brick 4 steel-plate 4 liquid-concrete 40 +angels-nuclear-fuel petrochem-fuel + recipe angels-nuclear-fuel 1 + product rocket-fuel 1 plutonium-239 1 +angelsore-crystal-mix1-processing ore-sorting-advanced + recipe rutile-ore 6 + product catalysator-orange 1 angels-ore1-crystal 2 angels-ore4-crystal 2 angels-ore5-crystal 2 +bob-aluminium-plate bob-material-electrolysis + recipe aluminium-plate 2 + product alumina 2 solid-carbon 1 +bob-lead-plate bob-material-chemical + recipe lead-plate 2 + product lead-oxide 2 solid-carbon 1 +bob-silicon-plate bob-material-electrolysis + recipe angels-mono-silicon 2 + product quartz 2 solid-carbon 1 solid-calcium-chloride 2 +fill-gas-hydrazine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-hydrazine-barrel 1 + product gas-canister 1 gas-hydrazine 50 +empty-gas-hydrazine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-hydrazine 50 + product gas-hydrazine-barrel 1 +angels-mono-silicon-1 angels-silicon-casting + recipe angels-mono-silicon 4 + product angels-mono-silicon-seed 1 liquid-molten-silicon 40 +angels-mono-silicon-2 angels-silicon-casting + recipe angels-mono-silicon 6 angels-quartz-crucible 1 + product angels-mono-silicon-seed 1 angels-quartz-crucible 1 liquid-molten-silicon 40 +angels-plate-aluminium angels-aluminium-casting + recipe aluminium-plate 4 + product liquid-molten-aluminium 40 +angels-roll-aluminium-converting angels-aluminium-casting + recipe aluminium-plate 4 + product angels-roll-aluminium 1 +angels-plate-chrome angels-chrome-casting + recipe angels-plate-chrome 4 + product liquid-molten-chrome 40 +angels-roll-chrome-converting angels-chrome-casting + recipe angels-plate-chrome 4 + product angels-roll-chrome 1 +angelsore5-crushed-smelting angels-lead-casting + recipe lead-plate 1 + product angels-ore5-crushed 3 +lead-plate angels-lead-casting + recipe lead-plate 3 + product lead-ore 4 +angels-plate-lead angels-lead-casting + recipe lead-plate 4 + product liquid-molten-lead 40 +angels-roll-lead-converting angels-lead-casting + recipe lead-plate 4 + product angels-roll-lead 1 +angels-plate-platinum angels-platinum-casting + recipe angels-plate-platinum 4 + product liquid-molten-platinum 40 +angels-roll-platinum-converting angels-platinum-casting + recipe angels-plate-platinum 4 + product angels-roll-platinum 1 +rod-stack-iron-casting angels-iron-casting + recipe angels-rod-stack-iron 1 + product liquid-molten-iron 60 water 40 +rod-stack-iron-casting-fast angels-iron-casting + recipe angels-rod-stack-iron 2 liquid-coolant-used 40 + product liquid-molten-iron 110 liquid-coolant 40 +rod-stack-steel-casting angels-steel-casting + recipe angels-rod-stack-steel 1 + product liquid-molten-steel 60 water 40 +rod-stack-steel-casting-fast angels-steel-casting + recipe angels-rod-stack-steel 2 liquid-coolant-used 40 + product liquid-molten-steel 110 liquid-coolant 40 +roll-silver-casting angels-silver-casting + recipe angels-roll-silver 2 + product liquid-molten-silver 80 water 40 +roll-silver-casting-fast angels-silver-casting + recipe angels-roll-silver 4 liquid-coolant-used 40 + product liquid-molten-silver 140 liquid-coolant 40 +angels-wire-coil-gold-casting angels-gold-casting + recipe angels-wire-coil-gold 4 + product liquid-molten-gold 40 liquid-molten-copper 40 water 40 +angels-wire-coil-gold-casting-fast angels-gold-casting + recipe angels-wire-coil-gold 8 liquid-coolant-used 40 + product liquid-molten-gold 70 liquid-molten-copper 70 liquid-coolant 40 +copper-cable angels-copper-casting + recipe copper-cable 2 + product copper-plate 1 +angels-wire-coil-copper-converting angels-copper-casting + recipe copper-cable 16 + product angels-wire-coil-copper 4 +catalysator-orange geode-crystallization + recipe catalysator-orange 2 + product catalysator-brown 2 catalysator-green 2 +gas-methanol-from-wood bio-processing-green + recipe gas-methanol 100 + product cellulose-fiber 20 +liquid-perchloric-acid petrochem-chlorine-2 + recipe liquid-perchloric-acid 50 + product solid-sodium-perchlorate 2 liquid-hydrochloric-acid 50 +tungsten-carbide angels-tungsten-casting + recipe tungsten-carbide 2 + product tungsten-oxide 1 solid-carbon 1 +tungsten-carbide-2 angels-tungsten-casting + recipe tungsten-carbide 2 + product powdered-tungsten 1 solid-carbon 1 +angels-water-enrichment-1 water-enrichment + recipe gas-hydrogen-sulfide 100 liquid-water-semiheavy-1 50 water-green-waste 60 + product water-saline 60 water-purified 50 gas-enriched-hydrogen-sulfide 100 +angels-water-enrichment-2 water-enrichment + recipe gas-hydrogen-sulfide 100 liquid-water-semiheavy-2 50 water-green-waste 60 + product water-saline 60 liquid-water-semiheavy-1 50 gas-enriched-hydrogen-sulfide 100 +angels-water-enrichment-3 water-enrichment + recipe gas-hydrogen-sulfide 100 liquid-water-semiheavy-3 50 water-green-waste 60 + product water-saline 60 liquid-water-semiheavy-2 50 gas-enriched-hydrogen-sulfide 100 +angels-heavy-water-extraction water-enrichment + recipe liquid-water-heavy 5 steam 95 + product liquid-water-semiheavy-3 100 +angels-water-enriched-cooling-1 water-enrichment + recipe liquid-water-semiheavy-1 200 steam 50 + product liquid-water-semiheavy-1 200 water-purified 50 +angels-water-enriched-cooling-2 water-enrichment + recipe liquid-water-semiheavy-2 200 steam 50 + product liquid-water-semiheavy-2 200 water-purified 50 +angels-water-enriched-cooling-3 water-enrichment + recipe liquid-water-semiheavy-3 200 steam 50 + product liquid-water-semiheavy-3 200 water-purified 50 +angels-heavy-water-cooling water-enrichment + recipe liquid-water-heavy 100 steam 25 + product liquid-water-heavy 100 water-purified 25 +angels-nuclear-fuel-2 petrochem-fuel + recipe angels-nuclear-fuel-2 3 + product rocket-fuel 3 plutonium-239 2 thorium-232 1 +angelsore-crystal-mix2-processing ore-sorting-advanced + recipe gold-ore 6 + product catalysator-orange 1 angels-ore1-crystal 2 angels-ore5-crystal 2 angels-ore6-crystal 2 +bob-gold-plate bob-material-chemical + recipe gold-plate 1 + product gold-ore 1 gas-chlorine 3 +copper-tungsten-alloy angels-tungsten-casting + recipe copper-tungsten-alloy 5 + product powdered-tungsten 3 copper-plate 2 +gas-phosgene petrochem-chlorine-2 + recipe gas-phosgene 100 + product solid-carbon 1 gas-carbon-monoxide 60 gas-chlorine 40 +steel-plate angels-steel-casting + recipe steel-plate 1 + product iron-plate 2 gas-oxygen 10 +fill-gas-methylamine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-methylamine-barrel 1 + product gas-canister 1 gas-methylamine 50 +empty-gas-methylamine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-methylamine 50 + product gas-methylamine-barrel 1 +angels-plate-gold angels-gold-casting + recipe gold-plate 4 + product liquid-molten-gold 40 +angels-roll-gold-converting angels-gold-casting + recipe gold-plate 4 + product angels-roll-gold 1 +angelsore1-crushed-smelting angels-iron-casting + recipe iron-plate 2 + product angels-ore1-crushed 3 +angels-iron-pebbles-smelting angels-iron-casting + recipe iron-plate 2 + product angels-iron-pebbles 4 +angels-iron-nugget-smelting angels-iron-casting + recipe iron-plate 3 + product angels-iron-nugget 2 +iron-plate angels-iron-casting + recipe iron-plate 3 + product iron-ore 4 +angels-plate-iron angels-iron-casting + recipe iron-plate 4 + product liquid-molten-iron 40 +angels-roll-iron-converting angels-iron-casting + recipe iron-plate 4 + product angels-roll-iron 1 +angels-plate-steel angels-steel-casting + recipe steel-plate 4 + product liquid-molten-steel 40 +angels-roll-steel-converting angels-steel-casting + recipe steel-plate 4 + product angels-roll-steel 1 +angels-silicon-wafer angels-silicon-casting + recipe silicon-wafer 1 - 5 + product angels-mono-silicon 1 +silicon-wafer angels-silicon-casting + recipe silicon-wafer 6 + product angels-mono-silicon 1 +angels-wire-coil-silver-casting angels-silver-casting + recipe angels-wire-coil-silver 4 + product liquid-molten-silver 40 liquid-molten-copper 40 water 40 +angels-wire-coil-silver-casting-fast angels-silver-casting + recipe angels-wire-coil-silver 8 liquid-coolant-used 40 + product liquid-molten-silver 70 liquid-molten-copper 70 liquid-coolant 40 +basic-platinated-copper-wire angels-platinum-casting + recipe angels-wire-platinum 5 + product copper-cable 10 angels-plate-platinum 4 +angels-wire-coil-platinum-converting angels-platinum-casting + recipe angels-wire-platinum 16 + product angels-wire-coil-platinum 4 +thorium-processing bob-nuclear + recipe thorium-232 1 + product thorium-ore 10 +angels-water-void-thermal-water angels-water-void + recipe water-void 1 + product thermal-water 400 +angels-water-void-slag-slurry angels-water-void + recipe water-void 1 + product slag-slurry 400 +angels-water-void-mineral-sludge angels-water-void + recipe water-void 1 + product mineral-sludge 400 +angels-water-void-crystal-slurry angels-water-void + recipe water-void 1 + product crystal-slurry 400 +angels-water-void-crystal-seedling angels-water-void + recipe water-void 1 + product crystal-seedling 400 +angels-water-void-crystal-matrix angels-water-void + recipe water-void 1 + product crystal-matrix 400 +angels-chemical-void-liquid-chlorauric-acid angels-chemical-void + recipe chemical-void 1 + product liquid-chlorauric-acid 100 +angels-chemical-void-liquid-hexafluorosilicic-acid angels-chemical-void + recipe chemical-void 1 + product liquid-hexafluorosilicic-acid 100 +angels-chemical-void-liquid-hexachloroplatinic-acid angels-chemical-void + recipe chemical-void 1 + product liquid-hexachloroplatinic-acid 100 +angels-chemical-void-liquid-trichlorosilane angels-chemical-void + recipe chemical-void 1 + product liquid-trichlorosilane 100 +angels-chemical-void-gas-silane angels-chemical-void + recipe chemical-void 1 + product gas-silane 100 +angels-chemical-void-liquid-titanium-tetrachloride angels-chemical-void + recipe chemical-void 1 + product liquid-titanium-tetrachloride 100 +angels-chemical-void-liquid-tungstic-acid angels-chemical-void + recipe chemical-void 1 + product liquid-tungstic-acid 100 +angels-chemical-void-gas-tungsten-hexafluoride angels-chemical-void + recipe chemical-void 1 + product gas-tungsten-hexafluoride 100 +angels-water-void-water angels-water-void + recipe water-void 1 + product water 400 +angels-water-void-water-purified angels-water-void + recipe water-void 1 + product water-purified 400 +angels-water-void-water-saline angels-water-void + recipe water-void 1 + product water-saline 400 +angels-water-void-water-mineralized angels-water-void + recipe water-void 1 + product water-mineralized 400 +angels-water-void-lithia-water angels-water-void + recipe water-void 1 + product lithia-water 400 +angels-water-void-liquid-coolant angels-water-void + recipe water-void 1 + product liquid-coolant 400 +angels-water-void-water-yellow-waste angels-water-void + recipe water-void 1 + product water-yellow-waste 400 +angels-water-void-water-greenyellow-waste angels-water-void + recipe water-void 1 + product water-greenyellow-waste 400 +angels-water-void-water-green-waste angels-water-void + recipe water-void 1 + product water-green-waste 400 +angels-water-void-water-red-waste angels-water-void + recipe water-void 1 + product water-red-waste 400 +angels-water-void-water-viscous-mud angels-water-void + recipe water-void 1 + product water-viscous-mud 400 +angels-water-void-water-heavy-mud angels-water-void + recipe water-void 1 + product water-heavy-mud 400 +angels-water-void-water-concentrated-mud angels-water-void + recipe water-void 1 + product water-concentrated-mud 400 +angels-water-void-water-light-mud angels-water-void + recipe water-void 1 + product water-light-mud 400 +angels-water-void-water-thin-mud angels-water-void + recipe water-void 1 + product water-thin-mud 400 +angels-chemical-void-gas-compressed-air angels-chemical-void + recipe chemical-void 1 + product gas-compressed-air 100 +angels-chemical-void-gas-oxygen angels-chemical-void + recipe chemical-void 1 + product gas-oxygen 100 +angels-chemical-void-gas-hydrogen-peroxide angels-chemical-void + recipe chemical-void 1 + product gas-hydrogen-peroxide 100 +angels-chemical-void-gas-carbon-monoxide angels-chemical-void + recipe chemical-void 1 + product gas-carbon-monoxide 100 +angels-chemical-void-gas-carbon-dioxide angels-chemical-void + recipe chemical-void 1 + product gas-carbon-dioxide 100 +angels-chemical-void-gas-hydrogen angels-chemical-void + recipe chemical-void 1 + product gas-hydrogen 100 +angels-chemical-void-gas-chlorine angels-chemical-void + recipe chemical-void 1 + product gas-chlorine 100 +angels-chemical-void-gas-hydrogen-chloride angels-chemical-void + recipe chemical-void 1 + product gas-hydrogen-chloride 100 +angels-chemical-void-liquid-hydrochloric-acid angels-chemical-void + recipe chemical-void 1 + product liquid-hydrochloric-acid 100 +angels-chemical-void-gas-allylchlorid angels-chemical-void + recipe chemical-void 1 + product gas-allylchlorid 100 +angels-chemical-void-gas-epichlorhydrin angels-chemical-void + recipe chemical-void 1 + product gas-epichlorhydrin 100 +angels-chemical-void-gas-chlor-methane angels-chemical-void + recipe chemical-void 1 + product gas-chlor-methane 100 +angels-chemical-void-liquid-perchloric-acid angels-chemical-void + recipe chemical-void 1 + product liquid-perchloric-acid 100 +angels-chemical-void-gas-phosgene angels-chemical-void + recipe chemical-void 1 + product gas-phosgene 100 +angels-chemical-void-liquid-ferric-chloride-solution angels-chemical-void + recipe chemical-void 1 + product liquid-ferric-chloride-solution 100 +angels-chemical-void-liquid-cupric-chloride-solution angels-chemical-void + recipe chemical-void 1 + product liquid-cupric-chloride-solution 100 +angels-water-void-liquid-aqueous-sodium-hydroxide angels-water-void + recipe water-void 1 + product liquid-aqueous-sodium-hydroxide 400 +angels-chemical-void-gas-nitrogen angels-chemical-void + recipe chemical-void 1 + product gas-nitrogen 100 +angels-chemical-void-gas-ammonia angels-chemical-void + recipe chemical-void 1 + product gas-ammonia 100 +angels-chemical-void-gas-nitrogen-monoxide angels-chemical-void + recipe chemical-void 1 + product gas-nitrogen-monoxide 100 +angels-chemical-void-gas-nitrogen-dioxide angels-chemical-void + recipe chemical-void 1 + product gas-nitrogen-dioxide 100 +angels-chemical-void-gas-dinitrogen-tetroxide angels-chemical-void + recipe chemical-void 1 + product gas-dinitrogen-tetroxide 100 +angels-chemical-void-gas-ammonium-chloride angels-chemical-void + recipe chemical-void 1 + product gas-ammonium-chloride 100 +angels-chemical-void-gas-urea angels-chemical-void + recipe chemical-void 1 + product gas-urea 100 +angels-chemical-void-gas-melamine angels-chemical-void + recipe chemical-void 1 + product gas-melamine 100 +angels-chemical-void-liquid-nitric-acid angels-chemical-void + recipe chemical-void 1 + product liquid-nitric-acid 100 +angels-chemical-void-gas-monochloramine angels-chemical-void + recipe chemical-void 1 + product gas-monochloramine 100 +angels-chemical-void-gas-hydrazine angels-chemical-void + recipe chemical-void 1 + product gas-hydrazine 100 +angels-chemical-void-gas-methylamine angels-chemical-void + recipe chemical-void 1 + product gas-methylamine 100 +angels-chemical-void-gas-dimethylamine angels-chemical-void + recipe chemical-void 1 + product gas-dimethylamine 100 +angels-chemical-void-gas-dimethylhydrazine angels-chemical-void + recipe chemical-void 1 + product gas-dimethylhydrazine 100 +angels-chemical-void-gas-hydrogen-sulfide angels-chemical-void + recipe chemical-void 1 + product gas-hydrogen-sulfide 100 +angels-chemical-void-gas-sulfur-dioxide angels-chemical-void + recipe chemical-void 1 + product gas-sulfur-dioxide 100 +angels-chemical-void-liquid-sulfuric-acid angels-chemical-void + recipe chemical-void 1 + product liquid-sulfuric-acid 100 +angels-chemical-void-gas-acid angels-chemical-void + recipe chemical-void 1 + product gas-acid 100 +angels-chemical-void-gas-hydrogen-fluoride angels-chemical-void + recipe chemical-void 1 + product gas-hydrogen-fluoride 100 +angels-chemical-void-liquid-hydrofluoric-acid angels-chemical-void + recipe chemical-void 1 + product liquid-hydrofluoric-acid 100 +angels-chemical-void-gas-natural-1 angels-chemical-void + recipe chemical-void 1 + product gas-natural-1 100 +angels-chemical-void-gas-raw-1 angels-chemical-void + recipe chemical-void 1 + product gas-raw-1 100 +angels-chemical-void-liquid-ngl angels-chemical-void + recipe chemical-void 1 + product liquid-ngl 100 +angels-chemical-void-liquid-multi-phase-oil angels-chemical-void + recipe chemical-void 1 + product liquid-multi-phase-oil 100 +angels-chemical-void-liquid-condensates angels-chemical-void + recipe chemical-void 1 + product liquid-condensates 100 +angels-chemical-void-gas-residual angels-chemical-void + recipe chemical-void 1 + product gas-residual 100 +angels-chemical-void-gas-methane angels-chemical-void + recipe chemical-void 1 + product gas-methane 100 +angels-chemical-void-gas-ethane angels-chemical-void + recipe chemical-void 1 + product gas-ethane 100 +angels-chemical-void-gas-butane angels-chemical-void + recipe chemical-void 1 + product gas-butane 100 +angels-chemical-void-gas-propene angels-chemical-void + recipe chemical-void 1 + product gas-propene 100 +angels-chemical-void-gas-methanol angels-chemical-void + recipe chemical-void 1 + product gas-methanol 100 +angels-chemical-void-gas-ethylene angels-chemical-void + recipe chemical-void 1 + product gas-ethylene 100 +angels-chemical-void-gas-benzene angels-chemical-void + recipe chemical-void 1 + product gas-benzene 100 +angels-chemical-void-liquid-fuel-oil angels-chemical-void + recipe chemical-void 1 + product liquid-fuel-oil 100 +angels-chemical-void-liquid-naphtha angels-chemical-void + recipe chemical-void 1 + product liquid-naphtha 100 +angels-chemical-void-liquid-mineral-oil angels-chemical-void + recipe chemical-void 1 + product liquid-mineral-oil 100 +angels-chemical-void-gas-synthesis angels-chemical-void + recipe chemical-void 1 + product gas-synthesis 100 +angels-chemical-void-liquid-toluene angels-chemical-void + recipe chemical-void 1 + product liquid-toluene 100 +angels-chemical-void-gas-butadiene angels-chemical-void + recipe chemical-void 1 + product gas-butadiene 100 +angels-chemical-void-liquid-phenol angels-chemical-void + recipe chemical-void 1 + product liquid-phenol 100 +angels-chemical-void-liquid-ethylbenzene angels-chemical-void + recipe chemical-void 1 + product liquid-ethylbenzene 100 +angels-chemical-void-liquid-styrene angels-chemical-void + recipe chemical-void 1 + product liquid-styrene 100 +angels-chemical-void-gas-formaldehyde angels-chemical-void + recipe chemical-void 1 + product gas-formaldehyde 100 +angels-chemical-void-liquid-polyethylene angels-chemical-void + recipe chemical-void 1 + product liquid-polyethylene 100 +angels-chemical-void-liquid-glycerol angels-chemical-void + recipe chemical-void 1 + product liquid-glycerol 100 +angels-chemical-void-liquid-bisphenol-a angels-chemical-void + recipe chemical-void 1 + product liquid-bisphenol-a 100 +angels-chemical-void-gas-acetone angels-chemical-void + recipe chemical-void 1 + product gas-acetone 100 +angels-bio-void-algae-green angels-bio-void + recipe solid-compost 1 + product algae-green 4 +angels-bio-void-algae-brown angels-bio-void + recipe solid-compost 1 + product algae-brown 3 +angels-bio-void-algae-red angels-bio-void + recipe solid-compost 1 + product algae-red 2 +angels-bio-void-algae-blue angels-bio-void + recipe solid-compost 1 + product algae-blue 1 +angels-bio-void-wood angels-bio-void + recipe solid-compost 1 + product wood 1 +angels-bio-void-cellulose-fiber angels-bio-void + recipe solid-compost 1 + product cellulose-fiber 2 +angels-bio-void-temperate-garden angels-bio-void + recipe solid-compost 1 + product temperate-garden 2 +angels-bio-void-swamp-garden angels-bio-void + recipe solid-compost 1 + product swamp-garden 2 +angels-bio-void-desert-garden angels-bio-void + recipe solid-compost 1 + product desert-garden 2 +angels-bio-void-temperate-1-seed angels-bio-void + recipe solid-compost 1 + product temperate-1-seed 20 +angels-bio-void-temperate-2-seed angels-bio-void + recipe solid-compost 1 + product temperate-2-seed 20 +angels-bio-void-temperate-3-seed angels-bio-void + recipe solid-compost 1 + product temperate-3-seed 20 +angels-bio-void-temperate-4-seed angels-bio-void + recipe solid-compost 1 + product temperate-4-seed 20 +angels-bio-void-temperate-5-seed angels-bio-void + recipe solid-compost 1 + product temperate-5-seed 20 +angels-bio-void-temperate-3-seed-dormant angels-bio-void + recipe solid-compost 1 + product temperate-3-seed-dormant 20 +angels-bio-void-temperate-4-seed-dormant angels-bio-void + recipe solid-compost 1 + product temperate-4-seed-dormant 20 +angels-bio-void-temperate-5-seed-dormant angels-bio-void + recipe solid-compost 1 + product temperate-5-seed-dormant 20 +angels-bio-void-temperate-1 angels-bio-void + recipe solid-compost 1 + product temperate-1 2 +angels-bio-void-temperate-2 angels-bio-void + recipe solid-compost 1 + product temperate-2 2 +angels-bio-void-temperate-3 angels-bio-void + recipe solid-compost 1 + product temperate-3 2 +angels-bio-void-temperate-4 angels-bio-void + recipe solid-compost 1 + product temperate-4 2 +angels-bio-void-temperate-5 angels-bio-void + recipe solid-compost 1 + product temperate-5 2 +angels-bio-void-swamp-1-seed angels-bio-void + recipe solid-compost 1 + product swamp-1-seed 20 +angels-bio-void-swamp-2-seed angels-bio-void + recipe solid-compost 1 + product swamp-2-seed 20 +angels-bio-void-swamp-3-seed angels-bio-void + recipe solid-compost 1 + product swamp-3-seed 20 +angels-bio-void-swamp-4-seed angels-bio-void + recipe solid-compost 1 + product swamp-4-seed 20 +angels-bio-void-swamp-5-seed angels-bio-void + recipe solid-compost 1 + product swamp-5-seed 20 +angels-bio-void-swamp-3-seed-dormant angels-bio-void + recipe solid-compost 1 + product swamp-3-seed-dormant 20 +angels-bio-void-swamp-4-seed-dormant angels-bio-void + recipe solid-compost 1 + product swamp-4-seed-dormant 20 +angels-bio-void-swamp-5-seed-dormant angels-bio-void + recipe solid-compost 1 + product swamp-5-seed-dormant 20 +angels-bio-void-swamp-1 angels-bio-void + recipe solid-compost 1 + product swamp-1 2 +angels-bio-void-swamp-2 angels-bio-void + recipe solid-compost 1 + product swamp-2 2 +angels-bio-void-swamp-3 angels-bio-void + recipe solid-compost 1 + product swamp-3 2 +angels-bio-void-swamp-4 angels-bio-void + recipe solid-compost 1 + product swamp-4 2 +angels-bio-void-swamp-5 angels-bio-void + recipe solid-compost 1 + product swamp-5 2 +angels-bio-void-desert-1-seed angels-bio-void + recipe solid-compost 1 + product desert-1-seed 20 +angels-bio-void-desert-2-seed angels-bio-void + recipe solid-compost 1 + product desert-2-seed 20 +angels-bio-void-desert-3-seed angels-bio-void + recipe solid-compost 1 + product desert-3-seed 20 +angels-bio-void-desert-4-seed angels-bio-void + recipe solid-compost 1 + product desert-4-seed 20 +angels-bio-void-desert-5-seed angels-bio-void + recipe solid-compost 1 + product desert-5-seed 20 +angels-bio-void-desert-3-seed-dormant angels-bio-void + recipe solid-compost 1 + product desert-3-seed-dormant 20 +angels-bio-void-desert-4-seed-dormant angels-bio-void + recipe solid-compost 1 + product desert-4-seed-dormant 20 +angels-bio-void-desert-5-seed-dormant angels-bio-void + recipe solid-compost 1 + product desert-5-seed-dormant 20 +angels-bio-void-desert-1 angels-bio-void + recipe solid-compost 1 + product desert-1 2 +angels-bio-void-desert-2 angels-bio-void + recipe solid-compost 1 + product desert-2 2 +angels-bio-void-desert-3 angels-bio-void + recipe solid-compost 1 + product desert-3 2 +angels-bio-void-desert-4 angels-bio-void + recipe solid-compost 1 + product desert-4 2 +angels-bio-void-desert-5 angels-bio-void + recipe solid-compost 1 + product desert-5 2 +angels-chemical-void-gas-ethanol angels-chemical-void + recipe chemical-void 1 + product gas-ethanol 100 +angels-bio-void-bio-puffer-egg-shell angels-bio-void + recipe solid-compost 1 + product bio-puffer-egg-shell 10 +angels-chemical-void-alien-spores angels-chemical-void + recipe chemical-void 1 + product alien-spores 100 +angels-bio-void-alien-bacteria angels-bio-void + recipe solid-compost 1 + product alien-bacteria 1 +angels-chemical-void-crude-oil angels-chemical-void + recipe chemical-void 1 + product crude-oil 100 +angels-chemical-void-ferric-chloride-solution angels-chemical-void + recipe chemical-void 1 + product liquid-ferric-chloride-solution 100 +angels-chemical-void-lubricant angels-chemical-void + recipe chemical-void 1 + product lubricant 100 +angelsore-crystal-mix3-processing ore-sorting-advanced + recipe cobalt-ore 6 + product catalysator-orange 1 angels-ore2-crystal 2 angels-ore4-crystal 2 angels-ore6-crystal 2 +gilded-copper-cable angels-gold-casting + recipe gilded-copper-cable 3 + product copper-cable 3 gold-plate 1 +wooden-board-paper bio-paper + recipe wooden-board 1 + product solid-paper 2 +fill-gas-dimethylamine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-dimethylamine-barrel 1 + product gas-canister 1 gas-dimethylamine 50 +empty-gas-dimethylamine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-dimethylamine 50 + product gas-dimethylamine-barrel 1 +effectivity-module effectivity-module + recipe effectivity-module 1 + product module-case 1 effectivity-processor 1 module-contact 4 module-circuit-board 1 +effectivity-module-2 effectivity-module + recipe effectivity-module-2 1 + product solder 1 effectivity-processor 2 module-contact 5 effectivity-module 1 +effectivity-module-3 effectivity-module + recipe effectivity-module-3 1 + product solder 2 electronic-components 5 effectivity-processor-2 3 effectivity-module-2 1 +effectivity-module-4 effectivity-module + recipe effectivity-module-4 1 + product solder 3 intergrated-electronics 5 module-contact 5 effectivity-processor-2 4 effectivity-module-3 1 +effectivity-module-5 effectivity-module + recipe effectivity-module-5 1 + product solder 4 intergrated-electronics 5 ruby-5 1 module-contact 5 effectivity-processor-2 5 effectivity-module-4 1 +effectivity-module-6 effectivity-module + recipe effectivity-module-6 1 + product solder 5 intergrated-electronics 5 emerald-5 1 module-contact 5 effectivity-processor-3 6 effectivity-module-5 1 +effectivity-module-7 effectivity-module + recipe effectivity-module-7 1 + product solder 7 intergrated-electronics 5 processing-electronics 3 topaz-5 1 module-contact 5 effectivity-processor-3 8 effectivity-module-6 1 +effectivity-module-8 effectivity-module + recipe effectivity-module-8 1 + product solder 8 electronic-components 5 intergrated-electronics 5 processing-electronics 5 diamond-5 1 module-contact 5 effectivity-processor-3 10 effectivity-module-7 1 +god-module-1 god-module + recipe god-module-1 1 + product solder 2 module-case 1 speed-processor 2 effectivity-processor 6 productivity-processor 2 pollution-clean-processor 4 module-contact 5 module-circuit-board 1 +green-module-1 green-module + recipe green-module-1 1 + product module-case 1 effectivity-processor 1 pollution-clean-processor 1 module-contact 4 module-circuit-board 1 +green-module-1-combine green-module-combine + recipe green-module-1 1 + product solder 1 effectivity-module 1 pollution-clean-module-1 1 +god-module-2 god-module + recipe god-module-2 1 + product solder 5 electronic-components 7 intergrated-electronics 7 module-contact 5 speed-processor-2 4 effectivity-processor-2 12 productivity-processor-2 4 pollution-clean-processor-2 8 god-module-1 1 +green-module-2 green-module + recipe green-module-2 1 + product solder 2 effectivity-processor 2 pollution-clean-processor 2 module-contact 5 green-module-1 1 +green-module-2-combine green-module-combine + recipe green-module-2 1 + product solder 2 effectivity-module-2 1 pollution-clean-module-2 1 +god-module-3 god-module + recipe god-module-3 1 + product solder 7 intergrated-electronics 7 ruby-5 1 sapphire-5 1 module-contact 5 speed-processor-3 6 effectivity-processor-3 18 productivity-processor-3 6 pollution-clean-processor-3 12 god-module-2 1 +green-module-3 green-module + recipe green-module-3 1 + product solder 3 electronic-components 7 effectivity-processor-2 3 pollution-clean-processor-2 3 green-module-2 1 +green-module-3-combine green-module-combine + recipe green-module-3 1 + product solder 3 effectivity-module-3 1 pollution-clean-module-3 1 +god-module-4 god-module + recipe god-module-4 1 + product solder 12 electronic-components 8 intergrated-electronics 8 processing-electronics 8 emerald-5 1 amethyst-5 1 module-contact 5 speed-processor-3 10 effectivity-processor-3 30 productivity-processor-3 10 pollution-clean-processor-3 20 god-module-3 1 +green-module-4 green-module + recipe green-module-4 1 + product solder 5 intergrated-electronics 7 module-contact 5 effectivity-processor-2 4 pollution-clean-processor-2 4 green-module-3 1 +green-module-4-combine green-module-combine + recipe green-module-4 1 + product solder 4 effectivity-module-4 1 pollution-clean-module-4 1 +god-module-5 god-module + recipe god-module-5 1 + product solder 15 electronic-components 10 intergrated-electronics 10 processing-electronics 10 topaz-5 1 diamond-5 1 module-contact 5 speed-processor-3 15 effectivity-processor-3 45 productivity-processor-3 15 pollution-clean-processor-3 30 god-module-4 1 +green-module-5 green-module + recipe green-module-5 1 + product solder 6 intergrated-electronics 7 ruby-5 1 module-contact 5 effectivity-processor-2 5 pollution-clean-processor-2 5 green-module-4 1 +green-module-5-combine green-module-combine + recipe green-module-5 1 + product solder 6 effectivity-module-5 1 pollution-clean-module-5 1 +green-module-6 green-module + recipe green-module-6 1 + product solder 7 intergrated-electronics 7 emerald-5 1 module-contact 5 effectivity-processor-3 6 pollution-clean-processor-3 6 green-module-5 1 +green-module-6-combine green-module-combine + recipe green-module-6 1 + product solder 7 effectivity-module-6 1 pollution-clean-module-6 1 +green-module-7 green-module + recipe green-module-7 1 + product solder 10 intergrated-electronics 8 processing-electronics 5 topaz-5 1 module-contact 5 effectivity-processor-3 8 pollution-clean-processor-3 8 green-module-6 1 +green-module-7-combine green-module-combine + recipe green-module-7 1 + product solder 8 effectivity-module-7 1 pollution-clean-module-7 1 +green-module-8 green-module + recipe green-module-8 1 + product solder 12 electronic-components 8 intergrated-electronics 8 processing-electronics 8 diamond-5 1 module-contact 5 effectivity-processor-3 10 pollution-clean-processor-3 10 green-module-7 1 +green-module-8-combine green-module-combine + recipe green-module-8 1 + product solder 10 effectivity-module-8 1 pollution-clean-module-8 1 +productivity-module productivity-module + recipe productivity-module 1 + product module-case 1 productivity-processor 1 module-contact 4 module-circuit-board 1 +productivity-module-2 productivity-module + recipe productivity-module-2 1 + product solder 1 productivity-processor 2 module-contact 5 productivity-module 1 +productivity-module-3 productivity-module + recipe productivity-module-3 1 + product solder 2 electronic-components 5 productivity-processor-2 3 productivity-module-2 1 +productivity-module-4 productivity-module + recipe productivity-module-4 1 + product solder 3 intergrated-electronics 5 module-contact 5 productivity-processor-2 4 productivity-module-3 1 +productivity-module-5 productivity-module + recipe productivity-module-5 1 + product solder 4 intergrated-electronics 5 ruby-5 1 module-contact 5 productivity-processor-2 5 productivity-module-4 1 +productivity-module-6 productivity-module + recipe productivity-module-6 1 + product solder 5 intergrated-electronics 5 emerald-5 1 module-contact 5 productivity-processor-3 6 productivity-module-5 1 +productivity-module-7 productivity-module + recipe productivity-module-7 1 + product solder 7 intergrated-electronics 5 processing-electronics 3 topaz-5 1 module-contact 5 productivity-processor-3 8 productivity-module-6 1 +productivity-module-8 productivity-module + recipe productivity-module-8 1 + product solder 8 electronic-components 5 intergrated-electronics 5 processing-electronics 5 diamond-5 1 module-contact 5 productivity-processor-3 10 productivity-module-7 1 +pollution-clean-module-1 pollution-clean-module + recipe pollution-clean-module-1 1 + product module-case 1 pollution-clean-processor 1 module-contact 4 module-circuit-board 1 +pollution-clean-module-2 pollution-clean-module + recipe pollution-clean-module-2 1 + product solder 1 pollution-clean-processor 2 module-contact 5 pollution-clean-module-1 1 +pollution-clean-module-3 pollution-clean-module + recipe pollution-clean-module-3 1 + product solder 2 electronic-components 5 pollution-clean-processor-2 3 pollution-clean-module-2 1 +pollution-clean-module-4 pollution-clean-module + recipe pollution-clean-module-4 1 + product solder 3 intergrated-electronics 5 module-contact 5 pollution-clean-processor-2 4 pollution-clean-module-3 1 +pollution-clean-module-5 pollution-clean-module + recipe pollution-clean-module-5 1 + product solder 4 intergrated-electronics 5 ruby-5 1 module-contact 5 pollution-clean-processor-2 5 pollution-clean-module-4 1 +pollution-clean-module-6 pollution-clean-module + recipe pollution-clean-module-6 1 + product solder 5 intergrated-electronics 5 emerald-5 1 module-contact 5 pollution-clean-processor-3 6 pollution-clean-module-5 1 +pollution-clean-module-7 pollution-clean-module + recipe pollution-clean-module-7 1 + product solder 7 intergrated-electronics 5 processing-electronics 3 topaz-5 1 module-contact 5 pollution-clean-processor-3 8 pollution-clean-module-6 1 +pollution-clean-module-8 pollution-clean-module + recipe pollution-clean-module-8 1 + product solder 8 electronic-components 5 intergrated-electronics 5 processing-electronics 5 diamond-5 1 module-contact 5 pollution-clean-processor-3 10 pollution-clean-module-7 1 +pollution-create-module-1 pollution-create-module + recipe pollution-create-module-1 1 + product module-case 1 pollution-create-processor 1 module-contact 4 module-circuit-board 1 +pollution-create-module-2 pollution-create-module + recipe pollution-create-module-2 1 + product solder 1 pollution-create-processor 2 module-contact 5 pollution-create-module-1 1 +pollution-create-module-3 pollution-create-module + recipe pollution-create-module-3 1 + product solder 2 electronic-components 5 pollution-create-processor-2 3 pollution-create-module-2 1 +pollution-create-module-4 pollution-create-module + recipe pollution-create-module-4 1 + product solder 3 intergrated-electronics 5 module-contact 5 pollution-create-processor-2 4 pollution-create-module-3 1 +pollution-create-module-5 pollution-create-module + recipe pollution-create-module-5 1 + product solder 4 intergrated-electronics 5 ruby-5 1 module-contact 5 pollution-create-processor-2 5 pollution-create-module-4 1 +pollution-create-module-6 pollution-create-module + recipe pollution-create-module-6 1 + product solder 5 intergrated-electronics 5 emerald-5 1 module-contact 5 pollution-create-processor-3 6 pollution-create-module-5 1 +pollution-create-module-7 pollution-create-module + recipe pollution-create-module-7 1 + product solder 7 intergrated-electronics 5 processing-electronics 3 topaz-5 1 module-contact 5 pollution-create-processor-3 8 pollution-create-module-6 1 +pollution-create-module-8 pollution-create-module + recipe pollution-create-module-8 1 + product solder 8 electronic-components 5 intergrated-electronics 5 processing-electronics 5 diamond-5 1 module-contact 5 pollution-create-processor-3 10 pollution-create-module-7 1 +raw-productivity-module-1 raw-productivity-module + recipe raw-productivity-module-1 1 + product module-case 1 effectivity-processor 1 productivity-processor 1 pollution-clean-processor 1 module-contact 4 module-circuit-board 1 +raw-productivity-module-1-combine raw-productivity-module-combine + recipe raw-productivity-module-1 1 + product solder 1 effectivity-module 1 productivity-module 1 pollution-clean-module-1 1 +raw-productivity-module-2 raw-productivity-module + recipe raw-productivity-module-2 1 + product solder 2 effectivity-processor 2 productivity-processor 2 pollution-clean-processor 2 module-contact 5 raw-productivity-module-1 1 +raw-productivity-module-2-combine raw-productivity-module-combine + recipe raw-productivity-module-2 1 + product solder 2 effectivity-module-2 1 productivity-module-2 1 pollution-clean-module-2 1 +raw-productivity-module-3 raw-productivity-module + recipe raw-productivity-module-3 1 + product solder 3 electronic-components 7 effectivity-processor-2 3 productivity-processor-2 3 pollution-clean-processor-2 3 raw-productivity-module-2 1 +raw-productivity-module-3-combine raw-productivity-module-combine + recipe raw-productivity-module-3 1 + product solder 3 effectivity-module-3 1 productivity-module-3 1 pollution-clean-module-3 1 +raw-productivity-module-4 raw-productivity-module + recipe raw-productivity-module-4 1 + product solder 5 intergrated-electronics 7 module-contact 5 effectivity-processor-2 4 productivity-processor-2 4 pollution-clean-processor-2 4 raw-productivity-module-3 1 +raw-productivity-module-4-combine raw-productivity-module-combine + recipe raw-productivity-module-4 1 + product solder 4 effectivity-module-4 1 productivity-module-4 1 pollution-clean-module-4 1 +raw-productivity-module-5 raw-productivity-module + recipe raw-productivity-module-5 1 + product solder 6 intergrated-electronics 7 ruby-5 1 module-contact 5 effectivity-processor-2 5 productivity-processor-2 5 pollution-clean-processor-2 5 raw-productivity-module-4 1 +raw-productivity-module-5-combine raw-productivity-module-combine + recipe raw-productivity-module-5 1 + product solder 6 effectivity-module-5 1 productivity-module-5 1 pollution-clean-module-5 1 +raw-productivity-module-6 raw-productivity-module + recipe raw-productivity-module-6 1 + product solder 7 intergrated-electronics 7 emerald-5 1 module-contact 5 effectivity-processor-3 6 productivity-processor-3 6 pollution-clean-processor-3 6 raw-productivity-module-5 1 +raw-productivity-module-6-combine raw-productivity-module-combine + recipe raw-productivity-module-6 1 + product solder 7 effectivity-module-6 1 productivity-module-6 1 pollution-clean-module-6 1 +raw-productivity-module-7 raw-productivity-module + recipe raw-productivity-module-7 1 + product solder 10 intergrated-electronics 8 processing-electronics 5 topaz-5 1 module-contact 5 effectivity-processor-3 8 productivity-processor-3 8 pollution-clean-processor-3 8 raw-productivity-module-6 1 +raw-productivity-module-7-combine raw-productivity-module-combine + recipe raw-productivity-module-7 1 + product solder 8 effectivity-module-7 1 productivity-module-7 1 pollution-clean-module-7 1 +raw-productivity-module-8 raw-productivity-module + recipe raw-productivity-module-8 1 + product solder 12 electronic-components 8 intergrated-electronics 8 processing-electronics 8 diamond-5 1 module-contact 5 effectivity-processor-3 10 productivity-processor-3 10 pollution-clean-processor-3 10 raw-productivity-module-7 1 +raw-productivity-module-8-combine raw-productivity-module-combine + recipe raw-productivity-module-8 1 + product solder 10 effectivity-module-8 1 productivity-module-8 1 pollution-clean-module-8 1 +raw-speed-module-1 raw-speed-module + recipe raw-speed-module-1 1 + product module-case 1 speed-processor 1 effectivity-processor 1 module-contact 4 module-circuit-board 1 +raw-speed-module-1-combine raw-speed-module-combine + recipe raw-speed-module-1 1 + product solder 1 speed-module 1 effectivity-module 1 +raw-speed-module-2 raw-speed-module + recipe raw-speed-module-2 1 + product solder 2 speed-processor 2 effectivity-processor 2 module-contact 5 raw-speed-module-1 1 +raw-speed-module-2-combine raw-speed-module-combine + recipe raw-speed-module-2 1 + product solder 2 speed-module-2 1 effectivity-module-2 1 +raw-speed-module-3 raw-speed-module + recipe raw-speed-module-3 1 + product solder 3 electronic-components 7 speed-processor-2 3 effectivity-processor-2 3 raw-speed-module-2 1 +raw-speed-module-3-combine raw-speed-module-combine + recipe raw-speed-module-3 1 + product solder 3 speed-module-3 1 effectivity-module-3 1 +raw-speed-module-4 raw-speed-module + recipe raw-speed-module-4 1 + product solder 5 intergrated-electronics 7 module-contact 5 speed-processor-2 4 effectivity-processor-2 4 raw-speed-module-3 1 +raw-speed-module-4-combine raw-speed-module-combine + recipe raw-speed-module-4 1 + product solder 4 speed-module-4 1 effectivity-module-4 1 +raw-speed-module-5 raw-speed-module + recipe raw-speed-module-5 1 + product solder 6 intergrated-electronics 7 ruby-5 1 module-contact 5 speed-processor-2 5 effectivity-processor-2 5 raw-speed-module-4 1 +raw-speed-module-5-combine raw-speed-module-combine + recipe raw-speed-module-5 1 + product solder 6 speed-module-5 1 effectivity-module-5 1 +raw-speed-module-6 raw-speed-module + recipe raw-speed-module-6 1 + product solder 7 intergrated-electronics 7 emerald-5 1 module-contact 5 speed-processor-3 6 effectivity-processor-3 6 raw-speed-module-5 1 +raw-speed-module-6-combine raw-speed-module-combine + recipe raw-speed-module-6 1 + product solder 7 speed-module-6 1 effectivity-module-6 1 +raw-speed-module-7 raw-speed-module + recipe raw-speed-module-7 1 + product solder 10 intergrated-electronics 8 processing-electronics 5 topaz-5 1 module-contact 5 speed-processor-3 8 effectivity-processor-3 8 raw-speed-module-6 1 +raw-speed-module-7-combine raw-speed-module-combine + recipe raw-speed-module-7 1 + product solder 8 speed-module-7 1 effectivity-module-7 1 +raw-speed-module-8 raw-speed-module + recipe raw-speed-module-8 1 + product solder 12 electronic-components 8 intergrated-electronics 8 processing-electronics 8 diamond-5 1 module-contact 5 speed-processor-3 10 effectivity-processor-3 10 raw-speed-module-7 1 +raw-speed-module-8-combine raw-speed-module-combine + recipe raw-speed-module-8 1 + product solder 10 speed-module-8 1 effectivity-module-8 1 +speed-module speed-module + recipe speed-module 1 + product module-case 1 speed-processor 1 module-contact 4 module-circuit-board 1 +speed-module-2 speed-module + recipe speed-module-2 1 + product solder 1 speed-processor 2 module-contact 5 speed-module 1 +speed-module-3 speed-module + recipe speed-module-3 1 + product solder 2 electronic-components 5 speed-processor-2 3 speed-module-2 1 +speed-module-4 speed-module + recipe speed-module-4 1 + product solder 3 intergrated-electronics 5 module-contact 5 speed-processor-2 4 speed-module-3 1 +speed-module-5 speed-module + recipe speed-module-5 1 + product solder 4 intergrated-electronics 5 ruby-5 1 module-contact 5 speed-processor-2 5 speed-module-4 1 +speed-module-6 speed-module + recipe speed-module-6 1 + product solder 5 intergrated-electronics 5 emerald-5 1 module-contact 5 speed-processor-3 6 speed-module-5 1 +speed-module-7 speed-module + recipe speed-module-7 1 + product solder 7 intergrated-electronics 5 processing-electronics 3 topaz-5 1 module-contact 5 speed-processor-3 8 speed-module-6 1 +speed-module-8 speed-module + recipe speed-module-8 1 + product solder 8 electronic-components 5 intergrated-electronics 5 processing-electronics 5 diamond-5 1 module-contact 5 speed-processor-3 10 speed-module-7 1 +silver-plate angels-silver-casting + recipe silver-plate 3 + product silver-ore 4 +angels-plate-silver angels-silver-casting + recipe silver-plate 4 + product liquid-molten-silver 40 +angels-roll-silver-converting angels-silver-casting + recipe silver-plate 4 + product angels-roll-silver 1 +angels-rod-iron-plate angels-iron-casting + recipe iron-stick 1 + product iron-plate 2 +angels-rod-stack-iron-converting angels-iron-casting + recipe iron-stick 4 + product angels-rod-stack-iron 1 +angels-rod-steel-plate angels-steel-casting + recipe angels-rod-steel 1 + product steel-plate 2 +angels-rod-stack-steel-converting angels-steel-casting + recipe angels-rod-steel 4 + product angels-rod-stack-steel 1 +angels-wire-gold angels-gold-casting + recipe gilded-copper-cable 5 + product copper-cable 10 gold-plate 4 +angels-wire-coil-gold-converting angels-gold-casting + recipe gilded-copper-cable 16 + product angels-wire-coil-gold 4 +silicon-nitride angels-silicon-casting + recipe silicon-nitride 1 + product silicon-powder 1 gas-nitrogen 13 +silicon-carbide angels-silicon-casting + recipe silicon-carbide 2 + product silicon-powder 1 solid-carbon 1 +angelsore-crystal-mix4-processing ore-sorting-advanced + recipe angels-void 1 + product catalysator-orange 1 angels-ore2-crystal 2 angels-ore4-crystal 2 angels-ore5-crystal 2 +fill-gas-dimethylhydrazine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-dimethylhydrazine-barrel 1 + product gas-canister 1 gas-dimethylhydrazine 50 +empty-gas-dimethylhydrazine-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe gas-canister 1 gas-dimethylhydrazine 50 + product gas-dimethylhydrazine-barrel 1 +basic-silvered-copper-wire angels-silver-casting + recipe angels-wire-silver 5 + product copper-cable 10 silver-plate 4 +angels-wire-coil-silver-converting angels-silver-casting + recipe angels-wire-silver 16 + product angels-wire-coil-silver 4 +void-nitrogen void + recipe void 1 + product gas-nitrogen 25 +angelsore-crystal-mix5-processing ore-sorting-advanced + recipe uranium-ore 3 + product catalysator-orange 1 angels-ore1-crystal 2 angels-ore3-crystal 2 angels-ore5-crystal 2 +fill-nitroglycerin-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe nitroglycerin-barrel 1 + product empty-barrel 1 nitroglycerin 50 +empty-nitroglycerin-barrel angels-fluid-control-petrochem-nitrogen-fluids + recipe empty-barrel 1 nitroglycerin 50 + product nitroglycerin-barrel 1 +void-oxygen void + recipe void 1 + product gas-oxygen 25 +angelsore-crystal-mix6-processing ore-sorting-advanced + recipe thorium-ore 3 + product catalysator-green 1 angels-ore8-crystal 2 angels-ore9-crystal 2 +void-petroleum-gas void + recipe void 1 + product gas-methane 10 +angelsore-pure-mix1-processing ore-sorting-advanced + recipe tungsten-ore 6 + product catalysator-orange 1 angels-ore1-pure 2 angels-ore2-pure 2 angels-ore3-pure 2 +rocket-part intermediate-product + recipe rocket-part 1 + product rocket-fuel 10 rocket-control-unit 10 low-density-structure 10 heat-shield-tile 10 rocket-engine 10 +angelsore-pure-mix2-processing ore-sorting-advanced + recipe angels-void 1 + product catalysator-orange 1 angels-ore3-pure 2 angels-ore5-pure 2 angels-ore6-pure 2 +empty-nuclear-fuel-cell bob-fuel-cells + recipe empty-nuclear-fuel-cell 10 + product lead-plate 5 steel-plate 2 +plutonium-fuel-cell bob-fuel-cells + recipe plutonium-fuel-cell 10 + product empty-nuclear-fuel-cell 10 uranium-238 19 plutonium-239 1 +angelsore-pure-mix3-processing ore-sorting-advanced + recipe angels-void 1 + product catalysator-orange 1 angels-ore2-pure 2 angels-ore4-pure 2 angels-ore5-pure 2 +mech-armor-plate mech-parts + recipe mech-armor-plate 1 + product tungsten-carbide 2 low-density-structure 5 +mech-brain mech-parts + recipe mech-brain 1 + product solder 120 multi-layer-circuit-board 40 basic-electronic-components 80 electronic-components 100 intergrated-electronics 100 processing-electronics 120 module-case 2 +mech-frame mech-parts + recipe mech-frame 1 + product low-density-structure 50 mech-brain 1 +mech-leg mech-parts + recipe mech-leg 1 + product insulated-cable 4 mech-foot 1 mech-hip 1 mech-knee 1 mech-leg-segment 2 +mech-foot mech-parts + recipe mech-foot 1 + product rubber 1 low-density-structure 1 +mech-hip mech-parts + recipe mech-hip 1 + product electric-engine-unit 5 low-density-structure 2 titanium-gear-wheel 4 titanium-bearing 4 +mech-knee mech-parts + recipe mech-knee 1 + product electric-engine-unit 10 low-density-structure 2 titanium-gear-wheel 8 titanium-bearing 2 +mech-leg-segment mech-parts + recipe mech-leg-segment 1 + product nitinol-alloy 2 titanium-pipe 3 +spidertron-cannon mech-parts + recipe spidertron-cannon 1 + product steel-plate 15 iron-gear-wheel 5 +thorium-fuel-cell bob-fuel-cells + recipe thorium-fuel-cell 10 + product empty-nuclear-fuel-cell 10 uranium-235 1 thorium-232 19 +thorium-plutonium-fuel-cell bob-fuel-cells + recipe thorium-plutonium-fuel-cell 10 + product empty-nuclear-fuel-cell 10 plutonium-239 1 thorium-232 19 +thorium-fuel-reprocessing bob-fuel-cells + recipe thorium-232 4 uranium-235 3 empty-nuclear-fuel-cell 10 angels-muon-fusion-catalyst 1 + product used-up-thorium-fuel-cell 10 +void-sour-gas void + recipe void 1 + product sour-gas 25 +void-steam void + recipe void 1 + product steam 10 +void-sulfur-dioxide void + recipe void 1 + product gas-sulfur-dioxide 25 +deuterium-fuel-cell bob-fuel-cells + recipe deuterium-fuel-cell 10 + product empty-nuclear-fuel-cell 10 angels-muon-fusion-catalyst 1 gas-deuterium 190 +deuterium-fuel-cell-2 bob-fuel-cells + recipe deuterium-fuel-cell-2 10 + product empty-nuclear-fuel-cell 10 angels-muon-fusion-catalyst 5 gas-deuterium 250 +deuterium-fuel-reprocessing bob-fuel-cells + recipe empty-nuclear-fuel-cell 10 lithium 1 angels-muon-fusion-catalyst 1 + product used-up-deuterium-fuel-cell 10 +void-pump bob-pump + recipe void-pump 1 + product iron-plate 2 iron-gear-wheel 2 electronic-circuit 2 copper-pipe 2 +filter-frame geode-crystallization + recipe filter-frame 1 + product iron-plate 1 steel-plate 1 +filter-coal geode-crystallization + recipe filter-coal 5 + product filter-frame 5 coal 1 +electronic-circuit angels-loaded-circuit-board + recipe electronic-circuit 1 + product solder 1 basic-circuit-board 1 basic-electronic-components 5 +advanced-circuit angels-loaded-circuit-board + recipe advanced-circuit 1 + product solder 1 circuit-board 1 basic-electronic-components 4 electronic-components 4 +processing-unit angels-loaded-circuit-board + recipe processing-unit 1 + product solder 2 superior-circuit-board 1 basic-electronic-components 2 electronic-components 4 intergrated-electronics 2 +vehicle-belt-immunity-equipment angels-vehicle-equipment-bobpower-e + recipe vehicle-belt-immunity-equipment 1 + product steel-plate 10 advanced-circuit 5 +smelting-locomotive-1 angels-smeltingtrain + recipe smelting-locomotive-1 1 + product steel-plate 40 engine-unit 25 electronic-circuit 20 locomotive 1 +smelting-locomotive-1-2 angels-smeltingtrain + recipe smelting-locomotive-1-2 1 + product steel-plate 50 engine-unit 30 smelting-locomotive-1 1 speed-module 2 +smelting-locomotive-1-3 angels-smeltingtrain + recipe smelting-locomotive-1-3 1 + product electric-engine-unit 40 low-density-structure 50 smelting-locomotive-1-2 1 speed-module-2 2 +smelting-locomotive-1-4 angels-smeltingtrain + recipe smelting-locomotive-1-4 1 + product electric-engine-unit 45 low-density-structure 75 smelting-locomotive-1-3 1 speed-module-3 2 +smelting-locomotive-1-5 angels-smeltingtrain + recipe smelting-locomotive-1-5 1 + product electric-engine-unit 50 rocket-control-unit 2 low-density-structure 100 smelting-locomotive-1-4 1 +smelting-locomotive-tender angels-smeltingtrain + recipe smelting-locomotive-tender 1 + product steel-plate 35 engine-unit 25 electronic-circuit 15 locomotive 1 +smelting-locomotive-tender-2 angels-smeltingtrain + recipe smelting-locomotive-tender-2 1 + product steel-plate 40 engine-unit 30 smelting-locomotive-tender 1 speed-module 1 effectivity-module 1 +smelting-locomotive-tender-3 angels-smeltingtrain + recipe smelting-locomotive-tender-3 1 + product electric-engine-unit 40 low-density-structure 40 smelting-locomotive-tender-2 1 speed-module-2 1 effectivity-module-2 1 +smelting-locomotive-tender-4 angels-smeltingtrain + recipe smelting-locomotive-tender-4 1 + product electric-engine-unit 45 low-density-structure 60 smelting-locomotive-tender-3 1 speed-module-3 1 effectivity-module-3 1 +smelting-locomotive-tender-5 angels-smeltingtrain + recipe smelting-locomotive-tender-5 1 + product electric-engine-unit 50 rocket-control-unit 2 low-density-structure 80 smelting-locomotive-tender-4 1 +smelting-wagon-1 angels-smeltingtrain + recipe smelting-wagon-1 1 + product steel-plate 20 iron-gear-wheel 25 electronic-circuit 15 cargo-wagon 1 +smelting-wagon-1-2 angels-smeltingtrain + recipe smelting-wagon-1-2 1 + product steel-plate 25 iron-chest 5 smelting-wagon-1 1 effectivity-module 2 +smelting-wagon-1-3 angels-smeltingtrain + recipe smelting-wagon-1-3 1 + product low-density-structure 25 iron-chest 10 smelting-wagon-1-2 1 effectivity-module-2 2 +smelting-wagon-1-4 angels-smeltingtrain + recipe smelting-wagon-1-4 1 + product low-density-structure 35 steel-chest 5 smelting-wagon-1-3 1 effectivity-module-3 2 +smelting-wagon-1-5 angels-smeltingtrain + recipe smelting-wagon-1-5 1 + product low-density-structure 50 steel-chest 10 smelting-wagon-1-4 1 effectivity-module-3 2 +petro-locomotive-1 angels-petrotrain + recipe petro-locomotive-1 1 + product steel-plate 40 engine-unit 25 electronic-circuit 20 locomotive 1 +petro-locomotive-1-2 angels-petrotrain + recipe petro-locomotive-1-2 1 + product steel-plate 50 engine-unit 30 petro-locomotive-1 1 speed-module 2 +petro-locomotive-1-3 angels-petrotrain + recipe petro-locomotive-1-3 1 + product electric-engine-unit 40 low-density-structure 50 petro-locomotive-1-2 1 speed-module-2 2 +petro-locomotive-1-4 angels-petrotrain + recipe petro-locomotive-1-4 1 + product electric-engine-unit 45 low-density-structure 75 petro-locomotive-1-3 1 speed-module-3 2 +petro-locomotive-1-5 angels-petrotrain + recipe petro-locomotive-1-5 1 + product electric-engine-unit 50 rocket-control-unit 2 low-density-structure 100 petro-locomotive-1-4 1 +petro-tank1 angels-petrotrain + recipe petro-tank1 1 + product steel-plate 20 electronic-circuit 15 fluid-wagon 1 pipe 25 +petro-tank1-2 angels-petrotrain + recipe petro-tank1-2 1 + product steel-plate 25 angels-storage-tank-1 3 petro-tank1 1 effectivity-module 2 +petro-tank1-3 angels-petrotrain + recipe petro-tank1-3 1 + product angels-storage-tank-1 6 low-density-structure 25 petro-tank1-2 1 effectivity-module-2 2 +petro-tank1-4 angels-petrotrain + recipe petro-tank1-4 1 + product angels-storage-tank-1 9 low-density-structure 35 petro-tank1-3 1 effectivity-module-3 2 +petro-tank1-5 angels-petrotrain + recipe petro-tank1-5 1 + product angels-storage-tank-1 12 low-density-structure 50 petro-tank1-4 1 effectivity-module-3 2 +petro-tank2 angels-petrotrain + recipe petro-tank2 1 + product steel-plate 20 electronic-circuit 15 fluid-wagon 1 pipe 25 +petro-tank2-2 angels-petrotrain + recipe petro-tank2-2 1 + product steel-plate 25 angels-storage-tank-2 3 petro-tank2 1 effectivity-module 2 +petro-tank2-3 angels-petrotrain + recipe petro-tank2-3 1 + product angels-storage-tank-2 6 low-density-structure 25 petro-tank2-2 1 effectivity-module-2 2 +petro-tank2-4 angels-petrotrain + recipe petro-tank2-4 1 + product angels-storage-tank-2 9 low-density-structure 35 petro-tank2-3 1 effectivity-module-3 2 +petro-tank2-5 angels-petrotrain + recipe petro-tank2-5 1 + product angels-storage-tank-2 12 low-density-structure 50 petro-tank2-4 1 effectivity-module-3 2 +basic-circuit-board angels-circuit-board + recipe basic-circuit-board 1 + product copper-cable 3 wooden-board 1 +basic-electronic-components angels-circuit-components + recipe basic-electronic-components 5 + product tinned-copper-cable 1 solid-carbon 1 +wooden-board angels-board + recipe wooden-board 2 + product wood 1 +circuit-board angels-circuit-board + recipe circuit-board 1 + product copper-plate 1 tin-plate 1 phenolic-board 1 liquid-ferric-chloride-solution 5 +electronic-components angels-circuit-components + recipe electronic-components 5 + product silicon-wafer 2 angels-wire-silver 1 plastic-bar 1 +phenolic-board angels-board + recipe phenolic-board 2 + product resin 1 wood 1 +fibreglass-board angels-board + recipe fibreglass-board 2 + product glass 1 plastic-bar 1 +intergrated-electronics angels-circuit-components + recipe intergrated-electronics 5 + product silicon-wafer 4 plastic-bar 1 insulated-cable 1 liquid-sulfuric-acid 5 +superior-circuit-board angels-circuit-board + recipe superior-circuit-board 1 + product copper-plate 1 silver-plate 1 fibreglass-board 1 liquid-ferric-chloride-solution 5 +advanced-processing-unit angels-loaded-circuit-board + recipe advanced-processing-unit 1 + product solder 4 multi-layer-circuit-board 1 basic-electronic-components 1 electronic-components 2 intergrated-electronics 4 processing-electronics 1 +multi-layer-circuit-board angels-circuit-board + recipe multi-layer-circuit-board 1 + product copper-plate 2 gold-plate 2 fibreglass-board 1 liquid-ferric-chloride-solution 10 +processing-electronics angels-circuit-components + recipe processing-electronics 5 + product gilded-copper-cable 2 silicon-wafer 6 silicon-nitride 1 liquid-sulfuric-acid 5 +filter-ceramic geode-crystallization + recipe filter-ceramic 1 + product filter-frame 1 alumina 1 +filter-ceramic-refurbish geode-crystallization + recipe filter-ceramic 1 + product filter-ceramic-used 1 water-purified 50 +milling-drum ore-powderizer + recipe milling-drum 1 + product steel-plate 1 lubricant 10 +milling-drum-used ore-powderizer + recipe milling-drum 1 + product milling-drum-used 1 lubricant 10 +shot angels-physical-ba + recipe shot 1 + product lead-plate 1 +gun-cotton angels-physical-ba + recipe gun-cotton 1 + product wood 1 liquid-nitric-acid 10 +petroleum-jelly angels-physical-ba + recipe petroleum-jelly 1 + product gas-residual 10 +rocket-control-unit angels-basic-intermediate + recipe rocket-control-unit 1 + product solder 5 multi-layer-circuit-board 2 basic-electronic-components 4 electronic-components 6 intergrated-electronics 4 processing-electronics 8 +rocket-silo production-machine + recipe rocket-silo 1 + product concrete 200 nitinol-alloy 500 electric-engine-unit 100 rocket-control-unit 25 low-density-structure 50 heat-shield-tile 100 advanced-processing-unit 50 titanium-pipe 50 +low-density-structure angels-basic-intermediate + recipe low-density-structure 1 + product aluminium-plate 20 titanium-plate 2 plastic-bar 5 +heat-shield-tile angels-basic-intermediate + recipe heat-shield-tile 1 + product silicon-nitride 10 tungsten-carbide 5 +rtg angels-basic-intermediate + recipe rtg 1 + product aluminium-plate 5 lead-plate 1 sodium-cobaltate 2 plutonium-239 1 +satellite angels-basic-intermediate + recipe satellite 1 + product rocket-fuel 50 silver-zinc-battery 50 rocket-control-unit 100 low-density-structure 100 rtg 10 radar-5 5