{
  "factories": {
    "MUD": {"levels": 50, "base_input": "EARTH", "has_pool": true},
    "CLAY": {"levels": 40, "base_input": "MUD", "has_pool": true},
    "SAND": {"levels": 35, "base_input": "CLAY", "has_pool": true},
    "COPPER": {"levels": 30, "base_input": "SAND", "has_pool": true},
    "STEEL": {"levels": 20, "base_input": "COPPER", "has_pool": true},
    "SCREWS": {"levels": 15, "base_input": "STEEL", "has_pool": true},
    "SEAWATER": {"levels": 30, "base_input": "WATER", "has_pool": true},
    "ALGAE": {"levels": 20, "base_input": "SEAWATER", "has_pool": true},
    "OXYGEN": {"levels": 20, "base_input": "ALGAE", "has_pool": true},
    "GAS": {"levels": 15, "base_input": "OXYGEN", "has_pool": true},
    "FUEL": {"levels": 15, "base_input": "GAS", "has_pool": true},
    "OIL": {"levels": 10, "base_input": "FUEL", "has_pool": true},
    "HEAT": {"levels": 30, "base_input": "FIRE", "has_pool": true},
    "LAVA": {"levels": 20, "base_input": "HEAT", "has_pool": true},
    "GLASS": {"levels": 20, "base_input": "SAND", "has_pool": true},
    "SULFUR": {"levels": 10, "base_input": "STEEL", "has_pool": true},
    "FIBERGLASS": {"levels": 10, "base_input": "GLASS", "has_pool": true},
    "CERAMICS": {"levels": 20, "base_input": "CLAY", "has_pool": true},
    "STONE": {"levels": 15, "base_input": "COPPER", "has_pool": true},
    "STEAM": {"levels": 15, "base_input": "OXYGEN", "has_pool": true},
    "CEMENT": {"levels": 15, "base_input": "CERAMICS", "has_pool": true},
    "ACID": {"levels": 10, "base_input": "SCREWS", "has_pool": true},
    "PLASTICS": {"levels": 10, "base_input": "CEMENT", "has_pool": true},
    "ENERGY": {"levels": 10, "base_input": "OIL", "has_pool": true},
    "HYDROGEN": {"levels": 5, "base_input": "STEAM", "has_pool": true},
    "DYNAMITE": {"levels": 5, "base_input": "FIBERGLASS", "has_pool": true}
  },
  "mines": {
    "EARTH": {"levels": 50, "has_pool": true},
    "FIRE": {"levels": 30, "has_pool": true},
    "BURNTRICE": {"levels": 30, "has_pool": false, "event": "Ronke"},
    "MAGICSHARD": {"levels": 60, "has_pool": false, "event": "Axie"},
    "DYNOFISH": {"levels": 60, "has_pool": false, "event": "Fishing"}
  },
  "powerplants": {
    "AIRSTREAM": {"levels": 15, "has_pool": false},
    "SUNFORGE": {"levels": 10, "has_pool": false},
    "STEAMFORGE": {"levels": 10, "has_pool": false},
    "REACTOR": {"levels": 5, "has_pool": false}
  },
  "batteries": {
    "POWER_CELL": {"levels": 15, "has_pool": false},
    "BATTERY": {"levels": 10, "has_pool": false}
  }
}