var factorioProducts = {
	factorioVersion: 0.14,	
	products: [
		{
			id:"yellow-belt",
			name:"Transport Belt",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 1, item: "iron" },
				{ count: 1, item: "wheel" },
			]
		},
		{
			id:"iron-ore",
			name:"Iron Ore",
			time:1,
			produces:0.525,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"iron",
			name:"Iron Plate",
			time:3.5,
			produces:1,
			israw:true,
			dependencies: [
				{ count: 1, item: "iron-ore" },
				{ count: 0.08, item: "coal" },
			]
		},
		{
			id:"wheel",
			name:"Iron Gear Wheel",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 2, item: "iron" },
			]
		},
		{
			id:"underground-belt",
			name:"Underground Belt",
			time:1,
			produces:2,
			dependencies: [
				{ count: 10, item: "iron" },
				{ count: 5, item: "yellow-belt" },
			]
		},
		{
			id:"splitter",
			name:"Splitter",
			time:1,
			produces:1,
			dependencies: [
				{ count: 5, item: "green-chip" },
				{ count: 5, item: "iron" },
				{ count: 4, item: "yellow-belt" },
			]
		},
		{
			id:"green-chip",
			name:"Electronic Circuit",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "iron" },
				{ count: 3, item: "copper-wire" },
			]
		},
		{
			id:"copper-wire",
			name:"Copper Wire",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 1, item: "copper" },
			]
		},
		{
			id:"copper-ore",
			name:"Copper Ore",
			time:1,
			produces:0.525,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"copper",
			name:"Copper Plate",
			time:3.5,
			produces:1,
			israw:true,
			dependencies: [
				{ count: 1, item: "copper-ore" },
				{ count: 0.08, item: "coal" },
			]
		},
		{
			id:"red-belt",
			name:"Fast Transport Belt",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "wheel" },
				{ count: 1, item: "yellow-belt" },
			]
		},
		{
			id:"blue-belt",
			name:"Express Transport Belt",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "wheel" },
				{ count: 1, item: "red-belt" },
				{ count: 2, item: "lube" },
			]
		},
		{
			id:"red-underground-belt",
			name:"Fast Underground Belt",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 20, item: "wheel" },
				{ count: 2, item: "underground-belt" },
			]
		},
		{
			id:"blue-underground-belt",
			name:"Express Underground Belt",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 40, item: "wheel" },
				{ count: 2, item: "red-underground-belt" },
				{ count: 4, item: "lube" },
			]
		},
		{
			id:"red-splitter",
			name:"Fast Splitter",
			time:2,
			produces:1,
			dependencies: [
				{ count: 1, item: "splitter" },
				{ count: 10, item: "wheel" },
				{ count: 10, item: "green-chip" },
			]
		},
		{
			id:"blue-splitter",
			name:"Express Splitter",
			time:2,
			produces:1,
			dependencies: [
				{ count: 1, item: "red-splitter" },
				{ count: 10, item: "wheel" },
				{ count: 10, item: "red-chip" },
				{ count: 8, item: "lube" },
			]
		},
		{
			id:"red-chip",
			name:"Advanced Circuit",
			time:8,
			produces:1,
			dependencies: [
				{ count: 2, item: "green-chip" },
				{ count: 2, item: "plastic" },
				{ count: 4, item: "copper-wire" },
			]
		},
		{
			id:"plastic",
			name:"Plastic Bar",
			time:1,
			produces:2,
			dependencies: [
				{ count: 1, item: "coal" },
				{ count: 3, item: "petro-gas" },
			]
		},
		{
			id:"burner-inserter",
			name:"Burner Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "iron" },
				{ count: 1, item: "wheel" },
			]
		},
		{
			id:"inserter",
			name:"Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "green-chip" },
				{ count: 1, item: "iron" },
				{ count: 1, item: "wheel" },
			]
		},
		{
			id:"red-inserter",
			name:"Long Handed Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "inserter" },
				{ count: 1, item: "iron" },
				{ count: 1, item: "wheel" },
			]
		},
		{
			id:"fast-inserter",
			name:"Fast Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "inserter" },
				{ count: 2, item: "iron" },
				{ count: 2, item: "green-chip" },
			]
		},
		{
			id:"filter-inserter",
			name:"Filter Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "fast-inserter" },
				{ count: 4, item: "green-chip" },
			]
		},
		{
			id:"stack-inserter",
			name:"Stack Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "fast-inserter" },
				{ count: 15, item: "green-chip" },
				{ count: 1, item: "red-chip" },
				{ count: 15, item: "wheel" },
			]
		},
		{
			id:"stack-filter-inserter",
			name:"Stack Filter Inserter",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "stack-inserter" },
				{ count: 5, item: "green-chip" },
			]
		},
		{
			id:"small-pole",
			name:"Small Electric Pole",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 2, item: "wood" },
				{ count: 2, item: "copper-wire" },
			]
		},
		{
			id:"wood",
			name:"Wood",
			time:0.5,
			produces:2,
			israw:true,
			dependencies: [
				{ count: 1, item: "raw-wood" },
			]
		},
		{
			id:"med-pole",
			name:"Medium Electric Pole",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 2, item: "steel" },
				{ count: 2, item: "copper" },
			]
		},
		{
			id:"big-pole",
			name:"Big Electric Pole",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "steel" },
				{ count: 5, item: "copper" },
			]
		},
		{
			id:"substation",
			name:"Substation",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 10, item: "steel" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "copper" },
			]
		},
		{
			id:"pipe",
			name:"Pipe",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "iron" },
			]
		},
		{
			id:"curved-pipe",
			name:"Pipe to Ground",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 5, item: "iron" },
				{ count: 10, item: "pipe" },
			]
		},
		{
			id:"steel",
			name:"Steel",
			time:17.5,
			produces:1,
			israw:true,
			dependencies: [
				{ count: 5, item: "iron" },
			]
		},
		{
			id:"small-pump",
			name:"Small Pump",
			time:2,
			produces:1,
			dependencies: [
				{ count: 1, item: "pipe" },
				{ count: 1, item: "steel" },
				{ count: 1, item: "e-engine" },
			]
		},
		{
			id:"h-oil",
			name:"Heavy Oil",
			time:1,
			produces:1,
			dependencies: [
				{ count: 10, item: "oil" },
			]
		},
		{
			id:"l-oil",
			name:"Light Oil",
			time:1,
			produces:1,
			dependencies: [
				{ count: 10, item: "oil" },
			]
		},
		{
			id:"lube",
			name:"Lubricant",
			time:1,
			produces:1,
			dependencies: [
				{ count: 1, item: "h-oil" },
			]
		},
		{
			id:"e-engine",
			name:"Electric Engine Unit",
			time:20,
			produces:1,
			dependencies: [
				{ count: 2, item: "green-chip" },
				{ count: 2, item: "lube" },
				{ count: 1, item: "engine" },
			]
		},
		{
			id:"engine",
			name:"Engine Unit",
			time:20,
			produces:1,
			dependencies: [
				{ count: 2, item: "pipe" },
				{ count: 1, item: "wheel" },
				{ count: 1, item: "steel" },
			]
		},
		{
			id:"rail",
			name:"Straight Rail",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 1, item: "stone" },
				{ count: 1, item: "stick" },
				{ count: 1, item: "steel" },
			]
		},
		{
			id:"stick",
			name:"Iron Stick",
			time:0.5,
			produces:2,
			dependencies: [
				{ count: 1, item: "iron" },
			]
		},
		{
			id:"train-stop",
			name:"Train Stop",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 10, item: "iron" },
				{ count: 3, item: "steel" },
				{ count: 5, item: "green-chip" },
			]
		},
		{
			id:"rail-signal",
			name:"Rail Signal",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "iron" },
				{ count: 1, item: "green-chip" },
			]
		},
		{
			id:"rail-chain-signal",
			name:"Rail Chain Signal",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "iron" },
				{ count: 1, item: "green-chip" },
			]
		},
		{
			id:"train",
			name:"Diesel Locomotive",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 20, item: "engine" },
				{ count: 30, item: "steel" },
				{ count: 10, item: "green-chip" },
			]
		},
		{
			id:"wagon",
			name:"Cargo Wagon",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 10, item: "wheel" },
				{ count: 20, item: "steel" },
				{ count: 20, item: "iron" },
			]
		},
		{
			id:"car",
			name:"Car",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 8, item: "engine" },
				{ count: 5, item: "steel" },
				{ count: 20, item: "iron" },
			]
		},
		{
			id:"tank",
			name:"Tank",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 16, item: "engine" },
				{ count: 50, item: "steel" },
				{ count: 15, item: "wheel" },
				{ count: 5, item: "red-chip" },
			]
		},
		{
			id:"bot",
			name:"Logistic Robot",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "frame" },
				{ count: 2, item: "red-chip" },
			]
		},
		{
			id:"c-bot",
			name:"Construction Robot",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "frame" },
				{ count: 2, item: "green-chip" },
			]
		},
		{
			id:"frame",
			name:"Flying Robot Frame",
			time:20,
			produces:1,
			dependencies: [
				{ count: 1, item: "e-engine" },
				{ count: 3, item: "green-chip" },
				{ count: 2, item: "battery" },
				{ count: 1, item: "steel" },
			]
		},
		{
			id:"steel-chest",
			name:"Steel Chest",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 8, item: "steel" },
				
			]
		},
		{
			id:"a-prov-chest",
			name:"Active Provider Chest",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "steel-chest" },
				{ count: 3, item: "green-chip" },
				{ count: 1, item: "red-chip" },
			]
		},
		{
			id:"p-prov-chest",
			name:"Passive Provider Chest",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "steel-chest" },
				{ count: 3, item: "green-chip" },
				{ count: 1, item: "red-chip" },
			]
		},
		{
			id:"requester-chest",
			name:"Requester Chest",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "steel-chest" },
				{ count: 3, item: "green-chip" },
				{ count: 1, item: "red-chip" },
			]
		},
		{
			id:"storage-chest",
			name:"Storage Chest",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "steel-chest" },
				{ count: 3, item: "green-chip" },
				{ count: 1, item: "red-chip" },
			]
		},
		{
			id:"roboport",
			name:"Robotport",
			time:15,
			produces:1,
			dependencies: [
				{ count: 45, item: "steel" },
				{ count: 45, item: "wheel" },
				{ count: 45, item: "red-chip" },
			]
		},
		{
			id:"stone-brick",
			name:"Stone Brick",
			time:3.5,
			produces:1,
			dependencies: [
				{ count: 2, item: "stone" },
				{ count: 0.08, item: "coal" },
			]
		},
		{
			id:"concrete",
			name:"Concrete",
			time:10,
			produces:10,
			dependencies: [
				{ count: 5, item: "stone-brick" },
				{ count: 1, item: "iron-ore" },
				{ count: 10, item: "water" }
			]
		},
		{
			id:"h-concrete",
			name:"Hazard Concrete",
			time:0.25,
			produces:10,
			dependencies: [
				{ count: 10, item: "concrete" }
			]
		},
		{
			id:"landfill",
			name:"Landfill",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 20, item: "stone" }
			]
		},
		{
			id:"repair-pack",
			name:"Repair Pack",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "green-chip" },
				{ count: 1, item: "wheel" }
			]
		},
		{
			id:"boiler",
			name:"Boiler",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "furnace" },
				{ count: 1, item: "pipe" }
			]
		},
		{
			id:"steam-engine",
			name:"Steam Engine",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "wheel" },
				{ count: 5, item: "pipe" },
				{ count: 5, item: "iron" }
			]
		},
		{
			id:"lamp",
			name:"Lamp",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "green-chip" },
				{ count: 3, item: "stick" },
				{ count: 1, item: "iron" }
			]
		},
		{
			id:"solar-panel",
			name:"Solar Panel",
			time:10,
			produces:1,
			dependencies: [
				{ count: 15, item: "green-chip" },
				{ count: 5, item: "steel" },
				{ count: 5, item: "copper" }
			]
		},
		{
			id:"accumulator",
			name:"Accumulator",
			time:10,
			produces:1,
			dependencies: [
				{ count: 5, item: "battery" },
				{ count: 2, item: "iron" },
			]
		},
		{
			id:"drill",
			name:"Eletric Mining Drill",
			time:2,
			produces:1,
			dependencies: [
				{ count: 3, item: "green-chip" },
				{ count: 10, item: "iron" },
				{ count: 5, item: "wheel" },
			]
		},
		{
			id:"pump",
			name:"Offshore Pump",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 2, item: "green-chip" },
				{ count: 1, item: "pipe" },
				{ count: 1, item: "wheel" },
			]
		},
		{
			id:"pumpjack",
			name:"Pumpjack",
			time:20,
			produces:1,
			dependencies: [
				{ count: 10, item: "green-chip" },
				{ count: 10, item: "pipe" },
				{ count: 10, item: "wheel" },
				{ count: 15, item: "steel" },
			]
		},
		{
			id:"furnace",
			name:"Stone Furnace",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "stone" },
			]
		},
		{
			id:"steel-furnace",
			name:"Steel Furnace",
			time:3,
			produces:1,
			dependencies: [
				{ count: 8, item: "steel" },
				{ count: 10, item: "stone-brick" },
			]
		},
		{
			id:"eletric-furnace",
			name:"Eletric Furnace",
			time:5,
			produces:1,
			dependencies: [
				{ count: 15, item: "steel" },
				{ count: 10, item: "stone-brick" },
				{ count: 5, item: "red-chip" },
			]
		},
		{
			id:"assembler",
			name:"Assembly Machine 1",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 3, item: "green-chip" },
				{ count: 5, item: "wheel" },
				{ count: 9, item: "iron" },
			]
		},
		{
			id:"assembler2",
			name:"Assembly Machine 2",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 3, item: "green-chip" },
				{ count: 5, item: "wheel" },
				{ count: 9, item: "iron" },
				{ count: 9, item: "assembler" },
			]
		},
		{
			id:"assembler3",
			name:"Assembly Machine 3",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 2, item: "assembler2" },
				{ count: 4, item: "speed1" },
			]
		},
		{
			id:"refinery",
			name:"Oil Refinery",
			time:20,
			produces:1,
			dependencies: [
				{ count: 15, item: "steel" },
				{ count: 10, item: "wheel" },
				{ count: 10, item: "stone-brick" },
				{ count: 10, item: "green-chip" },
				{ count: 10, item: "pipe" },
			]
		},
		{
			id:"chemical-plant",
			name:"Chemical Plant",
			time:10,
			produces:1,
			dependencies: [
				{ count: 5, item: "steel" },
				{ count: 5, item: "wheel" },
				{ count: 5, item: "green-chip" },
				{ count: 5, item: "pipe" },
			]
		},
		{
			id:"beacon",
			name:"Beacon",
			time:15,
			produces:1,
			dependencies: [
				{ count: 20, item: "red-chip" },
				{ count: 10, item: "steel" },
				{ count: 20, item: "green-chip" },
				{ count: 10, item: "copper-wire" },
			]
		},
		{
			id:"speed1",
			name:"Speed Module",
			time:15,
			produces:1,
			dependencies: [
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "green-chip" },
			]
		},
		{
			id:"speed2",
			name:"Speed Module 2",
			time:30,
			produces:1,
			dependencies: [
				{ count: 4, item: "speed1" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "blue-chip" },
			]
		},
		{
			id:"speed3",
			name:"Speed Module 3",
			time:60,
			produces:1,
			dependencies: [
				{ count: 4, item: "speed2" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "blue-chip" },
				{ count: 1, item: "artifact" },
			]
		},
		{
			id:"eff1",
			name:"Efficiency Module",
			time:15,
			produces:1,
			dependencies: [
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "green-chip" },
			]
		},
		{
			id:"eff2",
			name:"Efficiency Module 2",
			time:30,
			produces:1,
			dependencies: [
				{ count: 4, item: "eff1" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "blue-chip" },
			]
		},
		{
			id:"eff3",
			name:"Efficiency Module 3",
			time:60,
			produces:1,
			dependencies: [
				{ count: 5, item: "eff2" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "blue-chip" },
				{ count: 1, item: "artifact" },
			]
		},
		{
			id:"prod1",
			name:"Productivity Module",
			time:15,
			produces:1,
			dependencies: [
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "green-chip" },
			]
		},
		{
			id:"prod2",
			name:"Productivity Module 2",
			time:30,
			produces:1,
			dependencies: [
				{ count: 4, item: "prod1" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "blue-chip" },
			]
		},
		{
			id:"prod3",
			name:"Productiviy Module 3",
			time:60,
			produces:1,
			dependencies: [
				{ count: 5, item: "prod2" },
				{ count: 5, item: "red-chip" },
				{ count: 5, item: "blue-chip" },
				{ count: 1, item: "artifact" },
			]
		},
		{
			id:"blue-chip",
			name:"Processing Unit",
			time:15,
			produces:1,
			dependencies: [
				{ count: 0.5, item: "acid" },
				{ count: 2, item: "red-chip" },
				{ count: 20, item: "green-chip" },
			]
		},
		{
			id:"battery",
			name:"Battery",
			time:5,
			produces:1,
			dependencies: [
				{ count: 2, item: "acid" },
				{ count: 1, item: "iron" },
				{ count: 1, item: "copper" },
			]
		},
		{
			id:"sulfur",
			name:"Sulfur",
			time:1,
			produces:2,
			dependencies: [
				{ count: 3, item: "petro-gas" },
				{ count: 3, item: "water" },
			]
		},
		{
			id:"acid",
			name:"Sulfuric Acid",
			time:1,
			produces:5,
			dependencies: [
				{ count: 5, item: "sulfur" },
				{ count: 1, item: "iron" },
				{ count: 10, item: "water" },
			]
		},
		{
			id:"red-ammo",
			name:"Piercing Rounds Magazine",
			time:3,
			produces:1,
			dependencies: [
				{ count: 1, item: "steel" },
				{ count: 5, item: "copper" },
			]
		},
		{
			id:"red-shells",
			name:"Piercing Shotgun Shells",
			time:8,
			produces:1,
			dependencies: [
				{ count: 2, item: "steel" },
				{ count: 2, item: "copper" },
			]
		},
		{
			id:"flame-ammo",
			name:"Flamethrower Ammo",
			time:3,
			produces:1,
			dependencies: [
				{ count: 5, item: "iron" },
				{ count: 2.5, item: "l-oil" },
				{ count: 2.5, item: "h-oil" },
			]
		},
		{
			id:"wall",
			name:"Stone Wall",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 5, item: "stone-brick" },
			]
		},
		{
			id:"gate",
			name:"Gate",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 1, item: "wall" },
				{ count: 2, item: "steel" },
				{ count: 2, item: "green-chip" },
			]
		},
		{
			id:"turret",
			name:"Gun Turret",
			time:10,
			produces:1,
			dependencies: [
				{ count: 10, item: "wheel" },
				{ count: 10, item: "copper" },
				{ count: 20, item: "iron" },
			]
		},
		{
			id:"l-turret",
			name:"Laser Turret",
			time:20,
			produces:1,
			dependencies: [
				{ count: 20, item: "steel" },
				{ count: 20, item: "green-chip" },
				{ count: 12, item: "battery" },
			]
		},
		{
			id:"radar",
			name:"Radar",
			time:0.5,
			produces:1,
			dependencies: [
				{ count: 10, item: "iron" },
				{ count: 5, item: "green-chip" },
				{ count: 5, item: "wheel" },
			]
		},
		{
			id:"artifact",
			name:"Artifact",
			time:1,
			produces:1,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"water",
			name:"Water",
			time:1,
			produces:60,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"coal",
			name:"Coal",
			time:1,
			produces:0.525,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"petro-gas",
			name:"Petroleum Gas",
			time:5,
			produces:4.5,
			dependencies: [
				{ count: 10, item: "oil" },
				{ count: 5, item: "water" },
			]
		},
		{
			id:"oil",
			name:"Oil",
			time:1,
			produces:0.1,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"stone",
			name:"Stone",
			time:1,
			produces:0.65,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"raw-wood",
			name:"Raw Wood",
			time:1,
			produces:2,
			israw:true,
			dependencies: [
			]
		},
		{
			id:"red-science",
			name:"Science Pack 1",
			time:5,
			produces:1,
			dependencies: [
				{ count: 1, item: "copper" },
				{ count: 1, item: "wheel" },
			]
		},
		{
			id:"green-science",
			name:"Science Pack 2",
			time:6,
			produces:1,
			dependencies: [
				{ count: 1, item: "inserter" },
				{ count: 1, item: "yellow-belt" },
			]
		},
		{
			id:"blue-science",
			name:"Science Pack 3",
			time:12,
			produces:1,
			dependencies: [
				{ count: 1, item: "battery" },
				{ count: 1, item: "red-chip" },
				{ count: 1, item: "filter-inserter" },
				{ count: 1, item: "steel" },
			]
		}
	]
}
