Explorar el Código

Add_Corrupted_Cache_Resilience

Updated `cache.py` to handle exceptions thrown by corrupted cache files.

        PURPOSE:
        To prevent hard crashes when local cache files are corrupted or left incomplete by aborted executions. A contributor experienced a `pyo3_runtime.PanicException` when the `cbor2` Rust backend encountered a malformed `data/materials/` cache file generated during a previously failed run. Adding a generic exception handler here ensures the system is resilient and self-healing.

        IMPLEMENTATION DETAILS:
        - Added an `except Exception as e:` block to the `cache.get()` function immediately after the `FileNotFoundError` check.
        - When triggered, it prints a diagnostic warning explicitly naming the URL and exception type, then falls through to invoke the standard re-download sequence.
        - Included hyper-documentation explaining the PyO3 panic behavior specifically so future devs understand why this broad exception catch is necessary for `cbor2`.
Thomas Knott hace 2 semanas
padre
commit
d0f56cc07d

BIN
__pycache__/cache.cpython-312.pyc


BIN
__pycache__/cache.cpython-314.pyc


+ 10 - 1
cache.py

@@ -42,6 +42,15 @@ def get(url: str, *, json=True, headers=None, expiry=datetime.timedelta(minutes=
 					return f.read().decode('utf-8')
 	except FileNotFoundError:
 		pass # fall through
+	except Exception as e:
+		# EXTREME DETAIL: When a user aborts the script mid-execution (or dependencies fail), an incomplete
+		# .xz/.cbor file can be left in the local 'cache' directory.
+		# The cbor2 library recently updated to use a strict Rust backend. When it encounters a malformed file, 
+		# it triggers a pyo3_runtime.PanicException ("buffer size mismatch: [63, 0]") instead of a standard python exception.
+		# We explicitly catch all generic Exceptions here. This allows the script to gracefully ignore the corrupted cache,
+		# print a warning, and fall through to re-download the fresh data from the internet.
+		print(f"Warning: Corrupted cache detected for {url} ({type(e).__name__}). Fetching fresh data...")
+		pass # fall through
 
 	r = get_with_retries(url, headers)
 	cache_path.parent.mkdir(parents=True, exist_ok=True)
@@ -63,4 +72,4 @@ def get_with_retries(url: str, headers: httpx._types.HeaderTypes|None=None) -> h
 				raise
 			else:
 				print(url, 'attempt', attempt+1, 'timed out; retrying...')
-	raise AssertionError
+	raise AssertionError

BIN
cache/api.prunplanner.org/data%2Fbuildings%2F.cbor.xz


BIN
cache/api.prunplanner.org/data%2Fmaterials%2F.cbor.xz


BIN
cache/api.prunplanner.org/data%2Frecipes%2F.cbor.xz


BIN
cache/refined-prun.github.io/refined-prices%2Fall.json.cbor.xz


+ 1 - 4
dev.py

@@ -1,10 +1,7 @@
 """
 dev.py
 ======
-This script acts as a local development orchestrator. Instead of recreating the frontend
-in Python, which would violate the "Don't Repeat Yourself" (DRY) principle and introduce
-massive technical debt, this script leverages the existing architecture.
-
+This script acts as a local development orchestrator.
 It performs three main actions sequentially:
 1. Executes `roi.py` to fetch the latest market data and generate the frontend JSON files.
 2. Executes the `bun run build` command to compile the TypeScript frontend into browser-ready JavaScript.

+ 173 - 0
uv.lock

@@ -0,0 +1,173 @@
+version = 1
+revision = 3
+requires-python = ">=3.13"
+
+[[package]]
+name = "anyio"
+version = "4.13.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+    { name = "idna" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" },
+]
+
+[[package]]
+name = "cbor2"
+version = "6.1.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/be/db/810437bcfe13cf5e09b68bad1ce57c8fa04ca9272c68946bbf2f4fa522c8/cbor2-6.1.1.tar.gz", hash = "sha256:6f0644869e0fdcd6f3874330b8f1cebd009f33191de43acf609dc2409cd362c4", size = 86297, upload-time = "2026-05-14T10:57:42.231Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/a0/ec/30a52d7f6844cefd37601311a226d091268564a47b0dac56bc0469573681/cbor2-6.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0f027e077345ba7d1a88cbed9168196e77f5ce8e8c816305bb1c7a2e4894bddf", size = 409070, upload-time = "2026-05-14T10:57:05.843Z" },
+    { url = "https://files.pythonhosted.org/packages/b7/a5/653193249a64ca46def52798e8f10ddbc918f11818a977b2aa7248062520/cbor2-6.1.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:559025ad8e1f9f5d019a40dc8f14f43c111c11207b4dde852e943a3002b43ec0", size = 453218, upload-time = "2026-05-14T10:57:07.6Z" },
+    { url = "https://files.pythonhosted.org/packages/9f/79/bdcb9d43ed537abaa89e662d6340244207ec85b6e66e3bd7f40856c3a5d4/cbor2-6.1.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:a6690f7df210386866e120475183132df98f77bf6df624097f66e3214e775084", size = 466244, upload-time = "2026-05-14T10:57:09.297Z" },
+    { url = "https://files.pythonhosted.org/packages/9c/44/fe0543996d53538c074f8ee18f7391b5458c528b1717740d750a9e472e1d/cbor2-6.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f4898b5463a567775a05310407dbea5b4a8d7ae8e81337ae9084f5fe226938ff", size = 520804, upload-time = "2026-05-14T10:57:10.682Z" },
+    { url = "https://files.pythonhosted.org/packages/cd/83/577bbafef3bc887d654a73f3f4ab11e1bd5320abd9108bfc51fbea1498a8/cbor2-6.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:bf3ef1fae6f14081a15f178e933ab846d3181f059ee4090975518b71f58bb09f", size = 533598, upload-time = "2026-05-14T10:57:12.098Z" },
+    { url = "https://files.pythonhosted.org/packages/57/32/c1c9f435b109ded86ef2e90ff73b95624c84c6edf01489941363a6069725/cbor2-6.1.1-cp313-cp313-win32.whl", hash = "sha256:4642780d27c0b411f4669fcb82e0d7a6b93a0c41c03a0c51296fd6f6858f63fa", size = 281738, upload-time = "2026-05-14T10:57:13.614Z" },
+    { url = "https://files.pythonhosted.org/packages/4d/39/9232731f161b2dfe2dc28b06bbacfc2b6a85f1255bf58ebc578ae760ef38/cbor2-6.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:616bc0538095860fe5607cc06d7b2de3e261a6caccd01ff3f1d4a4a9ad29adbf", size = 300018, upload-time = "2026-05-14T10:57:15.021Z" },
+    { url = "https://files.pythonhosted.org/packages/b9/c2/67f2e3a83acfcecad947784bb1590d1978662b5472fcbf7d73e219813456/cbor2-6.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:7b193d2d024bb5d037e613272f5e436d53f02301101f0ce3916117688643181f", size = 287823, upload-time = "2026-05-14T10:57:16.525Z" },
+    { url = "https://files.pythonhosted.org/packages/aa/74/d2d6e0e3da305a625d710a932080bf70f390c867dce73bd35ca6cd5a8d10/cbor2-6.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:86c65976e9e69154700ea5a447013f37ff8cb76431adf9df3ebbabe341b68b06", size = 407425, upload-time = "2026-05-14T10:57:17.814Z" },
+    { url = "https://files.pythonhosted.org/packages/c3/7d/08644318380306e0809ecc4756e67fb684b5e78a938ca9ff1c8c7f57fe73/cbor2-6.1.1-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:350beaac7a6049fe0a48309d7acd24611ab1176b4db1515f7fbcad20f5c09821", size = 453010, upload-time = "2026-05-14T10:57:19.593Z" },
+    { url = "https://files.pythonhosted.org/packages/81/ff/43ef5f16a1a97ef4575c407d077d9355c01dfc54b1b1b8c5329b793c436b/cbor2-6.1.1-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:74bf0c3f48d215d49a99eb253fef6c00c19033339da22da4c29b53fe854093b8", size = 465110, upload-time = "2026-05-14T10:57:20.981Z" },
+    { url = "https://files.pythonhosted.org/packages/c8/61/3069cee66bc4bedb95dce49b5e90d07e6c1ddf712435facf84ce0353da4a/cbor2-6.1.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a731277d123cee9c87e649077376f694892e4a2c3b0b1cb97132205c620947d8", size = 520269, upload-time = "2026-05-14T10:57:22.514Z" },
+    { url = "https://files.pythonhosted.org/packages/f0/70/4b2ac02e0aa09419c13c434ce535cf508f08d5c411c6912d760c480ed8e6/cbor2-6.1.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:16e6df5a4971c2006805669be472a43bb382d0f3464c2236634b4e93095d7dd6", size = 532515, upload-time = "2026-05-14T10:57:24.289Z" },
+    { url = "https://files.pythonhosted.org/packages/73/94/ab4ad4fd5929c1df56899c1135cc6957239a74a5b418e760502c9aadfb17/cbor2-6.1.1-cp314-cp314-win32.whl", hash = "sha256:0d0831b449567ee27afa25ff2756ac8719f11491f700396edb1dc1647ece7111", size = 285433, upload-time = "2026-05-14T10:57:25.665Z" },
+    { url = "https://files.pythonhosted.org/packages/4f/ed/995a3830ce4429be1ffeb57d2f11b2f06987573c04a4ea4112bd5d7de643/cbor2-6.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:91dac40fc0b8e0592a3e8d766377af3186e2736448c684465cca8606486e58ae", size = 308923, upload-time = "2026-05-14T10:57:27.019Z" },
+    { url = "https://files.pythonhosted.org/packages/ea/88/1797af54eca15bca2d963cd2d3a7337758961a31fd03438f2e82ec94ea87/cbor2-6.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:be5ccd594ea6f1998cd83afb53b47e383e5efd7661a316a528216412109221c7", size = 299687, upload-time = "2026-05-14T10:57:28.656Z" },
+    { url = "https://files.pythonhosted.org/packages/53/dc/ecc0797db8b627f889389d8ea8a4af389bdff7500685e56969a6c4449c01/cbor2-6.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:47d2616d30212bd3db8c2897b453176401569e0e4ec3434b770e9652604d74c5", size = 403186, upload-time = "2026-05-14T10:57:30.111Z" },
+    { url = "https://files.pythonhosted.org/packages/c6/28/780af53231e1a6afc36f2b922ff587a9e1a25df7756628101a6070a9312f/cbor2-6.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:fd9d300ad983b860fbfb0ab148ddd3a379be25430bb141ad41344adc1c0792c1", size = 446311, upload-time = "2026-05-14T10:57:31.507Z" },
+    { url = "https://files.pythonhosted.org/packages/a1/5d/cc298ed16745995cf21caeec52213d157be8d5bfb405ee8ed420ffb5e038/cbor2-6.1.1-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:b8594563ccfd56f2bb56cdd8445f7a1f00d3065d84ea06f8e361da765abee08f", size = 459640, upload-time = "2026-05-14T10:57:32.967Z" },
+    { url = "https://files.pythonhosted.org/packages/f1/37/e4d95459d48e8a739c086249884b27458541df5a7fc149debdb0e0c7becb/cbor2-6.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8df2a530b45c7769ed43c02e3f7c9841ed4990887e1c29858b08363a35067bf5", size = 511667, upload-time = "2026-05-14T10:57:34.465Z" },
+    { url = "https://files.pythonhosted.org/packages/40/e8/32e529bd938c71456d38d7c6a62d0d75399e720553d6514a467fee9b004d/cbor2-6.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:d63181b5b213ab72eed01e62bfa4c994fe7de68433d12548d54156411ba0aac4", size = 527195, upload-time = "2026-05-14T10:57:36.09Z" },
+    { url = "https://files.pythonhosted.org/packages/be/96/42275a7d34baa8457a686c5e5a3bf5240e753595a6bd79c2c419347a2083/cbor2-6.1.1-cp314-cp314t-win32.whl", hash = "sha256:cba9a9ebc031267b76c2bdfd4a5a491874c27339d6ec9d0895fc4fde8f519565", size = 279851, upload-time = "2026-05-14T10:57:37.443Z" },
+    { url = "https://files.pythonhosted.org/packages/e3/97/09053af3e4825aa3b83b1ec2306c9228efe665fbfb90229e441b9c1b3cd5/cbor2-6.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:81af6e3a031191b483ca42b16d152627c6a9dc61c1fbef270403820ab587fc86", size = 302537, upload-time = "2026-05-14T10:57:39.143Z" },
+    { url = "https://files.pythonhosted.org/packages/4f/29/e257a381d494615348c7266fc173a36edce142533a5befe3c0967fd45ab4/cbor2-6.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:f0bc04543c562bd0b35fc79a29528017fe63104757c1b421d8c1ddfbe6761eca", size = 290270, upload-time = "2026-05-14T10:57:40.597Z" },
+]
+
+[[package]]
+name = "certifi"
+version = "2026.5.20"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/f3/ce/ee2ecad540810a79593028e88299baeae54d346cc7a0d94b6199988b89b1/certifi-2026.5.20.tar.gz", hash = "sha256:69dea482ab64caa7b9f6aba1c6bf48bb6a5448d1c0f1b17ab42ad8c763a5344d", size = 135422, upload-time = "2026-05-20T11:46:50.073Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/59/8c/57e832b7af6d7c5abe66eb3fbe3a3a32f4d11ea23a1aa7131371035be991/certifi-2026.5.20-py3-none-any.whl", hash = "sha256:3c52e209ba0a4ad7aebe60436a4ab349c39e1e602e8c134221e546902ad25897", size = 134134, upload-time = "2026-05-20T11:46:48.578Z" },
+]
+
+[[package]]
+name = "docstring-parser"
+version = "0.18.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/e0/4d/f332313098c1de1b2d2ff91cf2674415cc7cddab2ca1b01ae29774bd5fdf/docstring_parser-0.18.0.tar.gz", hash = "sha256:292510982205c12b1248696f44959db3cdd1740237a968ea1e2e7a900eeb2015", size = 29341, upload-time = "2026-04-14T04:09:19.867Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/a7/5f/ed01f9a3cdffbd5a008556fc7b2a08ddb1cc6ace7effa7340604b1d16699/docstring_parser-0.18.0-py3-none-any.whl", hash = "sha256:b3fcbed555c47d8479be0796ef7e19c2670d428d72e96da63f3a40122860374b", size = 22484, upload-time = "2026-04-14T04:09:18.638Z" },
+]
+
+[[package]]
+name = "h11"
+version = "0.16.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" },
+]
+
+[[package]]
+name = "h2"
+version = "4.3.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+    { name = "hpack" },
+    { name = "hyperframe" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/1d/17/afa56379f94ad0fe8defd37d6eb3f89a25404ffc71d4d848893d270325fc/h2-4.3.0.tar.gz", hash = "sha256:6c59efe4323fa18b47a632221a1888bd7fde6249819beda254aeca909f221bf1", size = 2152026, upload-time = "2025-08-23T18:12:19.778Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/69/b2/119f6e6dcbd96f9069ce9a2665e0146588dc9f88f29549711853645e736a/h2-4.3.0-py3-none-any.whl", hash = "sha256:c438f029a25f7945c69e0ccf0fb951dc3f73a5f6412981daee861431b70e2bdd", size = 61779, upload-time = "2025-08-23T18:12:17.779Z" },
+]
+
+[[package]]
+name = "hpack"
+version = "4.1.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/2c/48/71de9ed269fdae9c8057e5a4c0aa7402e8bb16f2c6e90b3aa53327b113f8/hpack-4.1.0.tar.gz", hash = "sha256:ec5eca154f7056aa06f196a557655c5b009b382873ac8d1e66e79e87535f1dca", size = 51276, upload-time = "2025-01-22T21:44:58.347Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/07/c6/80c95b1b2b94682a72cbdbfb85b81ae2daffa4291fbfa1b1464502ede10d/hpack-4.1.0-py3-none-any.whl", hash = "sha256:157ac792668d995c657d93111f46b4535ed114f0c9c8d672271bbec7eae1b496", size = 34357, upload-time = "2025-01-22T21:44:56.92Z" },
+]
+
+[[package]]
+name = "httpcore"
+version = "1.0.9"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+    { name = "certifi" },
+    { name = "h11" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" },
+]
+
+[[package]]
+name = "httpx"
+version = "0.28.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+    { name = "anyio" },
+    { name = "certifi" },
+    { name = "httpcore" },
+    { name = "idna" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" },
+]
+
+[[package]]
+name = "hyperframe"
+version = "6.1.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/02/e7/94f8232d4a74cc99514c13a9f995811485a6903d48e5d952771ef6322e30/hyperframe-6.1.0.tar.gz", hash = "sha256:f630908a00854a7adeabd6382b43923a4c4cd4b821fcb527e6ab9e15382a3b08", size = 26566, upload-time = "2025-01-22T21:41:49.302Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/48/30/47d0bf6072f7252e6521f3447ccfa40b421b6824517f82854703d0f5a98b/hyperframe-6.1.0-py3-none-any.whl", hash = "sha256:b03380493a519fce58ea5af42e4a42317bf9bd425596f7a0835ffce80f1a42e5", size = 13007, upload-time = "2025-01-22T21:41:47.295Z" },
+]
+
+[[package]]
+name = "idna"
+version = "3.17"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/b9/28/99c51f664567218d824af024c0251650fb27e4ca066df188dab0769c5b91/idna-3.17.tar.gz", hash = "sha256:5eb0cb53bc467c12eadcf6de83163ad8527cec9416f44b9b61b19caedad2b87f", size = 196048, upload-time = "2026-05-28T14:32:38.55Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/de/a7/f76514cc40ad6234098ecdebda08732d75964776c51a42845b7da10649e2/idna-3.17-py3-none-any.whl", hash = "sha256:466e48829084efe2548012b855df21540b96f2e20e51bd124c851536556a592c", size = 65316, upload-time = "2026-05-28T14:32:37.035Z" },
+]
+
+[[package]]
+name = "pruncalc"
+version = "0"
+source = { virtual = "." }
+dependencies = [
+    { name = "cbor2" },
+    { name = "h2" },
+    { name = "httpx" },
+    { name = "typed-argument-parser" },
+]
+
+[package.metadata]
+requires-dist = [
+    { name = "cbor2" },
+    { name = "h2" },
+    { name = "httpx" },
+    { name = "typed-argument-parser" },
+]
+
+[[package]]
+name = "typed-argument-parser"
+version = "1.12.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+    { name = "docstring-parser" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/20/d0/5240b74b8d76e20eadbd79fe7ce5daeb1bf86d70d923817563728ccf297a/typed_argument_parser-1.12.0.tar.gz", hash = "sha256:cf5f7cafac869fb9627c4c90394e321c895d58872d865ad2c62e65668d259fa0", size = 244627, upload-time = "2026-03-28T21:01:46.273Z" }
+wheels = [
+    { url = "https://files.pythonhosted.org/packages/56/0c/0607f5ac258aa36621a18cec7e14b87b49c972348a6937ea19cfea81d7b7/typed_argument_parser-1.12.0-py3-none-any.whl", hash = "sha256:9cdf26c710b9cde2992ff0763288598628ac852d9a1accf5269837cd6e24a930", size = 32833, upload-time = "2026-03-28T21:01:44.999Z" },
+]

+ 8275 - 0
www/roi_ai1.json

@@ -0,0 +1,8275 @@
+[
+	{
+		"outputs": [
+			{
+				"ticker": "WCB",
+				"amount": 1,
+				"vwap_7d": 900000
+			}
+		],
+		"recipe": "100xAST 100xFET 20xMFK=>1xWCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 108742.10389999997,
+		"area": 46.2,
+		"capex": 79878.58,
+		"cost_per_day": 1297507.8961,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 100,
+				"vwap_7d": 4200
+			},
+			{
+				"ticker": "MFK",
+				"amount": 20,
+				"vwap_7d": 449.47
+			},
+			{
+				"ticker": "FET",
+				"amount": 100,
+				"vwap_7d": 4000
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 40.077110132589546,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LFE",
+				"amount": 1,
+				"vwap_7d": 445000
+			}
+		],
+		"recipe": "3xCTF 1xCBL=>1xLFE",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 709664.6296,
+		"area": 40.6,
+		"capex": 527546.296,
+		"cost_per_day": 402835.3704,
+		"input_costs": [
+			{
+				"ticker": "CBL",
+				"amount": 1,
+				"vwap_7d": 91000
+			},
+			{
+				"ticker": "CTF",
+				"amount": 3,
+				"vwap_7d": 23000
+			}
+		],
+		"worker_consumable_cost_per_day": 2835.3704,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.1305419095044065,
+		"output_per_day": 2.5,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SC",
+				"amount": 20,
+				"vwap_7d": 2664.31
+			}
+		],
+		"recipe": "2xCA 1xMG 1xTA=>20xSC",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 51049.93026153846,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 51423.53127692307,
+		"input_costs": [
+			{
+				"ticker": "CA",
+				"amount": 2,
+				"vwap_7d": 800.61
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 129.24
+			},
+			{
+				"ticker": "TA",
+				"amount": 1,
+				"vwap_7d": 23641.6
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 1.4140271177152974,
+		"output_per_day": 38.46153846153846,
+		"average_traded_7d": 220.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRS",
+				"amount": 1,
+				"vwap_7d": 529000
+			}
+		],
+		"recipe": "10xPSL 20xPSM 10xTI 5xSAR 4xRAD=>1xBRS",
+		"expertise": "CONSTRUCTION",
+		"building": "UPF",
+		"profit_per_day": 75877.45829999997,
+		"area": 58.0,
+		"capex": 102654.068,
+		"cost_per_day": 144539.2083666667,
+		"input_costs": [
+			{
+				"ticker": "TI",
+				"amount": 10,
+				"vwap_7d": 3141.77
+			},
+			{
+				"ticker": "SAR",
+				"amount": 5,
+				"vwap_7d": 29155.57
+			},
+			{
+				"ticker": "PSM",
+				"amount": 20,
+				"vwap_7d": 3171.83
+			},
+			{
+				"ticker": "PSL",
+				"amount": 10,
+				"vwap_7d": 5193.32
+			},
+			{
+				"ticker": "RAD",
+				"amount": 4,
+				"vwap_7d": 12228.99
+			}
+		],
+		"worker_consumable_cost_per_day": 2255.3292,
+		"runs_per_day": 0.41666666666666663,
+		"logistics_per_area": 1.4367816091954022,
+		"output_per_day": 0.41666666666666663,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LHP",
+				"amount": 4,
+				"vwap_7d": 5155.48
+			}
+		],
+		"recipe": "12xAL 1xHE=>4xLHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 25311.95806666666,
+		"area": 31.2,
+		"capex": 80154.96,
+		"cost_per_day": 60612.708600000005,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.341880341880342,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 167.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DEC",
+				"amount": 1,
+				"vwap_7d": 36472.73
+			}
+		],
+		"recipe": "150xPG 70xEPO=>1xDEC",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 24898.160400000004,
+		"area": 19.0,
+		"capex": 80788.674,
+		"cost_per_day": 66283.6646,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "EPO",
+				"amount": 70,
+				"vwap_7d": 238.52
+			}
+		],
+		"worker_consumable_cost_per_day": 1127.6646,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4078947304821524,
+		"output_per_day": 2.5,
+		"average_traded_7d": 7.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CF",
+				"amount": 1,
+				"vwap_7d": 12139.13
+			}
+		],
+		"recipe": "4xAL 1xSI 2xO=>1xCF",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 14553.914499999999,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 23380.86675,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 2,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.189062535762787,
+		"output_per_day": 3.125,
+		"average_traded_7d": 39.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VIT",
+				"amount": 20,
+				"vwap_7d": 1422.88
+			}
+		],
+		"recipe": "10xDW 4xPIB 1xCA 1xI 1xAMM=>20xVIT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 24304.310375,
+		"area": 32.2,
+		"capex": 84346.084,
+		"cost_per_day": 20160.689625,
+		"input_costs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1312.7
+			},
+			{
+				"ticker": "DW",
+				"amount": 10,
+				"vwap_7d": 117.46
+			},
+			{
+				"ticker": "CA",
+				"amount": 1,
+				"vwap_7d": 800.61
+			},
+			{
+				"ticker": "PIB",
+				"amount": 4,
+				"vwap_7d": 2000
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 171.94
+			}
+		],
+		"worker_consumable_cost_per_day": 2254.674,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.9704968944099378,
+		"output_per_day": 31.25,
+		"average_traded_7d": 33.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 7770.19
+			}
+		],
+		"recipe": "1xMG 1xCU 1xS=>1xIND",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 13081.266799999998,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 11200.576950000002,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 352.63
+			},
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2260.36
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 129.24
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1155790519243216,
+		"output_per_day": 3.125,
+		"average_traded_7d": 83.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HMS",
+				"amount": 10,
+				"vwap_7d": 3624.36
+			}
+		],
+		"recipe": "1xNL 1xIND 6xGC=>10xHMS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": 28112.919714285716,
+		"area": 41.8,
+		"capex": 99960.576,
+		"cost_per_day": 36607.794571428574,
+		"input_costs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 8214.51
+			},
+			{
+				"ticker": "GC",
+				"amount": 6,
+				"vwap_7d": 612.32
+			},
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 7770.19
+			}
+		],
+		"worker_consumable_cost_per_day": 1503.116,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.07689678793237052,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 1589
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GC",
+				"amount": 10,
+				"vwap_7d": 612.32
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>10xGC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 14146.02196666667,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 11367.311366666667,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.717788480126705,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 447.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BPT",
+				"amount": 12,
+				"vwap_7d": 10000
+			}
+		],
+		"recipe": "5xTHP 20xTHF=>12xBPT",
+		"expertise": "MANUFACTURING",
+		"building": "SPP",
+		"profit_per_day": 259030.92221428573,
+		"area": 71.8,
+		"capex": 1038555.1599999999,
+		"cost_per_day": 169540.50635714288,
+		"input_costs": [
+			{
+				"ticker": "THF",
+				"amount": 20,
+				"vwap_7d": 527.28
+			},
+			{
+				"ticker": "THP",
+				"amount": 5,
+				"vwap_7d": 6723.39
+			}
+		],
+		"worker_consumable_cost_per_day": 11817.113500000001,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.1440509707150686,
+		"output_per_day": 42.85714285714286,
+		"average_traded_7d": 2.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GIN",
+				"amount": 4,
+				"vwap_7d": 3642.65
+			}
+		],
+		"recipe": "2xGRN 2xDW 1xES 1xAMM=>4xGIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 18817.152923076927,
+		"area": 32.2,
+		"capex": 84346.084,
+		"cost_per_day": 9203.231692307692,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 171.94
+			},
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 2364.99
+			},
+			{
+				"ticker": "DW",
+				"amount": 2,
+				"vwap_7d": 117.46
+			}
+		],
+		"worker_consumable_cost_per_day": 2254.674,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.22336359082855106,
+		"output_per_day": 7.6923076923076925,
+		"average_traded_7d": 476.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MED",
+				"amount": 16,
+				"vwap_7d": 1713.81
+			}
+		],
+		"recipe": "50xPE 1xAL 4xCOT 1xHER=>16xMED",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 9833.204300000001,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 33012.0457,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 4,
+				"vwap_7d": 3503.17
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3705.35
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.38373161570395015,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1240.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NAB",
+				"amount": 20,
+				"vwap_7d": 198
+			}
+		],
+		"recipe": "1xNA 1xBOR 5xH=>20xNAB",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 9267.43346666667,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 7232.566533333333,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 272.29
+			},
+			{
+				"ticker": "H",
+				"amount": 5,
+				"vwap_7d": 161.39
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.0723039215686274,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 21.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SSC",
+				"amount": 6,
+				"vwap_7d": 638.81
+			}
+		],
+		"recipe": "20xNFI 2xAL 1xHE=>6xSSC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 11062.230299999996,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 36848.5197,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "NFI",
+				"amount": 20,
+				"vwap_7d": 17.2
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 2.9735577507660937,
+		"output_per_day": 75.0,
+		"average_traded_7d": 390
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LBH",
+				"amount": 1,
+				"vwap_7d": 6386.28
+			}
+		],
+		"recipe": "35xPE 3xAL=>1xLBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 11235.859749999998,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 20695.54025,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 35,
+				"vwap_7d": 11.48
+			},
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3852459238078751,
+		"output_per_day": 5.0,
+		"average_traded_7d": 262.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFK",
+				"amount": 8,
+				"vwap_7d": 449.47
+			}
+		],
+		"recipe": "1xSTL=>8xMFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 11160.584166666673,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 26295.24916666667,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.6377687851587934,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1200.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OFF",
+				"amount": 50,
+				"vwap_7d": 158.12
+			}
+		],
+		"recipe": "20xPG 20xEPO=>50xOFF",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 9910.328999999996,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 39502.17100000001,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 20,
+				"vwap_7d": 238.52
+			},
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.840909133241935,
+		"output_per_day": 312.5,
+		"average_traded_7d": 3750.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LSE",
+				"amount": 1,
+				"vwap_7d": 13234.65
+			}
+		],
+		"recipe": "120xPG 3xAL=>1xLSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 10022.709750000004,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 56150.54025,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "PG",
+				"amount": 120,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3672131400738583,
+		"output_per_day": 5.0,
+		"average_traded_7d": 249
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NA",
+				"amount": 2,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5921.62
+			}
+		],
+		"recipe": "3xHAL 1xH2O=>2xNA 1xCL",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 7929.279731034482,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 4941.065096551723,
+		"input_costs": [
+			{
+				"ticker": "HAL",
+				"amount": 3,
+				"vwap_7d": 343.94
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 2.155172413793103,
+		"logistics_per_area": 0.5316620366270021,
+		"output_per_day": 4.310344827586206,
+		"average_traded_7d": 2734
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KOM",
+				"amount": 6,
+				"vwap_7d": 1484
+			}
+		],
+		"recipe": "4xDW 1xHER 1xAMM=>6xKOM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 14019.861714285715,
+		"area": 32.2,
+		"capex": 84346.084,
+		"cost_per_day": 17780.138285714285,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 171.94
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3705.35
+			},
+			{
+				"ticker": "DW",
+				"amount": 4,
+				"vwap_7d": 117.46
+			}
+		],
+		"worker_consumable_cost_per_day": 2254.674,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.26619343455639577,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 3004.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGO",
+				"amount": 5,
+				"vwap_7d": 2472.41
+			}
+		],
+		"recipe": "4xAU 1xFE=>5xBGO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 10071.511249999998,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 28559.895,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 4,
+				"vwap_7d": 1868.17
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 9.737903071988013,
+		"output_per_day": 15.625,
+		"average_traded_7d": 469.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HAB",
+				"amount": 1,
+				"vwap_7d": 140000
+			}
+		],
+		"recipe": "6xBBH 10xBDE 10xBSE 50xSOI=>1xHAB",
+		"expertise": "CONSTRUCTION",
+		"building": "UPF",
+		"profit_per_day": 16815.233299999996,
+		"area": 58.0,
+		"capex": 102654.068,
+		"cost_per_day": 70684.76670000001,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 50,
+				"vwap_7d": 924.07
+			},
+			{
+				"ticker": "BSE",
+				"amount": 10,
+				"vwap_7d": 1899.51
+			},
+			{
+				"ticker": "BDE",
+				"amount": 10,
+				"vwap_7d": 2689.69
+			},
+			{
+				"ticker": "BBH",
+				"amount": 6,
+				"vwap_7d": 2898.6
+			}
+		],
+		"worker_consumable_cost_per_day": 2255.3292,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.8060344835293705,
+		"output_per_day": 0.625,
+		"average_traded_7d": 1.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CU",
+				"amount": 3,
+				"vwap_7d": 2260.36
+			}
+		],
+		"recipe": "5xCUO 10xO 1xSIO=>3xCU",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 7707.5395,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 9245.1605,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "CUO",
+				"amount": 5,
+				"vwap_7d": 416.4
+			},
+			{
+				"ticker": "O",
+				"amount": 10,
+				"vwap_7d": 108.29
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.778409253467213,
+		"output_per_day": 7.5,
+		"average_traded_7d": 624.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HER",
+				"amount": 4,
+				"vwap_7d": 3705.35
+			}
+		],
+		"recipe": "4xH2O 1xDDT=>4xHER",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 5360.380844999999,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 5025.7152049999995,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5668.94
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08008571428571429,
+		"output_per_day": 2.803,
+		"average_traded_7d": 663
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ROM",
+				"amount": 10,
+				"vwap_7d": 6968
+			}
+		],
+		"recipe": "10xPSS 10xBGC 10xSI=>10xROM",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 59929.30553333331,
+		"area": 39.2,
+		"capex": 402872.582,
+		"cost_per_day": 230404.02780000004,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 10,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 750.33
+			},
+			{
+				"ticker": "PSS",
+				"amount": 10,
+				"vwap_7d": 2371.26
+			}
+		],
+		"worker_consumable_cost_per_day": 2126.5278000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.4968112199598935,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 212.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 832.8
+			}
+		],
+		"recipe": "1xCU 300xPE=>10xBCO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 9052.938333333332,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 25647.061666666672,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2260.36
+			},
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.602150538876172,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 2021.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 7,
+				"vwap_7d": 117.46
+			}
+		],
+		"recipe": "10xH2O=>7xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 4524.881599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 5752.8684,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5625000232830644,
+		"output_per_day": 87.5,
+		"average_traded_7d": 62249.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 420.7
+			}
+		],
+		"recipe": "4xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4750.125699999999,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1539.0588333333333,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 3.737333333333333,
+		"logistics_per_area": 0.42712380952380946,
+		"output_per_day": 14.949333333333332,
+		"average_traded_7d": 3761.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 2371.26
+			}
+		],
+		"recipe": "10xPG=>1xPSS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 9038.98,
+		"area": 22.0,
+		"capex": 69090.78,
+		"cost_per_day": 5781.395,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.028409091332419353,
+		"output_per_day": 6.25,
+		"average_traded_7d": 544.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 480.12
+			}
+		],
+		"recipe": "4xH2O=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4666.356042857144,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1101.2569285714285,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 1.0010714285714286,
+		"logistics_per_area": 0.4461918203684749,
+		"output_per_day": 12.012857142857143,
+		"average_traded_7d": 1215
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 5886.33
+			}
+		],
+		"recipe": "1xAL 1xBSE 1xHE=>1xFC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 6932.824049999998,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 11461.9572,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			},
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1899.51
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.3780048143548461,
+		"output_per_day": 3.125,
+		"average_traded_7d": 190.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALE",
+				"amount": 6,
+				"vwap_7d": 1798.93
+			}
+		],
+		"recipe": "2xGRN 3xDW 1xHOP 1xAMM=>6xALE",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 10365.833812500001,
+		"area": 32.2,
+		"capex": 84346.084,
+		"cost_per_day": 10715.377124999999,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 171.94
+			},
+			{
+				"ticker": "HOP",
+				"amount": 1,
+				"vwap_7d": 2966.16
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 117.46
+			}
+		],
+		"worker_consumable_cost_per_day": 2254.674,
+		"runs_per_day": 1.953125,
+		"logistics_per_area": 0.2608210406438245,
+		"output_per_day": 11.71875,
+		"average_traded_7d": 2527.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 3141.77
+			}
+		],
+		"recipe": "4xTIO 1xC 1xO=>2xTI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 5942.781166666666,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 4529.785499999999,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "TIO",
+				"amount": 4,
+				"vwap_7d": 225.85
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.7356818336429017,
+		"output_per_day": 3.333333333333333,
+		"average_traded_7d": 1011.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AHP",
+				"amount": 4,
+				"vwap_7d": 14500
+			}
+		],
+		"recipe": "8xAL 10xFET 1xHE=>4xAHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 9719.846955555548,
+		"area": 31.2,
+		"capex": 80154.96,
+		"cost_per_day": 70835.7086,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 8,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "FET",
+				"amount": 10,
+				"vwap_7d": 4000
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 4.017316569783791,
+		"output_per_day": 5.555555555555555,
+		"average_traded_7d": 1.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MHL",
+				"amount": 1,
+				"vwap_7d": 6850.12
+			}
+		],
+		"recipe": "1xI 1xFE 1xHE=>1xMHL",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 6320.408871428572,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 5911.948271428571,
+		"input_costs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1312.7
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.8893543885058754,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 118.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BHP",
+				"amount": 4,
+				"vwap_7d": 4777.79
+			}
+		],
+		"recipe": "12xAL 1xSTL 1xHE=>4xBHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 9250.583066666668,
+		"area": 31.2,
+		"capex": 80154.96,
+		"cost_per_day": 70379.25026666667,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.394631473379386,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 17.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 2930.11
+			}
+		],
+		"recipe": "2xRAT 1xHER=>2xFIM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3760.5066000000006,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 10890.043399999999,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 2,
+				"vwap_7d": 174.76
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3705.35
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.1875000004656613,
+		"output_per_day": 5.0,
+		"average_traded_7d": 2983.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 440.87
+			}
+		],
+		"recipe": "2xH2O 2xN 1xLST=>4xNS",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4996.5168,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 6025.233199999999,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 224.18
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "N",
+				"amount": 2,
+				"vwap_7d": 119.44
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.090073526617797,
+		"output_per_day": 25.0,
+		"average_traded_7d": 3056.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 10,
+				"vwap_7d": 117.46
+			}
+		],
+		"recipe": "10xH2O 1xPG=>10xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3698.131599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 3643.1184000000003,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 1,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.7820312616786396,
+		"output_per_day": 62.5,
+		"average_traded_7d": 62249.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 1987.05
+			}
+		],
+		"recipe": "10xLIO 4xHAL=>4xLI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 5261.641772727273,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 9791.767318181817,
+		"input_costs": [
+			{
+				"ticker": "LIO",
+				"amount": 10,
+				"vwap_7d": 329.74
+			},
+			{
+				"ticker": "HAL",
+				"amount": 4,
+				"vwap_7d": 343.94
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 3.114669447759623,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 1505.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RBH",
+				"amount": 1,
+				"vwap_7d": 25547.59
+			}
+		],
+		"recipe": "1xBBH 1xSTL 50xEPO=>1xRBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 22597.5091,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 57238.70965,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 238.52
+			},
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2898.6
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8085937390569597,
+		"output_per_day": 3.125,
+		"average_traded_7d": 91.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"recipe": "3xSIO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 5184.831166666668,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 14457.418833333333,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 156.73
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 3.0568181565313632,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 1770.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCM",
+				"amount": 2,
+				"vwap_7d": 6031.27
+			}
+		],
+		"recipe": "2xPSM 8xSFK 20xPG=>2xDCM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 7382.9050000000025,
+		"area": 22.0,
+		"capex": 69090.78,
+		"cost_per_day": 22773.445,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "SFK",
+				"amount": 8,
+				"vwap_7d": 95.67
+			},
+			{
+				"ticker": "PSM",
+				"amount": 2,
+				"vwap_7d": 3171.83
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.11136363741984083,
+		"output_per_day": 5.0,
+		"average_traded_7d": 271.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STL",
+				"amount": 2,
+				"vwap_7d": 2343.97
+			}
+		],
+		"recipe": "2xFE 8xO=>2xSTL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 5098.700214285713,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 11643.942642857144,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 8,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 4.038311753954206,
+		"output_per_day": 7.142857142857143,
+		"average_traded_7d": 1720.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 22108.57
+			}
+		],
+		"recipe": "1xLTA 6xRG=>1xRTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 21721.16535,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 47368.1159,
+		"input_costs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4637.98
+			},
+			{
+				"ticker": "RG",
+				"amount": 6,
+				"vwap_7d": 1562
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.1171875,
+		"output_per_day": 3.125,
+		"average_traded_7d": 10
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1141.53
+			}
+		],
+		"recipe": "4xHCP 2xGRN 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 3589.7073575757577,
+		"area": 14.0,
+		"capex": 34665.39599999999,
+		"cost_per_day": 13706.201733333333,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 480.12
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 404.51
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.4350649350649354,
+		"output_per_day": 15.151515151515152,
+		"average_traded_7d": 6250
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRU",
+				"amount": 6,
+				"vwap_7d": 600.62
+			}
+		],
+		"recipe": "2xAL 1xHE=>6xTRU",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 5590.230300000002,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 16933.0197,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.1634615384615383,
+		"output_per_day": 37.5,
+		"average_traded_7d": 1127.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 420.7
+			}
+		],
+		"recipe": "1xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3663.6829,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1053.2055,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 3761.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NUT",
+				"amount": 12,
+				"vwap_7d": 408.47
+			}
+		],
+		"recipe": "1xH2O=>12xNUT",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3601.3068066666665,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 978.4588333333334,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 0.9343333333333332,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 413.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOI",
+				"amount": 16,
+				"vwap_7d": 924.07
+			}
+		],
+		"recipe": "10xCLI 20xBRM=>16xSOI",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4472.041800000001,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 14009.358199999999,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 20,
+				"vwap_7d": 335.13
+			},
+			{
+				"ticker": "CLI",
+				"amount": 10,
+				"vwap_7d": 240
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 3.409926505649791,
+		"output_per_day": 20.0,
+		"average_traded_7d": 98.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REP",
+				"amount": 4,
+				"vwap_7d": 995.9
+			}
+		],
+		"recipe": "1xMFK 1xSFK 10xINS=>4xREP",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 5344.129000000001,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 14573.871,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 449.47
+			},
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 95.67
+			},
+			{
+				"ticker": "INS",
+				"amount": 10,
+				"vwap_7d": 199.32
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.24318182163617827,
+		"output_per_day": 20.0,
+		"average_traded_7d": 401.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COF",
+				"amount": 3,
+				"vwap_7d": 1124.36
+			}
+		],
+		"recipe": "1xCAF 3xDW=>3xCOF",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3313.1316000000006,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 10741.3684,
+		"input_costs": [
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 117.46
+			},
+			{
+				"ticker": "CAF",
+				"amount": 1,
+				"vwap_7d": 2044.86
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.3385416678308199,
+		"output_per_day": 12.5,
+		"average_traded_7d": 3885.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSE",
+				"amount": 2,
+				"vwap_7d": 36516.22
+			}
+		],
+		"recipe": "2xBSE 1xSTL 225xEPO=>2xRSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 20024.589457142865,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 110390.48197142858,
+		"input_costs": [
+			{
+				"ticker": "BSE",
+				"amount": 2,
+				"vwap_7d": 1899.51
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			},
+			{
+				"ticker": "EPO",
+				"amount": 225,
+				"vwap_7d": 238.52
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.7790178449691407,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 121.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 404.51
+			}
+		],
+		"recipe": "2xH2O=>4xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3370.0406199999998,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1165.3255,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 5635
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1141.53
+			}
+		],
+		"recipe": "4xHCP 2xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 3237.0558424242427,
+		"area": 14.0,
+		"capex": 34665.39599999999,
+		"cost_per_day": 5410.898703030303,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 404.51
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 420.7
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 6250
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 8214.51
+			}
+		],
+		"recipe": "50xPG=>1xNL",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 10100.822000000002,
+		"area": 48.4,
+		"capex": 108335.31799999998,
+		"cost_per_day": 10435.453,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 2630.453,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.05836776834874114,
+		"output_per_day": 2.5,
+		"average_traded_7d": 103.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1530.63
+			}
+		],
+		"recipe": "2xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3325.7111750000004,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 7400.1785500000005,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 440.87
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.2803000101436462,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 566.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4637.98
+			}
+		],
+		"recipe": "1xAL 5xGL=>1xLTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 5106.8097499999985,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 18083.090249999997,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "GL",
+				"amount": 5,
+				"vwap_7d": 436.57
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.45573771335795277,
+		"output_per_day": 5.0,
+		"average_traded_7d": 237.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FAL",
+				"amount": 6,
+				"vwap_7d": 3244.78
+			}
+		],
+		"recipe": "3xAL 3xFE=>6xFAL",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 30995.676249999997,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 29843.948750000003,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.2427884870255155,
+		"output_per_day": 18.75,
+		"average_traded_7d": 32.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TUB",
+				"amount": 20,
+				"vwap_7d": 333.9
+			}
+		],
+		"recipe": "10xGL=>20xTUB",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 11445.643000000002,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 30291.857,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 436.57
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.02732240566932927,
+		"output_per_day": 125.0,
+		"average_traded_7d": 771.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1141.53
+			}
+		],
+		"recipe": "4xHCP 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 3011.9800848484856,
+		"area": 14.0,
+		"capex": 34665.39599999999,
+		"cost_per_day": 5635.97446060606,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 480.12
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 404.51
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 6250
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 4,
+				"vwap_7d": 351.68
+			}
+		],
+		"recipe": "3xH2O=>4xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3066.332455555555,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1314.8188333333333,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 3,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 3.114444444444444,
+		"logistics_per_area": 0.3915301672163463,
+		"output_per_day": 12.457777777777777,
+		"average_traded_7d": 63.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1141.53
+			}
+		],
+		"recipe": "4xHCP=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2932.2316,
+		"area": 14.0,
+		"capex": 34665.39599999999,
+		"cost_per_day": 2775.4184,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 404.51
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 6250
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLX",
+				"amount": 10,
+				"vwap_7d": 280.14
+			}
+		],
+		"recipe": "1xLST=>10xFLX",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 3811.9417999999996,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 3191.5581999999995,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 224.18
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.2509191194001366,
+		"output_per_day": 25.0,
+		"average_traded_7d": 5422
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FAN",
+				"amount": 8,
+				"vwap_7d": 3161.87
+			}
+		],
+		"recipe": "1xAL 8xDCS 2xSFK=>8xFAN",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 40329.31929999998,
+		"area": 40.2,
+		"capex": 490153.236,
+		"cost_per_day": 117764.18070000001,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 95.67
+			},
+			{
+				"ticker": "DCS",
+				"amount": 8,
+				"vwap_7d": 2144.01
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.44465174815103187,
+		"output_per_day": 50.0,
+		"average_traded_7d": 45.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1141.53
+			}
+		],
+		"recipe": "4xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2851.2815999999993,
+		"area": 14.0,
+		"capex": 34665.39599999999,
+		"cost_per_day": 2856.3684000000003,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 420.7
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 6250
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCC",
+				"amount": 10,
+				"vwap_7d": 730.97
+			}
+		],
+		"recipe": "1xRGO 300xPE=>10xHCC",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 4926.480000000005,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 25530.603333333336,
+		"input_costs": [
+			{
+				"ticker": "RGO",
+				"amount": 1,
+				"vwap_7d": 2232.41
+			},
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.999999949968951,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 856
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AEF",
+				"amount": 1,
+				"vwap_7d": 5902.66
+			}
+		],
+		"recipe": "50xPG 1xNE=>1xAEF",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 4566.65975,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 10189.99025,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "NE",
+				"amount": 1,
+				"vwap_7d": 390
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4098360655737705,
+		"output_per_day": 2.5,
+		"average_traded_7d": 87.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AU",
+				"amount": 2,
+				"vwap_7d": 1868.17
+			}
+		],
+		"recipe": "1xC 3xAUO=>2xAU",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3820.1367222222225,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 6558.5855,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "AUO",
+				"amount": 3,
+				"vwap_7d": 293.59
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 4.878787801723288,
+		"output_per_day": 5.555555555555555,
+		"average_traded_7d": 111.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2645.5315999999993,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6092.468400000001,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 295.54
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 351.68
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 750.33
+			}
+		],
+		"recipe": "1xBGO 300xPE=>10xBGC",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 4733.146666666669,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 26530.603333333336,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.48
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2472.41
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.999999949968951,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 1899.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "S",
+				"amount": 6,
+				"vwap_7d": 352.63
+			}
+		],
+		"recipe": "1xSCR 1xO=>6xS",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3686.997833333333,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 5128.752166666667,
+		"input_costs": [
+			{
+				"ticker": "SCR",
+				"amount": 1,
+				"vwap_7d": 896.75
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.6043560577161385,
+		"output_per_day": 25.0,
+		"average_traded_7d": 290.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1141.53
+			}
+		],
+		"recipe": "4xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2554.1816,
+		"area": 14.0,
+		"capex": 34665.39599999999,
+		"cost_per_day": 3153.4683999999997,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 4,
+				"vwap_7d": 480.12
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 6250
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2438.981599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6299.0184,
+		"input_costs": [
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 336.85
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 351.68
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 420.7
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 6,
+				"vwap_7d": 328.81
+			}
+		],
+		"recipe": "1xALG 1xH2O 1xBEA=>6xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2424.2816000000003,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 2507.8684000000003,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 366.46
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 295.54
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.875,
+		"output_per_day": 15.0,
+		"average_traded_7d": 136.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2361.5815999999995,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6376.4184000000005,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 408.47
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 295.54
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2348.431599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6389.568400000001,
+		"input_costs": [
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 295.54
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 351.68
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 480.12
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1530.63
+			}
+		],
+		"recipe": "2xH2O=>1xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2447.3444083333334,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1127.9521666666667,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.3358333333333334,
+		"logistics_per_area": 0.06673809523809524,
+		"output_per_day": 2.3358333333333334,
+		"average_traded_7d": 566.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2290.9316,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6447.0684,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 366.46
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 351.68
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 420.7
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NG",
+				"amount": 10,
+				"vwap_7d": 1600
+			}
+		],
+		"recipe": "10xGL 10xNCS=>10xNG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 8644.18466666667,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 8022.482,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 436.57
+			},
+			{
+				"ticker": "NCS",
+				"amount": 10,
+				"vwap_7d": 44.99
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 0.012522769132578146,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 15.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 4,
+				"vwap_7d": 295.54
+			}
+		],
+		"recipe": "6xH2O=>4xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2360.0076000000004,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1781.9855000000002,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 6,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.40042857142857147,
+		"output_per_day": 14.015,
+		"average_traded_7d": 344.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 30904.34
+			}
+		],
+		"recipe": "75xPG 5xTCL=>1xKV",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 7041.406375000002,
+		"area": 48.4,
+		"capex": 108335.31799999998,
+		"cost_per_day": 41246.624875,
+		"input_costs": [
+			{
+				"ticker": "TCL",
+				"amount": 5,
+				"vwap_7d": 4006.27
+			},
+			{
+				"ticker": "PG",
+				"amount": 75,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 2630.453,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.05326704468485738,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 158.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 4,
+				"vwap_7d": 1065.24
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO 1xFLX=>4xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3082.1228333333333,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 5794.877166666667,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 280.14
+			},
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 133.31
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 3.697064451195977,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 519.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2155.0315999999993,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6582.968400000001,
+		"input_costs": [
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 408.47
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 336.85
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2141.881599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6596.1184,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 351.68
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 336.85
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 480.12
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3040.5395000000026,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 11691.147999999997,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 156.73
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.488920431245457,
+		"output_per_day": 6.25,
+		"average_traded_7d": 1770.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1151.77
+			}
+		],
+		"recipe": "6xALO 1xO 1xC 1xFLX=>4xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2997.9561666666664,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 6600.127166666667,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 280.14
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 197.73
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 1.1118371378291736,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 10146
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 4,
+				"vwap_7d": 328.81
+			}
+		],
+		"recipe": "2xBEA 1xH2O=>4xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2097.7982666666667,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 3382.3684000000003,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 295.54
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.0833333333333335,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 136.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLP",
+				"amount": 6,
+				"vwap_7d": 712.53
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>6xFLP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 3340.555300000001,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 7347.3947,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.1538461538461537,
+		"output_per_day": 15.0,
+		"average_traded_7d": 225.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2064.481599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6673.518400000001,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 480.12
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 295.54
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 408.47
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 62.44
+			}
+		],
+		"recipe": "1xH 1xC 1xMG=>50xPG",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 4907.478257142858,
+		"area": 19.0,
+		"capex": 80788.674,
+		"cost_per_day": 6242.521742857142,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 161.39
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 129.24
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			}
+		],
+		"worker_consumable_cost_per_day": 1127.6646,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.48684210733587585,
+		"output_per_day": 178.57142857142858,
+		"average_traded_7d": 59844.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 295.54
+			}
+		],
+		"recipe": "1xH2O=>2xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2148.26898,
+		"area": 35.0,
+		"capex": 35894.159999999996,
+		"cost_per_day": 1165.3255,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 5.606,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 344.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSM",
+				"amount": 1,
+				"vwap_7d": 3171.83
+			}
+		],
+		"recipe": "20xPG=>1xPSM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 4130.57375,
+		"area": 22.0,
+		"capex": 69090.78,
+		"cost_per_day": 5781.395,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.05681818266483871,
+		"output_per_day": 3.125,
+		"average_traded_7d": 233
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 12627.41
+			}
+		],
+		"recipe": "3xAL 1xNL=>1xLDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 3377.959750000001,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 59759.09025,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 8214.51
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.5131147767676683,
+		"output_per_day": 5.0,
+		"average_traded_7d": 246
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2006.981599999999,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6731.018400000001,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 420.7
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 366.46
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 408.47
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1993.8315999999998,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6744.1684000000005,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 351.68
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 366.46
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 480.12
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9687499888241291,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO 1xFLX=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2776.8311666666723,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 21775.981333333333,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 280.14
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 4.266571930863641,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 1770.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 238.52
+			}
+		],
+		"recipe": "1xC 1xH 1xCL 1xO=>50xEPO",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 4613.7979,
+		"area": 19.0,
+		"capex": 80788.674,
+		"cost_per_day": 10293.7021,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5921.62
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 161.39
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			}
+		],
+		"worker_consumable_cost_per_day": 1127.6646,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.43822368950043855,
+		"output_per_day": 62.5,
+		"average_traded_7d": 53455.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1562
+			}
+		],
+		"recipe": "10xGL 15xPG 1xSEN=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 7244.572347826086,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 9733.68852173913,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 436.57
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 886.96
+			},
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 1.0869565217391304,
+		"logistics_per_area": 0.009503445450201485,
+		"output_per_day": 10.869565217391305,
+		"average_traded_7d": 540
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1857.9315999999992,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 6880.068400000001,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 480.12
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 336.85
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 408.47
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2689.69
+			}
+		],
+		"recipe": "150xPE=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 2526.304866666667,
+		"area": 27.0,
+		"capex": 46597.621999999996,
+		"cost_per_day": 8680.7368,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1505.7368000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.23148148148148148,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 627.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSL",
+				"amount": 1,
+				"vwap_7d": 5193.32
+			}
+		],
+		"recipe": "40xPG=>1xPSL",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3737.188333333333,
+		"area": 22.0,
+		"capex": 69090.78,
+		"cost_per_day": 7082.228333333334,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.07575757688645161,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 132.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1562
+			}
+		],
+		"recipe": "10xGL 15xPG=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 6914.633384615385,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 8104.597384615384,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 436.57
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 0.9615384615384616,
+		"logistics_per_area": 0.008406894052101314,
+		"output_per_day": 9.615384615384615,
+		"average_traded_7d": 540
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MPC",
+				"amount": 10,
+				"vwap_7d": 2374.07
+			}
+		],
+		"recipe": "10xSWF 10xTRN 10xBCO=>10xMPC",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 21495.79362857143,
+		"area": 39.2,
+		"capex": 402872.582,
+		"cost_per_day": 49161.05160952381,
+		"input_costs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 500.92
+			},
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 832.8
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 246.64
+			}
+		],
+		"worker_consumable_cost_per_day": 2126.5278000000003,
+		"runs_per_day": 2.9761904761904763,
+		"logistics_per_area": 0.00683309035001805,
+		"output_per_day": 29.761904761904763,
+		"average_traded_7d": 87
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2190.65
+			}
+		],
+		"recipe": "1xAL 1xHE=>1xGV",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 2902.180300000001,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 8051.0697,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.5471153929829597,
+		"output_per_day": 5.0,
+		"average_traded_7d": 223.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 6,
+				"vwap_7d": 5148.82
+			}
+		],
+		"recipe": "30xH2O 1xDDT 3xSOI=>6xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 33891.14896875,
+		"area": 129.8,
+		"capex": 644477.412,
+		"cost_per_day": 20229.385256249996,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 3,
+				"vwap_7d": 924.07
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5668.94
+			},
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 3339.2955999999995,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.12282020538705953,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 2.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3503.17
+			}
+		],
+		"recipe": "1xRCO=>1xCOT",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 5588.463666666668,
+		"area": 48.4,
+		"capex": 108335.31799999998,
+		"cost_per_day": 9008.078000000001,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1530.63
+			}
+		],
+		"worker_consumable_cost_per_day": 2630.453,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.08608815426997246,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 426.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.76
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1709.8816,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 7028.1184,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 366.46
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 480.12
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 408.47
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 63130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAF",
+				"amount": 2,
+				"vwap_7d": 2044.86
+			}
+		],
+		"recipe": "22xH2O 3xNS=>2xCAF",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 7931.123599999999,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 12517.476400000001,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 3,
+				"vwap_7d": 440.87
+			},
+			{
+				"ticker": "H2O",
+				"amount": 22,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.448598162871655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 282.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFK",
+				"amount": 16,
+				"vwap_7d": 95.67
+			}
+		],
+		"recipe": "1xFE=>16xSFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 2969.855000000001,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 12975.145000000002,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.64583335768792,
+		"output_per_day": 166.66666666666669,
+		"average_traded_7d": 1689.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FF",
+				"amount": 100,
+				"vwap_7d": 23.41
+			}
+		],
+		"recipe": "2xHE3 4xH=>100xFF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 3253.139400000002,
+		"area": 33.4,
+		"capex": 67592.272,
+		"cost_per_day": 16255.193933333334,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 4,
+				"vwap_7d": 161.39
+			},
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 539.68
+			}
+		],
+		"worker_consumable_cost_per_day": 1880.8605999999997,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.4970059880239521,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 74098.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SCN",
+				"amount": 8,
+				"vwap_7d": 2497.1
+			}
+		],
+		"recipe": "100xPE 4xCU=>8xSCN",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 8316.271666666666,
+		"area": 36.0,
+		"capex": 173322.36,
+		"cost_per_day": 12492.895000000002,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 4,
+				"vwap_7d": 2260.36
+			},
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 1.0613426007761586,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 201.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAD",
+				"amount": 1,
+				"vwap_7d": 12228.99
+			}
+		],
+		"recipe": "1xDCS 1xSFK 1xPOW=>1xRAD",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 8240.604999999992,
+		"area": 36.0,
+		"capex": 173322.36,
+		"cost_per_day": 68190.5825,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 95.67
+			},
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 8370.19
+			},
+			{
+				"ticker": "DCS",
+				"amount": 1,
+				"vwap_7d": 2144.01
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.03819444488423566,
+		"output_per_day": 6.25,
+		"average_traded_7d": 19.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEN",
+				"amount": 20,
+				"vwap_7d": 886.96
+			}
+		],
+		"recipe": "20xTRN 10xH 10xN=>20xSEN",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 19048.04116551724,
+		"area": 39.2,
+		"capex": 402872.582,
+		"cost_per_day": 57414.0278,
+		"input_costs": [
+			{
+				"ticker": "N",
+				"amount": 10,
+				"vwap_7d": 119.44
+			},
+			{
+				"ticker": "H",
+				"amount": 10,
+				"vwap_7d": 161.39
+			},
+			{
+				"ticker": "TRN",
+				"amount": 20,
+				"vwap_7d": 500.92
+			}
+		],
+		"worker_consumable_cost_per_day": 2126.5278000000003,
+		"runs_per_day": 4.310344827586206,
+		"logistics_per_area": 2.2013546799074097,
+		"output_per_day": 86.20689655172413,
+		"average_traded_7d": 4840.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 100,
+				"vwap_7d": 17.87
+			}
+		],
+		"recipe": "1xAMM 2xGAL 3xH=>100xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 3164.722733333336,
+		"area": 33.4,
+		"capex": 67592.272,
+		"cost_per_day": 11726.943933333332,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 2,
+				"vwap_7d": 262.71
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 171.94
+			},
+			{
+				"ticker": "H",
+				"amount": 3,
+				"vwap_7d": 161.39
+			}
+		],
+		"worker_consumable_cost_per_day": 1880.8605999999997,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.5194610768776693,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 185882.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "INS",
+				"amount": 24,
+				"vwap_7d": 199.32
+			}
+		],
+		"recipe": "100xPE 1xAR 1xTHF=>24xINS",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 9657.571600000003,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 14260.828399999999,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.48
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 527.28
+			},
+			{
+				"ticker": "AR",
+				"amount": 1,
+				"vwap_7d": 459.5
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.4230000050738454,
+		"output_per_day": 120.0,
+		"average_traded_7d": 32444.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FOD",
+				"amount": 16,
+				"vwap_7d": 445.38
+			}
+		],
+		"recipe": "5xNUT 5xMAI 5xVEG=>16xFOD",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1558.9565999999988,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 16256.2434,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 5,
+				"vwap_7d": 351.68
+			},
+			{
+				"ticker": "MAI",
+				"amount": 5,
+				"vwap_7d": 480.12
+			},
+			{
+				"ticker": "NUT",
+				"amount": 5,
+				"vwap_7d": 408.47
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.0000001192092896,
+		"output_per_day": 40.0,
+		"average_traded_7d": 151.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSH",
+				"amount": 1,
+				"vwap_7d": 11620
+			}
+		],
+		"recipe": "1xTI 250xNFI=>1xPSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 9470.040349999997,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 26842.45965,
+		"input_costs": [
+			{
+				"ticker": "NFI",
+				"amount": 250,
+				"vwap_7d": 17.2
+			},
+			{
+				"ticker": "TI",
+				"amount": 1,
+				"vwap_7d": 3141.77
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9765625296859071,
+		"output_per_day": 3.125,
+		"average_traded_7d": 10
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NST",
+				"amount": 4,
+				"vwap_7d": 2992.12
+			}
+		],
+		"recipe": "1xES 1xALG 1xTHF=>4xNST",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 16060.918800000001,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 13860.281199999998,
+		"input_costs": [
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 2364.99
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 527.28
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 366.46
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.14650537682476863,
+		"output_per_day": 10.0,
+		"average_traded_7d": 4.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 4,
+				"vwap_7d": 328.81
+			}
+		],
+		"recipe": "2xALG 1xH2O=>4xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1506.798266666667,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 3973.3684000000003,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "ALG",
+				"amount": 2,
+				"vwap_7d": 366.46
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.0833333333333335,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 136.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PIB",
+				"amount": 12,
+				"vwap_7d": 2000
+			}
+		],
+		"recipe": "20xH2O 1xDDT 2xSOI=>12xPIB",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 28060.15065714286,
+		"area": 129.8,
+		"capex": 644477.412,
+		"cost_per_day": 19991.27791428571,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5668.94
+			},
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "SOI",
+				"amount": 2,
+				"vwap_7d": 924.07
+			}
+		],
+		"worker_consumable_cost_per_day": 3339.2955999999995,
+		"runs_per_day": 2.0021428571428572,
+		"logistics_per_area": 0.18509795289456304,
+		"output_per_day": 24.025714285714287,
+		"average_traded_7d": 5.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEA",
+				"amount": 30,
+				"vwap_7d": 186.75
+			}
+		],
+		"recipe": "1xS 1xSI 30xPG=>30xSEA",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2366.162333333331,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 20977.58766666667,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "PG",
+				"amount": 30,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 352.63
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.8522727611390027,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 590.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RGO",
+				"amount": 5,
+				"vwap_7d": 2232.41
+			}
+		],
+		"recipe": "4xAU 1xCU=>5xRGO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 2586.7612499999946,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 32294.645000000004,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 4,
+				"vwap_7d": 1868.17
+			},
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2260.36
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 9.737903071988013,
+		"output_per_day": 15.625,
+		"average_traded_7d": 8.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 150,
+				"vwap_7d": 17.87
+			}
+		],
+		"recipe": "1xAMM 5xNAB=>150xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 2864.6394,
+		"area": 33.4,
+		"capex": 67592.272,
+		"cost_per_day": 5511.9231,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 171.94
+			},
+			{
+				"ticker": "NAB",
+				"amount": 5,
+				"vwap_7d": 198
+			}
+		],
+		"worker_consumable_cost_per_day": 1880.8605999999997,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8420658494418343,
+		"output_per_day": 468.75,
+		"average_traded_7d": 185882.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 436.57
+			}
+		],
+		"recipe": "2xSIO 1xNA=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 5383.622166666666,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 3711.586166666667,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2589936220580763,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 2494.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALG",
+				"amount": 12,
+				"vwap_7d": 366.46
+			}
+		],
+		"recipe": "16xH2O 2xNS=>12xALG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 6483.851377777776,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 5731.481955555556,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 440.87
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 1.557632398753894,
+		"output_per_day": 33.33333333333333,
+		"average_traded_7d": 228
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 18,
+				"vwap_7d": 2966.16
+			}
+		],
+		"recipe": "40xH2O 2xDDT 4xSOI=>18xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 26097.58616,
+		"area": 129.8,
+		"capex": 644477.412,
+		"cost_per_day": 16660.88145142857,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 4,
+				"vwap_7d": 924.07
+			},
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 5668.94
+			}
+		],
+		"worker_consumable_cost_per_day": 3339.2955999999995,
+		"runs_per_day": 0.8008571428571427,
+		"logistics_per_area": 0.11105877173673781,
+		"output_per_day": 14.415428571428569,
+		"average_traded_7d": 175.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MG",
+				"amount": 6,
+				"vwap_7d": 129.24
+			}
+		],
+		"recipe": "1xMGS=>6xMG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2192.8290000000006,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 5884.671,
+		"input_costs": [
+			{
+				"ticker": "MGS",
+				"amount": 1,
+				"vwap_7d": 384.24
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 0.8191287969097947,
+		"output_per_day": 62.50000000000001,
+		"average_traded_7d": 3946.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2779.74
+			}
+		],
+		"recipe": "10xSWF 5xBCO 60xPE 1xBGO=>5xPCB",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 16208.695414285707,
+		"area": 39.2,
+		"capex": 402872.582,
+		"cost_per_day": 45839.07244285715,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 60,
+				"vwap_7d": 11.48
+			},
+			{
+				"ticker": "BCO",
+				"amount": 5,
+				"vwap_7d": 832.8
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2472.41
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 246.64
+			}
+		],
+		"worker_consumable_cost_per_day": 2126.5278000000003,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 2.2748496356955115,
+		"output_per_day": 22.321428571428573,
+		"average_traded_7d": 1284.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 30800
+			}
+		],
+		"recipe": "1xMB 1xDCM 1xHD=>1xBWS",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 21020.4796,
+		"area": 40.6,
+		"capex": 527546.296,
+		"cost_per_day": 55979.5204,
+		"input_costs": [
+			{
+				"ticker": "HD",
+				"amount": 1,
+				"vwap_7d": 4426.39
+			},
+			{
+				"ticker": "DCM",
+				"amount": 1,
+				"vwap_7d": 6031.27
+			},
+			{
+				"ticker": "MB",
+				"amount": 1,
+				"vwap_7d": 10800
+			}
+		],
+		"worker_consumable_cost_per_day": 2835.3704,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.15240147838304782,
+		"output_per_day": 2.5,
+		"average_traded_7d": 2.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 1065.24
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO=>3xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 1924.0145000000011,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 6065.2855,
+		"input_costs": [
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 133.31
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.408068250526082,
+		"output_per_day": 7.5,
+		"average_traded_7d": 519.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SWF",
+				"amount": 30,
+				"vwap_7d": 246.64
+			}
+		],
+		"recipe": "1xSI 1xAL=>30xSWF",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 7723.1885999999995,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 10774.8114,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3916666700832569,
+		"output_per_day": 75.0,
+		"average_traded_7d": 5233.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MEA",
+				"amount": 2,
+				"vwap_7d": 4248.21
+			}
+		],
+		"recipe": "2xFIM 1xMTP=>2xMEA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1319.3815999999995,
+		"area": 16.0,
+		"capex": 33967.655999999995,
+		"cost_per_day": 15019.887630769232,
+		"input_costs": [
+			{
+				"ticker": "MTP",
+				"amount": 1,
+				"vwap_7d": 1558.63
+			},
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 2930.11
+			}
+		],
+		"worker_consumable_cost_per_day": 752.8684000000001,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.2403846153846154,
+		"output_per_day": 3.8461538461538463,
+		"average_traded_7d": 519.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 12,
+				"vwap_7d": 436.57
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xFLX=>12xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 5014.827027777778,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 4080.3813055555556,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 280.14
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 1.7361111111111112,
+		"logistics_per_area": 0.227686700834675,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 2494.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COM",
+				"amount": 1,
+				"vwap_7d": 136954.55
+			}
+		],
+		"recipe": "1xBWS 1xAAR 4xRAD=>1xCOM",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 58962.66073333332,
+		"area": 51.6,
+		"capex": 1574813.5839999998,
+		"cost_per_day": 169294.9226,
+		"input_costs": [
+			{
+				"ticker": "RAD",
+				"amount": 4,
+				"vwap_7d": 12228.99
+			},
+			{
+				"ticker": "AAR",
+				"amount": 1,
+				"vwap_7d": 16000
+			},
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 30800
+			}
+		],
+		"worker_consumable_cost_per_day": 9768.322600000001,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.04844961240310077,
+		"output_per_day": 1.6666666666666665,
+		"average_traded_7d": 3.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 436.57
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xSEN=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 4844.193,
+		"area": 36.6,
+		"capex": 129437.712,
+		"cost_per_day": 6070.057,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 886.96
+			},
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 156.73
+			}
+		],
+		"worker_consumable_cost_per_day": 3006.232,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.31086065248386485,
+		"output_per_day": 25.0,
+		"average_traded_7d": 2494.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 151.65
+			}
+		],
+		"recipe": "1xRCO 50xPE=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1986.037333333333,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 10651.462666666668,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1530.63
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.28409090697426687,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 6742.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 5,
+				"vwap_7d": 5148.82
+			}
+		],
+		"recipe": "40xH2O 1xDDT=>5xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 22553.64114,
+		"area": 129.8,
+		"capex": 644477.412,
+		"cost_per_day": 13526.715009999998,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5668.94
+			}
+		],
+		"worker_consumable_cost_per_day": 3339.2955999999995,
+		"runs_per_day": 1.4015,
+		"logistics_per_area": 0.08756675782924853,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 2.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 7,
+				"vwap_7d": 557.48
+			}
+		],
+		"recipe": "1xSTL 1xTRN=>7xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1894.5075714285724,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 12042.49242857143,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			},
+			{
+				"ticker": "TRN",
+				"amount": 1,
+				"vwap_7d": 500.92
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2745129715389718,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1603
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 8,
+				"vwap_7d": 404.51
+			}
+		],
+		"recipe": "14xH2O 1xNS=>8xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 5480.60485,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 4632.14515,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 14,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 440.87
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1682242990654206,
+		"output_per_day": 25.0,
+		"average_traded_7d": 5635
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PWO",
+				"amount": 20,
+				"vwap_7d": 376.43
+			}
+		],
+		"recipe": "1xCOT 50xPG=>20xPWO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1882.1206666666683,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 29487.046000000002,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3503.17
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.19886363681342284,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1876.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PE",
+				"amount": 200,
+				"vwap_7d": 11.48
+			}
+		],
+		"recipe": "1xC 2xH=>200xPE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1830.7307857142862,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 8419.269214285714,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 2,
+				"vwap_7d": 161.39
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 0.6087662337662337,
+		"output_per_day": 892.8571428571429,
+		"average_traded_7d": 269314.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1312.7
+			}
+		],
+		"recipe": "3xCLI=>1xI",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1822.2040000000004,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 6382.171,
+		"input_costs": [
+			{
+				"ticker": "CLI",
+				"amount": 3,
+				"vwap_7d": 240
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.062500065023249,
+		"output_per_day": 6.25,
+		"average_traded_7d": 18
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1151.77
+			}
+		],
+		"recipe": "6xALO 1xC 1xO=>3xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 1606.6895000000004,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 7031.5855,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 197.73
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.3057954744859175,
+		"output_per_day": 7.5,
+		"average_traded_7d": 10146
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CTF",
+				"amount": 1,
+				"vwap_7d": 23000
+			}
+		],
+		"recipe": "2xWAL 1xSI 1xO=>1xCTF",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 11361.269999999999,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 60513.73,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "WAL",
+				"amount": 2,
+				"vwap_7d": 7000
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1291006807558137,
+		"output_per_day": 3.125,
+		"average_traded_7d": 3.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TSH",
+				"amount": 1,
+				"vwap_7d": 47108.39
+			}
+		],
+		"recipe": "150xPE 2xLBH 2xTHP=>1xTSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 28823.08326666667,
+		"area": 50.4,
+		"capex": 891760.8560000001,
+		"cost_per_day": 69319.3959,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 11.48
+			},
+			{
+				"ticker": "THP",
+				"amount": 2,
+				"vwap_7d": 6723.39
+			},
+			{
+				"ticker": "LBH",
+				"amount": 2,
+				"vwap_7d": 6386.28
+			}
+		],
+		"worker_consumable_cost_per_day": 11108.270900000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2604166694692578,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 39.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MCG",
+				"amount": 50,
+				"vwap_7d": 38.69
+			}
+		],
+		"recipe": "4xLST 2xSIO=>50xMCG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1739.4289999999994,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 7933.071000000001,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "LST",
+				"amount": 4,
+				"vwap_7d": 224.18
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 3.2954545454545454,
+		"output_per_day": 250.0,
+		"average_traded_7d": 30185
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 6,
+				"vwap_7d": 351.68
+			}
+		],
+		"recipe": "16xH2O 1xNS=>6xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4928.1361,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 8259.863899999998,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 440.87
+			},
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.9275701352369006,
+		"output_per_day": 37.5,
+		"average_traded_7d": 63.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 480.12
+			}
+		],
+		"recipe": "20xH2O 2xNS=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4870.104850000001,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 4132.14515,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 440.87
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.1390186498098285,
+		"output_per_day": 18.75,
+		"average_traded_7d": 1215
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PIB",
+				"amount": 10,
+				"vwap_7d": 2000
+			}
+		],
+		"recipe": "30xH2O 1xDDT=>10xPIB",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 19664.680137500007,
+		"area": 129.8,
+		"capex": 644477.412,
+		"cost_per_day": 15372.819862499999,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5668.94
+			}
+		],
+		"worker_consumable_cost_per_day": 3339.2955999999995,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.13496725731895223,
+		"output_per_day": 17.51875,
+		"average_traded_7d": 5.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AST",
+				"amount": 4,
+				"vwap_7d": 4200
+			}
+		],
+		"recipe": "1xAL 3xTI=>4xAST",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 10387.144999999999,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 42112.855,
+		"input_costs": [
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 3141.77
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.4083710461180674,
+		"output_per_day": 12.5,
+		"average_traded_7d": 6.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DDT",
+				"amount": 3,
+				"vwap_7d": 5668.94
+			}
+		],
+		"recipe": "1xC 1xH 1xCL=>3xDDT",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 10590.343799999999,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 17754.3562,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5921.62
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 161.39
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.2473118301067087,
+		"output_per_day": 5.0,
+		"average_traded_7d": 164.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 15,
+				"vwap_7d": 2966.16
+			}
+		],
+		"recipe": "60xH2O 2xDDT=>15xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 18211.934289999997,
+		"area": 129.8,
+		"capex": 644477.412,
+		"cost_per_day": 12966.11501,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 5668.94
+			},
+			{
+				"ticker": "H2O",
+				"amount": 60,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 3339.2955999999995,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08098035439137134,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 175.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 500.92
+			}
+		],
+		"recipe": "1xAL 1xSI=>10xTRN",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 5499.088599999998,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 19546.9114,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.7833333401665138,
+		"output_per_day": 50.0,
+		"average_traded_7d": 9152.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCS",
+				"amount": 2,
+				"vwap_7d": 2144.01
+			}
+		],
+		"recipe": "4xSFK 10xPG 1xPSS=>2xDCS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 1911.4383333333349,
+		"area": 22.0,
+		"capex": 69090.78,
+		"cost_per_day": 15955.311666666668,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 4,
+				"vwap_7d": 95.67
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 2371.26
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.03787878844322581,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 173.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ASE",
+				"amount": 1,
+				"vwap_7d": 58262.45
+			}
+		],
+		"recipe": "1xRSE 2xTI=>1xASE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 24034.206372727254,
+		"area": 50.4,
+		"capex": 891760.8560000001,
+		"cost_per_day": 108380.45271818181,
+		"input_costs": [
+			{
+				"ticker": "RSE",
+				"amount": 1,
+				"vwap_7d": 36516.22
+			},
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 3141.77
+			}
+		],
+		"worker_consumable_cost_per_day": 11108.270900000001,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.49152236544724665,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 113
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRO",
+				"amount": 3,
+				"vwap_7d": 2266.03
+			}
+		],
+		"recipe": "1xAL 2xCU=>3xBRO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 1638.605000000001,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 19605.42625,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2260.36
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.6401208293053413,
+		"output_per_day": 9.375,
+		"average_traded_7d": 97.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 12,
+				"vwap_7d": 336.85
+			}
+		],
+		"recipe": "4xNS=>12xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4192.373600000001,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 5913.1264,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 440.87
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.4018691588785048,
+		"output_per_day": 30.0,
+		"average_traded_7d": 125.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HSE",
+				"amount": 2,
+				"vwap_7d": 18926.57
+			}
+		],
+		"recipe": "2xLSE 1xTCS=>2xHSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 5550.071599999988,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 112740.99090000002,
+		"input_costs": [
+			{
+				"ticker": "TCS",
+				"amount": 1,
+				"vwap_7d": 8460
+			},
+			{
+				"ticker": "LSE",
+				"amount": 2,
+				"vwap_7d": 13234.65
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.4843749850988388,
+		"output_per_day": 6.25,
+		"average_traded_7d": 68.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 320.02
+			}
+		],
+		"recipe": "10xOVE 1xAL=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1442.391499999999,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 18558.8585,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 151.65
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.8238636486401613,
+		"output_per_day": 62.5,
+		"average_traded_7d": 1099.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NFI",
+				"amount": 1200,
+				"vwap_7d": 17.2
+			}
+		],
+		"recipe": "10xC 2xSI=>1200xNFI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 5045.038600000002,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 27204.961399999997,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1141.53
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.8691589672849556,
+		"output_per_day": 1875.0,
+		"average_traded_7d": 18882.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "ZR",
+				"amount": 1,
+				"vwap_7d": 22000
+			}
+		],
+		"recipe": "2xZIR=>1xZR 2xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 34647.20596666667,
+		"area": 52.6,
+		"capex": 1369308.7679999997,
+		"cost_per_day": 11839.169033333335,
+		"input_costs": [
+			{
+				"ticker": "ZIR",
+				"amount": 2,
+				"vwap_7d": 515.66
+			}
+		],
+		"worker_consumable_cost_per_day": 9690.585700000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.40042776194211044,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 6921.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NCS",
+				"amount": 100,
+				"vwap_7d": 44.99
+			}
+		],
+		"recipe": "1xC=>100xNCS",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 4992.017766666668,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 4380.8989,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1141.53
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18172378546383275,
+		"output_per_day": 208.33333333333334,
+		"average_traded_7d": 13488.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAC",
+				"amount": 10,
+				"vwap_7d": 2679.51
+			}
+		],
+		"recipe": "1xHCP 1xO 1xS=>10xBAC",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 9019.310845454545,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 6205.17779090909,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 352.63
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 404.51
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 0.5681818181818181,
+		"logistics_per_area": 0.03758858787378374,
+		"output_per_day": 5.681818181818182,
+		"average_traded_7d": 334.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SP",
+				"amount": 12,
+				"vwap_7d": 2936.1
+			}
+		],
+		"recipe": "8xGL 24xSOL=>12xSP",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 15083.423466666649,
+		"area": 40.2,
+		"capex": 607402.8159999999,
+		"cost_per_day": 131721.57653333334,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 8,
+				"vwap_7d": 436.57
+			},
+			{
+				"ticker": "SOL",
+				"amount": 24,
+				"vwap_7d": 1150
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.18656717159261751,
+		"output_per_day": 50.0,
+		"average_traded_7d": 16.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HD",
+				"amount": 5,
+				"vwap_7d": 4426.39
+			}
+		],
+		"recipe": "1xRG 5xDCS 5xLDI=>5xHD",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 12158.928441791044,
+		"area": 40.2,
+		"capex": 490153.236,
+		"cost_per_day": 29132.023050746273,
+		"input_costs": [
+			{
+				"ticker": "LDI",
+				"amount": 5,
+				"vwap_7d": 434
+			},
+			{
+				"ticker": "DCS",
+				"amount": 5,
+				"vwap_7d": 2144.01
+			},
+			{
+				"ticker": "RG",
+				"amount": 1,
+				"vwap_7d": 1562
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.46409742333110565,
+		"output_per_day": 9.328358208955224,
+		"average_traded_7d": 57.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FET",
+				"amount": 4,
+				"vwap_7d": 4000
+			}
+		],
+		"recipe": "1xFE 3xTI=>4xFET",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 8157.551250000002,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 41842.44875,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			},
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 3141.77
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.937217167599708,
+		"output_per_day": 12.5,
+		"average_traded_7d": 2.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1530.63
+			}
+		],
+		"recipe": "10xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 3596.5963272727286,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 13796.926400000002,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 440.87
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 40
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.1682243322986818,
+		"output_per_day": 11.363636363636365,
+		"average_traded_7d": 566.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DIS",
+				"amount": 1,
+				"vwap_7d": 12200
+			}
+		],
+		"recipe": "1xLCR 3xGL=>1xDIS",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 10685.775456716417,
+		"area": 40.2,
+		"capex": 490153.236,
+		"cost_per_day": 12075.41857313433,
+		"input_costs": [
+			{
+				"ticker": "LCR",
+				"amount": 1,
+				"vwap_7d": 4000
+			},
+			{
+				"ticker": "GL",
+				"amount": 3,
+				"vwap_7d": 436.57
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.009189129364388047,
+		"output_per_day": 1.8656716417910448,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WAL",
+				"amount": 4,
+				"vwap_7d": 7000
+			}
+		],
+		"recipe": "1xW 3xAL=>4xWAL",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 7245.863749999995,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 80254.13625,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 19326.98
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.7675339366515836,
+		"output_per_day": 12.5,
+		"average_traded_7d": 16.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MLI",
+				"amount": 1,
+				"vwap_7d": 26278.05
+			}
+		],
+		"recipe": "=>1xMLI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 7404.974499999998,
+		"area": 27.0,
+		"capex": 357012.64,
+		"cost_per_day": 3544.213,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3544.213,
+		"runs_per_day": 0.41666666666666663,
+		"logistics_per_area": 0.0001543209842049781,
+		"output_per_day": 0.41666666666666663,
+		"average_traded_7d": 11.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LD",
+				"amount": 1,
+				"vwap_7d": 12500
+			}
+		],
+		"recipe": "=>1xLD",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6872.453666666666,
+		"area": 27.0,
+		"capex": 357012.64,
+		"cost_per_day": 3544.213,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3544.213,
+		"runs_per_day": 0.8333333333333333,
+		"logistics_per_area": 0.0003086419684099562,
+		"output_per_day": 0.8333333333333333,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFE",
+				"amount": 1,
+				"vwap_7d": 67200
+			}
+		],
+		"recipe": "2xCF 1xCBS=>1xSFE",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 3758.1636000000326,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 416241.8363999999,
+		"input_costs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42000
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 12139.13
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.4485980955611135,
+		"output_per_day": 6.25,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 16292.86
+			}
+		],
+		"recipe": "=>1xBAI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6638.824500000001,
+		"area": 27.0,
+		"capex": 357012.64,
+		"cost_per_day": 3544.213,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3544.213,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00023148147630746717,
+		"output_per_day": 0.625,
+		"average_traded_7d": 8
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 6,
+				"vwap_7d": 557.48
+			}
+		],
+		"recipe": "1xSTL 2xSFK=>6xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1009.1504285714293,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 10936.849571428573,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 95.67
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.287337646565654,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 1603
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WRH",
+				"amount": 6,
+				"vwap_7d": 9798.92
+			}
+		],
+		"recipe": "4xRE 2xW=>6xWRH",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 6391.353333333351,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 116095.14666666667,
+		"input_costs": [
+			{
+				"ticker": "W",
+				"amount": 2,
+				"vwap_7d": 19326.98
+			},
+			{
+				"ticker": "RE",
+				"amount": 4,
+				"vwap_7d": 3180.79
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 1.9570135962369755,
+		"output_per_day": 12.5,
+		"average_traded_7d": 132.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TCL",
+				"amount": 3,
+				"vwap_7d": 4006.27
+			}
+		],
+		"recipe": "1xCL 1xO 1xH=>3xTCL",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 6427.189633333333,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 18611.997866666665,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 161.39
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5921.62
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.24703181453890374,
+		"output_per_day": 6.25,
+		"average_traded_7d": 335.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SA",
+				"amount": 1,
+				"vwap_7d": 7885.71
+			}
+		],
+		"recipe": "=>1xSA",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6312.924500000001,
+		"area": 27.0,
+		"capex": 357012.64,
+		"cost_per_day": 3544.213,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3544.213,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.00046296295261493434,
+		"output_per_day": 1.25,
+		"average_traded_7d": 2
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THF",
+				"amount": 20,
+				"vwap_7d": 527.28
+			}
+		],
+		"recipe": "4xAMM 4xH2O 4xNA=>20xTHF",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 6283.293799999998,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 6898.706199999999,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 4,
+				"vwap_7d": 171.94
+			},
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "NA",
+				"amount": 4,
+				"vwap_7d": 25.11
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.40322582247436684,
+		"output_per_day": 25.0,
+		"average_traded_7d": 625
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 19326.98
+			}
+		],
+		"recipe": "5xBTS=>1xW",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 23140.622633333332,
+		"area": 52.6,
+		"capex": 1369308.7679999997,
+		"cost_per_day": 17123.919033333335,
+		"input_costs": [
+			{
+				"ticker": "BTS",
+				"amount": 5,
+				"vwap_7d": 713.6
+			}
+		],
+		"worker_consumable_cost_per_day": 9690.585700000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2978057689086566,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 36
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SAL",
+				"amount": 1,
+				"vwap_7d": 7510
+			}
+		],
+		"recipe": "=>1xSAL",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 5843.287,
+		"area": 27.0,
+		"capex": 357012.64,
+		"cost_per_day": 3544.213,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3544.213,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.00046296295261493434,
+		"output_per_day": 1.25,
+		"average_traded_7d": 2.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BOS",
+				"amount": 4,
+				"vwap_7d": 4877.43
+			}
+		],
+		"recipe": "1xBOR 1xSI 4xAL=>4xBOS",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 20992.6143,
+		"area": 52.6,
+		"capex": 1369308.7679999997,
+		"cost_per_day": 27781.6857,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 272.29
+			}
+		],
+		"worker_consumable_cost_per_day": 9690.585700000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.7095532385568655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 142.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCH",
+				"amount": 1,
+				"vwap_7d": 22000
+			}
+		],
+		"recipe": "1xMPC 1xPOW 1xSOL 1xDRF=>1xDCH",
+		"expertise": "ELECTRONICS",
+		"building": "DRS",
+		"profit_per_day": 11228.559028571419,
+		"area": 38.8,
+		"capex": 752988.0160000001,
+		"cost_per_day": 86985.7266857143,
+		"input_costs": [
+			{
+				"ticker": "DRF",
+				"amount": 1,
+				"vwap_7d": 5720
+			},
+			{
+				"ticker": "MPC",
+				"amount": 1,
+				"vwap_7d": 2374.07
+			},
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 8370.19
+			},
+			{
+				"ticker": "SOL",
+				"amount": 1,
+				"vwap_7d": 1150
+			}
+		],
+		"worker_consumable_cost_per_day": 8350.637400000001,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 0.023011782375302867,
+		"output_per_day": 4.464285714285714,
+		"average_traded_7d": 3.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ES",
+				"amount": 10,
+				"vwap_7d": 2364.99
+			}
+		],
+		"recipe": "1xLES=>10xES",
+		"expertise": "CHEMISTRY",
+		"building": "EEP",
+		"profit_per_day": 23480.36239999999,
+		"area": 116.8,
+		"capex": 1580237.2120000003,
+		"cost_per_day": 35644.3876,
+		"input_costs": [
+			{
+				"ticker": "LES",
+				"amount": 1,
+				"vwap_7d": 831.69
+			}
+		],
+		"worker_consumable_cost_per_day": 33565.1626,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.18921233203313123,
+		"output_per_day": 25.0,
+		"average_traded_7d": 120.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 4,
+				"vwap_7d": 336.85
+			}
+		],
+		"recipe": "1xNS=>4xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2272.7819333333337,
+		"area": 21.4,
+		"capex": 157642.844,
+		"cost_per_day": 3341.3847333333333,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 440.87
+			}
+		],
+		"worker_consumable_cost_per_day": 1504.4264,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.7788161993769471,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 125.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AIR",
+				"amount": 1,
+				"vwap_7d": 200165.11
+			}
+		],
+		"recipe": "1xHCP 1xNS 1xH2O 1xWAI 1xPCB 1xSAR 1xGV 1xFC 1xBAC=>1xAIR",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 21054.1474,
+		"area": 51.6,
+		"capex": 1574813.5839999998,
+		"cost_per_day": 79028.40759999999,
+		"input_costs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 94942.99
+			},
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 5886.33
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 440.87
+			},
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2190.65
+			},
+			{
+				"ticker": "PCB",
+				"amount": 1,
+				"vwap_7d": 2779.74
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 40
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 404.51
+			},
+			{
+				"ticker": "BAC",
+				"amount": 1,
+				"vwap_7d": 2679.51
+			},
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 29155.57
+			}
+		],
+		"worker_consumable_cost_per_day": 9768.322600000001,
+		"runs_per_day": 0.5,
+		"logistics_per_area": 0.04176356604091765,
+		"output_per_day": 0.5,
+		"average_traded_7d": 167.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 156.73
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "BE",
+				"amount": 1,
+				"vwap_7d": 2212.76
+			}
+		],
+		"recipe": "2xBER=>1xBE 1xAL 1xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 17231.664300000004,
+		"area": 52.6,
+		"capex": 1369308.7679999997,
+		"cost_per_day": 26784.085700000003,
+		"input_costs": [
+			{
+				"ticker": "BER",
+				"amount": 2,
+				"vwap_7d": 683.74
+			}
+		],
+		"worker_consumable_cost_per_day": 9690.585700000001,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5042775767384373,
+		"output_per_day": 12.5,
+		"average_traded_7d": 10146
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NR",
+				"amount": 50,
+				"vwap_7d": 436.72
+			}
+		],
+		"recipe": "50xEPO 75xNCS=>50xNR",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 4498.653175000001,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 29620.096825,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 75,
+				"vwap_7d": 44.99
+			},
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 238.52
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.17221102235032626,
+		"output_per_day": 78.125,
+		"average_traded_7d": 5435.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2898.6
+			}
+		],
+		"recipe": "2xFE 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 554.6419878787879,
+		"area": 27.0,
+		"capex": 46597.621999999996,
+		"cost_per_day": 10424.903466666667,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 1065.24
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 224.18
+			}
+		],
+		"worker_consumable_cost_per_day": 1505.7368000000001,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.592312031991019,
+		"output_per_day": 3.787878787878788,
+		"average_traded_7d": 2194.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STS",
+				"amount": 1,
+				"vwap_7d": 159714.29
+			}
+		],
+		"recipe": "1xWAI 1xTPU=>1xSTS",
+		"expertise": "MANUFACTURING",
+		"building": "AAF",
+		"profit_per_day": 18804.478950000004,
+		"area": 60.0,
+		"capex": 1608794.636,
+		"cost_per_day": 81016.9523,
+		"input_costs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 94942.99
+			},
+			{
+				"ticker": "TPU",
+				"amount": 1,
+				"vwap_7d": 3419.79
+			}
+		],
+		"worker_consumable_cost_per_day": 19540.2148,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.0010416666821887095,
+		"output_per_day": 0.625,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DRF",
+				"amount": 1,
+				"vwap_7d": 5720
+			}
+		],
+		"recipe": "50xNFI 1xDCS=>1xDRF",
+		"expertise": "ELECTRONICS",
+		"building": "DRS",
+		"profit_per_day": 8624.300099999999,
+		"area": 38.8,
+		"capex": 752988.0160000001,
+		"cost_per_day": 27125.6999,
+		"input_costs": [
+			{
+				"ticker": "DCS",
+				"amount": 1,
+				"vwap_7d": 2144.01
+			},
+			{
+				"ticker": "NFI",
+				"amount": 50,
+				"vwap_7d": 17.2
+			}
+		],
+		"worker_consumable_cost_per_day": 8350.637400000001,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.2593427957107611,
+		"output_per_day": 6.25,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LOG",
+				"amount": 1,
+				"vwap_7d": 68303.03
+			}
+		],
+		"recipe": "1xBMF 1xLD 1xSAL=>1xLOG",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 15777.552399999995,
+		"area": 51.6,
+		"capex": 1574813.5839999998,
+		"cost_per_day": 79087.76704444444,
+		"input_costs": [
+			{
+				"ticker": "SAL",
+				"amount": 1,
+				"vwap_7d": 7510
+			},
+			{
+				"ticker": "LD",
+				"amount": 1,
+				"vwap_7d": 12500
+			},
+			{
+				"ticker": "BMF",
+				"amount": 1,
+				"vwap_7d": 29900
+			}
+		],
+		"worker_consumable_cost_per_day": 9768.322600000001,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 0.04037467700258397,
+		"output_per_day": 1.3888888888888888,
+		"average_traded_7d": 18.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BLE",
+				"amount": 4,
+				"vwap_7d": 2273.15
+			}
+		],
+		"recipe": "10xNAB 3xS 2xO=>4xBLE",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 3408.621925000003,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 10798.565574999999,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 2,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "NAB",
+				"amount": 10,
+				"vwap_7d": 198
+			},
+			{
+				"ticker": "S",
+				"amount": 3,
+				"vwap_7d": 352.63
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.20337701707537614,
+		"output_per_day": 6.25,
+		"average_traded_7d": 30.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NN",
+				"amount": 1,
+				"vwap_7d": 60741.46
+			}
+		],
+		"recipe": "1xBAI 1xMLI=>1xNN",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 6869.224499999995,
+		"area": 24.8,
+		"capex": 741449.6399999999,
+		"cost_per_day": 43748.658833333335,
+		"input_costs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 16292.86
+			},
+			{
+				"ticker": "MLI",
+				"amount": 1,
+				"vwap_7d": 26278.05
+			}
+		],
+		"worker_consumable_cost_per_day": 8272.9005,
+		"runs_per_day": 0.8333333333333333,
+		"logistics_per_area": 0.0006720429957313562,
+		"output_per_day": 0.8333333333333333,
+		"average_traded_7d": 11.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 320.02
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xSWF=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 495.24566666666647,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 26173.087666666666,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 151.65
+			},
+			{
+				"ticker": "SWF",
+				"amount": 1,
+				"vwap_7d": 246.64
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.0996212284997897,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1099.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1899.51
+			}
+		],
+		"recipe": "1xFE 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 423.8132000000003,
+		"area": 27.0,
+		"capex": 46597.621999999996,
+		"cost_per_day": 9073.7368,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 224.18
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			}
+		],
+		"worker_consumable_cost_per_day": 1505.7368000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 2.4692592797455966,
+		"output_per_day": 5.0,
+		"average_traded_7d": 3089.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 29155.57
+			}
+		],
+		"recipe": "16xSEN 4xPCB=>1xSAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 4338.603480597016,
+		"area": 40.6,
+		"capex": 527546.296,
+		"cost_per_day": 50056.116668656716,
+		"input_costs": [
+			{
+				"ticker": "SEN",
+				"amount": 16,
+				"vwap_7d": 886.96
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2779.74
+			}
+		],
+		"worker_consumable_cost_per_day": 2835.3704,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.09190500698478053,
+		"output_per_day": 1.8656716417910448,
+		"average_traded_7d": 91
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 94942.99
+			}
+		],
+		"recipe": "1xNN 1xROM=>1xWAI",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 8511.275450000012,
+		"area": 23.6,
+		"capex": 1071245.556,
+		"cost_per_day": 50828.09329999999,
+		"input_costs": [
+			{
+				"ticker": "ROM",
+				"amount": 1,
+				"vwap_7d": 6968
+			},
+			{
+				"ticker": "NN",
+				"amount": 1,
+				"vwap_7d": 60741.46
+			}
+		],
+		"worker_consumable_cost_per_day": 8509.680799999998,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00029131355466048813,
+		"output_per_day": 0.625,
+		"average_traded_7d": 30.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ATA",
+				"amount": 1,
+				"vwap_7d": 31659.7
+			}
+		],
+		"recipe": "1xRTA 1xNG=>1xATA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 6962.479099999999,
+		"area": 50.4,
+		"capex": 891760.8560000001,
+		"cost_per_day": 64991.384536363636,
+		"input_costs": [
+			{
+				"ticker": "NG",
+				"amount": 1,
+				"vwap_7d": 1600
+			},
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 22108.57
+			}
+		],
+		"worker_consumable_cost_per_day": 11108.270900000001,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.06863275612738053,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 56.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2898.6
+			}
+		],
+		"recipe": "2xAL 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 444.4097500000005,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 14048.59025,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 224.18
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.332786904006708,
+		"output_per_day": 5.0,
+		"average_traded_7d": 2194.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LCR",
+				"amount": 1,
+				"vwap_7d": 4000
+			}
+		],
+		"recipe": "1xSI 1xO=>1xLCR",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 320.1225692307694,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 7372.185123076923,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.24533371243002192,
+		"output_per_day": 1.9230769230769231,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1797.44
+			}
+		],
+		"recipe": "1xGL 1xAL=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 332.5097500000013,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 14646.156916666667,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 1,
+				"vwap_7d": 436.57
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 0.7420765159682172,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 804.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MTP",
+				"amount": 4,
+				"vwap_7d": 1558.63
+			}
+		],
+		"recipe": "1xPPA 1xNS 1xHCP=>4xMTP",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 3471.9851333333345,
+		"area": 41.8,
+		"capex": 599841.048,
+		"cost_per_day": 6918.881533333332,
+		"input_costs": [
+			{
+				"ticker": "PPA",
+				"amount": 1,
+				"vwap_7d": 328.81
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 440.87
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 404.51
+			}
+		],
+		"worker_consumable_cost_per_day": 4961.898199999999,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.1594896331738437,
+		"output_per_day": 6.666666666666666,
+		"average_traded_7d": 173.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1899.51
+			}
+		],
+		"recipe": "1xAL 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 291.03247727272674,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 10501.63797727273,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 224.18
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.5201192410265816,
+		"output_per_day": 5.6818181818181825,
+		"average_traded_7d": 3089.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IDC",
+				"amount": 1,
+				"vwap_7d": 11108.73
+			}
+		],
+		"recipe": "=>1xIDC",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 5376.2317,
+		"area": 23.6,
+		"capex": 1071245.556,
+		"cost_per_day": 8509.680799999998,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8509.680799999998,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005296610051103062,
+		"output_per_day": 1.25,
+		"average_traded_7d": 108
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAP",
+				"amount": 15,
+				"vwap_7d": 289.11
+			}
+		],
+		"recipe": "1xSI 1xFE=>15xCAP",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 854.6011000000005,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 12697.430150000002,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9932827169650068,
+		"output_per_day": 46.875,
+		"average_traded_7d": 194.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EDC",
+				"amount": 1,
+				"vwap_7d": 8010
+			}
+		],
+		"recipe": "=>1xEDC",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 1739.5995000000003,
+		"area": 24.8,
+		"capex": 741449.6399999999,
+		"cost_per_day": 8272.9005,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8272.9005,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005040322467985172,
+		"output_per_day": 1.25,
+		"average_traded_7d": 115.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 8370.19
+			}
+		],
+		"recipe": "1xNCS 4xLI=>1xPOW",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 187.00680000000511,
+		"area": 40.2,
+		"capex": 607402.8159999999,
+		"cost_per_day": 52126.6807,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 1,
+				"vwap_7d": 44.99
+			},
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 1987.05
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.6234452735970899,
+		"output_per_day": 6.25,
+		"average_traded_7d": 154
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 30,
+				"vwap_7d": 151.65
+			}
+		],
+		"recipe": "1xCOT 10xPG=>30xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -124.12933333333194,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 19080.37933333333,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3503.17
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.1912878788778361,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 6742.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1797.44
+			}
+		],
+		"recipe": "1xFE 50xPE=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": -187.40346666666642,
+		"area": 27.0,
+		"capex": 46597.621999999996,
+		"cost_per_day": 15166.070133333335,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 1065.24
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1505.7368000000001,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 2.5845679201553633,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 804.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CA",
+				"amount": 1,
+				"vwap_7d": 800.61
+			}
+		],
+		"recipe": "1xLST=>1xCA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": -229.3165333333327,
+		"area": 27.2,
+		"capex": 45452.432,
+		"cost_per_day": 3565.191533333333,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 224.18
+			}
+		],
+		"worker_consumable_cost_per_day": 2631.1081999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.418198532333561,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 30.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 5,
+				"vwap_7d": 557.48
+			}
+		],
+		"recipe": "1xSTL=>5xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -298.4924285714276,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 10253.492428571428,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2743506338689234,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 1603
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2689.69
+			}
+		],
+		"recipe": "40xPG=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -449.54024999999933,
+		"area": 30.5,
+		"capex": 56936.42,
+		"cost_per_day": 13897.99025,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1409.99025,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.2459016393442623,
+		"output_per_day": 5.0,
+		"average_traded_7d": 627.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "UTS",
+				"amount": 1,
+				"vwap_7d": 7000
+			}
+		],
+		"recipe": "2xSFK 6xFE=>1xUTS",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": -575.082500000002,
+		"area": 31.0,
+		"capex": 60910.479999999996,
+		"cost_per_day": 22450.082500000004,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 6,
+				"vwap_7d": 1065.24
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 95.67
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.895,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 4.770564559787031,
+		"output_per_day": 3.125,
+		"average_traded_7d": 56
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STR",
+				"amount": 2,
+				"vwap_7d": 2700
+			}
+		],
+		"recipe": "50xPE 4xAL=>2xSTR",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -970.004333333333,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 23470.004333333334,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.48
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.1401515491589005,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 16.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 151.65
+			}
+		],
+		"recipe": "100xPE 25xPG=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1207.171,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 7525.921,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.48
+			},
+			{
+				"ticker": "PG",
+				"amount": 25,
+				"vwap_7d": 62.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.0994318162900692,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 6742.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 320.02
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xMFK=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1275.847470588235,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 24806.72982352941,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 449.47
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 151.65
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 7.352941176470589,
+		"logistics_per_area": 1.0026738117324479,
+		"output_per_day": 73.52941176470588,
+		"average_traded_7d": 1099.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AAR",
+				"amount": 3,
+				"vwap_7d": 16000
+			}
+		],
+		"recipe": "1xKV 2xAU 4xPCB 6xSWF=>3xAAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": -1416.4898029850667,
+		"area": 40.6,
+		"capex": 527546.296,
+		"cost_per_day": 90968.72860895522,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 2,
+				"vwap_7d": 1868.17
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 30904.34
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2779.74
+			},
+			{
+				"ticker": "SWF",
+				"amount": 6,
+				"vwap_7d": 246.64
+			}
+		],
+		"worker_consumable_cost_per_day": 2835.3704,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 1.8614439824711084,
+		"output_per_day": 5.597014925373134,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDI",
+				"amount": 6,
+				"vwap_7d": 434
+			}
+		],
+		"recipe": "1xGAL 1xSI=>6xLDI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": -2059.0685428571433,
+		"area": 32.1,
+		"capex": 197545.626,
+		"cost_per_day": 11359.068542857145,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 1,
+				"vwap_7d": 262.71
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"worker_consumable_cost_per_day": 2002.7114,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.538384511198104,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 5.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 539.68
+			}
+		],
+		"recipe": "3xTS=>2xHE3",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": -3609.0606000000002,
+		"area": 33.4,
+		"capex": 67592.272,
+		"cost_per_day": 9005.8606,
+		"input_costs": [
+			{
+				"ticker": "TS",
+				"amount": 3,
+				"vwap_7d": 475
+			}
+		],
+		"worker_consumable_cost_per_day": 1880.8605999999997,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.0778443542069305,
+		"output_per_day": 10.0,
+		"average_traded_7d": 517
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BLE",
+				"amount": 3,
+				"vwap_7d": 2273.15
+			}
+		],
+		"recipe": "1xNA 1xCL 1xO=>3xBLE",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": -3802.3811999999957,
+		"area": 37.2,
+		"capex": 361721.236,
+		"cost_per_day": 20851.006199999996,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5921.62
+			}
+		],
+		"worker_consumable_cost_per_day": 5713.456199999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3569220503171285,
+		"output_per_day": 7.5,
+		"average_traded_7d": 30.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RDE",
+				"amount": 2,
+				"vwap_7d": 32483.19
+			}
+		],
+		"recipe": "1xLDE 100xEPO 1xKV=>2xRDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": -7903.660542857147,
+		"area": 40.0,
+		"capex": 208890.404,
+		"cost_per_day": 123915.0534,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 12627.41
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 30904.34
+			},
+			{
+				"ticker": "EPO",
+				"amount": 100,
+				"vwap_7d": 238.52
+			}
+		],
+		"worker_consumable_cost_per_day": 3586.9284000000002,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.2566964235822005,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 81.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ADE",
+				"amount": 2,
+				"vwap_7d": 44253.78
+			}
+		],
+		"recipe": "2xLDE 2xKV=>2xADE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -8099.812566666673,
+		"area": 50.4,
+		"capex": 891760.8560000001,
+		"cost_per_day": 192490.5625666667,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 2,
+				"vwap_7d": 12627.41
+			},
+			{
+				"ticker": "KV",
+				"amount": 2,
+				"vwap_7d": 30904.34
+			}
+		],
+		"worker_consumable_cost_per_day": 11108.270900000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18187831082041303,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 102
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOL",
+				"amount": 12,
+				"vwap_7d": 1150
+			}
+		],
+		"recipe": "2xCU 2xSI 4xBCO 1xBRO=>12xSOL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -8619.805700000014,
+		"area": 40.2,
+		"capex": 607402.8159999999,
+		"cost_per_day": 94869.80570000001,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2260.36
+			},
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2357.07
+			},
+			{
+				"ticker": "BCO",
+				"amount": 4,
+				"vwap_7d": 832.8
+			},
+			{
+				"ticker": "BRO",
+				"amount": 1,
+				"vwap_7d": 2266.03
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 4.858208906521733,
+		"output_per_day": 75.0,
+		"average_traded_7d": 269.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ABH",
+				"amount": 2,
+				"vwap_7d": 53444.27
+			}
+		],
+		"recipe": "2xRBH 125xNR=>2xABH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -8959.413757142858,
+		"area": 50.4,
+		"capex": 891760.8560000001,
+		"cost_per_day": 199831.8066142857,
+		"input_costs": [
+			{
+				"ticker": "RBH",
+				"amount": 2,
+				"vwap_7d": 25547.59
+			},
+			{
+				"ticker": "NR",
+				"amount": 125,
+				"vwap_7d": 436.72
+			}
+		],
+		"worker_consumable_cost_per_day": 11108.270900000001,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.3915107810327069,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 121
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2357.07
+			}
+		],
+		"recipe": "4xTS 1xO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": -9305.564666666665,
+		"area": 22.0,
+		"capex": 48440.06,
+		"cost_per_day": 33858.37716666667,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "TS",
+				"amount": 4,
+				"vwap_7d": 475
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 108.29
+			}
+		],
+		"worker_consumable_cost_per_day": 941.0855,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 6.364110067035213,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 1770.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALR",
+				"amount": 6,
+				"vwap_7d": 2800
+			}
+		],
+		"recipe": "5xRE 1xAL=>6xALR",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": -9698.780000000004,
+		"area": 44.2,
+		"capex": 348312.04,
+		"cost_per_day": 51698.780000000006,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "RE",
+				"amount": 5,
+				"vwap_7d": 3180.79
+			}
+		],
+		"worker_consumable_cost_per_day": 9059.480000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.2217194246490617,
+		"output_per_day": 15.0,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HSS",
+				"amount": 20,
+				"vwap_7d": 2700.65
+			}
+		],
+		"recipe": "5xNL 1xBLE 5xSEN 5xPCB=>20xHSS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": -11085.865999999996,
+		"area": 41.8,
+		"capex": 99960.576,
+		"cost_per_day": 78602.116,
+		"input_costs": [
+			{
+				"ticker": "BLE",
+				"amount": 1,
+				"vwap_7d": 2273.15
+			},
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2779.74
+			},
+			{
+				"ticker": "SEN",
+				"amount": 5,
+				"vwap_7d": 886.96
+			},
+			{
+				"ticker": "NL",
+				"amount": 5,
+				"vwap_7d": 8214.51
+			}
+		],
+		"worker_consumable_cost_per_day": 1503.116,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.19153708074524284,
+		"output_per_day": 25.0,
+		"average_traded_7d": 258.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THP",
+				"amount": 4,
+				"vwap_7d": 6723.39
+			}
+		],
+		"recipe": "2xBE 2xCF 1xHE=>4xTHP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": -15242.241922222198,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 202003.07525555554,
+		"input_costs": [
+			{
+				"ticker": "BE",
+				"amount": 2,
+				"vwap_7d": 2212.76
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 12139.13
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 6.944444444444445,
+		"logistics_per_area": 2.52804485285002,
+		"output_per_day": 27.77777777777778,
+		"average_traded_7d": 17.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SUN",
+				"amount": 20,
+				"vwap_7d": 600.22
+			}
+		],
+		"recipe": "20xOVE 10xC=>20xSUN",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -17156.545999999984,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 92184.046,
+		"input_costs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 151.65
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1141.53
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 6.505681815641847,
+		"output_per_day": 125.0,
+		"average_traded_7d": 431.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42000
+			}
+		],
+		"recipe": "6xLI 6xBE 20xBCO 60xPG=>1xCBS",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -17174.49319999998,
+		"area": 40.2,
+		"capex": 607402.8159999999,
+		"cost_per_day": 192174.4932,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 6,
+				"vwap_7d": 1987.05
+			},
+			{
+				"ticker": "PG",
+				"amount": 60,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "BCO",
+				"amount": 20,
+				"vwap_7d": 832.8
+			},
+			{
+				"ticker": "BE",
+				"amount": 6,
+				"vwap_7d": 2212.76
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.509121089890309,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 23.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PDA",
+				"amount": 32,
+				"vwap_7d": 2698.4
+			}
+		],
+		"recipe": "2xHPC 1xLD=>32xPDA",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": -18416.655933333328,
+		"area": 51.6,
+		"capex": 1574813.5839999998,
+		"cost_per_day": 198309.9892666667,
+		"input_costs": [
+			{
+				"ticker": "LD",
+				"amount": 1,
+				"vwap_7d": 12500
+			},
+			{
+				"ticker": "HPC",
+				"amount": 2,
+				"vwap_7d": 39000
+			}
+		],
+		"worker_consumable_cost_per_day": 9768.322600000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.002583979450897807,
+		"output_per_day": 66.66666666666667,
+		"average_traded_7d": 46.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DRF",
+				"amount": 1,
+				"vwap_7d": 5720
+			}
+		],
+		"recipe": "6xAL 1xHE=>1xDRF",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": -18637.019699999993,
+		"area": 26.0,
+		"capex": 54408.788,
+		"cost_per_day": 90137.0197,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 6,
+				"vwap_7d": 1151.77
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 194.94
+			}
+		],
+		"worker_consumable_cost_per_day": 1317.5197,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 7.8581732124663315,
+		"output_per_day": 12.5,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBL",
+				"amount": 1,
+				"vwap_7d": 91000
+			}
+		],
+		"recipe": "12xLI 12xBE 60xHCC 150xPG=>1xCBL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -33724.04320000003,
+		"area": 40.2,
+		"capex": 607402.8159999999,
+		"cost_per_day": 261224.04320000004,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 12,
+				"vwap_7d": 1987.05
+			},
+			{
+				"ticker": "HCC",
+				"amount": 60,
+				"vwap_7d": 730.97
+			},
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 62.44
+			},
+			{
+				"ticker": "BE",
+				"amount": 12,
+				"vwap_7d": 2212.76
+			}
+		],
+		"worker_consumable_cost_per_day": 2169.2432000000003,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.8395522726637157,
+		"output_per_day": 2.5,
+		"average_traded_7d": 5.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 15,
+				"vwap_7d": 557.48
+			}
+		],
+		"recipe": "1xSTL 1xW=>15xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -49413.421,
+		"area": 22.0,
+		"capex": 54345.799999999996,
+		"cost_per_day": 79278.421,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2343.97
+			},
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 19326.98
+			}
+		],
+		"worker_consumable_cost_per_day": 1882.171,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 2.4949675256555732,
+		"output_per_day": 53.57142857142858,
+		"average_traded_7d": 1603
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LFL",
+				"amount": 1,
+				"vwap_7d": 415600
+			}
+		],
+		"recipe": "20xZR 8xMFK=>1xLFL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": -52204.38717142859,
+		"area": 46.2,
+		"capex": 79878.58,
+		"cost_per_day": 794347.2443142858,
+		"input_costs": [
+			{
+				"ticker": "ZR",
+				"amount": 20,
+				"vwap_7d": 22000
+			},
+			{
+				"ticker": "MFK",
+				"amount": 8,
+				"vwap_7d": 449.47
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 5.0788498843571395,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCB",
+				"amount": 1,
+				"vwap_7d": 4150000
+			}
+		],
+		"recipe": "600xWAL 100xMFK=>1xHCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": -61553.8336,
+		"area": 46.2,
+		"capex": 79878.58,
+		"cost_per_day": 2655303.8336,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 100,
+				"vwap_7d": 449.47
+			},
+			{
+				"ticker": "WAL",
+				"amount": 600,
+				"vwap_7d": 7000
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 50.86580086781671,
+		"output_per_day": 0.625,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LCB",
+				"amount": 1,
+				"vwap_7d": 811666.67
+			}
+		],
+		"recipe": "200xAST 20xMFK=>1xLCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": -64416.508599999965,
+		"area": 46.2,
+		"capex": 79878.58,
+		"cost_per_day": 1417194.2919333333,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 200,
+				"vwap_7d": 4200
+			},
+			{
+				"ticker": "MFK",
+				"amount": 20,
+				"vwap_7d": 449.47
+			}
+		],
+		"worker_consumable_cost_per_day": 2211.9586,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 36.00288614157646,
+		"output_per_day": 1.6666666666666665,
+		"average_traded_7d": 0.43
+	}
+]

+ 7514 - 0
www/roi_ci1.json

@@ -0,0 +1,7514 @@
+[
+	{
+		"outputs": [
+			{
+				"ticker": "HCB",
+				"amount": 1,
+				"vwap_7d": 5000000
+			}
+		],
+		"recipe": "600xWAL 100xMFK=>1xHCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 453630.0737,
+		"area": 46.2,
+		"capex": 78234.712,
+		"cost_per_day": 2671369.9263,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 100,
+				"vwap_7d": 322.75
+			},
+			{
+				"ticker": "WAL",
+				"amount": 600,
+				"vwap_7d": 7064.52
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 50.86580086781671,
+		"output_per_day": 0.625,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MSL",
+				"amount": 1,
+				"vwap_7d": 403333.33
+			}
+		],
+		"recipe": "50xFET 4xMFK=>1xMSL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 403999.32370000007,
+		"area": 46.2,
+		"capex": 78234.712,
+		"cost_per_day": 316238.7655857143,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 4,
+				"vwap_7d": 322.75
+			},
+			{
+				"ticker": "FET",
+				"amount": 50,
+				"vwap_7d": 3493.62
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 13.253710391063269,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 0.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LFL",
+				"amount": 1,
+				"vwap_7d": 520000
+			}
+		],
+		"recipe": "20xZR 8xMFK=>1xLFL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 336243.3772714286,
+		"area": 46.2,
+		"capex": 78234.712,
+		"cost_per_day": 592328.0513,
+		"input_costs": [
+			{
+				"ticker": "ZR",
+				"amount": 20,
+				"vwap_7d": 16400
+			},
+			{
+				"ticker": "MFK",
+				"amount": 8,
+				"vwap_7d": 322.75
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 5.0788498843571395,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFE",
+				"amount": 1,
+				"vwap_7d": 182428.57
+			}
+		],
+		"recipe": "4xCF 1xCBM=>1xMFE",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 237369.65280000004,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 332719.62845,
+		"input_costs": [
+			{
+				"ticker": "CBM",
+				"amount": 1,
+				"vwap_7d": 71900
+			},
+			{
+				"ticker": "CF",
+				"amount": 4,
+				"vwap_7d": 8500
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.4485980955611135,
+		"output_per_day": 3.125,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BWH",
+				"amount": 10,
+				"vwap_7d": 9000
+			}
+		],
+		"recipe": "2xFAL 4xCF 1xKV 1xHE=>10xBWH",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 94709.61536666664,
+		"area": 31.2,
+		"capex": 78481.352,
+		"cost_per_day": 280290.38463333336,
+		"input_costs": [
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 27532.61
+			},
+			{
+				"ticker": "FAL",
+				"amount": 2,
+				"vwap_7d": 2500
+			},
+			{
+				"ticker": "CF",
+				"amount": 4,
+				"vwap_7d": 8500
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.6061698400343842,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SC",
+				"amount": 20,
+				"vwap_7d": 2256.32
+			}
+		],
+		"recipe": "2xCA 1xMG 1xTA=>20xSC",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 53644.27406153847,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 33137.2644,
+		"input_costs": [
+			{
+				"ticker": "CA",
+				"amount": 2,
+				"vwap_7d": 299
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 110.66
+			},
+			{
+				"ticker": "TA",
+				"amount": 1,
+				"vwap_7d": 15240.65
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 1.4140271177152974,
+		"output_per_day": 38.46153846153846,
+		"average_traded_7d": 73
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CHA",
+				"amount": 1,
+				"vwap_7d": 64000
+			}
+		],
+		"recipe": "10xBOS 1xGV 1xHE=>1xCHA",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 61002.696155555546,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 116775.08162222222,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2316.62
+			},
+			{
+				"ticker": "BOS",
+				"amount": 10,
+				"vwap_7d": 3900
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 1.644764956819196,
+		"output_per_day": 2.7777777777777777,
+		"average_traded_7d": 0.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THP",
+				"amount": 4,
+				"vwap_7d": 6500
+			}
+		],
+		"recipe": "2xBE 2xCF 1xHE=>4xTHP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 33543.65448888891,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 147011.90106666664,
+		"input_costs": [
+			{
+				"ticker": "BE",
+				"amount": 2,
+				"vwap_7d": 1863.47
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 8500
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 6.944444444444445,
+		"logistics_per_area": 2.52804485285002,
+		"output_per_day": 27.77777777777778,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFE",
+				"amount": 1,
+				"vwap_7d": 74000
+			}
+		],
+		"recipe": "2xCF 1xCBS=>1xSFE",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 91546.49655000001,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 370953.50345,
+		"input_costs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42067.42
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 8500
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.4485980955611135,
+		"output_per_day": 6.25,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VF",
+				"amount": 2000,
+				"vwap_7d": 20
+			}
+		],
+		"recipe": "2xKRE 4xH=>2000xVF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 21826.092800000002,
+		"area": 33.4,
+		"capex": 66751.418,
+		"cost_per_day": 78173.9072,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 4,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "KRE",
+				"amount": 2,
+				"vwap_7d": 15000
+			}
+		],
+		"worker_consumable_cost_per_day": 1808.2071999999996,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 14.970060103310797,
+		"output_per_day": 5000.0,
+		"average_traded_7d": 6615.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LHP",
+				"amount": 4,
+				"vwap_7d": 5337.4
+			}
+		],
+		"recipe": "12xAL 1xHE=>4xLHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 24230.490366666665,
+		"area": 31.2,
+		"capex": 78481.352,
+		"cost_per_day": 64726.1763,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.341880341880342,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 50
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DEC",
+				"amount": 1,
+				"vwap_7d": 34387.5
+			}
+		],
+		"recipe": "150xPG 70xEPO=>1xDEC",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 21018.1283,
+		"area": 19.0,
+		"capex": 70146.991,
+		"cost_per_day": 64950.6217,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "EPO",
+				"amount": 70,
+				"vwap_7d": 238.5
+			}
+		],
+		"worker_consumable_cost_per_day": 1058.1217,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4078947304821524,
+		"output_per_day": 2.5,
+		"average_traded_7d": 6.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GC",
+				"amount": 10,
+				"vwap_7d": 623.97
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>10xGC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 14844.55726666667,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 11154.192733333333,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.717788480126705,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 485.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GIN",
+				"amount": 4,
+				"vwap_7d": 3557.56
+			}
+		],
+		"recipe": "2xGRN 2xDW 1xES 1xAMM=>4xGIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 20391.489384615383,
+		"area": 32.2,
+		"capex": 76961.016,
+		"cost_per_day": 6974.35676923077,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 1373.17
+			},
+			{
+				"ticker": "DW",
+				"amount": 2,
+				"vwap_7d": 110.95
+			}
+		],
+		"worker_consumable_cost_per_day": 2095.626,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.22336359082855106,
+		"output_per_day": 7.6923076923076925,
+		"average_traded_7d": 80.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AFR",
+				"amount": 1,
+				"vwap_7d": 25000
+			}
+		],
+		"recipe": "1xZR 1xAL=>1xAFR",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 13601.353333333338,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 38481.98,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "ZR",
+				"amount": 1,
+				"vwap_7d": 16400
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.6202957162293055,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 6830.96
+			}
+		],
+		"recipe": "1xMG 1xCU 1xS=>1xIND",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 9897.423100000002,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 11449.3269,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 159.76
+			},
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2604.4
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 110.66
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1155790519243216,
+		"output_per_day": 3.125,
+		"average_traded_7d": 40.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REA",
+				"amount": 10,
+				"vwap_7d": 1271.68
+			}
+		],
+		"recipe": "25xBRM=>10xREA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 9407.342742857145,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 13301.228685714286,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 25,
+				"vwap_7d": 242.72
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 4.1032037815126055,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 18.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOI",
+				"amount": 16,
+				"vwap_7d": 986.46
+			}
+		],
+		"recipe": "10xCLI 20xBRM=>16xSOI",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 8724.185600000003,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 11005.0144,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 20,
+				"vwap_7d": 242.72
+			},
+			{
+				"ticker": "CLI",
+				"amount": 10,
+				"vwap_7d": 197.72
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 3.409926505649791,
+		"output_per_day": 20.0,
+		"average_traded_7d": 49.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCC",
+				"amount": 10,
+				"vwap_7d": 847
+			}
+		],
+		"recipe": "1xRGO 300xPE=>10xHCC",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 10478.645,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 24813.021666666667,
+		"input_costs": [
+			{
+				"ticker": "RGO",
+				"amount": 1,
+				"vwap_7d": 2290
+			},
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.999999949968951,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 4
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FOD",
+				"amount": 16,
+				"vwap_7d": 506.28
+			}
+		],
+		"recipe": "5xNUT 5xMAI 5xVEG=>16xFOD",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 5955.673199999999,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 14295.5268,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 5,
+				"vwap_7d": 371.97
+			},
+			{
+				"ticker": "MAI",
+				"amount": 5,
+				"vwap_7d": 329.4
+			},
+			{
+				"ticker": "NUT",
+				"amount": 5,
+				"vwap_7d": 383.09
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.0000001192092896,
+		"output_per_day": 40.0,
+		"average_traded_7d": 77.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 25047.95
+			}
+		],
+		"recipe": "1xLTA 6xRG=>1xRTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 30773.8388,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 47501.00495,
+		"input_costs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4706.09
+			},
+			{
+				"ticker": "RG",
+				"amount": 6,
+				"vwap_7d": 1582.51
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.1171875,
+		"output_per_day": 3.125,
+		"average_traded_7d": 10.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HSE",
+				"amount": 2,
+				"vwap_7d": 20351.79
+			}
+		],
+		"recipe": "2xLSE 1xTCS=>2xHSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 30082.30755000001,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 97116.37995,
+		"input_costs": [
+			{
+				"ticker": "TCS",
+				"amount": 1,
+				"vwap_7d": 7239.23
+			},
+			{
+				"ticker": "LSE",
+				"amount": 2,
+				"vwap_7d": 11419.42
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.4843749850988388,
+		"output_per_day": 6.25,
+		"average_traded_7d": 35.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SSC",
+				"amount": 6,
+				"vwap_7d": 637.49
+			}
+		],
+		"recipe": "20xNFI 2xAL 1xHE=>6xSSC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 8140.265600000005,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 39671.484399999994,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "NFI",
+				"amount": 20,
+				"vwap_7d": 17.38
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 2.9735577507660937,
+		"output_per_day": 75.0,
+		"average_traded_7d": 179.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NA",
+				"amount": 2,
+				"vwap_7d": 25.06
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5215.73
+			}
+		],
+		"recipe": "3xHAL 1xH2O=>2xNA 1xCL",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 6474.744220689652,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 4874.070434482759,
+		"input_costs": [
+			{
+				"ticker": "HAL",
+				"amount": 3,
+				"vwap_7d": 357.73
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 2.155172413793103,
+		"logistics_per_area": 0.5316620366270021,
+		"output_per_day": 4.310344827586206,
+		"average_traded_7d": 3040.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RBH",
+				"amount": 1,
+				"vwap_7d": 26421.68
+			}
+		],
+		"recipe": "1xBBH 1xSTL 50xEPO=>1xRBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 26453.7138,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 56114.0362,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 238.5
+			},
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2885.68
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8085937390569597,
+		"output_per_day": 3.125,
+		"average_traded_7d": 20.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PBU",
+				"amount": 1,
+				"vwap_7d": 22812.5
+			}
+		],
+		"recipe": "40xDW 40xRAT 5xOVE 5xCOF 2xPWO 50xPE=>1xPBU",
+		"expertise": "MANUFACTURING",
+		"building": "PAC",
+		"profit_per_day": 21839.777600000012,
+		"area": 41.8,
+		"capex": 159136.106,
+		"cost_per_day": 120738.34739999998,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 40,
+				"vwap_7d": 174.53
+			},
+			{
+				"ticker": "PWO",
+				"amount": 2,
+				"vwap_7d": 328.41
+			},
+			{
+				"ticker": "DW",
+				"amount": 40,
+				"vwap_7d": 110.95
+			},
+			{
+				"ticker": "COF",
+				"amount": 5,
+				"vwap_7d": 1134.12
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "OVE",
+				"amount": 5,
+				"vwap_7d": 149.56
+			}
+		],
+		"worker_consumable_cost_per_day": 1766.9723999999999,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.03349279199669,
+		"output_per_day": 6.25,
+		"average_traded_7d": 12.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KOM",
+				"amount": 6,
+				"vwap_7d": 1289.45
+			}
+		],
+		"recipe": "4xDW 1xHER 1xAMM=>6xKOM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 10193.052571428574,
+		"area": 32.2,
+		"capex": 76961.016,
+		"cost_per_day": 17438.01885714286,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3713.58
+			},
+			{
+				"ticker": "DW",
+				"amount": 4,
+				"vwap_7d": 110.95
+			}
+		],
+		"worker_consumable_cost_per_day": 2095.626,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.26619343455639577,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 3022
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRU",
+				"amount": 6,
+				"vwap_7d": 678.2
+			}
+		],
+		"recipe": "2xAL 1xHE=>6xTRU",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 7121.953100000003,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 18310.5469,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.1634615384615383,
+		"output_per_day": 37.5,
+		"average_traded_7d": 226.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 6069.65
+			}
+		],
+		"recipe": "1xAL 1xBSE 1xHE=>1xFC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 7114.3906,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 11853.265649999998,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1889.32
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.3780048143548461,
+		"output_per_day": 3.125,
+		"average_traded_7d": 90.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 512.55
+			}
+		],
+		"recipe": "2xH2O=>4xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4573.195319999999,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1173.51528,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 779
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HMS",
+				"amount": 10,
+				"vwap_7d": 2543.06
+			}
+		],
+		"recipe": "1xNL 1xIND 6xGC=>10xHMS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": 11838.058857142853,
+		"area": 41.8,
+		"capex": 94086.02399999999,
+		"cost_per_day": 33573.726857142865,
+		"input_costs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7444.14
+			},
+			{
+				"ticker": "GC",
+				"amount": 6,
+				"vwap_7d": 623.97
+			},
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 6830.96
+			}
+		],
+		"worker_consumable_cost_per_day": 1397.0839999999998,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.07689678793237052,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 719
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 401.69
+			}
+		],
+		"recipe": "4xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4416.825293333333,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1588.1724133333332,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 3.737333333333333,
+		"logistics_per_area": 0.42712380952380946,
+		"output_per_day": 14.949333333333332,
+		"average_traded_7d": 1437.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AEF",
+				"amount": 1,
+				"vwap_7d": 6721.36
+			}
+		],
+		"recipe": "50xPG 1xNE=>1xAEF",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 7057.861999999999,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 9745.538,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "NE",
+				"amount": 1,
+				"vwap_7d": 410
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4098360655737705,
+		"output_per_day": 2.5,
+		"average_traded_7d": 80.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 3012.13
+			}
+		],
+		"recipe": "2xRAT 1xHER=>2xFIM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 4164.273200000001,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 10896.3768,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 2,
+				"vwap_7d": 174.53
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3713.58
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.1875000004656613,
+		"output_per_day": 5.0,
+		"average_traded_7d": 648.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HER",
+				"amount": 4,
+				"vwap_7d": 3713.58
+			}
+		],
+		"recipe": "4xH2O 1xDDT=>4xHER",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4273.456515,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 6135.708225,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 7258.78
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08008571428571429,
+		"output_per_day": 2.803,
+		"average_traded_7d": 431.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NST",
+				"amount": 4,
+				"vwap_7d": 4818.18
+			}
+		],
+		"recipe": "1xES 1xALG 1xTHF=>4xNST",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 37801.761900000005,
+		"area": 37.2,
+		"capex": 333792.848,
+		"cost_per_day": 10380.038099999998,
+		"input_costs": [
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 1373.17
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 476.31
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 326.41
+			}
+		],
+		"worker_consumable_cost_per_day": 4940.313099999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.14650537682476863,
+		"output_per_day": 10.0,
+		"average_traded_7d": 1.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 422.46
+			}
+		],
+		"recipe": "2xH2O 2xN 1xLST=>4xNS",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 5112.6106,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 5448.8894,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 158.56
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "N",
+				"amount": 2,
+				"vwap_7d": 115.01
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.090073526617797,
+		"output_per_day": 25.0,
+		"average_traded_7d": 2902.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 1990
+			}
+		],
+		"recipe": "10xPG=>1xPSS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 6998.645,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 5438.855,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.028409091332419353,
+		"output_per_day": 6.25,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSE",
+				"amount": 2,
+				"vwap_7d": 36613.45
+			}
+		],
+		"recipe": "2xBSE 1xSTL 225xEPO=>2xRSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 21233.16022857142,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 109529.1612,
+		"input_costs": [
+			{
+				"ticker": "BSE",
+				"amount": 2,
+				"vwap_7d": 1889.32
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			},
+			{
+				"ticker": "EPO",
+				"amount": 225,
+				"vwap_7d": 238.5
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.7790178449691407,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 24.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MED",
+				"amount": 16,
+				"vwap_7d": 1520.3
+			}
+		],
+		"recipe": "50xPE 1xAL 4xCOT 1xHER=>16xMED",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4980.235600000004,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 33027.2644,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 4,
+				"vwap_7d": 3517.96
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3713.58
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.38373161570395015,
+		"output_per_day": 25.0,
+		"average_traded_7d": 350.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TCS",
+				"amount": 3,
+				"vwap_7d": 7239.23
+			}
+		],
+		"recipe": "1xTC=>3xTCS",
+		"expertise": "CHEMISTRY",
+		"building": "TNP",
+		"profit_per_day": 43396.4866,
+		"area": 41.2,
+		"capex": 396571.104,
+		"cost_per_day": 10897.738399999998,
+		"input_costs": [
+			{
+				"ticker": "TC",
+				"amount": 1,
+				"vwap_7d": 2420
+			}
+		],
+		"worker_consumable_cost_per_day": 4847.738399999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.7160194290494455,
+		"output_per_day": 7.5,
+		"average_traded_7d": 1.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COF",
+				"amount": 3,
+				"vwap_7d": 1134.12
+			}
+		],
+		"recipe": "1xCAF 3xDW=>3xCOF",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3604.931533333332,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 10571.568466666668,
+		"input_costs": [
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 110.95
+			},
+			{
+				"ticker": "CAF",
+				"amount": 1,
+				"vwap_7d": 2026.78
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.3385416678308199,
+		"output_per_day": 12.5,
+		"average_traded_7d": 2761.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STL",
+				"amount": 2,
+				"vwap_7d": 2146.64
+			}
+		],
+		"recipe": "2xFE 8xO=>2xSTL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 4912.350428571428,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 10420.792428571429,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 8,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 876.85
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 4.038311753954206,
+		"output_per_day": 7.142857142857143,
+		"average_traded_7d": 405.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 7,
+				"vwap_7d": 110.95
+			}
+		],
+		"recipe": "10xH2O=>7xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3420.8482,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6287.2768,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5625000232830644,
+		"output_per_day": 87.5,
+		"average_traded_7d": 37217.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLX",
+				"amount": 10,
+				"vwap_7d": 297.76
+			}
+		],
+		"recipe": "1xLST=>10xFLX",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4582.0856,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 2861.9144,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 158.56
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.2509191194001366,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1665.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCL",
+				"amount": 2,
+				"vwap_7d": 8390
+			}
+		],
+		"recipe": "2xPSL 2xMFK 40xPG=>2xDCL",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 6236.573571428569,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 23727.712142857144,
+		"input_costs": [
+			{
+				"ticker": "PSL",
+				"amount": 2,
+				"vwap_7d": 4650.43
+			},
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "MFK",
+				"amount": 2,
+				"vwap_7d": 322.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.14123376844414548,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 0.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLP",
+				"amount": 6,
+				"vwap_7d": 836.6
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>6xFLP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 5338.6406000000015,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 7210.359399999999,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.1538461538461537,
+		"output_per_day": 15.0,
+		"average_traded_7d": 61.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NAB",
+				"amount": 20,
+				"vwap_7d": 135.77
+			}
+		],
+		"recipe": "1xNA 1xBOR 5xH=>20xNAB",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4440.693933333335,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 6873.472733333333,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.06
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 350
+			},
+			{
+				"ticker": "H",
+				"amount": 5,
+				"vwap_7d": 136.57
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.0723039215686274,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 60.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 401.69
+			}
+		],
+		"recipe": "1xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3454.6301399999998,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1049.11814,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 1437.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NUT",
+				"amount": 12,
+				"vwap_7d": 383.09
+			}
+		],
+		"recipe": "1xH2O=>12xNUT",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3329.0183666666658,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 966.1867133333334,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 0.9343333333333332,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 278
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 4,
+				"vwap_7d": 371.97
+			}
+		],
+		"recipe": "3xH2O=>4xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3294.541466666666,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1339.3781333333334,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 3,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 3.114444444444444,
+		"logistics_per_area": 0.3915301672163463,
+		"output_per_day": 12.457777777777777,
+		"average_traded_7d": 279.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7444.14
+			}
+		],
+		"recipe": "50xPG=>1xNL",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 8780.453000000001,
+		"area": 48.4,
+		"capex": 94990.33200000001,
+		"cost_per_day": 9829.897,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 2444.897,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.05836776834874114,
+		"output_per_day": 2.5,
+		"average_traded_7d": 171.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1233.1
+			}
+		],
+		"recipe": "6xALO 1xO 1xC 1xFLX=>4xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 4407.404,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 5868.4293333333335,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 297.76
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 153.44
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 1.1118371378291736,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 1963.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 10,
+				"vwap_7d": 110.95
+			}
+		],
+		"recipe": "10xH2O 1xPG=>10xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3051.5982,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 3882.7768,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 1,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.7820312616786396,
+		"output_per_day": 62.5,
+		"average_traded_7d": 37217.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 4,
+				"vwap_7d": 361.69
+			}
+		],
+		"recipe": "6xH2O=>4xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3211.3858000000005,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1857.6995500000003,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 6,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.40042857142857147,
+		"output_per_day": 14.015,
+		"average_traded_7d": 311.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 1829.4
+			}
+		],
+		"recipe": "10xLIO 4xHAL=>4xLI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 4296.2638484848485,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 9562.827060606061,
+		"input_costs": [
+			{
+				"ticker": "LIO",
+				"amount": 10,
+				"vwap_7d": 313
+			},
+			{
+				"ticker": "HAL",
+				"amount": 4,
+				"vwap_7d": 357.73
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 3.114669447759623,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 274.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4706.09
+			}
+		],
+		"recipe": "1xAL 5xGL=>1xLTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 4972.912,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 18557.538,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "GL",
+				"amount": 5,
+				"vwap_7d": 442.26
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.45573771335795277,
+		"output_per_day": 5.0,
+		"average_traded_7d": 86.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2847.8231999999985,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 5878.676800000001,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 371.97
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 326.41
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 329.4
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9687499888241291,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1448.55
+			}
+		],
+		"recipe": "2xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2994.223375,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 7156.490750000001,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 422.46
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.2803000101436462,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 388.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2792.2232000000004,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 5934.276799999999,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 326.41
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 329.4
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 383.09
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1041.43
+			}
+		],
+		"recipe": "4xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2820.3732000000005,
+		"area": 14.0,
+		"capex": 34254.694,
+		"cost_per_day": 2386.7768,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 4,
+				"vwap_7d": 329.4
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5316.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCM",
+				"amount": 2,
+				"vwap_7d": 5142.5
+			}
+		],
+		"recipe": "2xPSM 8xSFK 20xPG=>2xDCM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 5109.495000000001,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 20603.005,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "SFK",
+				"amount": 8,
+				"vwap_7d": 77.05
+			},
+			{
+				"ticker": "PSM",
+				"amount": 2,
+				"vwap_7d": 2872.33
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.11136363741984083,
+		"output_per_day": 5.0,
+		"average_traded_7d": 34.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 361.69
+			}
+		],
+		"recipe": "1xH2O=>2xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2881.7529999999997,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1173.51528,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 5.606,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 311.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 238.5
+			}
+		],
+		"recipe": "1xC 1xH 1xCL 1xO=>50xEPO",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 5714.528300000002,
+		"area": 19.0,
+		"capex": 70146.991,
+		"cost_per_day": 9191.721699999998,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5215.73
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			}
+		],
+		"worker_consumable_cost_per_day": 1058.1217,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.43822368950043855,
+		"output_per_day": 62.5,
+		"average_traded_7d": 11887
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MHL",
+				"amount": 1,
+				"vwap_7d": 5488.8
+			}
+		],
+		"recipe": "1xI 1xFE 1xHE=>1xMHL",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 4368.462028571429,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 5432.966542857143,
+		"input_costs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1184.28
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.8893543885058754,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 47.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALE",
+				"amount": 6,
+				"vwap_7d": 1485.44
+			}
+		],
+		"recipe": "2xGRN 3xDW 1xHOP 1xAMM=>6xALE",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 6218.260718749998,
+		"area": 32.2,
+		"capex": 76961.016,
+		"cost_per_day": 11189.23928125,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "HOP",
+				"amount": 1,
+				"vwap_7d": 3381.21
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 110.95
+			}
+		],
+		"worker_consumable_cost_per_day": 2095.626,
+		"runs_per_day": 1.953125,
+		"logistics_per_area": 0.2608210406438245,
+		"output_per_day": 11.71875,
+		"average_traded_7d": 1863.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 329.4
+			}
+		],
+		"recipe": "4xH2O=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2854.6039428571426,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1102.4312,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 1.0010714285714286,
+		"logistics_per_area": 0.4461918203684749,
+		"output_per_day": 12.012857142857143,
+		"average_traded_7d": 2033.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2684.473200000001,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6042.026799999999,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 371.97
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 359.08
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 329.4
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2671.4231999999997,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6055.076799999999,
+		"input_costs": [
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 361.69
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 371.97
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 329.4
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2628.8732,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6097.626799999999,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 329.4
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 359.08
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 383.09
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2615.8232000000003,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6110.676799999999,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 329.4
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 361.69
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 383.09
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 708.5
+			}
+		],
+		"recipe": "1xBGO 300xPE=>10xBGC",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 4370.770000000002,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 25150.06333333333,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2370.89
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.999999949968951,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 97.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FF",
+				"amount": 100,
+				"vwap_7d": 21.33
+			}
+		],
+		"recipe": "2xHE3 4xH=>100xFF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 5094.126133333334,
+		"area": 33.4,
+		"capex": 66751.418,
+		"cost_per_day": 12680.873866666667,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 4,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 379.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1808.2071999999996,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.4970059880239521,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 52568.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BHP",
+				"amount": 4,
+				"vwap_7d": 4770
+			}
+		],
+		"recipe": "12xAL 1xSTL 1xHE=>4xBHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 5829.490366666672,
+		"area": 31.2,
+		"capex": 78481.352,
+		"cost_per_day": 73670.50963333333,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.394631473379386,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 23.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2486.3731999999986,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6240.1268,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 326.41
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 371.97
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 401.69
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REP",
+				"amount": 4,
+				"vwap_7d": 887.55
+			}
+		],
+		"recipe": "1xMFK 1xSFK 10xINS=>4xREP",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 3930.557999999998,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 13820.442000000003,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 322.75
+			},
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 77.05
+			},
+			{
+				"ticker": "INS",
+				"amount": 10,
+				"vwap_7d": 199.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.24318182163617827,
+		"output_per_day": 20.0,
+		"average_traded_7d": 393.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 726.74
+			}
+		],
+		"recipe": "1xCU 300xPE=>10xBCO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 4157.8116666666665,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 26123.021666666667,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2604.4
+			},
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.602150538876172,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 457
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2430.773199999999,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6295.7268,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 326.41
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 383.09
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1041.43
+			}
+		],
+		"recipe": "4xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2458.9231999999997,
+		"area": 14.0,
+		"capex": 34254.694,
+		"cost_per_day": 2748.2268,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 401.69
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5316.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"recipe": "3xSIO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3425.862333333335,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 14987.304333333332,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 151.47
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 3.0568181565313632,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 325.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 59.08
+			}
+		],
+		"recipe": "1xH 1xC 1xMG=>50xPG",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 4889.521157142857,
+		"area": 19.0,
+		"capex": 70146.991,
+		"cost_per_day": 5660.478842857143,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 110.66
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			}
+		],
+		"worker_consumable_cost_per_day": 1058.1217,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.48684210733587585,
+		"output_per_day": 178.57142857142858,
+		"average_traded_7d": 44331.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2323.0231999999996,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6403.4767999999995,
+		"input_costs": [
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 359.08
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 371.97
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 401.69
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MPC",
+				"amount": 10,
+				"vwap_7d": 2490
+			}
+		],
+		"recipe": "10xSWF 10xTRN 10xBCO=>10xMPC",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 29192.514766666667,
+		"area": 39.2,
+		"capex": 422148.944,
+		"cost_per_day": 44914.62809047619,
+		"input_costs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 496.2
+			},
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 726.74
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 225.11
+			}
+		],
+		"worker_consumable_cost_per_day": 1817.9019,
+		"runs_per_day": 2.9761904761904763,
+		"logistics_per_area": 0.00683309035001805,
+		"output_per_day": 29.761904761904763,
+		"average_traded_7d": 8.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NG",
+				"amount": 10,
+				"vwap_7d": 1500
+			}
+		],
+		"recipe": "10xGL 10xNCS=>10xNG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 7836.352833333334,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 7788.6471666666675,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 442.26
+			},
+			{
+				"ticker": "NCS",
+				"amount": 10,
+				"vwap_7d": 37.21
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 0.012522769132578146,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 3.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2309.9732,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6416.5268,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 361.69
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 371.97
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 27532.61
+			}
+		],
+		"recipe": "75xPG 5xTCL=>1xKV",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 6493.868625000002,
+		"area": 48.4,
+		"capex": 94990.33200000001,
+		"cost_per_day": 36525.8345,
+		"input_costs": [
+			{
+				"ticker": "TCL",
+				"amount": 5,
+				"vwap_7d": 3476.16
+			},
+			{
+				"ticker": "PG",
+				"amount": 75,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 2444.897,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.05326704468485738,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 85.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1582.51
+			}
+		],
+		"recipe": "10xGL 15xPG 1xSEN=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 7669.082,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 9532.113652173912,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 442.26
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 890.11
+			},
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 1.0869565217391304,
+		"logistics_per_area": 0.009503445450201485,
+		"output_per_day": 10.869565217391305,
+		"average_traded_7d": 279.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2267.4232,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6459.076799999999,
+		"input_costs": [
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 383.09
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 359.08
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 174.53
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2254.3731999999995,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 6472.1268,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 383.09
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 361.69
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 30183.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LBH",
+				"amount": 1,
+				"vwap_7d": 5089.8
+			}
+		],
+		"recipe": "35xPE 3xAL=>1xLBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 3723.462000000003,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 21725.537999999997,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 35,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3852459238078751,
+		"output_per_day": 5.0,
+		"average_traded_7d": 359.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCS",
+				"amount": 2,
+				"vwap_7d": 2146.79
+			}
+		],
+		"recipe": "4xSFK 10xPG 1xPSS=>2xDCS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 4106.0616666666665,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 13783.855,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 4,
+				"vwap_7d": 77.05
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 1990
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.03787878844322581,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 22.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1233.1
+			}
+		],
+		"recipe": "6xALO 1xC 1xO=>3xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3135.478999999999,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 6112.771000000001,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 153.44
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.3057954744859175,
+		"output_per_day": 7.5,
+		"average_traded_7d": 1963.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 2311.67
+			}
+		],
+		"recipe": "4xTIO 1xC 1xO=>2xTI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3114.412333333333,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 4591.154333333334,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "TIO",
+				"amount": 4,
+				"vwap_7d": 261.32
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.7356818336429017,
+		"output_per_day": 3.333333333333333,
+		"average_traded_7d": 679
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3517.96
+			}
+		],
+		"recipe": "1xRCO=>1xCOT",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 6177.644666666666,
+		"area": 48.4,
+		"capex": 94990.33200000001,
+		"cost_per_day": 8480.522,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1448.55
+			}
+		],
+		"worker_consumable_cost_per_day": 2444.897,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.08608815426997246,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 146.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1582.51
+			}
+		],
+		"recipe": "10xGL 15xPG=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 7317.658923076922,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 7898.783384615384,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 442.26
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 0.9615384615384616,
+		"logistics_per_area": 0.008406894052101314,
+		"output_per_day": 9.615384615384615,
+		"average_traded_7d": 279.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1448.55
+			}
+		],
+		"recipe": "2xH2O=>1xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2251.5218083333334,
+		"area": 35.0,
+		"capex": 35366.105,
+		"cost_per_day": 1132.0495666666666,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.3358333333333334,
+		"logistics_per_area": 0.06673809523809524,
+		"output_per_day": 2.3358333333333334,
+		"average_traded_7d": 388.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RDE",
+				"amount": 2,
+				"vwap_7d": 35954.37
+			}
+		],
+		"recipe": "1xLDE 100xEPO 1xKV=>2xRDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 12063.03522857144,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 116345.42905714286,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 12022.28
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 27532.61
+			},
+			{
+				"ticker": "EPO",
+				"amount": 100,
+				"vwap_7d": 238.5
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.2566964235822005,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 36
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 100,
+				"vwap_7d": 16.03
+			}
+		],
+		"recipe": "1xAMM 2xGAL 3xH=>100xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 4158.7928,
+		"area": 33.4,
+		"capex": 66751.418,
+		"cost_per_day": 9199.540533333333,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 2,
+				"vwap_7d": 169.38
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "H",
+				"amount": 3,
+				"vwap_7d": 136.57
+			}
+		],
+		"worker_consumable_cost_per_day": 1808.2071999999996,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.5194610768776693,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 215847.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 8,
+				"vwap_7d": 512.55
+			}
+		],
+		"recipe": "14xH2O 1xNS=>8xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 8113.6187,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 4700.1313,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 14,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 422.46
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1682242990654206,
+		"output_per_day": 25.0,
+		"average_traded_7d": 779
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DDT",
+				"amount": 3,
+				"vwap_7d": 7258.78
+			}
+		],
+		"recipe": "1xC 1xH 1xCL=>3xDDT",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 20697.37023333333,
+		"area": 37.2,
+		"capex": 333792.848,
+		"cost_per_day": 15596.529766666665,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5215.73
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 136.57
+			}
+		],
+		"worker_consumable_cost_per_day": 4940.313099999999,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.2473118301067087,
+		"output_per_day": 5.0,
+		"average_traded_7d": 78.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2647.31
+			}
+		],
+		"recipe": "150xPE=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 2788.404733333333,
+		"area": 27.0,
+		"capex": 45975.858,
+		"cost_per_day": 8242.053600000001,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 1479.5536,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.23148148148148148,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 582.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2828.966499999998,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 10980.908500000001,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 151.47
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.488920431245457,
+		"output_per_day": 6.25,
+		"average_traded_7d": 325.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1041.43
+			}
+		],
+		"recipe": "4xHCP 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2019.1625939393944,
+		"area": 14.0,
+		"capex": 34254.694,
+		"cost_per_day": 5870.458618181818,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 329.4
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 512.55
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 5316.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAF",
+				"amount": 2,
+				"vwap_7d": 2026.78
+			}
+		],
+		"recipe": "22xH2O 3xNS=>2xCAF",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 7610.7812,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 12657.018799999998,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 3,
+				"vwap_7d": 422.46
+			},
+			{
+				"ticker": "H2O",
+				"amount": 22,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.448598162871655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 130.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WAL",
+				"amount": 4,
+				"vwap_7d": 7064.52
+			}
+		],
+		"recipe": "1xW 3xAL=>4xWAL",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 19271.895000000008,
+		"area": 44.2,
+		"capex": 331523.768,
+		"cost_per_day": 69034.605,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 15640
+			}
+		],
+		"worker_consumable_cost_per_day": 8599.2925,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.7675339366515836,
+		"output_per_day": 12.5,
+		"average_traded_7d": 8.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSM",
+				"amount": 1,
+				"vwap_7d": 2872.33
+			}
+		],
+		"recipe": "20xPG=>1xPSM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3537.17625,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 5438.855,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.05681818266483871,
+		"output_per_day": 3.125,
+		"average_traded_7d": 117.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "INS",
+				"amount": 24,
+				"vwap_7d": 199.44
+			}
+		],
+		"recipe": "100xPE 1xAR 1xTHF=>24xINS",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 10751.188799999996,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 13181.6112,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 476.31
+			},
+			{
+				"ticker": "AR",
+				"amount": 1,
+				"vwap_7d": 453.53
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.4230000050738454,
+		"output_per_day": 120.0,
+		"average_traded_7d": 17265.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FAL",
+				"amount": 6,
+				"vwap_7d": 2500
+			}
+		],
+		"recipe": "3xAL 3xFE=>6xFAL",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 18494.92625,
+		"area": 44.2,
+		"capex": 331523.768,
+		"cost_per_day": 28380.07375,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 876.85
+			}
+		],
+		"worker_consumable_cost_per_day": 8599.2925,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.2427884870255155,
+		"output_per_day": 18.75,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TUB",
+				"amount": 20,
+				"vwap_7d": 294
+			}
+		],
+		"recipe": "10xGL=>20xTUB",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 6314.5819999999985,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 30435.418000000005,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 442.26
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.02732240566932927,
+		"output_per_day": 125.0,
+		"average_traded_7d": 17.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1041.43
+			}
+		],
+		"recipe": "4xHCP=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 1904.6232000000005,
+		"area": 14.0,
+		"capex": 34254.694,
+		"cost_per_day": 3302.5268,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 512.55
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5316.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CF",
+				"amount": 1,
+				"vwap_7d": 8500
+			}
+		],
+		"recipe": "4xAL 1xSI 2xO=>1xCF",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2611.904000000001,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 23950.596,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 2,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.189062535762787,
+		"output_per_day": 3.125,
+		"average_traded_7d": 5.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "UTS",
+				"amount": 1,
+				"vwap_7d": 6963.85
+			}
+		],
+		"recipe": "2xSFK 6xFE=>1xUTS",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 3093.176249999999,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 18668.855000000003,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 6,
+				"vwap_7d": 876.85
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 77.05
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 4.770564559787031,
+		"output_per_day": 3.125,
+		"average_traded_7d": 14.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 12022.28
+			}
+		],
+		"recipe": "3xAL 1xNL=>1xLDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 3058.6620000000003,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 57052.738000000005,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7444.14
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.5131147767676683,
+		"output_per_day": 5.0,
+		"average_traded_7d": 86.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SCN",
+				"amount": 8,
+				"vwap_7d": 2630.86
+			}
+		],
+		"recipe": "100xPE 4xCU=>8xSCN",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 8198.728333333334,
+		"area": 36.0,
+		"capex": 154763.02000000002,
+		"cost_per_day": 13725.105000000001,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 4,
+				"vwap_7d": 2604.4
+			},
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 1.0613426007761586,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 72.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2316.62
+			}
+		],
+		"recipe": "1xAL 1xHE=>1xGV",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 2841.2406,
+		"area": 26.0,
+		"capex": 53857.98700000001,
+		"cost_per_day": 8741.8594,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			}
+		],
+		"worker_consumable_cost_per_day": 1294.6094,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.5471153929829597,
+		"output_per_day": 5.0,
+		"average_traded_7d": 50.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 18,
+				"vwap_7d": 3381.21
+			}
+		],
+		"recipe": "40xH2O 2xDDT 4xSOI=>18xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 29482.499568571424,
+		"area": 129.8,
+		"capex": 564249.18,
+		"cost_per_day": 19259.091671428567,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 4,
+				"vwap_7d": 986.46
+			},
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 7258.78
+			}
+		],
+		"worker_consumable_cost_per_day": 3050.8642999999993,
+		"runs_per_day": 0.8008571428571427,
+		"logistics_per_area": 0.11105877173673781,
+		"output_per_day": 14.415428571428569,
+		"average_traded_7d": 67.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 6,
+				"vwap_7d": 5000
+			}
+		],
+		"recipe": "30xH2O 1xDDT 3xSOI=>6xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 29272.000275000006,
+		"area": 129.8,
+		"capex": 564249.18,
+		"cost_per_day": 23284.249725,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 3,
+				"vwap_7d": 986.46
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 7258.78
+			},
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 3050.8642999999993,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.12282020538705953,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1041.43
+			}
+		],
+		"recipe": "4xHCP 2xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 1745.3368363636368,
+		"area": 14.0,
+		"capex": 34254.694,
+		"cost_per_day": 6144.284375757576,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 512.55
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 401.69
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 5316.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1041.43
+			}
+		],
+		"recipe": "4xHCP 2xGRN 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 1734.9959272727297,
+		"area": 14.0,
+		"capex": 34254.694,
+		"cost_per_day": 14044.246496969696,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 329.4
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 401.69
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 512.55
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.4350649350649354,
+		"output_per_day": 15.151515151515152,
+		"average_traded_7d": 5316.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 442.26
+			}
+		],
+		"recipe": "2xSIO 1xNA=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 5736.248666666668,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 3477.501333333333,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 151.47
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.06
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2589936220580763,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 1506.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEN",
+				"amount": 20,
+				"vwap_7d": 890.11
+			}
+		],
+		"recipe": "20xTRN 10xH 10xN=>20xSEN",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 21295.89120344828,
+		"area": 39.2,
+		"capex": 422148.944,
+		"cost_per_day": 55437.72948620688,
+		"input_costs": [
+			{
+				"ticker": "N",
+				"amount": 10,
+				"vwap_7d": 115.01
+			},
+			{
+				"ticker": "H",
+				"amount": 10,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "TRN",
+				"amount": 20,
+				"vwap_7d": 496.2
+			}
+		],
+		"worker_consumable_cost_per_day": 1817.9019,
+		"runs_per_day": 4.310344827586206,
+		"logistics_per_area": 2.2013546799074097,
+		"output_per_day": 86.20689655172413,
+		"average_traded_7d": 245.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFK",
+				"amount": 8,
+				"vwap_7d": 322.75
+			}
+		],
+		"recipe": "1xSTL=>8xMFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 2788.645000000002,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 24107.188333333335,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.6377687851587934,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 417.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSL",
+				"amount": 1,
+				"vwap_7d": 4650.43
+			}
+		],
+		"recipe": "40xPG=>1xPSL",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3018.707500000001,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 6669.6883333333335,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.07575757688645161,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 159.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2885.68
+			}
+		],
+		"recipe": "2xFE 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 2207.64336969697,
+		"area": 27.0,
+		"capex": 45975.858,
+		"cost_per_day": 8722.962690909091,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 876.85
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 158.56
+			}
+		],
+		"worker_consumable_cost_per_day": 1479.5536,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.592312031991019,
+		"output_per_day": 3.787878787878788,
+		"average_traded_7d": 815
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 150,
+				"vwap_7d": 16.03
+			}
+		],
+		"recipe": "1xAMM 5xNAB=>150xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 3151.6678,
+		"area": 33.4,
+		"capex": 66751.418,
+		"cost_per_day": 4362.3947,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "NAB",
+				"amount": 5,
+				"vwap_7d": 135.77
+			}
+		],
+		"worker_consumable_cost_per_day": 1808.2071999999996,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8420658494418343,
+		"output_per_day": 468.75,
+		"average_traded_7d": 215847.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MCG",
+				"amount": 50,
+				"vwap_7d": 36.26
+			}
+		],
+		"recipe": "4xLST 2xSIO=>50xMCG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2529.6579999999994,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 6535.342000000001,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 151.47
+			},
+			{
+				"ticker": "LST",
+				"amount": 4,
+				"vwap_7d": 158.56
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 3.2954545454545454,
+		"output_per_day": 250.0,
+		"average_traded_7d": 15335.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 12,
+				"vwap_7d": 442.26
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xFLX=>12xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 5333.193111111111,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 3880.5568888888884,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 151.47
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 297.76
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.06
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 1.7361111111111112,
+		"logistics_per_area": 0.227686700834675,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 1506.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO 1xFLX=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2229.758166666664,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 20786.700166666673,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 151.47
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 297.76
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 4.266571930863641,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 325.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 442.26
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xSEN=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 5217.0570000000025,
+		"area": 36.6,
+		"capex": 113357.48800000001,
+		"cost_per_day": 5839.442999999999,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.06
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 890.11
+			},
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 151.47
+			}
+		],
+		"worker_consumable_cost_per_day": 2794.1679999999997,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.31086065248386485,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1506.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 4,
+				"vwap_7d": 876.85
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO 1xFLX=>4xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2115.279,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 5191.8043333333335,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 297.76
+			},
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 99.31
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 3.697064451195977,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 654.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1889.32
+			}
+		],
+		"recipe": "1xFE 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 1997.1963999999996,
+		"area": 27.0,
+		"capex": 45975.858,
+		"cost_per_day": 7449.403600000001,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 158.56
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			}
+		],
+		"worker_consumable_cost_per_day": 1479.5536,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 2.4692592797455966,
+		"output_per_day": 5.0,
+		"average_traded_7d": 1295.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 149.56
+			}
+		],
+		"recipe": "1xRCO 50xPE=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2324.099666666666,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 10139.233666666667,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1448.55
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.28409090697426687,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 3863.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NFI",
+				"amount": 1200,
+				"vwap_7d": 17.38
+			}
+		],
+		"recipe": "10xC 2xSI=>1200xNFI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 7628.090299999998,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 24959.4097,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2209.58
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1041.43
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.8691589672849556,
+		"output_per_day": 1875.0,
+		"average_traded_7d": 1590.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MG",
+				"amount": 6,
+				"vwap_7d": 110.66
+			}
+		],
+		"recipe": "1xMGS=>6xMG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2286.078833333334,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 4630.171166666667,
+		"input_costs": [
+			{
+				"ticker": "MGS",
+				"amount": 1,
+				"vwap_7d": 266.95
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 0.8191287969097947,
+		"output_per_day": 62.50000000000001,
+		"average_traded_7d": 2225.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 6,
+				"vwap_7d": 371.97
+			}
+		],
+		"recipe": "16xH2O 1xNS=>6xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 5432.181200000001,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 8516.6938,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 422.46
+			},
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.9275701352369006,
+		"output_per_day": 37.5,
+		"average_traded_7d": 279.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2645.13
+			}
+		],
+		"recipe": "10xSWF 5xBCO 60xPE 1xBGO=>5xPCB",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 17471.20524285715,
+		"area": 39.2,
+		"capex": 422148.944,
+		"cost_per_day": 41571.87511428571,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 60,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "BCO",
+				"amount": 5,
+				"vwap_7d": 726.74
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2370.89
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 225.11
+			}
+		],
+		"worker_consumable_cost_per_day": 1817.9019,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 2.2748496356955115,
+		"output_per_day": 22.321428571428573,
+		"average_traded_7d": 224
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TSH",
+				"amount": 1,
+				"vwap_7d": 48315.07
+			}
+		],
+		"recipe": "150xPE 2xLBH 2xTHP=>1xTSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 38206.259300000005,
+		"area": 50.4,
+		"capex": 924167.1740000001,
+		"cost_per_day": 62450.13653333334,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "THP",
+				"amount": 2,
+				"vwap_7d": 6500
+			},
+			{
+				"ticker": "LBH",
+				"amount": 2,
+				"vwap_7d": 5089.8
+			}
+		],
+		"worker_consumable_cost_per_day": 10778.053199999998,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2604166694692578,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 10.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "S",
+				"amount": 6,
+				"vwap_7d": 159.76
+			}
+		],
+		"recipe": "1xSCR 1xO=>6xS",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 1972.5706666666665,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 2021.4293333333335,
+		"input_costs": [
+			{
+				"ticker": "SCR",
+				"amount": 1,
+				"vwap_7d": 150.06
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.6043560577161385,
+		"output_per_day": 25.0,
+		"average_traded_7d": 236
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COM",
+				"amount": 1,
+				"vwap_7d": 132500
+			}
+		],
+		"recipe": "1xBWS 1xAAR 4xRAD=>1xCOM",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 60294.7402,
+		"area": 51.6,
+		"capex": 1483157.556,
+		"cost_per_day": 160538.5931333333,
+		"input_costs": [
+			{
+				"ticker": "RAD",
+				"amount": 4,
+				"vwap_7d": 12000
+			},
+			{
+				"ticker": "AAR",
+				"amount": 1,
+				"vwap_7d": 16000
+			},
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 26800
+			}
+		],
+		"worker_consumable_cost_per_day": 9205.2598,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.04844961240310077,
+		"output_per_day": 1.6666666666666665,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALG",
+				"amount": 12,
+				"vwap_7d": 326.41
+			}
+		],
+		"recipe": "16xH2O 2xNS=>12xALG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 5122.570088888889,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 5757.763244444444,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 422.46
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 1.557632398753894,
+		"output_per_day": 33.33333333333333,
+		"average_traded_7d": 135.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 12,
+				"vwap_7d": 359.08
+			}
+		],
+		"recipe": "4xNS=>12xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 5109.481199999999,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 5662.9187999999995,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 422.46
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.4018691588785048,
+		"output_per_day": 30.0,
+		"average_traded_7d": 216.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSH",
+				"amount": 1,
+				"vwap_7d": 10000
+			}
+		],
+		"recipe": "1xTI 250xNFI=>1xPSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 7325.4950499999995,
+		"area": 40.0,
+		"capex": 192337.624,
+		"cost_per_day": 23924.50495,
+		"input_costs": [
+			{
+				"ticker": "NFI",
+				"amount": 250,
+				"vwap_7d": 17.38
+			},
+			{
+				"ticker": "TI",
+				"amount": 1,
+				"vwap_7d": 2311.67
+			}
+		],
+		"worker_consumable_cost_per_day": 3122.4112,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9765625296859071,
+		"output_per_day": 3.125,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SWF",
+				"amount": 30,
+				"vwap_7d": 225.11
+			}
+		],
+		"recipe": "1xSI 1xAL=>30xSWF",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 6494.421550000001,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 10388.828449999999,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3916666700832569,
+		"output_per_day": 75.0,
+		"average_traded_7d": 256.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 15,
+				"vwap_7d": 3381.21
+			}
+		],
+		"recipe": "60xH2O 2xDDT=>15xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 20450.742042500002,
+		"area": 129.8,
+		"capex": 564249.18,
+		"cost_per_day": 15090.001569999999,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 7258.78
+			},
+			{
+				"ticker": "H2O",
+				"amount": 60,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 3050.8642999999993,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08098035439137134,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 67.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PE",
+				"amount": 200,
+				"vwap_7d": 10.82
+			}
+		],
+		"recipe": "1xC 2xH=>200xPE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1942.6562142857138,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 7718.0580714285725,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 2,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 0.6087662337662337,
+		"output_per_day": 892.8571428571429,
+		"average_traded_7d": 180853.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFK",
+				"amount": 16,
+				"vwap_7d": 77.05
+			}
+		],
+		"recipe": "1xFE=>16xSFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 1961.4574999999995,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 10880.209166666667,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.64583335768792,
+		"output_per_day": 166.66666666666669,
+		"average_traded_7d": 352.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1184.28
+			}
+		],
+		"recipe": "3xCLI=>1xI",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1845.058,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 5556.692,
+		"input_costs": [
+			{
+				"ticker": "CLI",
+				"amount": 3,
+				"vwap_7d": 197.72
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.062500065023249,
+		"output_per_day": 6.25,
+		"average_traded_7d": 123.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 5,
+				"vwap_7d": 5000
+			}
+		],
+		"recipe": "40xH2O 1xDDT=>5xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 19325.512730000002,
+		"area": 129.8,
+		"capex": 564249.18,
+		"cost_per_day": 15711.987269999998,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 7258.78
+			}
+		],
+		"worker_consumable_cost_per_day": 3050.8642999999993,
+		"runs_per_day": 1.4015,
+		"logistics_per_area": 0.08756675782924853,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 26800
+			}
+		],
+		"recipe": "1xMB 1xDCM 1xHD=>1xBWS",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 18219.8808,
+		"area": 40.6,
+		"capex": 539852.612,
+		"cost_per_day": 48780.1192,
+		"input_costs": [
+			{
+				"ticker": "HD",
+				"amount": 1,
+				"vwap_7d": 4400
+			},
+			{
+				"ticker": "DCM",
+				"amount": 1,
+				"vwap_7d": 5142.5
+			},
+			{
+				"ticker": "MB",
+				"amount": 1,
+				"vwap_7d": 9000
+			}
+		],
+		"worker_consumable_cost_per_day": 2423.8691999999996,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.15240147838304782,
+		"output_per_day": 2.5,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 496.2
+			}
+		],
+		"recipe": "1xAL 1xSI=>10xTRN",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 5814.47155,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 18995.528449999998,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.7833333401665138,
+		"output_per_day": 50.0,
+		"average_traded_7d": 2372.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 7,
+				"vwap_7d": 521.44
+			}
+		],
+		"recipe": "1xSTL 1xTRN=>7xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1747.843714285717,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 11288.156285714285,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			},
+			{
+				"ticker": "TRN",
+				"amount": 1,
+				"vwap_7d": 496.2
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2745129715389718,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1174
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAC",
+				"amount": 10,
+				"vwap_7d": 2851.46
+			}
+		],
+		"recipe": "1xHCP 1xO 1xS=>10xBAC",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 10814.88008181818,
+		"area": 37.2,
+		"capex": 333792.848,
+		"cost_per_day": 5386.59719090909,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 159.76
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 512.55
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			}
+		],
+		"worker_consumable_cost_per_day": 4940.313099999999,
+		"runs_per_day": 0.5681818181818181,
+		"logistics_per_area": 0.03758858787378374,
+		"output_per_day": 5.681818181818182,
+		"average_traded_7d": 53.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FET",
+				"amount": 4,
+				"vwap_7d": 3493.62
+			}
+		],
+		"recipe": "1xFE 3xTI=>4xFET",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 10658.894999999997,
+		"area": 44.2,
+		"capex": 331523.768,
+		"cost_per_day": 33011.354999999996,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			},
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 2311.67
+			}
+		],
+		"worker_consumable_cost_per_day": 8599.2925,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.937217167599708,
+		"output_per_day": 12.5,
+		"average_traded_7d": 91.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LSE",
+				"amount": 1,
+				"vwap_7d": 11419.42
+			}
+		],
+		"recipe": "120xPG 3xAL=>1xLSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 1817.062000000002,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 55280.038,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "PG",
+				"amount": 120,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3672131400738583,
+		"output_per_day": 5.0,
+		"average_traded_7d": 177.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBM",
+				"amount": 1,
+				"vwap_7d": 71900
+			}
+		],
+		"recipe": "8xLI 8xBE 40xBGC 120xPG=>1xCBM",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 19737.773400000005,
+		"area": 40.2,
+		"capex": 635389.868,
+		"cost_per_day": 204949.7266,
+		"input_costs": [
+			{
+				"ticker": "BGC",
+				"amount": 40,
+				"vwap_7d": 708.5
+			},
+			{
+				"ticker": "LI",
+				"amount": 8,
+				"vwap_7d": 1829.4
+			},
+			{
+				"ticker": "BE",
+				"amount": 8,
+				"vwap_7d": 1863.47
+			},
+			{
+				"ticker": "PG",
+				"amount": 120,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.5360696801037725,
+		"output_per_day": 3.125,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1763.43
+			}
+		],
+		"recipe": "1xFE 50xPE=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 1400.279733333335,
+		"area": 27.0,
+		"capex": 45975.858,
+		"cost_per_day": 13294.970266666665,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 10.82
+			}
+		],
+		"worker_consumable_cost_per_day": 1479.5536,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 2.5845679201553633,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 200.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MEA",
+				"amount": 2,
+				"vwap_7d": 4260
+			}
+		],
+		"recipe": "2xFIM 1xMTP=>2xMEA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1011.4539692307682,
+		"area": 16.0,
+		"capex": 33539.334,
+		"cost_per_day": 15373.161415384617,
+		"input_costs": [
+			{
+				"ticker": "MTP",
+				"amount": 1,
+				"vwap_7d": 1585.1
+			},
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 3012.13
+			}
+		],
+		"worker_consumable_cost_per_day": 739.7768,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.2403846153846154,
+		"output_per_day": 3.8461538461538463,
+		"average_traded_7d": 54.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NR",
+				"amount": 50,
+				"vwap_7d": 478.43
+			}
+		],
+		"recipe": "50xEPO 75xNCS=>50xNR",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 9443.671275,
+		"area": 37.2,
+		"capex": 333792.848,
+		"cost_per_day": 27933.672475,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 75,
+				"vwap_7d": 37.21
+			},
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 238.5
+			}
+		],
+		"worker_consumable_cost_per_day": 4940.313099999999,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.17221102235032626,
+		"output_per_day": 78.125,
+		"average_traded_7d": 1064.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VG",
+				"amount": 20,
+				"vwap_7d": 2179.13
+			}
+		],
+		"recipe": "2xVIT 4xREA 2xBAC 2xBL=>20xVG",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 17239.853900000002,
+		"area": 41.8,
+		"capex": 615271.436,
+		"cost_per_day": 37238.3961,
+		"input_costs": [
+			{
+				"ticker": "REA",
+				"amount": 4,
+				"vwap_7d": 1271.68
+			},
+			{
+				"ticker": "BL",
+				"amount": 2,
+				"vwap_7d": 7018.84
+			},
+			{
+				"ticker": "VIT",
+				"amount": 2,
+				"vwap_7d": 784.99
+			},
+			{
+				"ticker": "BAC",
+				"amount": 2,
+				"vwap_7d": 2851.46
+			}
+		],
+		"worker_consumable_cost_per_day": 4241.7711,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.1357655495440846,
+		"output_per_day": 25.0,
+		"average_traded_7d": 44.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 326.2
+			}
+		],
+		"recipe": "10xOVE 1xAL=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1483.683000000001,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 18903.817,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 149.56
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.8238636486401613,
+		"output_per_day": 62.5,
+		"average_traded_7d": 857.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 876.85
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO=>3xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 1275.5540000000005,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 5300.821,
+		"input_costs": [
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 99.31
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.408068250526082,
+		"output_per_day": 7.5,
+		"average_traded_7d": 654.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AHP",
+				"amount": 4,
+				"vwap_7d": 12000
+			}
+		],
+		"recipe": "8xAL 10xFET 1xHE=>4xAHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 2083.9625888888904,
+		"area": 31.2,
+		"capex": 78481.352,
+		"cost_per_day": 64582.70407777777,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 8,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "FET",
+				"amount": 10,
+				"vwap_7d": 3493.62
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 4.017316569783791,
+		"output_per_day": 5.555555555555555,
+		"average_traded_7d": 0.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HD",
+				"amount": 5,
+				"vwap_7d": 4400
+			}
+		],
+		"recipe": "1xRG 5xDCS 5xLDI=>5xHD",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 13058.814444776119,
+		"area": 40.2,
+		"capex": 512067.068,
+		"cost_per_day": 27985.961674626866,
+		"input_costs": [
+			{
+				"ticker": "LDI",
+				"amount": 5,
+				"vwap_7d": 332
+			},
+			{
+				"ticker": "DCS",
+				"amount": 5,
+				"vwap_7d": 2146.79
+			},
+			{
+				"ticker": "RG",
+				"amount": 1,
+				"vwap_7d": 1582.51
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.46409742333110565,
+		"output_per_day": 9.328358208955224,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRO",
+				"amount": 3,
+				"vwap_7d": 2482.58
+			}
+		],
+		"recipe": "1xAL 2xCU=>3xBRO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 1396.8950000000004,
+		"area": 31.0,
+		"capex": 57068.5,
+		"cost_per_day": 21877.2925,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2604.4
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.6401208293053413,
+		"output_per_day": 9.375,
+		"average_traded_7d": 4.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 32938.46
+			}
+		],
+		"recipe": "16xSEN 4xPCB=>1xSAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 12718.257665671643,
+		"area": 40.6,
+		"capex": 539852.612,
+		"cost_per_day": 48734.09308059701,
+		"input_costs": [
+			{
+				"ticker": "SEN",
+				"amount": 16,
+				"vwap_7d": 890.11
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2645.13
+			}
+		],
+		"worker_consumable_cost_per_day": 2423.8691999999996,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.09190500698478053,
+		"output_per_day": 1.8656716417910448,
+		"average_traded_7d": 18.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1448.55
+			}
+		],
+		"recipe": "10xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2899.52210909091,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 13561.273345454545,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 422.46
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 44.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.1682243322986818,
+		"output_per_day": 11.363636363636365,
+		"average_traded_7d": 388.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NCS",
+				"amount": 100,
+				"vwap_7d": 37.21
+			}
+		],
+		"recipe": "1xC=>100xNCS",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 3800.30905,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 3951.7742833333336,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1041.43
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18172378546383275,
+		"output_per_day": 208.33333333333334,
+		"average_traded_7d": 3483
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 4,
+				"vwap_7d": 359.08
+			}
+		],
+		"recipe": "1xNS=>4xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2786.097866666667,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 3198.5688,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 422.46
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.7788161993769471,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 216.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 15500
+			}
+		],
+		"recipe": "=>1xBAI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6657.663500000001,
+		"area": 27.0,
+		"capex": 320920.08,
+		"cost_per_day": 3029.8365,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3029.8365,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00023148147630746717,
+		"output_per_day": 0.625,
+		"average_traded_7d": 0.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 6,
+				"vwap_7d": 521.44
+			}
+		],
+		"recipe": "1xSTL 2xSFK=>6xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1107.3437142857165,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 10066.370571428572,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 77.05
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.287337646565654,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 1174
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THF",
+				"amount": 20,
+				"vwap_7d": 476.31
+			}
+		],
+		"recipe": "4xAMM 4xH2O 4xNA=>20xTHF",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 5927.786900000003,
+		"area": 37.2,
+		"capex": 333792.848,
+		"cost_per_day": 5979.963099999999,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 4,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "NA",
+				"amount": 4,
+				"vwap_7d": 25.06
+			}
+		],
+		"worker_consumable_cost_per_day": 4940.313099999999,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.40322582247436684,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1344.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 151.47
+			},
+			{
+				"ticker": "ZR",
+				"amount": 1,
+				"vwap_7d": 16400
+			}
+		],
+		"recipe": "2xZIR=>1xZR 2xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 23108.29806666667,
+		"area": 52.6,
+		"capex": 1328614.258,
+		"cost_per_day": 11689.4936,
+		"input_costs": [
+			{
+				"ticker": "ZIR",
+				"amount": 2,
+				"vwap_7d": 509.61
+			}
+		],
+		"worker_consumable_cost_per_day": 9566.1186,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.40042776194211044,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 1754.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LD",
+				"amount": 1,
+				"vwap_7d": 10000
+			}
+		],
+		"recipe": "=>1xLD",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 5303.496833333333,
+		"area": 27.0,
+		"capex": 320920.08,
+		"cost_per_day": 3029.8365,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3029.8365,
+		"runs_per_day": 0.8333333333333333,
+		"logistics_per_area": 0.0003086419684099562,
+		"output_per_day": 0.8333333333333333,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 151.47
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "BE",
+				"amount": 1,
+				"vwap_7d": 1863.47
+			}
+		],
+		"recipe": "2xBER=>1xBE 1xAL 1xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 21571.6314,
+		"area": 52.6,
+		"capex": 1328614.258,
+		"cost_per_day": 19028.8686,
+		"input_costs": [
+			{
+				"ticker": "BER",
+				"amount": 2,
+				"vwap_7d": 378.51
+			}
+		],
+		"worker_consumable_cost_per_day": 9566.1186,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5042775767384373,
+		"output_per_day": 12.5,
+		"average_traded_7d": 1963.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TCL",
+				"amount": 3,
+				"vwap_7d": 3476.16
+			}
+		],
+		"recipe": "1xCL 1xO 1xH=>3xTCL",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 5399.3327333333345,
+		"area": 37.2,
+		"capex": 333792.848,
+		"cost_per_day": 16326.667266666667,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 136.57
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5215.73
+			}
+		],
+		"worker_consumable_cost_per_day": 4940.313099999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.24703181453890374,
+		"output_per_day": 6.25,
+		"average_traded_7d": 290
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSI",
+				"amount": 8,
+				"vwap_7d": 1600
+			}
+		],
+		"recipe": "16xH2O 1xHCP 1xNS=>8xRSI",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 9701.8664,
+		"area": 41.8,
+		"capex": 615271.436,
+		"cost_per_day": 6298.1336,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 512.55
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 422.46
+			}
+		],
+		"worker_consumable_cost_per_day": 4241.7711,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.26315790044063586,
+		"output_per_day": 10.0,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OFF",
+				"amount": 50,
+				"vwap_7d": 127.63
+			}
+		],
+		"recipe": "20xPG 20xEPO=>50xOFF",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 837.4329999999977,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 39046.942,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 20,
+				"vwap_7d": 238.5
+			},
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.840909133241935,
+		"output_per_day": 312.5,
+		"average_traded_7d": 317.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 329.4
+			}
+		],
+		"recipe": "20xH2O 2xNS=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2030.8686999999998,
+		"area": 21.4,
+		"capex": 130672.63600000001,
+		"cost_per_day": 4145.3813,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 422.46
+			}
+		],
+		"worker_consumable_cost_per_day": 1438.3187999999998,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.1390186498098285,
+		"output_per_day": 18.75,
+		"average_traded_7d": 2033.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 9232.14
+			}
+		],
+		"recipe": "1xNCS 4xLI=>1xPOW",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 9822.835899999995,
+		"area": 40.2,
+		"capex": 635389.868,
+		"cost_per_day": 47878.0391,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 1,
+				"vwap_7d": 37.21
+			},
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 1829.4
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.6234452735970899,
+		"output_per_day": 6.25,
+		"average_traded_7d": 8
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOL",
+				"amount": 12,
+				"vwap_7d": 1400
+			}
+		],
+		"recipe": "2xCU 2xSI 4xBCO 1xBRO=>12xSOL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 9230.148400000011,
+		"area": 40.2,
+		"capex": 635389.868,
+		"cost_per_day": 95769.85159999998,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2604.4
+			},
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2209.58
+			},
+			{
+				"ticker": "BCO",
+				"amount": 4,
+				"vwap_7d": 726.74
+			},
+			{
+				"ticker": "BRO",
+				"amount": 1,
+				"vwap_7d": 2482.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 4.858208906521733,
+		"output_per_day": 75.0,
+		"average_traded_7d": 12.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ASE",
+				"amount": 1,
+				"vwap_7d": 51834.95
+			}
+		],
+		"recipe": "1xRSE 2xTI=>1xASE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 13308.67407272728,
+		"area": 50.4,
+		"capex": 924167.1740000001,
+		"cost_per_day": 104498.03047272725,
+		"input_costs": [
+			{
+				"ticker": "RSE",
+				"amount": 1,
+				"vwap_7d": 36613.45
+			},
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 2311.67
+			}
+		],
+		"worker_consumable_cost_per_day": 10778.053199999998,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.49152236544724665,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 47
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 326.2
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xSWF=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 718.8080000000004,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 26464.525333333335,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 149.56
+			},
+			{
+				"ticker": "SWF",
+				"amount": 1,
+				"vwap_7d": 225.11
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.0996212284997897,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 857.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AIR",
+				"amount": 1,
+				"vwap_7d": 200000
+			}
+		],
+		"recipe": "1xHCP 1xNS 1xH2O 1xWAI 1xPCB 1xSAR 1xGV 1xFC 1xBAC=>1xAIR",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 17305.100199999986,
+		"area": 51.6,
+		"capex": 1483157.556,
+		"cost_per_day": 82694.89980000001,
+		"input_costs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 99178.57
+			},
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 6069.65
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 422.46
+			},
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2316.62
+			},
+			{
+				"ticker": "PCB",
+				"amount": 1,
+				"vwap_7d": 2645.13
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 44.38
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 512.55
+			},
+			{
+				"ticker": "BAC",
+				"amount": 1,
+				"vwap_7d": 2851.46
+			},
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 32938.46
+			}
+		],
+		"worker_consumable_cost_per_day": 9205.2598,
+		"runs_per_day": 0.5,
+		"logistics_per_area": 0.04176356604091765,
+		"output_per_day": 0.5,
+		"average_traded_7d": 54.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAD",
+				"amount": 1,
+				"vwap_7d": 12000
+			}
+		],
+		"recipe": "1xDCS 1xSFK 1xPOW=>1xRAD",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 1653.7700000000027,
+		"area": 36.0,
+		"capex": 154763.02000000002,
+		"cost_per_day": 73346.23,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 77.05
+			},
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 9232.14
+			},
+			{
+				"ticker": "DCS",
+				"amount": 1,
+				"vwap_7d": 2146.79
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.03819444488423566,
+		"output_per_day": 6.25,
+		"average_traded_7d": 4
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1889.32
+			}
+		],
+		"recipe": "1xAL 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 591.1665454545462,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 10143.606181818182,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 158.56
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.5201192410265816,
+		"output_per_day": 5.6818181818181825,
+		"average_traded_7d": 1295.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RHP",
+				"amount": 4,
+				"vwap_7d": 6455
+			}
+		],
+		"recipe": "12xAL 4xTI 1xHE=>4xRHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 710.8237000000006,
+		"area": 31.2,
+		"capex": 78481.352,
+		"cost_per_day": 45396.319157142854,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 256.35
+			},
+			{
+				"ticker": "TI",
+				"amount": 4,
+				"vwap_7d": 2311.67
+			}
+		],
+		"worker_consumable_cost_per_day": 2003.0513000000003,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 2.892914409800382,
+		"output_per_day": 7.142857142857143,
+		"average_traded_7d": 18.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42067.42
+			}
+		],
+		"recipe": "6xLI 6xBE 20xBCO 60xPG=>1xCBS",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 5717.023399999995,
+		"area": 40.2,
+		"capex": 635389.868,
+		"cost_per_day": 169563.89326666668,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 6,
+				"vwap_7d": 1829.4
+			},
+			{
+				"ticker": "PG",
+				"amount": 60,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "BCO",
+				"amount": 20,
+				"vwap_7d": 726.74
+			},
+			{
+				"ticker": "BE",
+				"amount": 6,
+				"vwap_7d": 1863.47
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.509121089890309,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 12.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BOS",
+				"amount": 4,
+				"vwap_7d": 3900
+			}
+		],
+		"recipe": "1xBOR 1xSI 4xAL=>4xBOS",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 10703.931400000003,
+		"area": 52.6,
+		"capex": 1328614.258,
+		"cost_per_day": 28296.0686,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 350
+			}
+		],
+		"worker_consumable_cost_per_day": 9566.1186,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.7095532385568655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 16
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"recipe": "4xTS 1xO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 246.21649999999863,
+		"area": 22.0,
+		"capex": 47848.465,
+		"cost_per_day": 22770.241833333337,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "TS",
+				"amount": 4,
+				"vwap_7d": 187.73
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			}
+		],
+		"worker_consumable_cost_per_day": 924.721,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 6.364110067035213,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 325.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IDC",
+				"amount": 1,
+				"vwap_7d": 11000
+			}
+		],
+		"recipe": "=>1xIDC",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 5474.8084,
+		"area": 23.6,
+		"capex": 1065677.888,
+		"cost_per_day": 8275.1916,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8275.1916,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005296610051103062,
+		"output_per_day": 1.25,
+		"average_traded_7d": 179.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EDC",
+				"amount": 1,
+				"vwap_7d": 8000
+			}
+		],
+		"recipe": "=>1xEDC",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 1645.815999999999,
+		"area": 24.8,
+		"capex": 783769.902,
+		"cost_per_day": 8354.184000000001,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8354.184000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005040322467985172,
+		"output_per_day": 1.25,
+		"average_traded_7d": 1
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2647.31
+			}
+		],
+		"recipe": "40xPG=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 85.0120000000004,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 13151.538,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.2459016393442623,
+		"output_per_day": 5.0,
+		"average_traded_7d": 582.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2885.68
+			}
+		],
+		"recipe": "2xAL 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -30.937999999999874,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 14459.338,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1233.1
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 158.56
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.332786904006708,
+		"output_per_day": 5.0,
+		"average_traded_7d": 815
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PFE",
+				"amount": 10,
+				"vwap_7d": 800
+			}
+		],
+		"recipe": "10xAMM 4xREA=>10xPFE",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": -77.42065000000139,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 12577.420650000002,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 10,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "REA",
+				"amount": 4,
+				"vwap_7d": 1271.68
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.585937500171199,
+		"output_per_day": 15.625,
+		"average_traded_7d": 202.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 5,
+				"vwap_7d": 521.44
+			}
+		],
+		"recipe": "1xSTL=>5xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -204.58485714285553,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 9516.013428571428,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2743506338689234,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 1174
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 30,
+				"vwap_7d": 149.56
+			}
+		],
+		"recipe": "1xCOT 10xPG=>30xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -274.2753333333335,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 18969.275333333335,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3517.96
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.1912878788778361,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 3863.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 326.2
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xMFK=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -301.2802352941162,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 24286.574352941177,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 322.75
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 149.56
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 7.352941176470589,
+		"logistics_per_area": 1.0026738117324479,
+		"output_per_day": 73.52941176470588,
+		"average_traded_7d": 857.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1763.43
+			}
+		],
+		"recipe": "1xGL 1xAL=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -601.6213333333321,
+		"area": 30.5,
+		"capex": 56529.24249999999,
+		"cost_per_day": 15296.871333333334,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 1,
+				"vwap_7d": 442.26
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1233.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1335.5380000000002,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 0.7420765159682172,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 200.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 379.22
+			}
+		],
+		"recipe": "3xTS=>2xHE3",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": -831.957199999999,
+		"area": 33.4,
+		"capex": 66751.418,
+		"cost_per_day": 4624.1572,
+		"input_costs": [
+			{
+				"ticker": "TS",
+				"amount": 3,
+				"vwap_7d": 187.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1808.2071999999996,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.0778443542069305,
+		"output_per_day": 10.0,
+		"average_traded_7d": 568.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TC",
+				"amount": 1,
+				"vwap_7d": 2420
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 113.15
+			}
+		],
+		"recipe": "1xTCO=>1xTC 1xO",
+		"expertise": "CHEMISTRY",
+		"building": "TNP",
+		"profit_per_day": -926.5067823529398,
+		"area": 41.2,
+		"capex": 396571.104,
+		"cost_per_day": 5583.032517647058,
+		"input_costs": [
+			{
+				"ticker": "TCO",
+				"amount": 1,
+				"vwap_7d": 400
+			}
+		],
+		"worker_consumable_cost_per_day": 4847.738399999999,
+		"runs_per_day": 1.8382352941176472,
+		"logistics_per_area": 0.5773932852280745,
+		"output_per_day": 1.8382352941176472,
+		"average_traded_7d": 5039
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 149.56
+			}
+		],
+		"recipe": "100xPE 25xPG=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -949.0253333333336,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 7180.692,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 10.82
+			},
+			{
+				"ticker": "PG",
+				"amount": 25,
+				"vwap_7d": 59.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.0994318162900692,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 3863.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PWO",
+				"amount": 20,
+				"vwap_7d": 328.41
+			}
+		],
+		"recipe": "1xCOT 50xPG=>20xPWO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1448.441999999997,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 28815.942000000003,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3517.96
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.19886363681342284,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1104.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CA",
+				"amount": 1,
+				"vwap_7d": 299
+			}
+		],
+		"recipe": "1xLST=>1xCA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": -1880.3477333333333,
+		"area": 27.2,
+		"capex": 45237.428,
+		"cost_per_day": 3126.181066666667,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 158.56
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.5144,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.418198532333561,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 4.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAP",
+				"amount": 15,
+				"vwap_7d": 200
+			}
+		],
+		"recipe": "1xSI 1xFE=>15xCAP",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": -2052.2221999999997,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 11427.2222,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 876.85
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9932827169650068,
+		"output_per_day": 46.875,
+		"average_traded_7d": 12.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEA",
+				"amount": 30,
+				"vwap_7d": 133.3
+			}
+		],
+		"recipe": "1xS 1xSI 30xPG=>30xSEA",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -2444.1919999999973,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 19106.692,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			},
+			{
+				"ticker": "PG",
+				"amount": 30,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 159.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.8522727611390027,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 4047.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDI",
+				"amount": 6,
+				"vwap_7d": 332
+			}
+		],
+		"recipe": "1xGAL 1xSI=>6xLDI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": -3164.12845,
+		"area": 32.1,
+		"capex": 178196.722,
+		"cost_per_day": 10278.414164285716,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 1,
+				"vwap_7d": 169.38
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2209.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1782.1284500000002,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.538384511198104,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 4.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LFP",
+				"amount": 1,
+				"vwap_7d": 6788.24
+			}
+		],
+		"recipe": "1xSFK 50xPG 10xTHF=>1xLFP",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": -4261.130000000002,
+		"area": 22.0,
+		"capex": 62593.62,
+		"cost_per_day": 21231.73,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 77.05
+			},
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "THF",
+				"amount": 10,
+				"vwap_7d": 476.31
+			}
+		],
+		"worker_consumable_cost_per_day": 1746.355,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.697727300258438,
+		"output_per_day": 2.5,
+		"average_traded_7d": 9.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ADE",
+				"amount": 2,
+				"vwap_7d": 41106.99
+			}
+		],
+		"recipe": "2xLDE 2xKV=>2xADE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -4310.969866666671,
+		"area": 50.4,
+		"capex": 924167.1740000001,
+		"cost_per_day": 175590.09486666668,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 2,
+				"vwap_7d": 12022.28
+			},
+			{
+				"ticker": "KV",
+				"amount": 2,
+				"vwap_7d": 27532.61
+			}
+		],
+		"worker_consumable_cost_per_day": 10778.053199999998,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18187831082041303,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 53.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WS",
+				"amount": 20,
+				"vwap_7d": 4640
+			}
+		],
+		"recipe": "1xDA 1xBWS=>20xWS",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": -5038.593133333333,
+		"area": 51.6,
+		"capex": 1483157.556,
+		"cost_per_day": 69483.03757777778,
+		"input_costs": [
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 26800
+			},
+			{
+				"ticker": "DA",
+				"amount": 1,
+				"vwap_7d": 60000
+			}
+		],
+		"worker_consumable_cost_per_day": 9205.2598,
+		"runs_per_day": 0.6944444444444444,
+		"logistics_per_area": 0.13458225667527993,
+		"output_per_day": 13.88888888888889,
+		"average_traded_7d": 0.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SUN",
+				"amount": 20,
+				"vwap_7d": 600
+			}
+		],
+		"recipe": "20xOVE 10xC=>20xSUN",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -10633.817,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 85633.817,
+		"input_costs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 149.56
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1041.43
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 6.505681815641847,
+		"output_per_day": 125.0,
+		"average_traded_7d": 10.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SP",
+				"amount": 12,
+				"vwap_7d": 2883.87
+			}
+		],
+		"recipe": "8xGL 24xSOL=>12xSP",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -12458.976599999998,
+		"area": 40.2,
+		"capex": 635389.868,
+		"cost_per_day": 156652.47660000002,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 8,
+				"vwap_7d": 442.26
+			},
+			{
+				"ticker": "SOL",
+				"amount": 24,
+				"vwap_7d": 1400
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.18656717159261751,
+		"output_per_day": 50.0,
+		"average_traded_7d": 172.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSH",
+				"amount": 1,
+				"vwap_7d": 16000
+			}
+		],
+		"recipe": "1xTA 1xSTL 1xLST=>1xRSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -12925.067088888885,
+		"area": 50.4,
+		"capex": 924167.1740000001,
+		"cost_per_day": 35147.289311111104,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 158.56
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			},
+			{
+				"ticker": "TA",
+				"amount": 1,
+				"vwap_7d": 15240.65
+			}
+		],
+		"worker_consumable_cost_per_day": 10778.053199999998,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 0.7503857898543962,
+		"output_per_day": 1.3888888888888888,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ATA",
+				"amount": 1,
+				"vwap_7d": 25100
+			}
+		],
+		"recipe": "1xRTA 1xNG=>1xATA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -14068.848654545454,
+		"area": 50.4,
+		"capex": 924167.1740000001,
+		"cost_per_day": 71114.3032,
+		"input_costs": [
+			{
+				"ticker": "NG",
+				"amount": 1,
+				"vwap_7d": 1500
+			},
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 25047.95
+			}
+		],
+		"worker_consumable_cost_per_day": 10778.053199999998,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.06863275612738053,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 4.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ABH",
+				"amount": 2,
+				"vwap_7d": 54263.88
+			}
+		],
+		"recipe": "2xRBH 125xNR=>2xABH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -18134.035342857154,
+		"area": 50.4,
+		"capex": 924167.1740000001,
+		"cost_per_day": 211933.60677142857,
+		"input_costs": [
+			{
+				"ticker": "RBH",
+				"amount": 2,
+				"vwap_7d": 26421.68
+			},
+			{
+				"ticker": "NR",
+				"amount": 125,
+				"vwap_7d": 478.43
+			}
+		],
+		"worker_consumable_cost_per_day": 10778.053199999998,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.3915107810327069,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 89
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WIN",
+				"amount": 10,
+				"vwap_7d": 7686.49
+			}
+		],
+		"recipe": "20xDW 15xGRA 15xREA 1xAMM=>10xWIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": -32670.297875000015,
+		"area": 32.2,
+		"capex": 76961.016,
+		"cost_per_day": 152771.704125,
+		"input_costs": [
+			{
+				"ticker": "REA",
+				"amount": 15,
+				"vwap_7d": 1271.68
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 138.49
+			},
+			{
+				"ticker": "DW",
+				"amount": 20,
+				"vwap_7d": 110.95
+			},
+			{
+				"ticker": "GRA",
+				"amount": 15,
+				"vwap_7d": 5000
+			}
+		],
+		"worker_consumable_cost_per_day": 2095.626,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.9758346473656432,
+		"output_per_day": 15.625,
+		"average_traded_7d": 27.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBL",
+				"amount": 1,
+				"vwap_7d": 91100
+			}
+		],
+		"recipe": "12xLI 12xBE 60xHCC 150xPG=>1xCBL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -34151.57660000001,
+		"area": 40.2,
+		"capex": 635389.868,
+		"cost_per_day": 261901.5766,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 12,
+				"vwap_7d": 1829.4
+			},
+			{
+				"ticker": "HCC",
+				"amount": 60,
+				"vwap_7d": 847
+			},
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 59.08
+			},
+			{
+				"ticker": "BE",
+				"amount": 12,
+				"vwap_7d": 1863.47
+			}
+		],
+		"worker_consumable_cost_per_day": 1910.4766,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.8395522726637157,
+		"output_per_day": 2.5,
+		"average_traded_7d": 2.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 15,
+				"vwap_7d": 521.44
+			}
+		],
+		"recipe": "1xSTL 1xW=>15xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -37438.870571428575,
+		"area": 22.0,
+		"capex": 53743.55,
+		"cost_per_day": 65373.15628571429,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2146.64
+			},
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 15640
+			}
+		],
+		"worker_consumable_cost_per_day": 1849.442,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 2.4949675256555732,
+		"output_per_day": 53.57142857142858,
+		"average_traded_7d": 1174
+	}
+]

+ 7358 - 0
www/roi_ic1.json

@@ -0,0 +1,7358 @@
+[
+	{
+		"outputs": [
+			{
+				"ticker": "SSL",
+				"amount": 1,
+				"vwap_7d": 122333.33
+			}
+		],
+		"recipe": "20xTI 2xMFK=>1xSSL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 147874.8719,
+		"area": 46.2,
+		"capex": 79095.564,
+		"cost_per_day": 157958.4531,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 2,
+				"vwap_7d": 415.84
+			},
+			{
+				"ticker": "TI",
+				"amount": 20,
+				"vwap_7d": 3076.73
+			}
+		],
+		"worker_consumable_cost_per_day": 2042.7531000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.880952381113649,
+		"output_per_day": 2.5,
+		"average_traded_7d": 0.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFE",
+				"amount": 1,
+				"vwap_7d": 180000
+			}
+		],
+		"recipe": "4xCF 1xCBM=>1xMFE",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 272209.9325,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 290290.0675,
+		"input_costs": [
+			{
+				"ticker": "CBM",
+				"amount": 1,
+				"vwap_7d": 63000
+			},
+			{
+				"ticker": "CF",
+				"amount": 4,
+				"vwap_7d": 7326.67
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.4485980955611135,
+		"output_per_day": 3.125,
+		"average_traded_7d": 3.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SC",
+				"amount": 20,
+				"vwap_7d": 2660.13
+			}
+		],
+		"recipe": "2xCA 1xMG 1xTA=>20xSC",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 61633.84913846156,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 40678.843169230764,
+		"input_costs": [
+			{
+				"ticker": "CA",
+				"amount": 2,
+				"vwap_7d": 366
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 141.87
+			},
+			{
+				"ticker": "TA",
+				"amount": 1,
+				"vwap_7d": 19000
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 1.4140271177152974,
+		"output_per_day": 38.46153846153846,
+		"average_traded_7d": 181.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DEC",
+				"amount": 1,
+				"vwap_7d": 59900
+			}
+		],
+		"recipe": "150xPG 70xEPO=>1xDEC",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 90577.38125,
+		"area": 19.0,
+		"capex": 74813.108,
+		"cost_per_day": 59172.61875,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "EPO",
+				"amount": 70,
+				"vwap_7d": 209.15
+			}
+		],
+		"worker_consumable_cost_per_day": 1053.86875,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4078947304821524,
+		"output_per_day": 2.5,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WCB",
+				"amount": 1,
+				"vwap_7d": 944500
+			}
+		],
+		"recipe": "100xAST 100xFET 20xMFK=>1xWCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 38868.496899999926,
+		"area": 46.2,
+		"capex": 79095.564,
+		"cost_per_day": 1436912.7531,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 100,
+				"vwap_7d": 4200
+			},
+			{
+				"ticker": "MFK",
+				"amount": 20,
+				"vwap_7d": 415.84
+			},
+			{
+				"ticker": "FET",
+				"amount": 100,
+				"vwap_7d": 4900
+			}
+		],
+		"worker_consumable_cost_per_day": 2042.7531000000001,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 40.077110132589546,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 8940
+			}
+		],
+		"recipe": "1xMG 1xCU 1xS=>1xIND",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 16964.012600000002,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 10973.487399999998,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 264.85
+			},
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2317.64
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 141.87
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1155790519243216,
+		"output_per_day": 3.125,
+		"average_traded_7d": 3.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BHP",
+				"amount": 4,
+				"vwap_7d": 6188.54
+			}
+		],
+		"recipe": "12xAL 1xSTL 1xHE=>4xBHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 25731.205233333334,
+		"area": 31.2,
+		"capex": 79355.644,
+		"cost_per_day": 77411.1281,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 2042.7531000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.394631473379386,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 28.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCM",
+				"amount": 2,
+				"vwap_7d": 7980
+			}
+		],
+		"recipe": "2xPSM 8xSFK 20xPG=>2xDCM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 19656.7255,
+		"area": 22.0,
+		"capex": 64054.359999999986,
+		"cost_per_day": 20243.2745,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "SFK",
+				"amount": 8,
+				"vwap_7d": 81.2
+			},
+			{
+				"ticker": "PSM",
+				"amount": 2,
+				"vwap_7d": 2797.93
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.11136363741984083,
+		"output_per_day": 5.0,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PBU",
+				"amount": 1,
+				"vwap_7d": 26000
+			}
+		],
+		"recipe": "40xDW 40xRAT 5xOVE 5xCOF 2xPWO 50xPE=>1xPBU",
+		"expertise": "MANUFACTURING",
+		"building": "PAC",
+		"profit_per_day": 48802.82489999999,
+		"area": 41.8,
+		"capex": 162535.0,
+		"cost_per_day": 113697.17510000001,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 40,
+				"vwap_7d": 166.73
+			},
+			{
+				"ticker": "PWO",
+				"amount": 2,
+				"vwap_7d": 345.25
+			},
+			{
+				"ticker": "DW",
+				"amount": 40,
+				"vwap_7d": 109.05
+			},
+			{
+				"ticker": "COF",
+				"amount": 5,
+				"vwap_7d": 983.5
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "OVE",
+				"amount": 5,
+				"vwap_7d": 143.29
+			}
+		],
+		"worker_consumable_cost_per_day": 1755.6126,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.03349279199669,
+		"output_per_day": 6.25,
+		"average_traded_7d": 2.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REA",
+				"amount": 10,
+				"vwap_7d": 1284.02
+			}
+		],
+		"recipe": "25xBRM=>10xREA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 13212.816171428574,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 9716.1124,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 25,
+				"vwap_7d": 162.54
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 4.1032037815126055,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 236
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOI",
+				"amount": 16,
+				"vwap_7d": 1091.29
+			}
+		],
+		"recipe": "10xCLI 20xBRM=>16xSOI",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 12594.9376,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 9230.862399999998,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 20,
+				"vwap_7d": 162.54
+			},
+			{
+				"ticker": "CLI",
+				"amount": 10,
+				"vwap_7d": 216.6
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 3.409926505649791,
+		"output_per_day": 20.0,
+		"average_traded_7d": 146.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 950.67
+			}
+		],
+		"recipe": "1xBGO 300xPE=>10xBGC",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 14474.417166666664,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 25136.832833333337,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2280.29
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.999999949968951,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 178.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GIN",
+				"amount": 4,
+				"vwap_7d": 4129.8
+			}
+		],
+		"recipe": "2xGRN 2xDW 1xES 1xAMM=>4xGIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 19687.442907692308,
+		"area": 32.2,
+		"capex": 79687.96599999999,
+		"cost_per_day": 12080.2494,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 3998.72
+			},
+			{
+				"ticker": "DW",
+				"amount": 2,
+				"vwap_7d": 109.05
+			}
+		],
+		"worker_consumable_cost_per_day": 2112.7493999999997,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.22336359082855106,
+		"output_per_day": 7.6923076923076925,
+		"average_traded_7d": 98.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GC",
+				"amount": 10,
+				"vwap_7d": 596.77
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>10xGC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 13234.396166666667,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 11631.0205,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.717788480126705,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 557.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OFF",
+				"amount": 50,
+				"vwap_7d": 148.59
+			}
+		],
+		"recipe": "20xPG 20xEPO=>50xOFF",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 11382.559999999998,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 35051.815,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 20,
+				"vwap_7d": 209.15
+			},
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.840909133241935,
+		"output_per_day": 312.5,
+		"average_traded_7d": 1318.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WIN",
+				"amount": 10,
+				"vwap_7d": 8310
+			}
+		],
+		"recipe": "20xDW 15xGRA 15xREA 1xAMM=>10xWIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 16693.9381,
+		"area": 32.2,
+		"capex": 79687.96599999999,
+		"cost_per_day": 113149.8119,
+		"input_costs": [
+			{
+				"ticker": "REA",
+				"amount": 15,
+				"vwap_7d": 1284.02
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "DW",
+				"amount": 20,
+				"vwap_7d": 109.05
+			},
+			{
+				"ticker": "GRA",
+				"amount": 15,
+				"vwap_7d": 3295.96
+			}
+		],
+		"worker_consumable_cost_per_day": 2112.7493999999997,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.9758346473656432,
+		"output_per_day": 15.625,
+		"average_traded_7d": 100.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HMS",
+				"amount": 10,
+				"vwap_7d": 3052.91
+			}
+		],
+		"recipe": "1xNL 1xIND 6xGC=>10xHMS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": 18206.071828571432,
+		"area": 41.8,
+		"capex": 94774.984,
+		"cost_per_day": 36310.178171428575,
+		"input_costs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7024.32
+			},
+			{
+				"ticker": "GC",
+				"amount": 6,
+				"vwap_7d": 596.77
+			},
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 8940
+			}
+		],
+		"worker_consumable_cost_per_day": 1408.4996,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.07689678793237052,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 435.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SUN",
+				"amount": 20,
+				"vwap_7d": 748.48
+			}
+		],
+		"recipe": "20xOVE 10xC=>20xSUN",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 9991.310000000007,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 83568.69,
+		"input_costs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 143.29
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1022.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 6.505681815641847,
+		"output_per_day": 125.0,
+		"average_traded_7d": 194.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFK",
+				"amount": 8,
+				"vwap_7d": 415.84
+			}
+		],
+		"recipe": "1xSTL=>8xMFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 10519.688,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 24133.645333333337,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.6377687851587934,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1016.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSE",
+				"amount": 2,
+				"vwap_7d": 37357.62
+			}
+		],
+		"recipe": "2xBSE 1xSTL 225xEPO=>2xRSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 35553.55762857144,
+		"area": 40.0,
+		"capex": 197031.13199999998,
+		"cost_per_day": 97866.5138,
+		"input_costs": [
+			{
+				"ticker": "BSE",
+				"amount": 2,
+				"vwap_7d": 1891.79
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			},
+			{
+				"ticker": "EPO",
+				"amount": 225,
+				"vwap_7d": 209.15
+			}
+		],
+		"worker_consumable_cost_per_day": 3241.2638,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.7790178449691407,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 73.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 844.42
+			}
+		],
+		"recipe": "1xCU 300xPE=>10xBCO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 9891.708833333332,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 25292.457833333334,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2317.64
+			},
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.602150538876172,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 590.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PFE",
+				"amount": 10,
+				"vwap_7d": 1354.29
+			}
+		],
+		"recipe": "10xAMM 4xREA=>10xPFE",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 7816.10635,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 13344.6749,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 10,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "REA",
+				"amount": 4,
+				"vwap_7d": 1284.02
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.585937500171199,
+		"output_per_day": 15.625,
+		"average_traded_7d": 10
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CU",
+				"amount": 3,
+				"vwap_7d": 2317.64
+			}
+		],
+		"recipe": "5xCUO 10xO 1xSIO=>3xCU",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 8084.767500000001,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 9297.5325,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 137.5
+			},
+			{
+				"ticker": "CUO",
+				"amount": 5,
+				"vwap_7d": 430.9
+			},
+			{
+				"ticker": "O",
+				"amount": 10,
+				"vwap_7d": 107.99
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.778409253467213,
+		"output_per_day": 7.5,
+		"average_traded_7d": 131
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RBH",
+				"amount": 1,
+				"vwap_7d": 27077.13
+			}
+		],
+		"recipe": "1xBBH 1xSTL 50xEPO=>1xRBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 32936.11120000001,
+		"area": 40.0,
+		"capex": 197031.13199999998,
+		"cost_per_day": 51679.92005,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 209.15
+			},
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2895.06
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			}
+		],
+		"worker_consumable_cost_per_day": 3241.2638,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8085937390569597,
+		"output_per_day": 3.125,
+		"average_traded_7d": 68.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HER",
+				"amount": 4,
+				"vwap_7d": 3909.23
+			}
+		],
+		"recipe": "4xH2O 1xDDT=>4xHER",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 5883.5933749999995,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 5073.978315,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5826.82
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08008571428571429,
+		"output_per_day": 2.803,
+		"average_traded_7d": 1358.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGO",
+				"amount": 5,
+				"vwap_7d": 2280.29
+			}
+		],
+		"recipe": "4xAU 1xFE=>5xBGO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 9218.594250000002,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 26410.937,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 4,
+				"vwap_7d": 1741.45
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 9.737903071988013,
+		"output_per_day": 15.625,
+		"average_traded_7d": 96.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 6468.89
+			}
+		],
+		"recipe": "1xAL 1xBSE 1xHE=>1xFC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 8158.635750000001,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 12056.645499999999,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			},
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1891.79
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.3780048143548461,
+		"output_per_day": 3.125,
+		"average_traded_7d": 5.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NA",
+				"amount": 2,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5267.64
+			}
+		],
+		"recipe": "3xHAL 1xH2O=>2xNA 1xCL",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 6538.435013793105,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 4922.47015862069,
+		"input_costs": [
+			{
+				"ticker": "HAL",
+				"amount": 3,
+				"vwap_7d": 366.25
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 2.155172413793103,
+		"logistics_per_area": 0.5316620366270021,
+		"output_per_day": 4.310344827586206,
+		"average_traded_7d": 6445
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AEF",
+				"amount": 1,
+				"vwap_7d": 6978.41
+			}
+		],
+		"recipe": "50xPG 1xNE=>1xAEF",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 8119.6715,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 9326.353500000001,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "NE",
+				"amount": 1,
+				"vwap_7d": 335.86
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4098360655737705,
+		"output_per_day": 2.5,
+		"average_traded_7d": 62.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LSE",
+				"amount": 1,
+				"vwap_7d": 12661.23
+			}
+		],
+		"recipe": "120xPG 3xAL=>1xLSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 7977.996499999994,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 55328.15350000001,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "PG",
+				"amount": 120,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3672131400738583,
+		"output_per_day": 5.0,
+		"average_traded_7d": 188.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1681.04
+			}
+		],
+		"recipe": "2xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4983.33985,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 6796.54795,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 401.08
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.2803000101436462,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 862
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4714.54
+			}
+		],
+		"recipe": "1xAL 5xGL=>1xLTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 6922.3465,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 16650.3535,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "GL",
+				"amount": 5,
+				"vwap_7d": 352.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.45573771335795277,
+		"output_per_day": 5.0,
+		"average_traded_7d": 153.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 391.63
+			}
+		],
+		"recipe": "4xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4330.549179999999,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1524.0582333333332,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 3.737333333333333,
+		"logistics_per_area": 0.42712380952380946,
+		"output_per_day": 14.949333333333332,
+		"average_traded_7d": 6684.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TUB",
+				"amount": 20,
+				"vwap_7d": 317.28
+			}
+		],
+		"recipe": "10xGL=>20xTUB",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 14824.250799999996,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 24835.7492,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 352.3
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.02732240566932927,
+		"output_per_day": 125.0,
+		"average_traded_7d": 406.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 3076.73
+			}
+		],
+		"recipe": "4xTIO 1xC 1xO=>2xTI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 5664.284166666666,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 4591.482499999999,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "TIO",
+				"amount": 4,
+				"vwap_7d": 275.87
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.7356818336429017,
+		"output_per_day": 3.333333333333333,
+		"average_traded_7d": 82.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KOM",
+				"amount": 6,
+				"vwap_7d": 1285.94
+			}
+		],
+		"recipe": "4xDW 1xHER 1xAMM=>6xKOM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 9270.07202857143,
+		"area": 32.2,
+		"capex": 79687.96599999999,
+		"cost_per_day": 18285.785114285714,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3909.23
+			},
+			{
+				"ticker": "DW",
+				"amount": 4,
+				"vwap_7d": 109.05
+			}
+		],
+		"worker_consumable_cost_per_day": 2112.7493999999997,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.26619343455639577,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 5190.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 4,
+				"vwap_7d": 413.34
+			}
+		],
+		"recipe": "3xH2O=>4xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3871.343033333332,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1277.9548333333332,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 3,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 3.114444444444444,
+		"logistics_per_area": 0.3915301672163463,
+		"output_per_day": 12.457777777777777,
+		"average_traded_7d": 2509.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2971.67
+			}
+		],
+		"recipe": "1xAL 1xHE=>1xGV",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 5755.604500000001,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 9102.745499999999,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.5471153929829597,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 401.04
+			}
+		],
+		"recipe": "4xH2O=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3774.065585714286,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1043.5706428571427,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 1.0010714285714286,
+		"logistics_per_area": 0.4461918203684749,
+		"output_per_day": 12.012857142857143,
+		"average_traded_7d": 1291.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALE",
+				"amount": 6,
+				"vwap_7d": 1554.42
+			}
+		],
+		"recipe": "2xGRN 3xDW 1xHOP 1xAMM=>6xALE",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 8225.375600000003,
+		"area": 32.2,
+		"capex": 79687.96599999999,
+		"cost_per_day": 9990.483775,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "HOP",
+				"amount": 1,
+				"vwap_7d": 2739.97
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 109.05
+			}
+		],
+		"worker_consumable_cost_per_day": 2112.7493999999997,
+		"runs_per_day": 1.953125,
+		"logistics_per_area": 0.2608210406438245,
+		"output_per_day": 11.71875,
+		"average_traded_7d": 1864.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FF",
+				"amount": 100,
+				"vwap_7d": 20.53
+			}
+		],
+		"recipe": "2xHE3 4xH=>100xFF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 6798.744533333336,
+		"area": 33.4,
+		"capex": 67390.94,
+		"cost_per_day": 10309.5888,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 4,
+				"vwap_7d": 125.1
+			},
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 263.64
+			}
+		],
+		"worker_consumable_cost_per_day": 1745.5888,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.4970059880239521,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 67986.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COF",
+				"amount": 3,
+				"vwap_7d": 983.5
+			}
+		],
+		"recipe": "1xCAF 3xDW=>3xCOF",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3382.0656666666664,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 8911.684333333335,
+		"input_costs": [
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 109.05
+			},
+			{
+				"ticker": "CAF",
+				"amount": 1,
+				"vwap_7d": 1645.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.3385416678308199,
+		"output_per_day": 12.5,
+		"average_traded_7d": 6667.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STL",
+				"amount": 2,
+				"vwap_7d": 2147.81
+			}
+		],
+		"recipe": "2xFE 8xO=>2xSTL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 4800.431785714285,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 10541.068214285715,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 8,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 922.3
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 4.038311753954206,
+		"output_per_day": 7.142857142857143,
+		"average_traded_7d": 373.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 7,
+				"vwap_7d": 109.05
+			}
+		],
+		"recipe": "10xH2O=>7xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3360.1490000000003,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6181.726,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5625000232830644,
+		"output_per_day": 87.5,
+		"average_traded_7d": 66956.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 7,
+				"vwap_7d": 675.21
+			}
+		],
+		"recipe": "1xSTL 1xTRN=>7xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 5321.256428571431,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 11558.993571428573,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			},
+			{
+				"ticker": "TRN",
+				"amount": 1,
+				"vwap_7d": 602.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2745129715389718,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1018.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLX",
+				"amount": 10,
+				"vwap_7d": 294.3
+			}
+		],
+		"recipe": "1xLST=>10xFLX",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4413.6876,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 2943.8124,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 193.58
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.2509191194001366,
+		"output_per_day": 25.0,
+		"average_traded_7d": 2019.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 1956.7
+			}
+		],
+		"recipe": "10xLIO 4xHAL=>4xLI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 4665.929621212122,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 10157.555227272727,
+		"input_costs": [
+			{
+				"ticker": "LIO",
+				"amount": 10,
+				"vwap_7d": 344
+			},
+			{
+				"ticker": "HAL",
+				"amount": 4,
+				"vwap_7d": 366.25
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 3.114669447759623,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 249.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MHL",
+				"amount": 1,
+				"vwap_7d": 6022.9
+			}
+		],
+		"recipe": "1xI 1xFE 1xHE=>1xMHL",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 5237.925928571429,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 5517.252642857142,
+		"input_costs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1215.18
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.8893543885058754,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 51.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RDE",
+				"amount": 2,
+				"vwap_7d": 35065.57
+			}
+		],
+		"recipe": "1xLDE 100xEPO 1xKV=>2xRDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 18797.20048571429,
+		"area": 40.0,
+		"capex": 197031.13199999998,
+		"cost_per_day": 106436.97808571429,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 11611.64
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 25262.96
+			},
+			{
+				"ticker": "EPO",
+				"amount": 100,
+				"vwap_7d": 209.15
+			}
+		],
+		"worker_consumable_cost_per_day": 3241.2638,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.2566964235822005,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 43.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 391.63
+			}
+		],
+		"recipe": "1xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3400.1213599999996,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 990.8341999999999,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 6684.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 401.08
+			}
+		],
+		"recipe": "2xH2O 2xN 1xLST=>4xNS",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4309.3876,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 5717.6124,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 193.58
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "N",
+				"amount": 2,
+				"vwap_7d": 119.93
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.090073526617797,
+		"output_per_day": 25.0,
+		"average_traded_7d": 7158.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LBH",
+				"amount": 1,
+				"vwap_7d": 5646.69
+			}
+		],
+		"recipe": "35xPE 3xAL=>1xLBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 5390.796499999995,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 22842.653500000004,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 35,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3852459238078751,
+		"output_per_day": 5.0,
+		"average_traded_7d": 348.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MED",
+				"amount": 16,
+				"vwap_7d": 1464.95
+			}
+		],
+		"recipe": "50xPE 1xAL 4xCOT 1xHER=>16xMED",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4286.637600000004,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 32337.112399999998,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 4,
+				"vwap_7d": 3337.87
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3909.23
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.38373161570395015,
+		"output_per_day": 25.0,
+		"average_traded_7d": 532.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REP",
+				"amount": 4,
+				"vwap_7d": 965.22
+			}
+		],
+		"recipe": "1xMFK 1xSFK 10xINS=>4xREP",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 5115.135000000002,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 14189.265,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 415.84
+			},
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 81.2
+			},
+			{
+				"ticker": "INS",
+				"amount": 10,
+				"vwap_7d": 199.37
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.24318182163617827,
+		"output_per_day": 20.0,
+		"average_traded_7d": 576.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 18727.13
+			}
+		],
+		"recipe": "1xLTA 6xRG=>1xRTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 18492.079950000007,
+		"area": 40.0,
+		"capex": 197031.13199999998,
+		"cost_per_day": 40030.2013,
+		"input_costs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4714.54
+			},
+			{
+				"ticker": "RG",
+				"amount": 6,
+				"vwap_7d": 1176.32
+			}
+		],
+		"worker_consumable_cost_per_day": 3241.2638,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.1171875,
+		"output_per_day": 3.125,
+		"average_traded_7d": 18.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NUT",
+				"amount": 12,
+				"vwap_7d": 376.83
+			}
+		],
+		"recipe": "1xH2O=>12xNUT",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3316.2182266666664,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 908.7997333333333,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 0.9343333333333332,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 846.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 391.04
+			}
+		],
+		"recipe": "2xH2O=>4xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3270.45458,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1113.8859,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 2220.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MG",
+				"amount": 6,
+				"vwap_7d": 141.87
+			}
+		],
+		"recipe": "1xMGS=>6xMG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 4885.060000000001,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 3981.8149999999996,
+		"input_costs": [
+			{
+				"ticker": "MGS",
+				"amount": 1,
+				"vwap_7d": 215.64
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 0.8191287969097947,
+		"output_per_day": 62.50000000000001,
+		"average_traded_7d": 2727.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 10,
+				"vwap_7d": 109.05
+			}
+		],
+		"recipe": "10xH2O 1xPG=>10xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3019.0240000000003,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 3796.6009999999997,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 1,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.7820312616786396,
+		"output_per_day": 62.5,
+		"average_traded_7d": 66956.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCS",
+				"amount": 2,
+				"vwap_7d": 2000
+			}
+		],
+		"recipe": "4xSFK 10xPG 1xPSS=>2xDCS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 5703.542166666666,
+		"area": 22.0,
+		"capex": 64054.359999999986,
+		"cost_per_day": 10963.124500000002,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 4,
+				"vwap_7d": 81.2
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 1310
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.03787878844322581,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 82.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 4,
+				"vwap_7d": 343.73
+			}
+		],
+		"recipe": "6xH2O=>4xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3026.7057000000004,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1790.67025,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 6,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.40042857142857147,
+		"output_per_day": 14.015,
+		"average_traded_7d": 1063.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLP",
+				"amount": 6,
+				"vwap_7d": 799.25
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>6xFLP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 4524.1795,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 7464.5705,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.1538461538461537,
+		"output_per_day": 15.0,
+		"average_traded_7d": 106.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1022.75
+			}
+		],
+		"recipe": "4xHCP 2xGRN 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2872.0618787878793,
+		"area": 14.0,
+		"capex": 34542.111999999994,
+		"cost_per_day": 12624.150242424244,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 401.04
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 391.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.4350649350649354,
+		"output_per_day": 15.151515151515152,
+		"average_traded_7d": 7197.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 6,
+				"vwap_7d": 675.21
+			}
+		],
+		"recipe": "1xSTL 2xSFK=>6xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 4482.470714285716,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 9986.315,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 81.2
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.287337646565654,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 1018.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1681.04
+			}
+		],
+		"recipe": "2xH2O=>1xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2853.7606000000005,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1072.8686666666665,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.3358333333333334,
+		"logistics_per_area": 0.06673809523809524,
+		"output_per_day": 2.3358333333333334,
+		"average_traded_7d": 862
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1305.73
+			}
+		],
+		"recipe": "6xALO 1xO 1xC 1xFLX=>4xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3849.717500000001,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 7031.365833333334,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 294.3
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 255.58
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 1.1118371378291736,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 2439.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 2788.65
+			}
+		],
+		"recipe": "2xRAT 1xHER=>2xFIM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2642.299000000002,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 11300.951,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 2,
+				"vwap_7d": 166.73
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3909.23
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.1875000004656613,
+		"output_per_day": 5.0,
+		"average_traded_7d": 3563.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7024.32
+			}
+		],
+		"recipe": "50xPG=>1xNL",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 7923.4257,
+		"area": 48.4,
+		"capex": 102148.92199999999,
+		"cost_per_day": 9637.3743,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 2464.8743,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.05836776834874114,
+		"output_per_day": 2.5,
+		"average_traded_7d": 89
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 343.73
+			}
+		],
+		"recipe": "1xH2O=>2xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2740.01486,
+		"area": 35.0,
+		"capex": 35731.34,
+		"cost_per_day": 1113.8859,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 5.606,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 1063.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1022.75
+			}
+		],
+		"recipe": "4xHCP 2xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2608.0088484848484,
+		"area": 14.0,
+		"capex": 34542.111999999994,
+		"cost_per_day": 5140.097212121213,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 391.04
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 391.63
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 7197.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSC",
+				"amount": 1,
+				"vwap_7d": 54700
+			}
+		],
+		"recipe": "1xDCM 1xMFK 1xSAR=>1xBSC",
+		"expertise": "CHEMISTRY",
+		"building": "PHF",
+		"profit_per_day": 19195.109555555555,
+		"area": 41.5,
+		"capex": 257298.15999999997,
+		"cost_per_day": 56777.11266666667,
+		"input_costs": [
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 30708.2
+			},
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 415.84
+			},
+			{
+				"ticker": "DCM",
+				"amount": 1,
+				"vwap_7d": 7980
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.946,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 0.08199464547207237,
+		"output_per_day": 1.3888888888888888,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1022.75
+			}
+		],
+		"recipe": "4xHCP 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2572.3649090909094,
+		"area": 14.0,
+		"capex": 34542.111999999994,
+		"cost_per_day": 5175.741151515152,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 401.04
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 391.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 7197.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRU",
+				"amount": 6,
+				"vwap_7d": 620.55
+			}
+		],
+		"recipe": "2xAL 1xHE=>6xTRU",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 4035.104499999997,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 19235.5205,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.1634615384615383,
+		"output_per_day": 37.5,
+		"average_traded_7d": 560.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"recipe": "3xSIO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3584.0508333333323,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 15186.365833333333,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 137.5
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 3.0568181565313632,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 1071.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "S",
+				"amount": 6,
+				"vwap_7d": 264.85
+			}
+		],
+		"recipe": "1xSCR 1xO=>6xS",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3577.925833333335,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 3043.3241666666668,
+		"input_costs": [
+			{
+				"ticker": "SCR",
+				"amount": 1,
+				"vwap_7d": 414.14
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.6043560577161385,
+		"output_per_day": 25.0,
+		"average_traded_7d": 72.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3564.7799999999993,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 10513.0325,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 137.5
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.488920431245457,
+		"output_per_day": 6.25,
+		"average_traded_7d": 1071.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO 1xFLX=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3454.1966666666663,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 20008.82416666667,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 137.5
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 294.3
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 4.266571930863641,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 1071.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1022.75
+			}
+		],
+		"recipe": "4xHCP=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2464.3240000000005,
+		"area": 14.0,
+		"capex": 34542.111999999994,
+		"cost_per_day": 2649.426,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 391.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 7197.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1022.75
+			}
+		],
+		"recipe": "4xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2461.374,
+		"area": 14.0,
+		"capex": 34542.111999999994,
+		"cost_per_day": 2652.376,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 391.63
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 7197.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1022.75
+			}
+		],
+		"recipe": "4xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2414.3240000000005,
+		"area": 14.0,
+		"capex": 34542.111999999994,
+		"cost_per_day": 2699.426,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 4,
+				"vwap_7d": 401.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 7197.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2221.7740000000003,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6114.726,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 315.64
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 376.83
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SCN",
+				"amount": 8,
+				"vwap_7d": 2781.87
+			}
+		],
+		"recipe": "100xPE 4xCU=>8xSCN",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 10608.542166666668,
+		"area": 36.0,
+		"capex": 162832.77999999997,
+		"cost_per_day": 12573.707833333334,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 4,
+				"vwap_7d": 2317.64
+			},
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 1.0613426007761586,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 130
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LCR",
+				"amount": 1,
+				"vwap_7d": 5162.07
+			}
+		],
+		"recipe": "1xSI 1xO=>1xLCR",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 2927.8876,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 6999.170092307691,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.24533371243002192,
+		"output_per_day": 1.9230769230769231,
+		"average_traded_7d": 4.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2174.724,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6161.776,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 315.64
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 401.04
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 376.83
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2171.224,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6165.276,
+		"input_costs": [
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 376.83
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 325.75
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AU",
+				"amount": 2,
+				"vwap_7d": 1741.45
+			}
+		],
+		"recipe": "1xC 3xAUO=>2xAU",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3049.3008333333337,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 6625.421388888889,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "AUO",
+				"amount": 3,
+				"vwap_7d": 350
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 4.878787801723288,
+		"output_per_day": 5.555555555555555,
+		"average_traded_7d": 33.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2124.174000000001,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6212.325999999999,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 401.04
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 325.75
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 376.83
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SSC",
+				"amount": 6,
+				"vwap_7d": 599.52
+			}
+		],
+		"recipe": "20xNFI 2xAL 1xHE=>6xSSC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 3392.854499999998,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 41571.1455,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "NFI",
+				"amount": 20,
+				"vwap_7d": 17.26
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 2.9735577507660937,
+		"output_per_day": 75.0,
+		"average_traded_7d": 225.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FET",
+				"amount": 4,
+				"vwap_7d": 4900
+			}
+		],
+		"recipe": "1xFE 3xTI=>4xFET",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 20996.78305,
+		"area": 44.2,
+		"capex": 338550.49199999997,
+		"cost_per_day": 40253.21695,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			},
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 3076.73
+			}
+		],
+		"worker_consumable_cost_per_day": 8526.685700000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.937217167599708,
+		"output_per_day": 12.5,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2688.14
+			}
+		],
+		"recipe": "150xPE=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 2874.6313333333333,
+		"area": 27.0,
+		"capex": 46438.424,
+		"cost_per_day": 8325.952000000001,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1388.4519999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.23148148148148148,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 698.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2081.3239999999996,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6255.176,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 376.83
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 343.73
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 57.38
+			}
+		],
+		"recipe": "1xH 1xC 1xMG=>50xPG",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 4586.416964285714,
+		"area": 19.0,
+		"capex": 74813.108,
+		"cost_per_day": 5660.011607142858,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 125.1
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 141.87
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1053.86875,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.48684210733587585,
+		"output_per_day": 178.57142857142858,
+		"average_traded_7d": 109700
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2039.223999999999,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6297.276000000001,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 315.64
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 413.34
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 391.63
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2034.2740000000001,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6302.226,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 401.04
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 343.73
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 376.83
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1992.1739999999998,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6344.326,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 413.34
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 315.64
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 401.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9687499888241291,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1988.6740000000007,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6347.825999999998,
+		"input_costs": [
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 325.75
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 413.34
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 391.63
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 100,
+				"vwap_7d": 17.63
+			}
+		],
+		"recipe": "1xAMM 2xGAL 3xH=>100xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 3894.911200000002,
+		"area": 33.4,
+		"capex": 67390.94,
+		"cost_per_day": 10796.755466666666,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 2,
+				"vwap_7d": 263.91
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "H",
+				"amount": 3,
+				"vwap_7d": 125.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1745.5888,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.5194610768776693,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 171724
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1941.6240000000005,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6394.875999999999,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 413.34
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 325.75
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 401.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 602.75
+			}
+		],
+		"recipe": "1xAL 1xSI=>10xTRN",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 10514.907500000001,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 19622.5925,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.7833333401665138,
+		"output_per_day": 50.0,
+		"average_traded_7d": 1039.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"recipe": "4xTS 1xO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2718.1549999999984,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 20744.865833333337,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "TS",
+				"amount": 4,
+				"vwap_7d": 123.62
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 6.364110067035213,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 1071.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1898.7739999999997,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6437.726,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 391.63
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 343.73
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 413.34
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BPT",
+				"amount": 12,
+				"vwap_7d": 4400
+			}
+		],
+		"recipe": "5xTHP 20xTHF=>12xBPT",
+		"expertise": "MANUFACTURING",
+		"building": "SPP",
+		"profit_per_day": 59427.033771428585,
+		"area": 71.8,
+		"capex": 1070664.288,
+		"cost_per_day": 129144.3948,
+		"input_costs": [
+			{
+				"ticker": "THF",
+				"amount": 20,
+				"vwap_7d": 463.66
+			},
+			{
+				"ticker": "THP",
+				"amount": 5,
+				"vwap_7d": 4750
+			}
+		],
+		"worker_consumable_cost_per_day": 11204.394799999998,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.1440509707150686,
+		"output_per_day": 42.85714285714286,
+		"average_traded_7d": 12.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 166.73
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1851.7240000000004,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 6484.775999999999,
+		"input_costs": [
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 343.73
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 413.34
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 401.04
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 93848.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSM",
+				"amount": 1,
+				"vwap_7d": 2797.93
+			}
+		],
+		"recipe": "20xPG=>1xPSM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3396.656749999999,
+		"area": 22.0,
+		"capex": 64054.359999999986,
+		"cost_per_day": 5346.874500000001,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.05681818266483871,
+		"output_per_day": 3.125,
+		"average_traded_7d": 20
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "INS",
+				"amount": 24,
+				"vwap_7d": 199.37
+			}
+		],
+		"recipe": "100xPE 1xAR 1xTHF=>24xINS",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 10385.4362,
+		"area": 40.0,
+		"capex": 197031.13199999998,
+		"cost_per_day": 13538.963800000001,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 463.66
+			},
+			{
+				"ticker": "AR",
+				"amount": 1,
+				"vwap_7d": 485.88
+			}
+		],
+		"worker_consumable_cost_per_day": 3241.2638,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.4230000050738454,
+		"output_per_day": 120.0,
+		"average_traded_7d": 45836.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "UTS",
+				"amount": 1,
+				"vwap_7d": 7208.52
+			}
+		],
+		"recipe": "2xSFK 6xFE=>1xUTS",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 2965.3755000000046,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 19561.249499999998,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 6,
+				"vwap_7d": 922.3
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 81.2
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 4.770564559787031,
+		"output_per_day": 3.125,
+		"average_traded_7d": 7.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 209.15
+			}
+		],
+		"recipe": "1xC 1xH 1xCL 1xO=>50xEPO",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 3863.6562499999995,
+		"area": 19.0,
+		"capex": 74813.108,
+		"cost_per_day": 9208.21875,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5267.64
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 125.1
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1053.86875,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.43822368950043855,
+		"output_per_day": 62.5,
+		"average_traded_7d": 24986.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 6,
+				"vwap_7d": 413.34
+			}
+		],
+		"recipe": "16xH2O 1xNS=>6xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 7205.0242,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 8295.2258,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 401.08
+			},
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.9275701352369006,
+		"output_per_day": 37.5,
+		"average_traded_7d": 2509.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 4,
+				"vwap_7d": 922.3
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO 1xFLX=>4xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2370.2175,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 5315.615833333334,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 294.3
+			},
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 118.32
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 3.697064451195977,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 804.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 5,
+				"vwap_7d": 675.21
+			}
+		],
+		"recipe": "1xSTL=>5xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2651.0064285714298,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 9406.315,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 2147.81
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2743506338689234,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 1018.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSL",
+				"amount": 1,
+				"vwap_7d": 4644.5
+			}
+		],
+		"recipe": "40xPG=>1xPSL",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3133.7505,
+		"area": 22.0,
+		"capex": 64054.359999999986,
+		"cost_per_day": 6542.291166666668,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.07575757688645161,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 25.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1305.73
+			}
+		],
+		"recipe": "6xALO 1xC 1xO=>3xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2264.6424999999995,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 7528.332500000001,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 255.58
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.3057954744859175,
+		"output_per_day": 7.5,
+		"average_traded_7d": 2439.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MCG",
+				"amount": 50,
+				"vwap_7d": 38.04
+			}
+		],
+		"recipe": "4xLST 2xSIO=>50xMCG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2527.835,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 6982.165,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 137.5
+			},
+			{
+				"ticker": "LST",
+				"amount": 4,
+				"vwap_7d": 193.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 3.2954545454545454,
+		"output_per_day": 250.0,
+		"average_traded_7d": 28305.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DIS",
+				"amount": 1,
+				"vwap_7d": 20000
+			}
+		],
+		"recipe": "1xLCR 3xGL=>1xDIS",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 23738.120065671643,
+		"area": 40.2,
+		"capex": 513400.3119999999,
+		"cost_per_day": 13575.312770149254,
+		"input_costs": [
+			{
+				"ticker": "LCR",
+				"amount": 1,
+				"vwap_7d": 5162.07
+			},
+			{
+				"ticker": "GL",
+				"amount": 3,
+				"vwap_7d": 352.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1972.7568000000003,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.009189129364388047,
+		"output_per_day": 1.8656716417910448,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PE",
+				"amount": 200,
+				"vwap_7d": 11.1
+			}
+		],
+		"recipe": "1xC 2xH=>200xPE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2492.3367857142857,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 7418.3775,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 2,
+				"vwap_7d": 125.1
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 0.6087662337662337,
+		"output_per_day": 892.8571428571429,
+		"average_traded_7d": 265833.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LHP",
+				"amount": 4,
+				"vwap_7d": 4323.83
+			}
+		],
+		"recipe": "12xAL 1xHE=>4xLHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 3601.9135666666643,
+		"area": 31.2,
+		"capex": 79355.644,
+		"cost_per_day": 68461.91976666667,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 2042.7531000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.341880341880342,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 166.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ADE",
+				"amount": 2,
+				"vwap_7d": 49430.47
+			}
+		],
+		"recipe": "2xLDE 2xKV=>2xADE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 41745.98370000001,
+		"area": 50.4,
+		"capex": 923984.608,
+		"cost_per_day": 164214.30796666667,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 2,
+				"vwap_7d": 11611.64
+			},
+			{
+				"ticker": "KV",
+				"amount": 2,
+				"vwap_7d": 25262.96
+			}
+		],
+		"worker_consumable_cost_per_day": 10570.1413,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18187831082041303,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 48.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2854.13
+			}
+		],
+		"recipe": "10xSWF 5xBCO 60xPE 1xBGO=>5xPCB",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 18864.025214285724,
+		"area": 39.2,
+		"capex": 422005.29,
+		"cost_per_day": 44844.233714285714,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 60,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "BCO",
+				"amount": 5,
+				"vwap_7d": 844.42
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2280.29
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 245.05
+			}
+		],
+		"worker_consumable_cost_per_day": 1902.7605000000003,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 2.2748496356955115,
+		"output_per_day": 22.321428571428573,
+		"average_traded_7d": 22.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 1310
+			}
+		],
+		"recipe": "10xPG=>1xPSS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 2840.6255,
+		"area": 22.0,
+		"capex": 64054.359999999986,
+		"cost_per_day": 5346.874500000001,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.028409091332419353,
+		"output_per_day": 6.25,
+		"average_traded_7d": 3.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ASE",
+				"amount": 1,
+				"vwap_7d": 66093.6
+			}
+		],
+		"recipe": "1xRSE 2xTI=>1xASE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 40753.7677909091,
+		"area": 50.4,
+		"capex": 923984.608,
+		"cost_per_day": 109458.95948181818,
+		"input_costs": [
+			{
+				"ticker": "RSE",
+				"amount": 1,
+				"vwap_7d": 37357.62
+			},
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 3076.73
+			}
+		],
+		"worker_consumable_cost_per_day": 10570.1413,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.49152236544724665,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 24.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3337.87
+			}
+		],
+		"recipe": "1xRCO=>1xCOT",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 4438.584033333334,
+		"area": 48.4,
+		"capex": 102148.92199999999,
+		"cost_per_day": 9469.207633333333,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1681.04
+			}
+		],
+		"worker_consumable_cost_per_day": 2464.8743,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.08608815426997246,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 321.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1681.04
+			}
+		],
+		"recipe": "10xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 6094.478745454546,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 13008.248527272728,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 401.08
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.1682243322986818,
+		"output_per_day": 11.363636363636365,
+		"average_traded_7d": 862
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SWF",
+				"amount": 30,
+				"vwap_7d": 245.05
+			}
+		],
+		"recipe": "1xSI 1xAL=>30xSWF",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 7651.607500000002,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 10727.142499999998,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3916666700832569,
+		"output_per_day": 75.0,
+		"average_traded_7d": 519.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AAR",
+				"amount": 3,
+				"vwap_7d": 18338.46
+			}
+		],
+		"recipe": "1xKV 2xAU 4xPCB 6xSWF=>3xAAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 22430.709880596998,
+		"area": 40.6,
+		"capex": 545575.34,
+		"cost_per_day": 80209.92444776121,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 2,
+				"vwap_7d": 1741.45
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 25262.96
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2854.13
+			},
+			{
+				"ticker": "SWF",
+				"amount": 6,
+				"vwap_7d": 245.05
+			}
+		],
+		"worker_consumable_cost_per_day": 2537.014,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 1.8614439824711084,
+		"output_per_day": 5.597014925373134,
+		"average_traded_7d": 1.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NFI",
+				"amount": 1200,
+				"vwap_7d": 17.26
+			}
+		],
+		"recipe": "10xC 2xSI=>1200xNFI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 7511.432500000006,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 24851.0675,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2252.45
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1022.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.8691589672849556,
+		"output_per_day": 1875.0,
+		"average_traded_7d": 3402.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2895.06
+			}
+		],
+		"recipe": "2xFE 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 1857.3055757575767,
+		"area": 27.0,
+		"capex": 46438.424,
+		"cost_per_day": 9108.830787878787,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 922.3
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 193.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1388.4519999999998,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.592312031991019,
+		"output_per_day": 3.787878787878788,
+		"average_traded_7d": 989.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TSH",
+				"amount": 1,
+				"vwap_7d": 45000
+			}
+		],
+		"recipe": "150xPE 2xLBH 2xTHP=>1xTSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 36391.56703333334,
+		"area": 50.4,
+		"capex": 923984.608,
+		"cost_per_day": 57358.43296666666,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "THP",
+				"amount": 2,
+				"vwap_7d": 4750
+			},
+			{
+				"ticker": "LBH",
+				"amount": 2,
+				"vwap_7d": 5646.69
+			}
+		],
+		"worker_consumable_cost_per_day": 10570.1413,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2604166694692578,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 22.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DDT",
+				"amount": 3,
+				"vwap_7d": 5826.82
+			}
+		],
+		"recipe": "1xC 1xH 1xCL=>3xDDT",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 13297.59236666666,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 15836.507633333335,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5267.64
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 125.1
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.2473118301067087,
+		"output_per_day": 5.0,
+		"average_traded_7d": 684.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ROM",
+				"amount": 10,
+				"vwap_7d": 4950.35
+			}
+		],
+		"recipe": "10xPSS 10xBGC 10xSI=>10xROM",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 16315.156166666678,
+		"area": 39.2,
+		"capex": 422005.29,
+		"cost_per_day": 189949.42716666666,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 10,
+				"vwap_7d": 2252.45
+			},
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 950.67
+			},
+			{
+				"ticker": "PSS",
+				"amount": 10,
+				"vwap_7d": 1310
+			}
+		],
+		"worker_consumable_cost_per_day": 1902.7605000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.4968112199598935,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 186.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFK",
+				"amount": 16,
+				"vwap_7d": 81.2
+			}
+		],
+		"recipe": "1xFE=>16xSFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 2165.417166666668,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 11367.916166666668,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.64583335768792,
+		"output_per_day": 166.66666666666669,
+		"average_traded_7d": 1829
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 8,
+				"vwap_7d": 391.04
+			}
+		],
+		"recipe": "14xH2O 1xNS=>8xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 5203.524200000001,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 4572.4758,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 14,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 401.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1682242990654206,
+		"output_per_day": 25.0,
+		"average_traded_7d": 2220.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 29500
+			}
+		],
+		"recipe": "1xMB 1xDCM 1xHD=>1xBWS",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 19762.986,
+		"area": 40.6,
+		"capex": 545575.34,
+		"cost_per_day": 53987.014,
+		"input_costs": [
+			{
+				"ticker": "HD",
+				"amount": 1,
+				"vwap_7d": 3400
+			},
+			{
+				"ticker": "DCM",
+				"amount": 1,
+				"vwap_7d": 7980
+			},
+			{
+				"ticker": "MB",
+				"amount": 1,
+				"vwap_7d": 9200
+			}
+		],
+		"worker_consumable_cost_per_day": 2537.014,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.15240147838304782,
+		"output_per_day": 2.5,
+		"average_traded_7d": 1.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 11611.64
+			}
+		],
+		"recipe": "3xAL 1xNL=>1xLDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 2036.446499999996,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 56021.753500000006,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7024.32
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.5131147767676683,
+		"output_per_day": 5.0,
+		"average_traded_7d": 252.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEA",
+				"amount": 30,
+				"vwap_7d": 170.6
+			}
+		],
+		"recipe": "1xS 1xSI 30xPG=>30xSEA",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1928.185000000001,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 19396.815,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			},
+			{
+				"ticker": "PG",
+				"amount": 30,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 264.85
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.8522727611390027,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 2456.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1176.32
+			}
+		],
+		"recipe": "10xGL 15xPG 1xSEN=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 4338.718191304347,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 8447.36876521739,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 352.3
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 796.24
+			},
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 1.0869565217391304,
+		"logistics_per_area": 0.009503445450201485,
+		"output_per_day": 10.869565217391305,
+		"average_traded_7d": 458
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALG",
+				"amount": 12,
+				"vwap_7d": 315.64
+			}
+		],
+		"recipe": "16xH2O 2xNS=>12xALG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4943.524199999999,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 5577.809133333333,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 401.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 1.557632398753894,
+		"output_per_day": 33.33333333333333,
+		"average_traded_7d": 2150.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1176.32
+			}
+		],
+		"recipe": "10xGL 15xPG=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 4278.673876923076,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 7032.095353846154,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 352.3
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 0.9615384615384616,
+		"logistics_per_area": 0.008406894052101314,
+		"output_per_day": 9.615384615384615,
+		"average_traded_7d": 458
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAC",
+				"amount": 10,
+				"vwap_7d": 3000
+			}
+		],
+		"recipe": "1xHCP 1xO 1xS=>10xBAC",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 11467.407518181815,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 5578.047027272727,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 264.85
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 391.04
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 0.5681818181818181,
+		"logistics_per_area": 0.03758858787378374,
+		"output_per_day": 5.681818181818182,
+		"average_traded_7d": 8.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1215.18
+			}
+		],
+		"recipe": "3xCLI=>1xI",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1798.060000000001,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 5796.815,
+		"input_costs": [
+			{
+				"ticker": "CLI",
+				"amount": 3,
+				"vwap_7d": 216.6
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.062500065023249,
+		"output_per_day": 6.25,
+		"average_traded_7d": 492.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1891.79
+			}
+		],
+		"recipe": "1xFE 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 1523.1979999999999,
+		"area": 27.0,
+		"capex": 46438.424,
+		"cost_per_day": 7935.752,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 193.58
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1388.4519999999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 2.4692592797455966,
+		"output_per_day": 5.0,
+		"average_traded_7d": 1913
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AST",
+				"amount": 4,
+				"vwap_7d": 4200
+			}
+		],
+		"recipe": "1xAL 3xTI=>4xAST",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 11048.564299999998,
+		"area": 44.2,
+		"capex": 338550.49199999997,
+		"cost_per_day": 41451.4357,
+		"input_costs": [
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 3076.73
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 8526.685700000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.4083710461180674,
+		"output_per_day": 12.5,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 18,
+				"vwap_7d": 2739.97
+			}
+		],
+		"recipe": "40xH2O 2xDDT 4xSOI=>18xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 22163.638479999998,
+		"area": 129.8,
+		"capex": 699249.4119999999,
+		"cost_per_day": 17334.203342857138,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 4,
+				"vwap_7d": 1091.29
+			},
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 5826.82
+			}
+		],
+		"worker_consumable_cost_per_day": 3099.1277999999993,
+		"runs_per_day": 0.8008571428571427,
+		"logistics_per_area": 0.11105877173673781,
+		"output_per_day": 14.415428571428569,
+		"average_traded_7d": 917.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 352.3
+			}
+		],
+		"recipe": "2xSIO 1xNA=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 3897.3549666666668,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 3442.228366666667,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 137.5
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2589936220580763,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 1947.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 12,
+				"vwap_7d": 325.75
+			}
+		],
+		"recipe": "4xNS=>12xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4363.224200000001,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 5409.275799999999,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 401.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.4018691588785048,
+		"output_per_day": 30.0,
+		"average_traded_7d": 382.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 922.3
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO=>3xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 1447.8174999999992,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 5469.432500000001,
+		"input_costs": [
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 118.32
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.408068250526082,
+		"output_per_day": 7.5,
+		"average_traded_7d": 804.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAF",
+				"amount": 2,
+				"vwap_7d": 1645.04
+			}
+		],
+		"recipe": "22xH2O 3xNS=>2xCAF",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4206.7242,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 12243.6758,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 3,
+				"vwap_7d": 401.08
+			},
+			{
+				"ticker": "H2O",
+				"amount": 22,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.448598162871655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 1752.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRO",
+				"amount": 3,
+				"vwap_7d": 2350
+			}
+		],
+		"recipe": "1xAL 2xCU=>3xBRO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 1704.969249999999,
+		"area": 31.0,
+		"capex": 57378.06,
+		"cost_per_day": 20326.28075,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2317.64
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1760.6245000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.6401208293053413,
+		"output_per_day": 9.375,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 12,
+				"vwap_7d": 352.3
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xFLX=>12xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 3490.622327777779,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 3848.961005555556,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 137.5
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 294.3
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 1.7361111111111112,
+		"logistics_per_area": 0.227686700834675,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 1947.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 352.3
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xSEN=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 3249.6258,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 5557.8742,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 796.24
+			},
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 137.5
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.31086065248386485,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1947.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 25262.96
+			}
+		],
+		"recipe": "75xPG 5xTCL=>1xKV",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 2592.9538250000037,
+		"area": 48.4,
+		"capex": 102148.92199999999,
+		"cost_per_day": 36880.421174999996,
+		"input_costs": [
+			{
+				"ticker": "TCL",
+				"amount": 5,
+				"vwap_7d": 3544.49
+			},
+			{
+				"ticker": "PG",
+				"amount": 75,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 2464.8743,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.05326704468485738,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 19.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 401.04
+			}
+		],
+		"recipe": "20xH2O 2xNS=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 3495.7742000000007,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 4023.7258,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 401.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.1390186498098285,
+		"output_per_day": 18.75,
+		"average_traded_7d": 1291.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1776.58
+			}
+		],
+		"recipe": "1xFE 50xPE=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 1105.5480000000002,
+		"area": 27.0,
+		"capex": 46438.424,
+		"cost_per_day": 13699.285333333333,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1388.4519999999998,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 2.5845679201553633,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 134.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NCS",
+				"amount": 100,
+				"vwap_7d": 39.8
+			}
+		],
+		"recipe": "1xC=>100xNCS",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 4329.244999999999,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 3962.4216666666666,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1022.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18172378546383275,
+		"output_per_day": 208.33333333333334,
+		"average_traded_7d": 7723.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 15,
+				"vwap_7d": 2739.97
+			}
+		],
+		"recipe": "60xH2O 2xDDT=>15xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 15689.318132499997,
+		"area": 129.8,
+		"capex": 699249.4119999999,
+		"cost_per_day": 13111.19153,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 5826.82
+			},
+			{
+				"ticker": "H2O",
+				"amount": 60,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 3099.1277999999993,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08098035439137134,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 917.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PWO",
+				"amount": 20,
+				"vwap_7d": 345.25
+			}
+		],
+		"recipe": "1xCOT 50xPG=>20xPWO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1173.3100000000006,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 27597.523333333334,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3337.87
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.19886363681342284,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 2090
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ABH",
+				"amount": 2,
+				"vwap_7d": 58989.67
+			}
+		],
+		"recipe": "2xRBH 125xNR=>2xABH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 19133.126557142838,
+		"area": 50.4,
+		"capex": 923984.608,
+		"cost_per_day": 191544.26630000002,
+		"input_costs": [
+			{
+				"ticker": "RBH",
+				"amount": 2,
+				"vwap_7d": 27077.13
+			},
+			{
+				"ticker": "NR",
+				"amount": 125,
+				"vwap_7d": 377.53
+			}
+		],
+		"worker_consumable_cost_per_day": 10570.1413,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.3915107810327069,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 85.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAP",
+				"amount": 15,
+				"vwap_7d": 330
+			}
+		],
+		"recipe": "1xSI 1xFE=>15xCAP",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 3715.9637500000003,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 11752.78625,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 922.3
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9932827169650068,
+		"output_per_day": 46.875,
+		"average_traded_7d": 8.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MLI",
+				"amount": 1,
+				"vwap_7d": 23715.79
+			}
+		],
+		"recipe": "=>1xMLI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6710.3116666666665,
+		"area": 27.0,
+		"capex": 336790.44,
+		"cost_per_day": 3171.2675,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3171.2675,
+		"runs_per_day": 0.41666666666666663,
+		"logistics_per_area": 0.0001543209842049781,
+		"output_per_day": 0.41666666666666663,
+		"average_traded_7d": 2.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 15510.71
+			}
+		],
+		"recipe": "=>1xBAI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6522.926249999999,
+		"area": 27.0,
+		"capex": 336790.44,
+		"cost_per_day": 3171.2675,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3171.2675,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00023148147630746717,
+		"output_per_day": 0.625,
+		"average_traded_7d": 4
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 6,
+				"vwap_7d": 3295.96
+			}
+		],
+		"recipe": "30xH2O 1xDDT 3xSOI=>6xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 13295.041081250009,
+		"area": 129.8,
+		"capex": 699249.4119999999,
+		"cost_per_day": 21349.618468749995,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 3,
+				"vwap_7d": 1091.29
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5826.82
+			},
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 43.9
+			}
+		],
+		"worker_consumable_cost_per_day": 3099.1277999999993,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.12282020538705953,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 28.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 318.06
+			}
+		],
+		"recipe": "10xOVE 1xAL=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1026.7474999999988,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 18852.0025,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 143.29
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.8238636486401613,
+		"output_per_day": 62.5,
+		"average_traded_7d": 1831.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SAL",
+				"amount": 1,
+				"vwap_7d": 7500
+			}
+		],
+		"recipe": "=>1xSAL",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6203.7325,
+		"area": 27.0,
+		"capex": 336790.44,
+		"cost_per_day": 3171.2675,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3171.2675,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.00046296295261493434,
+		"output_per_day": 1.25,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 137.5
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "BE",
+				"amount": 1,
+				"vwap_7d": 2500
+			}
+		],
+		"recipe": "2xBER=>1xBE 1xAL 1xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 27700.740700000002,
+		"area": 52.6,
+		"capex": 1505405.508,
+		"cost_per_day": 21589.634299999998,
+		"input_costs": [
+			{
+				"ticker": "BER",
+				"amount": 2,
+				"vwap_7d": 491.52
+			}
+		],
+		"worker_consumable_cost_per_day": 9301.634299999998,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5042775767384373,
+		"output_per_day": 12.5,
+		"average_traded_7d": 2439.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSI",
+				"amount": 8,
+				"vwap_7d": 1750
+			}
+		],
+		"recipe": "16xH2O 1xHCP 1xNS=>8xRSI",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 11192.075499999999,
+		"area": 41.8,
+		"capex": 609869.5800000001,
+		"cost_per_day": 6307.924499999999,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 391.04
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 401.08
+			}
+		],
+		"worker_consumable_cost_per_day": 4439.7744999999995,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.26315790044063586,
+		"output_per_day": 10.0,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 30708.2
+			}
+		],
+		"recipe": "16xSEN 4xPCB=>1xSAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 9686.568089552238,
+		"area": 40.6,
+		"capex": 545575.34,
+		"cost_per_day": 47604.84982089553,
+		"input_costs": [
+			{
+				"ticker": "SEN",
+				"amount": 16,
+				"vwap_7d": 796.24
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2854.13
+			}
+		],
+		"worker_consumable_cost_per_day": 2537.014,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.09190500698478053,
+		"output_per_day": 1.8656716417910448,
+		"average_traded_7d": 8.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PIB",
+				"amount": 12,
+				"vwap_7d": 1371.43
+			}
+		],
+		"recipe": "20xH2O 1xDDT 2xSOI=>12xPIB",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 12056.613114285716,
+		"area": 129.8,
+		"capex": 699249.4119999999,
+		"cost_per_day": 20892.972228571427,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5826.82
+			},
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "SOI",
+				"amount": 2,
+				"vwap_7d": 1091.29
+			}
+		],
+		"worker_consumable_cost_per_day": 3099.1277999999993,
+		"runs_per_day": 2.0021428571428572,
+		"logistics_per_area": 0.18509795289456304,
+		"output_per_day": 24.025714285714287,
+		"average_traded_7d": 5
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 4,
+				"vwap_7d": 325.75
+			}
+		],
+		"recipe": "1xNS=>4xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2359.5242000000007,
+		"area": 21.4,
+		"capex": 141430.68399999998,
+		"cost_per_day": 3069.6424666666667,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 401.08
+			}
+		],
+		"worker_consumable_cost_per_day": 1398.4758,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.7788161993769471,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 382.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 143.29
+			}
+		],
+		"recipe": "1xRCO 50xPE=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 888.4349999999993,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 11052.398333333334,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1681.04
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.28409090697426687,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 5857.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NN",
+				"amount": 1,
+				"vwap_7d": 63900
+			}
+		],
+		"recipe": "1xBAI 1xMLI=>1xNN",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 12528.122699999996,
+		"area": 24.8,
+		"capex": 765716.2479999999,
+		"cost_per_day": 40721.87729999999,
+		"input_costs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 15510.71
+			},
+			{
+				"ticker": "MLI",
+				"amount": 1,
+				"vwap_7d": 23715.79
+			}
+		],
+		"worker_consumable_cost_per_day": 8033.1273,
+		"runs_per_day": 0.8333333333333333,
+		"logistics_per_area": 0.0006720429957313562,
+		"output_per_day": 0.8333333333333333,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TCL",
+				"amount": 3,
+				"vwap_7d": 3544.49
+			}
+		],
+		"recipe": "1xCL 1xO 1xH=>3xTCL",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 5549.184033333332,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 16603.87846666667,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 125.1
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5267.64
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.24703181453890374,
+		"output_per_day": 6.25,
+		"average_traded_7d": 15.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THF",
+				"amount": 20,
+				"vwap_7d": 463.66
+			}
+		],
+		"recipe": "4xAMM 4xH2O 4xNA=>20xTHF",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 5187.3257,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 6404.174300000001,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 4,
+				"vwap_7d": 183.02
+			},
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "NA",
+				"amount": 4,
+				"vwap_7d": 25.11
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.40322582247436684,
+		"output_per_day": 25.0,
+		"average_traded_7d": 300.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ATA",
+				"amount": 1,
+				"vwap_7d": 29987.18
+			}
+		],
+		"recipe": "1xRTA 1xNG=>1xATA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 13198.881427272721,
+		"area": 50.4,
+		"capex": 923984.608,
+		"cost_per_day": 54953.80039090909,
+		"input_costs": [
+			{
+				"ticker": "NG",
+				"amount": 1,
+				"vwap_7d": 801.68
+			},
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 18727.13
+			}
+		],
+		"worker_consumable_cost_per_day": 10570.1413,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.06863275612738053,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 5.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BOS",
+				"amount": 4,
+				"vwap_7d": 4990
+			}
+		],
+		"recipe": "1xBOR 1xSI 4xAL=>4xBOS",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 20537.590700000004,
+		"area": 52.6,
+		"capex": 1505405.508,
+		"cost_per_day": 29362.409299999996,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 548.94
+			}
+		],
+		"worker_consumable_cost_per_day": 9301.634299999998,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.7095532385568655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 5,
+				"vwap_7d": 3295.96
+			}
+		],
+		"recipe": "40xH2O 1xDDT=>5xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 9369.989669999999,
+		"area": 129.8,
+		"capex": 699249.4119999999,
+		"cost_per_day": 13726.45003,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5826.82
+			}
+		],
+		"worker_consumable_cost_per_day": 3099.1277999999993,
+		"runs_per_day": 1.4015,
+		"logistics_per_area": 0.08756675782924853,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 28.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AIR",
+				"amount": 1,
+				"vwap_7d": 200002.08
+			}
+		],
+		"recipe": "1xHCP 1xNS 1xH2O 1xWAI 1xPCB 1xSAR 1xGV 1xFC 1xBAC=>1xAIR",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 22412.3108,
+		"area": 51.6,
+		"capex": 1735870.352,
+		"cost_per_day": 77588.7292,
+		"input_costs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 90016.67
+			},
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 6468.89
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 401.08
+			},
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2971.67
+			},
+			{
+				"ticker": "PCB",
+				"amount": 1,
+				"vwap_7d": 2854.13
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 391.04
+			},
+			{
+				"ticker": "BAC",
+				"amount": 1,
+				"vwap_7d": 3000
+			},
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 30708.2
+			}
+		],
+		"worker_consumable_cost_per_day": 9160.939200000003,
+		"runs_per_day": 0.5,
+		"logistics_per_area": 0.04176356604091765,
+		"output_per_day": 0.5,
+		"average_traded_7d": 68.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 6,
+				"vwap_7d": 192.29
+			}
+		],
+		"recipe": "1xALG 1xH2O 1xBEA=>6xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 431.9490000000003,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 2452.401,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 315.64
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 343.73
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.875,
+		"output_per_day": 15.0,
+		"average_traded_7d": 211.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PIB",
+				"amount": 10,
+				"vwap_7d": 1371.43
+			}
+		],
+		"recipe": "30xH2O 1xDDT=>10xPIB",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 8411.531850000003,
+		"area": 129.8,
+		"capex": 699249.4119999999,
+		"cost_per_day": 15614.207462499999,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 5826.82
+			}
+		],
+		"worker_consumable_cost_per_day": 3099.1277999999993,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.13496725731895223,
+		"output_per_day": 17.51875,
+		"average_traded_7d": 5
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NG",
+				"amount": 10,
+				"vwap_7d": 801.68
+			}
+		],
+		"recipe": "10xGL 10xNCS=>10xNG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 1449.4591333333328,
+		"area": 36.6,
+		"capex": 123021.33799999999,
+		"cost_per_day": 6901.3742,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 352.3
+			},
+			{
+				"ticker": "NCS",
+				"amount": 10,
+				"vwap_7d": 39.8
+			}
+		],
+		"worker_consumable_cost_per_day": 2816.9992,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 0.012522769132578146,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 51.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2688.14
+			}
+		],
+		"recipe": "40xPG=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 650.4964999999979,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 12790.203500000001,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.2459016393442623,
+		"output_per_day": 5.0,
+		"average_traded_7d": 698.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MEA",
+				"amount": 2,
+				"vwap_7d": 4000.43
+			}
+		],
+		"recipe": "2xFIM 1xMTP=>2xMEA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 371.25476923076803,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 15015.014461538463,
+		"input_costs": [
+			{
+				"ticker": "MTP",
+				"amount": 1,
+				"vwap_7d": 1869.51
+			},
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 2788.65
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.2403846153846154,
+		"output_per_day": 3.8461538461538463,
+		"average_traded_7d": 970.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MTP",
+				"amount": 4,
+				"vwap_7d": 1869.51
+			}
+		],
+		"recipe": "1xPPA 1xNS 1xHCP=>4xMTP",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 6382.942166666666,
+		"area": 41.8,
+		"capex": 609869.5800000001,
+		"cost_per_day": 6080.457833333333,
+		"input_costs": [
+			{
+				"ticker": "PPA",
+				"amount": 1,
+				"vwap_7d": 192.29
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 401.08
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 391.04
+			}
+		],
+		"worker_consumable_cost_per_day": 4439.7744999999995,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.1594896331738437,
+		"output_per_day": 6.666666666666666,
+		"average_traded_7d": 495.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEN",
+				"amount": 20,
+				"vwap_7d": 796.24
+			}
+		],
+		"recipe": "20xTRN 10xH 10xN=>20xSEN",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 4215.773982758619,
+		"area": 39.2,
+		"capex": 422005.29,
+		"cost_per_day": 64425.60532758619,
+		"input_costs": [
+			{
+				"ticker": "N",
+				"amount": 10,
+				"vwap_7d": 119.93
+			},
+			{
+				"ticker": "H",
+				"amount": 10,
+				"vwap_7d": 125.1
+			},
+			{
+				"ticker": "TRN",
+				"amount": 20,
+				"vwap_7d": 602.75
+			}
+		],
+		"worker_consumable_cost_per_day": 1902.7605000000003,
+		"runs_per_day": 4.310344827586206,
+		"logistics_per_area": 2.2013546799074097,
+		"output_per_day": 86.20689655172413,
+		"average_traded_7d": 681
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NR",
+				"amount": 50,
+				"vwap_7d": 377.53
+			}
+		],
+		"recipe": "50xEPO 75xNCS=>50xNR",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 3346.6007,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 26147.93055,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 75,
+				"vwap_7d": 39.8
+			},
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 209.15
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.17221102235032626,
+		"output_per_day": 78.125,
+		"average_traded_7d": 1703.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 9108.25
+			}
+		],
+		"recipe": "1xNCS 4xLI=>1xPOW",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 5787.555699999998,
+		"area": 40.2,
+		"capex": 625569.8119999999,
+		"cost_per_day": 51139.0068,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 1,
+				"vwap_7d": 39.8
+			},
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 1956.7
+			}
+		],
+		"worker_consumable_cost_per_day": 1972.7568000000003,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.6234452735970899,
+		"output_per_day": 6.25,
+		"average_traded_7d": 45
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HD",
+				"amount": 5,
+				"vwap_7d": 3400
+			}
+		],
+		"recipe": "1xRG 5xDCS 5xLDI=>5xHD",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 4032.243200000001,
+		"area": 40.2,
+		"capex": 513400.3119999999,
+		"cost_per_day": 27684.17471044776,
+		"input_costs": [
+			{
+				"ticker": "LDI",
+				"amount": 5,
+				"vwap_7d": 521
+			},
+			{
+				"ticker": "DCS",
+				"amount": 5,
+				"vwap_7d": 2000
+			},
+			{
+				"ticker": "RG",
+				"amount": 1,
+				"vwap_7d": 1176.32
+			}
+		],
+		"worker_consumable_cost_per_day": 1972.7568000000003,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.46409742333110565,
+		"output_per_day": 9.328358208955224,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NST",
+				"amount": 4,
+				"vwap_7d": 1951.63
+			}
+		],
+		"recipe": "1xES 1xALG 1xTHF=>4xNST",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 2427.2257,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 17089.0743,
+		"input_costs": [
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 3998.72
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 463.66
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 315.64
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.14650537682476863,
+		"output_per_day": 10.0,
+		"average_traded_7d": 92.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IDC",
+				"amount": 1,
+				"vwap_7d": 11000
+			}
+		],
+		"recipe": "=>1xIDC",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 5635.9926,
+		"area": 23.6,
+		"capex": 1109921.528,
+		"cost_per_day": 8114.0074,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8114.0074,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005296610051103062,
+		"output_per_day": 1.25,
+		"average_traded_7d": 946.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 90016.67
+			}
+		],
+		"recipe": "1xNN 1xROM=>1xWAI",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 5114.942599999995,
+		"area": 23.6,
+		"capex": 1109921.528,
+		"cost_per_day": 51145.47615,
+		"input_costs": [
+			{
+				"ticker": "ROM",
+				"amount": 1,
+				"vwap_7d": 4950.35
+			},
+			{
+				"ticker": "NN",
+				"amount": 1,
+				"vwap_7d": 63900
+			}
+		],
+		"worker_consumable_cost_per_day": 8114.0074,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00029131355466048813,
+		"output_per_day": 0.625,
+		"average_traded_7d": 8.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EDC",
+				"amount": 1,
+				"vwap_7d": 8000.04
+			}
+		],
+		"recipe": "=>1xEDC",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 1966.9226999999992,
+		"area": 24.8,
+		"capex": 765716.2479999999,
+		"cost_per_day": 8033.1273,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8033.1273,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005040322467985172,
+		"output_per_day": 1.25,
+		"average_traded_7d": 37.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDI",
+				"amount": 6,
+				"vwap_7d": 521
+			}
+		],
+		"recipe": "1xGAL 1xSI=>6xLDI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 345.59321428571593,
+		"area": 32.1,
+		"capex": 185741.56,
+		"cost_per_day": 10818.6925,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 1,
+				"vwap_7d": 263.91
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"worker_consumable_cost_per_day": 1831.6924999999997,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.538384511198104,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 15.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 318.06
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xSWF=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -94.56500000000278,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 26599.565000000002,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 143.29
+			},
+			{
+				"ticker": "SWF",
+				"amount": 1,
+				"vwap_7d": 245.05
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.0996212284997897,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1831.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 30,
+				"vwap_7d": 143.29
+			}
+		],
+		"recipe": "1xCOT 10xPG=>30xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -122.94000000000074,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 18034.190000000002,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3337.87
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.1912878788778361,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 5857.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1891.79
+			}
+		],
+		"recipe": "1xAL 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -184.08986363636427,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 10932.896681818183,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 193.58
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.5201192410265816,
+		"output_per_day": 5.6818181818181825,
+		"average_traded_7d": 1913
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 4,
+				"vwap_7d": 192.29
+			}
+		],
+		"recipe": "2xALG 1xH2O=>4xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": -302.64266666666646,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 3507.4759999999997,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "ALG",
+				"amount": 2,
+				"vwap_7d": 315.64
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.0833333333333335,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 211.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1776.58
+			}
+		],
+		"recipe": "1xGL 1xAL=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -326.2868333333337,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 15131.120166666668,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 1,
+				"vwap_7d": 352.3
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 0.7420765159682172,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 134.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 4,
+				"vwap_7d": 192.29
+			}
+		],
+		"recipe": "2xBEA 1xH2O=>4xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": -536.7260000000001,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 3741.5593333333336,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 43.9
+			},
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 343.73
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.0833333333333335,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 211.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2895.06
+			}
+		],
+		"recipe": "2xAL 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -864.1035000000002,
+		"area": 30.5,
+		"capex": 56862.880000000005,
+		"cost_per_day": 15339.4035,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 193.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.2035,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.332786904006708,
+		"output_per_day": 5.0,
+		"average_traded_7d": 989.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FOD",
+				"amount": 16,
+				"vwap_7d": 366.87
+			}
+		],
+		"recipe": "5xNUT 5xMAI 5xVEG=>16xFOD",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": -909.5509999999979,
+		"area": 16.0,
+		"capex": 33866.202,
+		"cost_per_day": 15584.350999999999,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 5,
+				"vwap_7d": 413.34
+			},
+			{
+				"ticker": "MAI",
+				"amount": 5,
+				"vwap_7d": 401.04
+			},
+			{
+				"ticker": "NUT",
+				"amount": 5,
+				"vwap_7d": 376.83
+			}
+		],
+		"worker_consumable_cost_per_day": 694.2259999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.0000001192092896,
+		"output_per_day": 40.0,
+		"average_traded_7d": 755.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 263.64
+			}
+		],
+		"recipe": "3xTS=>2xHE3",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": -963.4888000000002,
+		"area": 33.4,
+		"capex": 67390.94,
+		"cost_per_day": 3599.8888,
+		"input_costs": [
+			{
+				"ticker": "TS",
+				"amount": 3,
+				"vwap_7d": 123.62
+			}
+		],
+		"worker_consumable_cost_per_day": 1745.5888,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.0778443542069305,
+		"output_per_day": 10.0,
+		"average_traded_7d": 1281.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 143.29
+			}
+		],
+		"recipe": "100xPE 25xPG=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1066.1900000000005,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 7036.606666666667,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "PG",
+				"amount": 25,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.0994318162900692,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 5857.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 318.06
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xMFK=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1543.4326470588226,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 24930.197352941177,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 415.84
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 143.29
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1305.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 7.352941176470589,
+		"logistics_per_area": 1.0026738117324479,
+		"output_per_day": 73.52941176470588,
+		"average_traded_7d": 1831.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CA",
+				"amount": 1,
+				"vwap_7d": 366
+			}
+		],
+		"recipe": "1xLST=>1xCA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": -1741.4457333333335,
+		"area": 27.2,
+		"capex": 45395.801999999996,
+		"cost_per_day": 3266.4457333333335,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 193.58
+			}
+		],
+		"worker_consumable_cost_per_day": 2459.8624,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.418198532333561,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 7.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CF",
+				"amount": 1,
+				"vwap_7d": 7326.67
+			}
+		],
+		"recipe": "4xAL 1xSI 2xO=>1xCF",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": -2007.407499999998,
+		"area": 22.0,
+		"capex": 48289.4,
+		"cost_per_day": 24903.25125,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 2,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2252.45
+			}
+		],
+		"worker_consumable_cost_per_day": 867.7824999999999,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.189062535762787,
+		"output_per_day": 3.125,
+		"average_traded_7d": 8.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BLE",
+				"amount": 3,
+				"vwap_7d": 2197.5
+			}
+		],
+		"recipe": "1xNA 1xCL 1xO=>3xBLE",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": -2164.6243000000018,
+		"area": 37.2,
+		"capex": 340056.85199999996,
+		"cost_per_day": 18645.874300000003,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.11
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 107.99
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 5267.64
+			}
+		],
+		"worker_consumable_cost_per_day": 5144.0243,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3569220503171285,
+		"output_per_day": 7.5,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STR",
+				"amount": 2,
+				"vwap_7d": 2820.54
+			}
+		],
+		"recipe": "50xPE 4xAL=>2xSTR",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -2305.731666666667,
+		"area": 22.0,
+		"capex": 54171.46,
+		"cost_per_day": 25810.231666666667,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1305.73
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.1
+			}
+		],
+		"worker_consumable_cost_per_day": 1735.5649999999998,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.1401515491589005,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 18.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HSS",
+				"amount": 20,
+				"vwap_7d": 2731.23
+			}
+		],
+		"recipe": "5xNL 1xBLE 5xSEN 5xPCB=>20xHSS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": -2591.4370999999983,
+		"area": 41.8,
+		"capex": 94774.984,
+		"cost_per_day": 70872.1871,
+		"input_costs": [
+			{
+				"ticker": "BLE",
+				"amount": 1,
+				"vwap_7d": 2197.5
+			},
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2854.13
+			},
+			{
+				"ticker": "SEN",
+				"amount": 5,
+				"vwap_7d": 796.24
+			},
+			{
+				"ticker": "NL",
+				"amount": 5,
+				"vwap_7d": 7024.32
+			}
+		],
+		"worker_consumable_cost_per_day": 1408.4996,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.19153708074524284,
+		"output_per_day": 25.0,
+		"average_traded_7d": 44.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SBU",
+				"amount": 1,
+				"vwap_7d": 36000
+			}
+		],
+		"recipe": "50xDW 60xRAT 5xEXO 5xPT 10xKOM 2xREP 100xPE=>1xSBU",
+		"expertise": "MANUFACTURING",
+		"building": "PAC",
+		"profit_per_day": -3587.9421454545754,
+		"area": 41.8,
+		"capex": 162535.0,
+		"cost_per_day": 208133.39669090914,
+		"input_costs": [
+			{
+				"ticker": "KOM",
+				"amount": 10,
+				"vwap_7d": 1285.94
+			},
+			{
+				"ticker": "PT",
+				"amount": 5,
+				"vwap_7d": 675.21
+			},
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.1
+			},
+			{
+				"ticker": "DW",
+				"amount": 50,
+				"vwap_7d": 109.05
+			},
+			{
+				"ticker": "RAT",
+				"amount": 60,
+				"vwap_7d": 166.73
+			},
+			{
+				"ticker": "EXO",
+				"amount": 5,
+				"vwap_7d": 318.06
+			},
+			{
+				"ticker": "REP",
+				"amount": 2,
+				"vwap_7d": 965.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1755.6126,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 2.903708090639879,
+		"output_per_day": 5.6818181818181825,
+		"average_traded_7d": 0.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THP",
+				"amount": 4,
+				"vwap_7d": 4750
+			}
+		],
+		"recipe": "2xBE 2xCF 1xHE=>4xTHP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": -7639.756611111114,
+		"area": 26.0,
+		"capex": 54229.056,
+		"cost_per_day": 139584.20105555558,
+		"input_costs": [
+			{
+				"ticker": "BE",
+				"amount": 2,
+				"vwap_7d": 2500
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 7326.67
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 271.84
+			}
+		],
+		"worker_consumable_cost_per_day": 1214.8955,
+		"runs_per_day": 6.944444444444445,
+		"logistics_per_area": 2.52804485285002,
+		"output_per_day": 27.77777777777778,
+		"average_traded_7d": 19.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ADR",
+				"amount": 1,
+				"vwap_7d": 85000
+			}
+		],
+		"recipe": "1xBSC 20xREA 4xMFK 2xDCM=>1xADR",
+		"expertise": "CHEMISTRY",
+		"building": "PHF",
+		"profit_per_day": -20526.72377777777,
+		"area": 41.5,
+		"capex": 257298.15999999997,
+		"cost_per_day": 138582.2793333333,
+		"input_costs": [
+			{
+				"ticker": "BSC",
+				"amount": 1,
+				"vwap_7d": 54700
+			},
+			{
+				"ticker": "DCM",
+				"amount": 2,
+				"vwap_7d": 7980
+			},
+			{
+				"ticker": "REA",
+				"amount": 20,
+				"vwap_7d": 1284.02
+			},
+			{
+				"ticker": "MFK",
+				"amount": 4,
+				"vwap_7d": 415.84
+			}
+		],
+		"worker_consumable_cost_per_day": 2465.946,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 0.07028112554526232,
+		"output_per_day": 1.3888888888888888,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42000
+			}
+		],
+		"recipe": "6xLI 6xBE 20xBCO 60xPG=>1xCBS",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -23103.59013333331,
+		"area": 40.2,
+		"capex": 625569.8119999999,
+		"cost_per_day": 198103.59013333332,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 6,
+				"vwap_7d": 1956.7
+			},
+			{
+				"ticker": "PG",
+				"amount": 60,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "BCO",
+				"amount": 20,
+				"vwap_7d": 844.42
+			},
+			{
+				"ticker": "BE",
+				"amount": 6,
+				"vwap_7d": 2500
+			}
+		],
+		"worker_consumable_cost_per_day": 1972.7568000000003,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.509121089890309,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 10.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBL",
+				"amount": 1,
+				"vwap_7d": 91022.22
+			}
+		],
+		"recipe": "12xLI 12xBE 60xHCC 150xPG=>1xCBL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -27666.706799999967,
+		"area": 40.2,
+		"capex": 625569.8119999999,
+		"cost_per_day": 255222.25679999997,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 12,
+				"vwap_7d": 1956.7
+			},
+			{
+				"ticker": "HCC",
+				"amount": 60,
+				"vwap_7d": 653.54
+			},
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 57.38
+			},
+			{
+				"ticker": "BE",
+				"amount": 12,
+				"vwap_7d": 2500
+			}
+		],
+		"worker_consumable_cost_per_day": 1972.7568000000003,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.8395522726637157,
+		"output_per_day": 2.5,
+		"average_traded_7d": 5.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBM",
+				"amount": 1,
+				"vwap_7d": 63000
+			}
+		],
+		"recipe": "8xLI 8xBE 40xBGC 120xPG=>1xCBM",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -56866.5068,
+		"area": 40.2,
+		"capex": 625569.8119999999,
+		"cost_per_day": 253741.5068,
+		"input_costs": [
+			{
+				"ticker": "BGC",
+				"amount": 40,
+				"vwap_7d": 950.67
+			},
+			{
+				"ticker": "LI",
+				"amount": 8,
+				"vwap_7d": 1956.7
+			},
+			{
+				"ticker": "BE",
+				"amount": 8,
+				"vwap_7d": 2500
+			},
+			{
+				"ticker": "PG",
+				"amount": 120,
+				"vwap_7d": 57.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1972.7568000000003,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.5360696801037725,
+		"output_per_day": 3.125,
+		"average_traded_7d": 3.86
+	}
+]

+ 8786 - 0
www/roi_nc1.json

@@ -0,0 +1,8786 @@
+[
+	{
+		"outputs": [
+			{
+				"ticker": "MSL",
+				"amount": 1,
+				"vwap_7d": 420000
+			}
+		],
+		"recipe": "50xFET 4xMFK=>1xMSL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 298792.2300714286,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 451207.7699285715,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 4,
+				"vwap_7d": 377.93
+			},
+			{
+				"ticker": "FET",
+				"amount": 50,
+				"vwap_7d": 5000
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 13.253710391063269,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LCB",
+				"amount": 1,
+				"vwap_7d": 844000
+			}
+		],
+		"recipe": "200xAST 20xMFK=>1xLCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 175322.63483333334,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 1231344.0318333332,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 200,
+				"vwap_7d": 3650
+			},
+			{
+				"ticker": "MFK",
+				"amount": 20,
+				"vwap_7d": 377.93
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 36.00288614157646,
+		"output_per_day": 1.6666666666666665,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WCB",
+				"amount": 1,
+				"vwap_7d": 969500
+			}
+		],
+		"recipe": "100xAST 100xFET 20xMFK=>1xWCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 149391.23900000003,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 1365452.511,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 100,
+				"vwap_7d": 3650
+			},
+			{
+				"ticker": "MFK",
+				"amount": 20,
+				"vwap_7d": 377.93
+			},
+			{
+				"ticker": "FET",
+				"amount": 100,
+				"vwap_7d": 5000
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 40.077110132589546,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SC",
+				"amount": 20,
+				"vwap_7d": 2882.11
+			}
+		],
+		"recipe": "2xCA 1xMG 1xTA=>20xSC",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 70147.42312307694,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 40702.961492307695,
+		"input_costs": [
+			{
+				"ticker": "CA",
+				"amount": 2,
+				"vwap_7d": 476.99
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 129.69
+			},
+			{
+				"ticker": "TA",
+				"amount": 1,
+				"vwap_7d": 18755.4
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 1.4140271177152974,
+		"output_per_day": 38.46153846153846,
+		"average_traded_7d": 104.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SCB",
+				"amount": 1,
+				"vwap_7d": 160000
+			}
+		],
+		"recipe": "50xFAL 12xMFK=>1xSCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": 92938.71816666667,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 240394.61516666668,
+		"input_costs": [
+			{
+				"ticker": "FAL",
+				"amount": 50,
+				"vwap_7d": 2197.12
+			},
+			{
+				"ticker": "MFK",
+				"amount": 12,
+				"vwap_7d": 377.93
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 7.314213629527095,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LFE",
+				"amount": 1,
+				"vwap_7d": 369523.81
+			}
+		],
+		"recipe": "3xCTF 1xCBL=>1xLFE",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 499790.849,
+		"area": 40.6,
+		"capex": 524784.404,
+		"cost_per_day": 424018.67600000004,
+		"input_costs": [
+			{
+				"ticker": "CBL",
+				"amount": 1,
+				"vwap_7d": 91115.87
+			},
+			{
+				"ticker": "CTF",
+				"amount": 3,
+				"vwap_7d": 25828.13
+			}
+		],
+		"worker_consumable_cost_per_day": 2518.0260000000003,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.1305419095044065,
+		"output_per_day": 2.5,
+		"average_traded_7d": 3
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRS",
+				"amount": 1,
+				"vwap_7d": 600000
+			}
+		],
+		"recipe": "10xPSL 20xPSM 10xTI 5xSAR 4xRAD=>1xBRS",
+		"expertise": "CONSTRUCTION",
+		"building": "UPF",
+		"profit_per_day": 96639.40669999999,
+		"area": 58.0,
+		"capex": 101692.14199999999,
+		"cost_per_day": 153360.59329999998,
+		"input_costs": [
+			{
+				"ticker": "TI",
+				"amount": 10,
+				"vwap_7d": 2887.36
+			},
+			{
+				"ticker": "SAR",
+				"amount": 5,
+				"vwap_7d": 32751.39
+			},
+			{
+				"ticker": "PSM",
+				"amount": 20,
+				"vwap_7d": 2996.12
+			},
+			{
+				"ticker": "PSL",
+				"amount": 10,
+				"vwap_7d": 5012.71
+			},
+			{
+				"ticker": "RAD",
+				"amount": 4,
+				"vwap_7d": 15033.33
+			}
+		],
+		"worker_consumable_cost_per_day": 2188.3558000000003,
+		"runs_per_day": 0.41666666666666663,
+		"logistics_per_area": 1.4367816091954022,
+		"output_per_day": 0.41666666666666663,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DEC",
+				"amount": 1,
+				"vwap_7d": 43045.83
+			}
+		],
+		"recipe": "150xPG 70xEPO=>1xDEC",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 41842.1471,
+		"area": 19.0,
+		"capex": 76143.706,
+		"cost_per_day": 65772.4279,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "EPO",
+				"amount": 70,
+				"vwap_7d": 237.29
+			}
+		],
+		"worker_consumable_cost_per_day": 1094.1779000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4078947304821524,
+		"output_per_day": 2.5,
+		"average_traded_7d": 6.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GIN",
+				"amount": 4,
+				"vwap_7d": 4704.59
+			}
+		],
+		"recipe": "2xGRN 2xDW 1xES 1xAMM=>4xGIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 27313.135076923078,
+		"area": 32.2,
+		"capex": 80066.47600000001,
+		"cost_per_day": 8876.01876923077,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 2206.25
+			},
+			{
+				"ticker": "DW",
+				"amount": 2,
+				"vwap_7d": 116.98
+			}
+		],
+		"worker_consumable_cost_per_day": 2175.288,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.22336359082855106,
+		"output_per_day": 7.6923076923076925,
+		"average_traded_7d": 131.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FOD",
+				"amount": 16,
+				"vwap_7d": 682.35
+			}
+		],
+		"recipe": "5xNUT 5xMAI 5xVEG=>16xFOD",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 11151.7684,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 16142.2316,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 5,
+				"vwap_7d": 325.78
+			},
+			{
+				"ticker": "MAI",
+				"amount": 5,
+				"vwap_7d": 454.72
+			},
+			{
+				"ticker": "NUT",
+				"amount": 5,
+				"vwap_7d": 450.78
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.0000001192092896,
+		"output_per_day": 40.0,
+		"average_traded_7d": 34.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LHP",
+				"amount": 4,
+				"vwap_7d": 5765.52
+			}
+		],
+		"recipe": "12xAL 1xHE=>4xLHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 22732.051500000016,
+		"area": 31.2,
+		"capex": 79163.14,
+		"cost_per_day": 73359.9485,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.341880341880342,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 39.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PBU",
+				"amount": 1,
+				"vwap_7d": 25752.88
+			}
+		],
+		"recipe": "40xDW 40xRAT 5xOVE 5xCOF 2xPWO 50xPE=>1xPBU",
+		"expertise": "MANUFACTURING",
+		"building": "PAC",
+		"profit_per_day": 38193.5047,
+		"area": 41.8,
+		"capex": 168812.226,
+		"cost_per_day": 122761.9953,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 40,
+				"vwap_7d": 175.15
+			},
+			{
+				"ticker": "PWO",
+				"amount": 2,
+				"vwap_7d": 338.52
+			},
+			{
+				"ticker": "DW",
+				"amount": 40,
+				"vwap_7d": 116.98
+			},
+			{
+				"ticker": "COF",
+				"amount": 5,
+				"vwap_7d": 1131.03
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "OVE",
+				"amount": 5,
+				"vwap_7d": 152.68
+			}
+		],
+		"worker_consumable_cost_per_day": 1825.8078000000003,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.03349279199669,
+		"output_per_day": 6.25,
+		"average_traded_7d": 27.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WIN",
+				"amount": 10,
+				"vwap_7d": 8488.33
+			}
+		],
+		"recipe": "20xDW 15xGRA 15xREA 1xAMM=>10xWIN",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 18013.43075,
+		"area": 32.2,
+		"capex": 80066.47600000001,
+		"cost_per_day": 114616.7255,
+		"input_costs": [
+			{
+				"ticker": "REA",
+				"amount": 15,
+				"vwap_7d": 996.61
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "DW",
+				"amount": 20,
+				"vwap_7d": 116.98
+			},
+			{
+				"ticker": "GRA",
+				"amount": 15,
+				"vwap_7d": 3630.92
+			}
+		],
+		"worker_consumable_cost_per_day": 2175.288,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.9758346473656432,
+		"output_per_day": 15.625,
+		"average_traded_7d": 73.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OFF",
+				"amount": 50,
+				"vwap_7d": 163.74
+			}
+		],
+		"recipe": "20xPG 20xEPO=>50xOFF",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 11911.920999999998,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 39256.829,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 20,
+				"vwap_7d": 237.29
+			},
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.840909133241935,
+		"output_per_day": 312.5,
+		"average_traded_7d": 1752.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CU",
+				"amount": 3,
+				"vwap_7d": 2427.15
+			}
+		],
+		"recipe": "5xCUO 10xO 1xSIO=>3xCU",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 9614.4355,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 8589.1895,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "CUO",
+				"amount": 5,
+				"vwap_7d": 307.9
+			},
+			{
+				"ticker": "O",
+				"amount": 10,
+				"vwap_7d": 132.71
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.778409253467213,
+		"output_per_day": 7.5,
+		"average_traded_7d": 401.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NAB",
+				"amount": 20,
+				"vwap_7d": 190.36
+			}
+		],
+		"recipe": "1xNA 1xBOR 5xH=>20xNAB",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 8723.679533333336,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 7139.6538,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.07
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 302.58
+			},
+			{
+				"ticker": "H",
+				"amount": 5,
+				"vwap_7d": 154.73
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.0723039215686274,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 402.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 2720.57
+			}
+		],
+		"recipe": "10xPG=>1xPSS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 11332.0725,
+		"area": 22.0,
+		"capex": 66144.91,
+		"cost_per_day": 5671.49,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.028409091332419353,
+		"output_per_day": 6.25,
+		"average_traded_7d": 164.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HMS",
+				"amount": 10,
+				"vwap_7d": 2521.63
+			}
+		],
+		"recipe": "1xNL 1xIND 6xGC=>10xHMS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": 16468.968714285722,
+		"area": 41.8,
+		"capex": 96217.00400000002,
+		"cost_per_day": 28560.13842857143,
+		"input_costs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7231.37
+			},
+			{
+				"ticker": "GC",
+				"amount": 6,
+				"vwap_7d": 352.88
+			},
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 5832.92
+			}
+		],
+		"worker_consumable_cost_per_day": 1450.1920000000002,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.07689678793237052,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 944.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 515.22
+			}
+		],
+		"recipe": "2xH2O 2xN 1xLST=>4xNS",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 7160.533700000002,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 5719.9663,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 204.03
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "N",
+				"amount": 2,
+				"vwap_7d": 105.02
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.090073526617797,
+		"output_per_day": 25.0,
+		"average_traded_7d": 3637
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IND",
+				"amount": 1,
+				"vwap_7d": 5832.92
+			}
+		],
+		"recipe": "1xMG 1xCU 1xS=>1xIND",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 7124.5337,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 11103.3413,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 179.94
+			},
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2427.15
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 129.69
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1155790519243216,
+		"output_per_day": 3.125,
+		"average_traded_7d": 35.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFK",
+				"amount": 8,
+				"vwap_7d": 377.93
+			}
+		],
+		"recipe": "1xSTL=>8xMFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 9320.489166666668,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 22173.677500000005,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.6377687851587934,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1366.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCM",
+				"amount": 2,
+				"vwap_7d": 6289.17
+			}
+		],
+		"recipe": "2xPSM 8xSFK 20xPG=>2xDCM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 10197.51,
+		"area": 22.0,
+		"capex": 66144.91,
+		"cost_per_day": 21248.34,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "SFK",
+				"amount": 8,
+				"vwap_7d": 68.4
+			},
+			{
+				"ticker": "PSM",
+				"amount": 2,
+				"vwap_7d": 2996.12
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.11136363741984083,
+		"output_per_day": 5.0,
+		"average_traded_7d": 6.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HER",
+				"amount": 4,
+				"vwap_7d": 3863.36
+			}
+		],
+		"recipe": "4xH2O 1xDDT=>4xHER",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 5182.530305000001,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 5646.467775,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 6531.74
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08008571428571429,
+		"output_per_day": 2.803,
+		"average_traded_7d": 496.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 3237.51
+			}
+		],
+		"recipe": "2xRAT 1xHER=>2xFIM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 4902.168400000001,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 11285.3816,
+		"input_costs": [
+			{
+				"ticker": "RAT",
+				"amount": 2,
+				"vwap_7d": 175.15
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3863.36
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.1875000004656613,
+		"output_per_day": 5.0,
+		"average_traded_7d": 1212.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KOM",
+				"amount": 6,
+				"vwap_7d": 1385.05
+			}
+		],
+		"recipe": "4xDW 1xHER 1xAMM=>6xKOM",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 11285.604857142855,
+		"area": 32.2,
+		"capex": 80066.47600000001,
+		"cost_per_day": 18394.038,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3863.36
+			},
+			{
+				"ticker": "DW",
+				"amount": 4,
+				"vwap_7d": 116.98
+			}
+		],
+		"worker_consumable_cost_per_day": 2175.288,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.26619343455639577,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 3813
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 417.1
+			}
+		],
+		"recipe": "4xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4601.332926666666,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1634.0340066666665,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 3.737333333333333,
+		"logistics_per_area": 0.42712380952380946,
+		"output_per_day": 14.949333333333332,
+		"average_traded_7d": 2971
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAD",
+				"amount": 1,
+				"vwap_7d": 15033.33
+			}
+		],
+		"recipe": "1xDCS 1xSFK 1xPOW=>1xRAD",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 20547.947500000006,
+		"area": 36.0,
+		"capex": 162858.17,
+		"cost_per_day": 73410.365,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 68.4
+			},
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 9325.07
+			},
+			{
+				"ticker": "DCS",
+				"amount": 1,
+				"vwap_7d": 2062.15
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.03819444488423566,
+		"output_per_day": 6.25,
+		"average_traded_7d": 7.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOI",
+				"amount": 16,
+				"vwap_7d": 897.8
+			}
+		],
+		"recipe": "10xCLI 20xBRM=>16xSOI",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 5565.5962,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 12390.4038,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 20,
+				"vwap_7d": 273.83
+			},
+			{
+				"ticker": "CLI",
+				"amount": 10,
+				"vwap_7d": 239.5
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 3.409926505649791,
+		"output_per_day": 20.0,
+		"average_traded_7d": 188.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 454.72
+			}
+		],
+		"recipe": "4xH2O=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4337.287657142858,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1125.1987428571429,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 1.0010714285714286,
+		"logistics_per_area": 0.4461918203684749,
+		"output_per_day": 12.012857142857143,
+		"average_traded_7d": 1732.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VIT",
+				"amount": 20,
+				"vwap_7d": 1000
+			}
+		],
+		"recipe": "10xDW 4xPIB 1xCA 1xI 1xAMM=>20xVIT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 9692.352625000001,
+		"area": 32.2,
+		"capex": 80066.47600000001,
+		"cost_per_day": 21557.647375,
+		"input_costs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1387.95
+			},
+			{
+				"ticker": "DW",
+				"amount": 10,
+				"vwap_7d": 116.98
+			},
+			{
+				"ticker": "CA",
+				"amount": 1,
+				"vwap_7d": 476.99
+			},
+			{
+				"ticker": "PIB",
+				"amount": 4,
+				"vwap_7d": 2290
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			}
+		],
+		"worker_consumable_cost_per_day": 2175.288,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.9704968944099378,
+		"output_per_day": 31.25,
+		"average_traded_7d": 1.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COF",
+				"amount": 3,
+				"vwap_7d": 1131.03
+			}
+		],
+		"recipe": "1xCAF 3xDW=>3xCOF",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 4031.3100666666687,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 10106.564933333331,
+		"input_costs": [
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 116.98
+			},
+			{
+				"ticker": "CAF",
+				"amount": 1,
+				"vwap_7d": 1894.34
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.3385416678308199,
+		"output_per_day": 12.5,
+		"average_traded_7d": 3497.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGO",
+				"amount": 5,
+				"vwap_7d": 2047.79
+			}
+		],
+		"recipe": "4xAU 1xFE=>5xBGO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 6970.76,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 25025.95875,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 4,
+				"vwap_7d": 1639.66
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 9.737903071988013,
+		"output_per_day": 15.625,
+		"average_traded_7d": 192.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCT",
+				"amount": 1,
+				"vwap_7d": 950000
+			}
+		],
+		"recipe": "1xRAG 10xAST 1xCBS=>1xRCT",
+		"expertise": "MANUFACTURING",
+		"building": "SPF",
+		"profit_per_day": 130600.82169230768,
+		"area": 51.6,
+		"capex": 1120346.5299999998,
+		"cost_per_day": 326129.94753846154,
+		"input_costs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42000
+			},
+			{
+				"ticker": "RAG",
+				"amount": 1,
+				"vwap_7d": 550000
+			},
+			{
+				"ticker": "AST",
+				"amount": 10,
+				"vwap_7d": 3650
+			}
+		],
+		"worker_consumable_cost_per_day": 23966.486,
+		"runs_per_day": 0.4807692307692308,
+		"logistics_per_area": 0.527355397874284,
+		"output_per_day": 0.4807692307692308,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NA",
+				"amount": 2,
+				"vwap_7d": 25.07
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 4867.43
+			}
+		],
+		"recipe": "3xHAL 1xH2O=>2xNA 1xCL",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 5246.854820689656,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 5351.356386206897,
+		"input_costs": [
+			{
+				"ticker": "HAL",
+				"amount": 3,
+				"vwap_7d": 417.64
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 2.155172413793103,
+		"logistics_per_area": 0.5316620366270021,
+		"output_per_day": 4.310344827586206,
+		"average_traded_7d": 4335.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NUT",
+				"amount": 12,
+				"vwap_7d": 450.78
+			}
+		],
+		"recipe": "1xH2O=>12xNUT",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 4071.668703333333,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 982.4766566666665,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 0.9343333333333332,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 347.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 786.42
+			}
+		],
+		"recipe": "1xCU 300xPE=>10xBCO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 6616.634999999998,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 26150.865000000005,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 1,
+				"vwap_7d": 2427.15
+			},
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.602150538876172,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 1254.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 2034.99
+			}
+		],
+		"recipe": "10xLIO 4xHAL=>4xLI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 5298.081712121212,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 10118.509196969699,
+		"input_costs": [
+			{
+				"ticker": "LIO",
+				"amount": 10,
+				"vwap_7d": 317.62
+			},
+			{
+				"ticker": "HAL",
+				"amount": 4,
+				"vwap_7d": 417.64
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 3.114669447759623,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 880.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 7,
+				"vwap_7d": 116.98
+			}
+		],
+		"recipe": "10xH2O=>7xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3673.2684,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6562.4816,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5625000232830644,
+		"output_per_day": 87.5,
+		"average_traded_7d": 61889
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSE",
+				"amount": 2,
+				"vwap_7d": 36383.47
+			}
+		],
+		"recipe": "2xBSE 1xSTL 225xEPO=>2xRSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 21109.092285714298,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 108831.872,
+		"input_costs": [
+			{
+				"ticker": "BSE",
+				"amount": 2,
+				"vwap_7d": 1892.4
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "EPO",
+				"amount": 225,
+				"vwap_7d": 237.29
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.7790178449691407,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 177.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ROM",
+				"amount": 10,
+				"vwap_7d": 6947.51
+			}
+		],
+		"recipe": "10xPSS 10xBGC 10xSI=>10xROM",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 43131.48050000001,
+		"area": 39.2,
+		"capex": 410634.11799999996,
+		"cost_per_day": 246348.10283333337,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 10,
+				"vwap_7d": 2439.97
+			},
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 706.49
+			},
+			{
+				"ticker": "PSS",
+				"amount": 10,
+				"vwap_7d": 2720.57
+			}
+		],
+		"worker_consumable_cost_per_day": 1888.5195,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.4968112199598935,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 48.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 432.17
+			}
+		],
+		"recipe": "2xH2O=>4xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3645.8276000000005,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1199.6624399999998,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 2278.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 417.1
+			}
+		],
+		"recipe": "1xH2O=>4xGRN",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3607.1742300000005,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1069.35097,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.803,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 2971
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALE",
+				"amount": 6,
+				"vwap_7d": 1674.24
+			}
+		],
+		"recipe": "2xGRN 3xDW 1xHOP 1xAMM=>6xALE",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FER",
+		"profit_per_day": 8077.094812500001,
+		"area": 32.2,
+		"capex": 80066.47600000001,
+		"cost_per_day": 11542.905187499999,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "HOP",
+				"amount": 1,
+				"vwap_7d": 3401.11
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "DW",
+				"amount": 3,
+				"vwap_7d": 116.98
+			}
+		],
+		"worker_consumable_cost_per_day": 2175.288,
+		"runs_per_day": 1.953125,
+		"logistics_per_area": 0.2608210406438245,
+		"output_per_day": 11.71875,
+		"average_traded_7d": 1282.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4710.78
+			}
+		],
+		"recipe": "1xAL 5xGL=>1xLTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 5694.860249999998,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 17859.03975,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "GL",
+				"amount": 5,
+				"vwap_7d": 378.21
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.45573771335795277,
+		"output_per_day": 5.0,
+		"average_traded_7d": 249.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FAN",
+				"amount": 8,
+				"vwap_7d": 3290
+			}
+		],
+		"recipe": "1xAL 8xDCS 2xSFK=>8xFAN",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 49768.51599999999,
+		"area": 40.2,
+		"capex": 495375.88399999996,
+		"cost_per_day": 114731.48400000001,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 68.4
+			},
+			{
+				"ticker": "DCS",
+				"amount": 8,
+				"vwap_7d": 2062.15
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.44465174815103187,
+		"output_per_day": 50.0,
+		"average_traded_7d": 1.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DW",
+				"amount": 10,
+				"vwap_7d": 116.98
+			}
+		],
+		"recipe": "10xH2O 1xPG=>10xDW",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 3268.5184,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 4042.7316,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 1,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.7820312616786396,
+		"output_per_day": 62.5,
+		"average_traded_7d": 61889
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 4,
+				"vwap_7d": 381.35
+			}
+		],
+		"recipe": "6xH2O=>4xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3428.2447250000005,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1916.375525,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 6,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.40042857142857147,
+		"output_per_day": 14.015,
+		"average_traded_7d": 448.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 2887.36
+			}
+		],
+		"recipe": "4xTIO 1xC 1xO=>2xTI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 4568.177166666666,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 5056.3561666666665,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "TIO",
+				"amount": 4,
+				"vwap_7d": 315.23
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.7356818336429017,
+		"output_per_day": 3.333333333333333,
+		"average_traded_7d": 1009.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLP",
+				"amount": 6,
+				"vwap_7d": 844.47
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>6xFLP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 5063.7197,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 7603.3303,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.1538461538461537,
+		"output_per_day": 15.0,
+		"average_traded_7d": 182
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLX",
+				"amount": 10,
+				"vwap_7d": 283.48
+			}
+		],
+		"recipe": "1xLST=>10xFLX",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 4026.0212,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 3060.9788,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 204.03
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.2509191194001366,
+		"output_per_day": 25.0,
+		"average_traded_7d": 3475.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FF",
+				"amount": 100,
+				"vwap_7d": 23.16
+			}
+		],
+		"recipe": "2xHE3 4xH=>100xFF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 5995.723266666668,
+		"area": 33.4,
+		"capex": 67251.278,
+		"cost_per_day": 13304.276733333334,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 4,
+				"vwap_7d": 154.73
+			},
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 377.68
+			}
+		],
+		"worker_consumable_cost_per_day": 1851.9434,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.4970059880239521,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 59960.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 381.35
+			}
+		],
+		"recipe": "1xH2O=>2xBEA",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 3076.0337600000003,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1199.6624399999998,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 5.606,
+		"logistics_per_area": 0.32034285714285715,
+		"output_per_day": 11.212,
+		"average_traded_7d": 448.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LBH",
+				"amount": 1,
+				"vwap_7d": 5832.51
+			}
+		],
+		"recipe": "35xPE 3xAL=>1xLBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 4711.460250000002,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 24451.08975,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 35,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3852459238078751,
+		"output_per_day": 5.0,
+		"average_traded_7d": 291.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGC",
+				"amount": 10,
+				"vwap_7d": 706.49
+			}
+		],
+		"recipe": "1xBGO 300xPE=>10xBGC",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 4866.884999999995,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 24570.19833333334,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 300,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2047.79
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.999999949968951,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 283.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1405.58
+			}
+		],
+		"recipe": "6xALO 1xO 1xC 1xFLX=>4xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3965.814666666667,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 7747.352,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 283.48
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 295.84
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 1.1118371378291736,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 5009.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BFR",
+				"amount": 1,
+				"vwap_7d": 6000
+			}
+		],
+		"recipe": "1xSTL 1xAL=>1xBFR",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 4786.6849999999995,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 10213.315,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.8508064477674423,
+		"output_per_day": 2.5,
+		"average_traded_7d": 2.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2737.5684,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6019.9316,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 310.86
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 325.78
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 417.1
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 29238.44
+			}
+		],
+		"recipe": "75xPG 5xTCL=>1xKV",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 8177.617124999993,
+		"area": 48.4,
+		"capex": 101112.252,
+		"cost_per_day": 37507.44537500001,
+		"input_costs": [
+			{
+				"ticker": "TCL",
+				"amount": 5,
+				"vwap_7d": 3550.01
+			},
+			{
+				"ticker": "PG",
+				"amount": 75,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 2537.836,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.05326704468485738,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 62.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 237.29
+			}
+		],
+		"recipe": "1xC 1xH 1xCL 1xO=>50xEPO",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 5946.909599999999,
+		"area": 19.0,
+		"capex": 76143.706,
+		"cost_per_day": 8883.715400000001,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 4867.43
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 154.73
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1094.1779000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.43822368950043855,
+		"output_per_day": 62.5,
+		"average_traded_7d": 36906.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7231.37
+			}
+		],
+		"recipe": "50xPG=>1xNL",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 7823.089,
+		"area": 48.4,
+		"capex": 101112.252,
+		"cost_per_day": 10255.336,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 2537.836,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.05836776834874114,
+		"output_per_day": 2.5,
+		"average_traded_7d": 156
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MHL",
+				"amount": 1,
+				"vwap_7d": 5578.06
+			}
+		],
+		"recipe": "1xI 1xFE 1xHE=>1xMHL",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 4185.737557142857,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 5775.083871428572,
+		"input_costs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1387.95
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.8893543885058754,
+		"output_per_day": 1.7857142857142858,
+		"average_traded_7d": 61.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RBH",
+				"amount": 1,
+				"vwap_7d": 22677.03
+			}
+		],
+		"recipe": "1xBBH 1xSTL 50xEPO=>1xRBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 15433.846749999993,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 55431.87200000001,
+		"input_costs": [
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 237.29
+			},
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2881.25
+			},
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8085937390569597,
+		"output_per_day": 3.125,
+		"average_traded_7d": 273
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2549.4683999999993,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6208.031600000001,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 325.78
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 310.86
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 454.72
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9687499888241291,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 4,
+				"vwap_7d": 325.78
+			}
+		],
+		"recipe": "3xH2O=>4xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2685.083777777777,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1373.4110666666666,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 3,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 3.114444444444444,
+		"logistics_per_area": 0.3915301672163463,
+		"output_per_day": 12.457777777777777,
+		"average_traded_7d": 1535.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1589.29
+			}
+		],
+		"recipe": "2xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2651.3231999999994,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 8485.626475000001,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 515.22
+			},
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 3.50375,
+		"logistics_per_area": 0.2803000101436462,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 410.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1076.76
+			}
+		],
+		"recipe": "4xHCP 2xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2552.101733333333,
+		"area": 14.0,
+		"capex": 34431.464,
+		"cost_per_day": 5605.170993939394,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 432.17
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 417.1
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 5658.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1076.76
+			}
+		],
+		"recipe": "4xGRN=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2547.0683999999997,
+		"area": 14.0,
+		"capex": 34431.464,
+		"cost_per_day": 2836.7316,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 4,
+				"vwap_7d": 417.1
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5658.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1076.76
+			}
+		],
+		"recipe": "4xHCP=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2471.7183999999997,
+		"area": 14.0,
+		"capex": 34431.464,
+		"cost_per_day": 2912.0816,
+		"input_costs": [
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 432.17
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5658.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1589.29
+			}
+		],
+		"recipe": "2xH2O=>1xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "FRM",
+		"profit_per_day": 2556.091275,
+		"area": 35.0,
+		"capex": 35721.255,
+		"cost_per_day": 1156.2252833333332,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 2,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.3358333333333334,
+		"logistics_per_area": 0.06673809523809524,
+		"output_per_day": 2.3358333333333334,
+		"average_traded_7d": 410.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2396.3684,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6361.1316,
+		"input_costs": [
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 379.1
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 325.78
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 417.1
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FET",
+				"amount": 4,
+				"vwap_7d": 5000
+			}
+		],
+		"recipe": "1xFE 3xTI=>4xFET",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 23450.13995,
+		"area": 44.2,
+		"capex": 331713.368,
+		"cost_per_day": 39049.86005,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			},
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 2887.36
+			}
+		],
+		"worker_consumable_cost_per_day": 9263.3913,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.937217167599708,
+		"output_per_day": 12.5,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2385.1184,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6372.3816,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 381.35
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 325.78
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1076.76
+			}
+		],
+		"recipe": "4xHCP 2xGRN 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2410.586581818181,
+		"area": 14.0,
+		"capex": 34431.464,
+		"cost_per_day": 13903.958872727275,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 454.72
+			},
+			{
+				"ticker": "GRN",
+				"amount": 2,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 432.17
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.4350649350649354,
+		"output_per_day": 15.151515151515152,
+		"average_traded_7d": 5658.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1076.76
+			}
+		],
+		"recipe": "4xHCP 2xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2409.6017333333334,
+		"area": 14.0,
+		"capex": 34431.464,
+		"cost_per_day": 5747.670993939394,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 2,
+				"vwap_7d": 454.72
+			},
+			{
+				"ticker": "HCP",
+				"amount": 4,
+				"vwap_7d": 432.17
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 1.893939393939394,
+		"logistics_per_area": 1.2175324675324677,
+		"output_per_day": 7.575757575757576,
+		"average_traded_7d": 5658.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "C",
+				"amount": 4,
+				"vwap_7d": 1076.76
+			}
+		],
+		"recipe": "4xMAI=>4xC",
+		"expertise": "RESOURCE_EXTRACTION",
+		"building": "INC",
+		"profit_per_day": 2358.9683999999997,
+		"area": 14.0,
+		"capex": 34431.464,
+		"cost_per_day": 3024.8316000000004,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 4,
+				"vwap_7d": 454.72
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.8035714285714286,
+		"output_per_day": 5.0,
+		"average_traded_7d": 5658.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REA",
+				"amount": 10,
+				"vwap_7d": 996.61
+			}
+		],
+		"recipe": "25xBRM=>10xREA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 3021.1497714285724,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 14775.457371428573,
+		"input_costs": [
+			{
+				"ticker": "BRM",
+				"amount": 25,
+				"vwap_7d": 273.83
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 4.1032037815126055,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 115.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SP",
+				"amount": 12,
+				"vwap_7d": 3500
+			}
+		],
+		"recipe": "8xGL 24xSOL=>12xSP",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 40408.891,
+		"area": 40.2,
+		"capex": 603530.824,
+		"cost_per_day": 134591.109,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 8,
+				"vwap_7d": 378.21
+			},
+			{
+				"ticker": "SOL",
+				"amount": 24,
+				"vwap_7d": 1200
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.18656717159261751,
+		"output_per_day": 50.0,
+		"average_traded_7d": 8.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 61.74
+			}
+		],
+		"recipe": "1xH 1xC 1xMG=>50xPG",
+		"expertise": "CHEMISTRY",
+		"building": "POL",
+		"profit_per_day": 5069.464957142858,
+		"area": 19.0,
+		"capex": 76143.706,
+		"cost_per_day": 5955.535042857142,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 154.73
+			},
+			{
+				"ticker": "MG",
+				"amount": 1,
+				"vwap_7d": 129.69
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1094.1779000000001,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.48684210733587585,
+		"output_per_day": 178.57142857142858,
+		"average_traded_7d": 75592.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MTC",
+				"amount": 2,
+				"vwap_7d": 2307.14
+			}
+		],
+		"recipe": "2xNCS=>2xMTC",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 12327.24525,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 2092.37975,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 2,
+				"vwap_7d": 38.68
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.006230529890949852,
+		"output_per_day": 6.25,
+		"average_traded_7d": 10
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMUS 1xVEG 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2208.2684000000004,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6549.2316,
+		"input_costs": [
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 325.78
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 379.1
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 454.72
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HAB",
+				"amount": 1,
+				"vwap_7d": 122000
+			}
+		],
+		"recipe": "6xBBH 10xBDE 10xBSE 50xSOI=>1xHAB",
+		"expertise": "CONSTRUCTION",
+		"building": "UPF",
+		"profit_per_day": 6608.644199999998,
+		"area": 58.0,
+		"capex": 101692.14199999999,
+		"cost_per_day": 69641.3558,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 50,
+				"vwap_7d": 897.8
+			},
+			{
+				"ticker": "BSE",
+				"amount": 10,
+				"vwap_7d": 1892.4
+			},
+			{
+				"ticker": "BDE",
+				"amount": 10,
+				"vwap_7d": 2682.33
+			},
+			{
+				"ticker": "BBH",
+				"amount": 6,
+				"vwap_7d": 2881.25
+			}
+		],
+		"worker_consumable_cost_per_day": 2188.3558000000003,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.8060344835293705,
+		"output_per_day": 0.625,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xVEG=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2197.0184000000004,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6560.4816,
+		"input_costs": [
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 381.35
+			},
+			{
+				"ticker": "VEG",
+				"amount": 1,
+				"vwap_7d": 325.78
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 454.72
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9999999962747097,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3124.2104999999992,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 12125.601999999999,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 193.46
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.488920431245457,
+		"output_per_day": 6.25,
+		"average_traded_7d": 702.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STL",
+				"amount": 2,
+				"vwap_7d": 1954.65
+			}
+		],
+		"recipe": "2xFE 8xO=>2xSTL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 3019.6747857142864,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 10942.11092857143,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 8,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 4.038311753954206,
+		"output_per_day": 7.142857142857143,
+		"average_traded_7d": 2087.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xGRN 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 2112.5684,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6644.9316,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 310.86
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 450.78
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"recipe": "3xSIO 1xC 1xO 1xFLX=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2880.1271666666657,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 22536.227,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 283.48
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 4.266571930863641,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 702.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"recipe": "3xSIO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2844.3771666666653,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 17488.706166666667,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "SIO",
+				"amount": 3,
+				"vwap_7d": 193.46
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 3.0568181565313632,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 702.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 12374.26
+			}
+		],
+		"recipe": "3xAL 1xNL=>1xLDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 3254.8602499999984,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 58616.439750000005,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "NL",
+				"amount": 1,
+				"vwap_7d": 7231.37
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.5131147767676683,
+		"output_per_day": 5.0,
+		"average_traded_7d": 300.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3592.86
+			}
+		],
+		"recipe": "1xRCO=>1xCOT",
+		"expertise": "MANUFACTURING",
+		"building": "WPL",
+		"profit_per_day": 5810.372333333335,
+		"area": 48.4,
+		"capex": 101112.252,
+		"cost_per_day": 9159.877666666667,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1589.29
+			}
+		],
+		"worker_consumable_cost_per_day": 2537.836,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.08608815426997246,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 282.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMAI 1xALG 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1924.4683999999993,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6833.031600000001,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 310.86
+			},
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 454.72
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 450.78
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 4938.05
+			}
+		],
+		"recipe": "1xAL 1xBSE 1xHE=>1xFC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 3059.6259500000015,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 12371.7803,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1892.4
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.3780048143548461,
+		"output_per_day": 3.125,
+		"average_traded_7d": 92.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 32903.7
+			}
+		],
+		"recipe": "1xMB 1xDCM 1xHD=>1xBWS",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 29484.048999999995,
+		"area": 40.6,
+		"capex": 524784.404,
+		"cost_per_day": 52775.200999999994,
+		"input_costs": [
+			{
+				"ticker": "HD",
+				"amount": 1,
+				"vwap_7d": 3883.7
+			},
+			{
+				"ticker": "DCM",
+				"amount": 1,
+				"vwap_7d": 6289.17
+			},
+			{
+				"ticker": "MB",
+				"amount": 1,
+				"vwap_7d": 9930
+			}
+		],
+		"worker_consumable_cost_per_day": 2518.0260000000003,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.15240147838304782,
+		"output_per_day": 2.5,
+		"average_traded_7d": 3.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MG",
+				"amount": 6,
+				"vwap_7d": 129.69
+			}
+		],
+		"recipe": "1xMGS=>6xMG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 3033.379333333334,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 5072.245666666667,
+		"input_costs": [
+			{
+				"ticker": "MGS",
+				"amount": 1,
+				"vwap_7d": 306.64
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 0.8191287969097947,
+		"output_per_day": 62.50000000000001,
+		"average_traded_7d": 3505.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSM",
+				"amount": 1,
+				"vwap_7d": 2996.12
+			}
+		],
+		"recipe": "20xPG=>1xPSM",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3691.3849999999998,
+		"area": 22.0,
+		"capex": 66144.91,
+		"cost_per_day": 5671.49,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 20,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.05681818266483871,
+		"output_per_day": 3.125,
+		"average_traded_7d": 64.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PIB",
+				"amount": 12,
+				"vwap_7d": 2290
+			}
+		],
+		"recipe": "20xH2O 1xDDT 2xSOI=>12xPIB",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 33317.42648571429,
+		"area": 129.8,
+		"capex": 598300.458,
+		"cost_per_day": 21701.459228571428,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 6531.74
+			},
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "SOI",
+				"amount": 2,
+				"vwap_7d": 897.8
+			}
+		],
+		"worker_consumable_cost_per_day": 3167.3425,
+		"runs_per_day": 2.0021428571428572,
+		"logistics_per_area": 0.18509795289456304,
+		"output_per_day": 24.025714285714287,
+		"average_traded_7d": 5.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1436.68
+			}
+		],
+		"recipe": "10xGL 15xPG 1xSEN=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 6645.485565217392,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 8970.601391304348,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 378.21
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 876.4
+			},
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 1.0869565217391304,
+		"logistics_per_area": 0.009503445450201485,
+		"output_per_day": 10.869565217391305,
+		"average_traded_7d": 843.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 7,
+				"vwap_7d": 545.71
+			}
+		],
+		"recipe": "1xSTL 1xTRN=>7xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2990.2424285714296,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 10652.507571428572,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "TRN",
+				"amount": 1,
+				"vwap_7d": 502.19
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2745129715389718,
+		"output_per_day": 25.0,
+		"average_traded_7d": 1880
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2682.33
+			}
+		],
+		"recipe": "150xPE=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 2561.411799999999,
+		"area": 27.0,
+		"capex": 46365.668,
+		"cost_per_day": 8614.963200000002,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1502.4632000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.23148148148148148,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 664.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MPC",
+				"amount": 10,
+				"vwap_7d": 2290
+			}
+		],
+		"recipe": "10xSWF 10xTRN 10xBCO=>10xMPC",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 22187.373357142864,
+		"area": 39.2,
+		"capex": 410634.11799999996,
+		"cost_per_day": 45967.38854761905,
+		"input_costs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 502.19
+			},
+			{
+				"ticker": "BCO",
+				"amount": 10,
+				"vwap_7d": 786.42
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 192.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1888.5195,
+		"runs_per_day": 2.9761904761904763,
+		"logistics_per_area": 0.00683309035001805,
+		"output_per_day": 29.761904761904763,
+		"average_traded_7d": 9
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GC",
+				"amount": 10,
+				"vwap_7d": 352.88
+			}
+		],
+		"recipe": "1xFE 1xAL 1xHE=>10xGC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 2907.5530333333327,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 11795.780300000002,
+		"input_costs": [
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.717788480126705,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 1765.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RG",
+				"amount": 10,
+				"vwap_7d": 1436.68
+			}
+		],
+		"recipe": "10xGL 15xPG=>10xRG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 6386.731384615387,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 7427.499384615385,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 15,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 378.21
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 0.9615384615384616,
+		"logistics_per_area": 0.008406894052101314,
+		"output_per_day": 9.615384615384615,
+		"average_traded_7d": 843.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSL",
+				"amount": 1,
+				"vwap_7d": 5012.71
+			}
+		],
+		"recipe": "40xPG=>1xPSL",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 3485.4058333333337,
+		"area": 22.0,
+		"capex": 66144.91,
+		"cost_per_day": 6957.74,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.07575757688645161,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 62.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xGRN=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1771.3683999999998,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6986.1316,
+		"input_costs": [
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 450.78
+			},
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 379.1
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 17694
+			}
+		],
+		"recipe": "1xLTA 6xRG=>1xRTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 10391.690499999997,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 44902.0595,
+		"input_costs": [
+			{
+				"ticker": "LTA",
+				"amount": 1,
+				"vwap_7d": 4710.78
+			},
+			{
+				"ticker": "RG",
+				"amount": 6,
+				"vwap_7d": 1436.68
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.1171875,
+		"output_per_day": 3.125,
+		"average_traded_7d": 97.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xGRN 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1760.1183999999998,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 6997.3816,
+		"input_costs": [
+			{
+				"ticker": "GRN",
+				"amount": 1,
+				"vwap_7d": 417.1
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 450.78
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 381.35
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SCN",
+				"amount": 8,
+				"vwap_7d": 2589.84
+			}
+		],
+		"recipe": "100xPE 4xCU=>8xSCN",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 8470.718333333336,
+		"area": 36.0,
+		"capex": 162858.17,
+		"cost_per_day": 13111.281666666668,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 4,
+				"vwap_7d": 2427.15
+			},
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 1.0613426007761586,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 87.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 18,
+				"vwap_7d": 3401.11
+			}
+		],
+		"recipe": "40xH2O 2xDDT 4xSOI=>18xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 31033.822385714288,
+		"area": 129.8,
+		"capex": 598300.458,
+		"cost_per_day": 17994.63588285714,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 4,
+				"vwap_7d": 897.8
+			},
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 6531.74
+			}
+		],
+		"worker_consumable_cost_per_day": 3167.3425,
+		"runs_per_day": 0.8008571428571427,
+		"logistics_per_area": 0.11105877173673781,
+		"output_per_day": 14.415428571428569,
+		"average_traded_7d": 121.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SSC",
+				"amount": 6,
+				"vwap_7d": 619.04
+			}
+		],
+		"recipe": "20xNFI 2xAL 1xHE=>6xSSC",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 2747.594699999994,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 43680.4053,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "NFI",
+				"amount": 20,
+				"vwap_7d": 16.89
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 2.9735577507660937,
+		"output_per_day": 75.0,
+		"average_traded_7d": 221
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CF",
+				"amount": 1,
+				"vwap_7d": 9410
+			}
+		],
+		"recipe": "4xAL 1xSI 2xO=>1xCF",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2443.116750000003,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 26963.133249999995,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 2,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.189062535762787,
+		"output_per_day": 3.125,
+		"average_traded_7d": 0.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TUB",
+				"amount": 20,
+				"vwap_7d": 260.59
+			}
+		],
+		"recipe": "10xGL=>20xTUB",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 6035.240999999996,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 26538.509000000002,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 378.21
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.02732240566932927,
+		"output_per_day": 125.0,
+		"average_traded_7d": 131.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "INS",
+				"amount": 24,
+				"vwap_7d": 199.49
+			}
+		],
+		"recipe": "100xPE 1xAR 1xTHF=>24xINS",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 10034.428,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 13904.372,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 474.3
+			},
+			{
+				"ticker": "AR",
+				"amount": 1,
+				"vwap_7d": 519.95
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.4230000050738454,
+		"output_per_day": 120.0,
+		"average_traded_7d": 32433.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2726.37
+			}
+		],
+		"recipe": "10xSWF 5xBCO 60xPE 1xBGO=>5xPCB",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 20632.730499999994,
+		"area": 39.2,
+		"capex": 410634.11799999996,
+		"cost_per_day": 40223.74271428572,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 60,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "BCO",
+				"amount": 5,
+				"vwap_7d": 786.42
+			},
+			{
+				"ticker": "BGO",
+				"amount": 1,
+				"vwap_7d": 2047.79
+			},
+			{
+				"ticker": "SWF",
+				"amount": 10,
+				"vwap_7d": 192.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1888.5195,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 2.2748496356955115,
+		"output_per_day": 22.321428571428573,
+		"average_traded_7d": 286.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AEF",
+				"amount": 1,
+				"vwap_7d": 5459.82
+			}
+		],
+		"recipe": "50xPG 1xNE=>1xAEF",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 2838.76025,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 10810.78975,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "NE",
+				"amount": 1,
+				"vwap_7d": 686.96
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.4098360655737705,
+		"output_per_day": 2.5,
+		"average_traded_7d": 31.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DDT",
+				"amount": 3,
+				"vwap_7d": 6531.74
+			}
+		],
+		"recipe": "1xC 1xH 1xCL=>3xDDT",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 17362.19183333333,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 15296.508166666667,
+		"input_costs": [
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 4867.43
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 154.73
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.2473118301067087,
+		"output_per_day": 5.0,
+		"average_traded_7d": 345.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AU",
+				"amount": 2,
+				"vwap_7d": 1639.66
+			}
+		],
+		"recipe": "1xC 3xAUO=>2xAU",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2407.182722222223,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 6702.039499999999,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "AUO",
+				"amount": 3,
+				"vwap_7d": 332.64
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 4.878787801723288,
+		"output_per_day": 5.555555555555555,
+		"average_traded_7d": 100.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 100,
+				"vwap_7d": 17.78
+			}
+		],
+		"recipe": "1xAMM 2xGAL 3xH=>100xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 3354.7232666666687,
+		"area": 33.4,
+		"capex": 67251.278,
+		"cost_per_day": 11461.9434,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 2,
+				"vwap_7d": 239.52
+			},
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "H",
+				"amount": 3,
+				"vwap_7d": 154.73
+			}
+		],
+		"worker_consumable_cost_per_day": 1851.9434,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.5194610768776693,
+		"output_per_day": 833.3333333333334,
+		"average_traded_7d": 162565.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRS",
+				"amount": 1,
+				"vwap_7d": 300000
+			}
+		],
+		"recipe": "4xPSH 8xHSE 100xMFK=>1xTRS",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 43572.51079999999,
+		"area": 50.4,
+		"capex": 884453.546,
+		"cost_per_day": 143927.4892,
+		"input_costs": [
+			{
+				"ticker": "HSE",
+				"amount": 8,
+				"vwap_7d": 16223.01
+			},
+			{
+				"ticker": "PSH",
+				"amount": 4,
+				"vwap_7d": 11000
+			},
+			{
+				"ticker": "MFK",
+				"amount": 100,
+				"vwap_7d": 377.93
+			}
+		],
+		"worker_consumable_cost_per_day": 11691.814199999999,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.6398809353067052,
+		"output_per_day": 0.625,
+		"average_traded_7d": 2.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LCR",
+				"amount": 1,
+				"vwap_7d": 5000
+			}
+		],
+		"recipe": "1xSI 1xO=>1xLCR",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 2117.019276923077,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 7498.365338461538,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.24533371243002192,
+		"output_per_day": 1.9230769230769231,
+		"average_traded_7d": 1.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MB",
+				"amount": 4,
+				"vwap_7d": 9930
+			}
+		],
+		"recipe": "4xRAM 4xMPC 4xPSM 4xSFK=>4xMB",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 23251.224333333346,
+		"area": 40.2,
+		"capex": 495375.88399999996,
+		"cost_per_day": 142248.77566666665,
+		"input_costs": [
+			{
+				"ticker": "RAM",
+				"amount": 4,
+				"vwap_7d": 3061.36
+			},
+			{
+				"ticker": "MPC",
+				"amount": 4,
+				"vwap_7d": 2290
+			},
+			{
+				"ticker": "PSM",
+				"amount": 4,
+				"vwap_7d": 2996.12
+			},
+			{
+				"ticker": "SFK",
+				"amount": 4,
+				"vwap_7d": 68.4
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.1749585429553999,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 7.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMUS 1xNUT 1xMAI=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1583.2684000000004,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 7174.2316,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 454.72
+			},
+			{
+				"ticker": "MUS",
+				"amount": 1,
+				"vwap_7d": 379.1
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 450.78
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEN",
+				"amount": 20,
+				"vwap_7d": 876.4
+			}
+		],
+		"recipe": "20xTRN 10xH 10xN=>20xSEN",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": 19174.84256896552,
+		"area": 39.2,
+		"capex": 410634.11799999996,
+		"cost_per_day": 56376.88156896551,
+		"input_costs": [
+			{
+				"ticker": "N",
+				"amount": 10,
+				"vwap_7d": 105.02
+			},
+			{
+				"ticker": "H",
+				"amount": 10,
+				"vwap_7d": 154.73
+			},
+			{
+				"ticker": "TRN",
+				"amount": 20,
+				"vwap_7d": 502.19
+			}
+		],
+		"worker_consumable_cost_per_day": 1888.5195,
+		"runs_per_day": 4.310344827586206,
+		"logistics_per_area": 2.2013546799074097,
+		"output_per_day": 86.20689655172413,
+		"average_traded_7d": 893.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAT",
+				"amount": 10,
+				"vwap_7d": 175.15
+			}
+		],
+		"recipe": "1xMAI 1xBEA 1xNUT=>10xRAT",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 1572.0184000000004,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 7185.4816,
+		"input_costs": [
+			{
+				"ticker": "MAI",
+				"amount": 1,
+				"vwap_7d": 454.72
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 381.35
+			},
+			{
+				"ticker": "NUT",
+				"amount": 1,
+				"vwap_7d": 450.78
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.9375,
+		"output_per_day": 50.0,
+		"average_traded_7d": 48306.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 4,
+				"vwap_7d": 869.59
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO 1xFLX=>4xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2222.9813333333336,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 5023.602000000001,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 283.48
+			},
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 77.94
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 3.697064451195977,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 1567.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "S",
+				"amount": 6,
+				"vwap_7d": 179.94
+			}
+		],
+		"recipe": "1xSCR 1xO=>6xS",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2192.8354999999997,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 2305.6645,
+		"input_costs": [
+			{
+				"ticker": "SCR",
+				"amount": 1,
+				"vwap_7d": 195.28
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.6043560577161385,
+		"output_per_day": 25.0,
+		"average_traded_7d": 418.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PSH",
+				"amount": 1,
+				"vwap_7d": 11000
+			}
+		],
+		"recipe": "1xTI 250xNFI=>1xPSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 8913.565499999997,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 25461.4345,
+		"input_costs": [
+			{
+				"ticker": "NFI",
+				"amount": 250,
+				"vwap_7d": 16.89
+			},
+			{
+				"ticker": "TI",
+				"amount": 1,
+				"vwap_7d": 2887.36
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9765625296859071,
+		"output_per_day": 3.125,
+		"average_traded_7d": 21.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1405.58
+			}
+		],
+		"recipe": "6xALO 1xC 1xO=>3xAL",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 2141.535499999999,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 8400.3145,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "ALO",
+				"amount": 6,
+				"vwap_7d": 295.84
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.3057954744859175,
+		"output_per_day": 7.5,
+		"average_traded_7d": 5009.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2881.25
+			}
+		],
+		"recipe": "2xFE 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 2050.718618181818,
+		"area": 27.0,
+		"capex": 46365.668,
+		"cost_per_day": 8863.10713939394,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 2,
+				"vwap_7d": 869.59
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 204.03
+			}
+		],
+		"worker_consumable_cost_per_day": 1502.4632000000001,
+		"runs_per_day": 3.787878787878788,
+		"logistics_per_area": 2.592312031991019,
+		"output_per_day": 3.787878787878788,
+		"average_traded_7d": 1263.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 6,
+				"vwap_7d": 545.71
+			}
+		],
+		"recipe": "1xSTL 2xSFK=>6xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2346.2424285714287,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 9347.543285714288,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 68.4
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.287337646565654,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 1880
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "I",
+				"amount": 1,
+				"vwap_7d": 1387.95
+			}
+		],
+		"recipe": "3xCLI=>1xI",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2305.9835000000003,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 6368.704,
+		"input_costs": [
+			{
+				"ticker": "CLI",
+				"amount": 3,
+				"vwap_7d": 239.5
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.062500065023249,
+		"output_per_day": 6.25,
+		"average_traded_7d": 152.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SF",
+				"amount": 150,
+				"vwap_7d": 17.78
+			}
+		],
+		"recipe": "1xAMM 5xNAB=>150xSF",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": 2851.90035,
+		"area": 33.4,
+		"capex": 67251.278,
+		"cost_per_day": 5482.47465,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 1,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "NAB",
+				"amount": 5,
+				"vwap_7d": 190.36
+			}
+		],
+		"worker_consumable_cost_per_day": 1851.9434,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.8420658494418343,
+		"output_per_day": 468.75,
+		"average_traded_7d": 162565.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HCP",
+				"amount": 8,
+				"vwap_7d": 432.17
+			}
+		],
+		"recipe": "14xH2O 1xNS=>8xHCP",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 5683.922400000001,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 5120.3276000000005,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 14,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 515.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.1682242990654206,
+		"output_per_day": 25.0,
+		"average_traded_7d": 2278.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "REP",
+				"amount": 4,
+				"vwap_7d": 817.3
+			}
+		],
+		"recipe": "1xMFK 1xSFK 10xINS=>4xREP",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2261.770999999999,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 14084.229,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 377.93
+			},
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 68.4
+			},
+			{
+				"ticker": "INS",
+				"amount": 10,
+				"vwap_7d": 199.49
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.24318182163617827,
+		"output_per_day": 20.0,
+		"average_traded_7d": 998.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAC",
+				"amount": 10,
+				"vwap_7d": 3359.61
+			}
+		],
+		"recipe": "1xHCP 1xO 1xS=>10xBAC",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 13533.858499999995,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 5554.834681818183,
+		"input_costs": [
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 179.94
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 432.17
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 0.5681818181818181,
+		"logistics_per_area": 0.03758858787378374,
+		"output_per_day": 5.681818181818182,
+		"average_traded_7d": 36.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PE",
+				"amount": 200,
+				"vwap_7d": 11.38
+			}
+		],
+		"recipe": "1xC 2xH=>200xPE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 2094.153142857143,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 8066.561142857143,
+		"input_costs": [
+			{
+				"ticker": "H",
+				"amount": 2,
+				"vwap_7d": 154.73
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 4.464285714285714,
+		"logistics_per_area": 0.6087662337662337,
+		"output_per_day": 892.8571428571429,
+		"average_traded_7d": 340843.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PIB",
+				"amount": 10,
+				"vwap_7d": 2290
+			}
+		],
+		"recipe": "30xH2O 1xDDT=>10xPIB",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 23064.462925000003,
+		"area": 129.8,
+		"capex": 598300.458,
+		"cost_per_day": 17053.474575,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 6531.74
+			}
+		],
+		"worker_consumable_cost_per_day": 3167.3425,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.13496725731895223,
+		"output_per_day": 17.51875,
+		"average_traded_7d": 5.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RDE",
+				"amount": 2,
+				"vwap_7d": 35643.1
+			}
+		],
+		"recipe": "1xLDE 100xEPO 1xKV=>2xRDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 7372.056571428572,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 119924.72914285715,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 1,
+				"vwap_7d": 12374.26
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 29238.44
+			},
+			{
+				"ticker": "EPO",
+				"amount": 100,
+				"vwap_7d": 237.29
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.2566964235822005,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 68.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HOP",
+				"amount": 15,
+				"vwap_7d": 3401.11
+			}
+		],
+		"recipe": "60xH2O 2xDDT=>15xHOP",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 21473.669327500003,
+		"area": 129.8,
+		"capex": 598300.458,
+		"cost_per_day": 14276.24816,
+		"input_costs": [
+			{
+				"ticker": "DDT",
+				"amount": 2,
+				"vwap_7d": 6531.74
+			},
+			{
+				"ticker": "H2O",
+				"amount": 60,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 3167.3425,
+		"runs_per_day": 0.70075,
+		"logistics_per_area": 0.08098035439137134,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 121.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VG",
+				"amount": 20,
+				"vwap_7d": 2374.65
+			}
+		],
+		"recipe": "2xVIT 4xREA 2xBAC 2xBL=>20xVG",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 20503.0795,
+		"area": 41.8,
+		"capex": 580589.892,
+		"cost_per_day": 38863.1705,
+		"input_costs": [
+			{
+				"ticker": "REA",
+				"amount": 4,
+				"vwap_7d": 996.61
+			},
+			{
+				"ticker": "BL",
+				"amount": 2,
+				"vwap_7d": 7429.82
+			},
+			{
+				"ticker": "VIT",
+				"amount": 2,
+				"vwap_7d": 1000
+			},
+			{
+				"ticker": "BAC",
+				"amount": 2,
+				"vwap_7d": 3359.61
+			}
+		],
+		"worker_consumable_cost_per_day": 4406.5455,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.1357655495440846,
+		"output_per_day": 25.0,
+		"average_traded_7d": 31
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 12,
+				"vwap_7d": 379.1
+			}
+		],
+		"recipe": "4xNS=>12xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4744.472400000001,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 6628.527600000001,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 515.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.4018691588785048,
+		"output_per_day": 30.0,
+		"average_traded_7d": 131.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NG",
+				"amount": 10,
+				"vwap_7d": 1095.24
+			}
+		],
+		"recipe": "10xGL 10xNCS=>10xNG",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 4165.761833333334,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 7242.988166666668,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 378.21
+			},
+			{
+				"ticker": "NCS",
+				"amount": 10,
+				"vwap_7d": 38.68
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 0.012522769132578146,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 130
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 378.21
+			}
+		],
+		"recipe": "2xSIO 1xNA=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 4120.6785,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 3758.6965000000005,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.07
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2589936220580763,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 4496
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAF",
+				"amount": 2,
+				"vwap_7d": 1894.34
+			}
+		],
+		"recipe": "22xH2O 3xNS=>2xCAF",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 4624.872399999998,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 14318.527600000001,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 3,
+				"vwap_7d": 515.22
+			},
+			{
+				"ticker": "H2O",
+				"amount": 22,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.448598162871655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 716.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 152.68
+			}
+		],
+		"recipe": "1xRCO 50xPE=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1852.3793333333356,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 10870.954,
+		"input_costs": [
+			{
+				"ticker": "RCO",
+				"amount": 1,
+				"vwap_7d": 1589.29
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.28409090697426687,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 5901
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PFE",
+				"amount": 10,
+				"vwap_7d": 869.93
+			}
+		],
+		"recipe": "10xAMM 4xREA=>10xPFE",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 1532.1587,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 12060.49755,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 10,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "REA",
+				"amount": 4,
+				"vwap_7d": 996.61
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.585937500171199,
+		"output_per_day": 15.625,
+		"average_traded_7d": 154.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1892.4
+			}
+		],
+		"recipe": "1xFE 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 1571.2867999999999,
+		"area": 27.0,
+		"capex": 46365.668,
+		"cost_per_day": 7890.7132,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 204.03
+			},
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 1502.4632000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 2.4692592797455966,
+		"output_per_day": 5.0,
+		"average_traded_7d": 1947.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MCG",
+				"amount": 50,
+				"vwap_7d": 38.77
+			}
+		],
+		"recipe": "4xLST 2xSIO=>50xMCG",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1799.2210000000014,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 7893.2789999999995,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "LST",
+				"amount": 4,
+				"vwap_7d": 204.03
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 3.2954545454545454,
+		"output_per_day": 250.0,
+		"average_traded_7d": 21392.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LFP",
+				"amount": 1,
+				"vwap_7d": 9500
+			}
+		],
+		"recipe": "1xSFK 50xPG 10xTHF=>1xLFP",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 2191.2600000000007,
+		"area": 22.0,
+		"capex": 66144.91,
+		"cost_per_day": 21558.74,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 1,
+				"vwap_7d": 68.4
+			},
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "THF",
+				"amount": 10,
+				"vwap_7d": 474.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.697727300258438,
+		"output_per_day": 2.5,
+		"average_traded_7d": 1.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2262.3
+			}
+		],
+		"recipe": "1xAL 1xHE=>1xGV",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 1767.4447000000011,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 9544.0553,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.5471153929829597,
+		"output_per_day": 5.0,
+		"average_traded_7d": 78.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRA",
+				"amount": 1,
+				"vwap_7d": 2258.82
+			}
+		],
+		"recipe": "1xCAP 1xSWF 1xTRN=>1xTRA",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 6056.80775,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 8060.81725,
+		"input_costs": [
+			{
+				"ticker": "TRN",
+				"amount": 1,
+				"vwap_7d": 502.19
+			},
+			{
+				"ticker": "SWF",
+				"amount": 1,
+				"vwap_7d": 192.44
+			},
+			{
+				"ticker": "CAP",
+				"amount": 1,
+				"vwap_7d": 299
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.0009735202727943797,
+		"output_per_day": 6.25,
+		"average_traded_7d": 12.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FAL",
+				"amount": 6,
+				"vwap_7d": 2197.12
+			}
+		],
+		"recipe": "3xAL 3xFE=>6xFAL",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 10602.889949999997,
+		"area": 44.2,
+		"capex": 331713.368,
+		"cost_per_day": 30593.11005,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 9263.3913,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.2427884870255155,
+		"output_per_day": 18.75,
+		"average_traded_7d": 35.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 12,
+				"vwap_7d": 378.21
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xFLX=>12xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 3771.5778055555543,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 4107.797194444445,
+		"input_costs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "FLX",
+				"amount": 1,
+				"vwap_7d": 283.48
+			},
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.07
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 1.7361111111111112,
+		"logistics_per_area": 0.227686700834675,
+		"output_per_day": 20.833333333333336,
+		"average_traded_7d": 4496
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TSH",
+				"amount": 1,
+				"vwap_7d": 43382.39
+			}
+		],
+		"recipe": "150xPE 2xLBH 2xTHP=>1xTSH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 27215.664966666664,
+		"area": 50.4,
+		"capex": 884453.546,
+		"cost_per_day": 63164.31420000001,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 150,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "THP",
+				"amount": 2,
+				"vwap_7d": 5667.39
+			},
+			{
+				"ticker": "LBH",
+				"amount": 2,
+				"vwap_7d": 5832.51
+			}
+		],
+		"worker_consumable_cost_per_day": 11691.814199999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2604166694692578,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MED",
+				"amount": 16,
+				"vwap_7d": 1418.83
+			}
+		],
+		"recipe": "50xPE 1xAL 4xCOT 1xHER=>16xMED",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": 1342.6899500000022,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 34128.06005,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 4,
+				"vwap_7d": 3592.86
+			},
+			{
+				"ticker": "HER",
+				"amount": 1,
+				"vwap_7d": 3863.36
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.38373161570395015,
+		"output_per_day": 25.0,
+		"average_traded_7d": 958.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MAI",
+				"amount": 12,
+				"vwap_7d": 454.72
+			}
+		],
+		"recipe": "20xH2O 2xNS=>12xMAI",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 3986.7974,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 4539.2026000000005,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 20,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 515.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.1390186498098285,
+		"output_per_day": 18.75,
+		"average_traded_7d": 1732.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "ZR",
+				"amount": 1,
+				"vwap_7d": 24100
+			}
+		],
+		"recipe": "2xZIR=>1xZR 2xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 37645.1988,
+		"area": 52.6,
+		"capex": 1282051.074,
+		"cost_per_day": 13369.217866666666,
+		"input_costs": [
+			{
+				"ticker": "ZIR",
+				"amount": 2,
+				"vwap_7d": 704.74
+			}
+		],
+		"worker_consumable_cost_per_day": 10432.8012,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.40042776194211044,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 3484.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ALG",
+				"amount": 12,
+				"vwap_7d": 310.86
+			}
+		],
+		"recipe": "16xH2O 2xNS=>12xALG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 3957.1168444444443,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 6404.883155555555,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "NS",
+				"amount": 2,
+				"vwap_7d": 515.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 2.7777777777777777,
+		"logistics_per_area": 1.557632398753894,
+		"output_per_day": 33.33333333333333,
+		"average_traded_7d": 1069.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FE",
+				"amount": 3,
+				"vwap_7d": 869.59
+			}
+		],
+		"recipe": "6xFEO 1xC 1xO=>3xFE",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": 1390.1104999999998,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 5131.8145,
+		"input_costs": [
+			{
+				"ticker": "FEO",
+				"amount": 6,
+				"vwap_7d": 77.94
+			},
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.408068250526082,
+		"output_per_day": 7.5,
+		"average_traded_7d": 1567.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NFI",
+				"amount": 1200,
+				"vwap_7d": 16.89
+			}
+		],
+		"recipe": "10xC 2xSI=>1200xNFI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 5368.838999999998,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 26299.911,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2439.97
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1076.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 1.8691589672849556,
+		"output_per_day": 1875.0,
+		"average_traded_7d": 28089.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GL",
+				"amount": 10,
+				"vwap_7d": 378.21
+			}
+		],
+		"recipe": "2xSIO 1xNA 1xSEN=>10xGL",
+		"expertise": "METALLURGY",
+		"building": "GF",
+		"profit_per_day": 3333.890999999999,
+		"area": 36.6,
+		"capex": 119863.348,
+		"cost_per_day": 6121.359,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.07
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 876.4
+			},
+			{
+				"ticker": "SIO",
+				"amount": 2,
+				"vwap_7d": 193.46
+			}
+		],
+		"worker_consumable_cost_per_day": 2900.3840000000005,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.31086065248386485,
+		"output_per_day": 25.0,
+		"average_traded_7d": 4496
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 6,
+				"vwap_7d": 3630.92
+			}
+		],
+		"recipe": "30xH2O 1xDDT 3xSOI=>6xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 16393.533150000003,
+		"area": 129.8,
+		"capex": 598300.458,
+		"cost_per_day": 21771.9747,
+		"input_costs": [
+			{
+				"ticker": "SOI",
+				"amount": 3,
+				"vwap_7d": 897.8
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 6531.74
+			},
+			{
+				"ticker": "H2O",
+				"amount": 30,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 3167.3425,
+		"runs_per_day": 1.751875,
+		"logistics_per_area": 0.12282020538705953,
+		"output_per_day": 10.51125,
+		"average_traded_7d": 28
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BGS",
+				"amount": 1,
+				"vwap_7d": 199833.33
+			}
+		],
+		"recipe": "80xPG 14xFAL 4xKV=>1xBGS",
+		"expertise": "MANUFACTURING",
+		"building": "SPP",
+		"profit_per_day": 26995.920966666672,
+		"area": 71.8,
+		"capex": 1004591.002,
+		"cost_per_day": 139531.8540333333,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 80,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "FAL",
+				"amount": 14,
+				"vwap_7d": 2197.12
+			},
+			{
+				"ticker": "KV",
+				"amount": 4,
+				"vwap_7d": 29238.44
+			}
+		],
+		"worker_consumable_cost_per_day": 12321.320699999998,
+		"runs_per_day": 0.8333333333333333,
+		"logistics_per_area": 0.6016713128223697,
+		"output_per_day": 0.8333333333333333,
+		"average_traded_7d": 0.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SEA",
+				"amount": 30,
+				"vwap_7d": 174.72
+			}
+		],
+		"recipe": "1xS 1xSI 30xPG=>30xSEA",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 1328.129333333337,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 20511.87066666667,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			},
+			{
+				"ticker": "PG",
+				"amount": 30,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "S",
+				"amount": 1,
+				"vwap_7d": 179.94
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.8522727611390027,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 674.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 32751.39
+			}
+		],
+		"recipe": "16xSEN 4xPCB=>1xSAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 12078.074746268661,
+		"area": 40.6,
+		"capex": 524784.404,
+		"cost_per_day": 49025.264805970146,
+		"input_costs": [
+			{
+				"ticker": "SEN",
+				"amount": 16,
+				"vwap_7d": 876.4
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2726.37
+			}
+		],
+		"worker_consumable_cost_per_day": 2518.0260000000003,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.09190500698478053,
+		"output_per_day": 1.8656716417910448,
+		"average_traded_7d": 10.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AAR",
+				"amount": 3,
+				"vwap_7d": 17400
+			}
+		],
+		"recipe": "1xKV 2xAU 4xPCB 6xSWF=>3xAAR",
+		"expertise": "ELECTRONICS",
+		"building": "ELP",
+		"profit_per_day": 11702.347134328364,
+		"area": 40.6,
+		"capex": 524784.404,
+		"cost_per_day": 85685.71256716417,
+		"input_costs": [
+			{
+				"ticker": "AU",
+				"amount": 2,
+				"vwap_7d": 1639.66
+			},
+			{
+				"ticker": "KV",
+				"amount": 1,
+				"vwap_7d": 29238.44
+			},
+			{
+				"ticker": "PCB",
+				"amount": 4,
+				"vwap_7d": 2726.37
+			},
+			{
+				"ticker": "SWF",
+				"amount": 6,
+				"vwap_7d": 192.44
+			}
+		],
+		"worker_consumable_cost_per_day": 2518.0260000000003,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 1.8614439824711084,
+		"output_per_day": 5.597014925373134,
+		"average_traded_7d": 2
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRN",
+				"amount": 10,
+				"vwap_7d": 502.19
+			}
+		],
+		"recipe": "1xAL 1xSI=>10xTRN",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 4031.12025,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 21078.37975,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.7833333401665138,
+		"output_per_day": 50.0,
+		"average_traded_7d": 1459
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NST",
+				"amount": 4,
+				"vwap_7d": 2000
+			}
+		],
+		"recipe": "1xES 1xALG 1xTHF=>4xNST",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 7389.8335,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 12610.166500000001,
+		"input_costs": [
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 2206.25
+			},
+			{
+				"ticker": "THF",
+				"amount": 1,
+				"vwap_7d": 474.3
+			},
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 310.86
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.14650537682476863,
+		"output_per_day": 10.0,
+		"average_traded_7d": 4.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "VEG",
+				"amount": 6,
+				"vwap_7d": 325.78
+			}
+		],
+		"recipe": "16xH2O 1xNS=>6xVEG",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2871.297399999999,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 9345.4526,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 515.22
+			},
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.9275701352369006,
+		"output_per_day": 37.5,
+		"average_traded_7d": 1535.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 16450
+			}
+		],
+		"recipe": "=>1xBAI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 7133.7175,
+		"area": 27.0,
+		"capex": 336938.48,
+		"cost_per_day": 3147.5325000000003,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3147.5325000000003,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00023148147630746717,
+		"output_per_day": 0.625,
+		"average_traded_7d": 0.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NCS",
+				"amount": 100,
+				"vwap_7d": 38.68
+			}
+		],
+		"recipe": "1xC=>100xNCS",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 3964.453583333333,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 4093.87975,
+		"input_costs": [
+			{
+				"ticker": "C",
+				"amount": 1,
+				"vwap_7d": 1076.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18172378546383275,
+		"output_per_day": 208.33333333333334,
+		"average_traded_7d": 849.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MLI",
+				"amount": 1,
+				"vwap_7d": 24333.33
+			}
+		],
+		"recipe": "=>1xMLI",
+		"expertise": "ELECTRONICS",
+		"building": "SD",
+		"profit_per_day": 6991.3550000000005,
+		"area": 27.0,
+		"capex": 336938.48,
+		"cost_per_day": 3147.5325000000003,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 3147.5325000000003,
+		"runs_per_day": 0.41666666666666663,
+		"logistics_per_area": 0.0001543209842049781,
+		"output_per_day": 0.41666666666666663,
+		"average_traded_7d": 0.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MUS",
+				"amount": 4,
+				"vwap_7d": 379.1
+			}
+		],
+		"recipe": "1xNS=>4xMUS",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2695.255733333334,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 3623.0776000000005,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 515.22
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.7788161993769471,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 131.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WRH",
+				"amount": 6,
+				"vwap_7d": 9998.46
+			}
+		],
+		"recipe": "4xRE 2xW=>6xWRH",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 6610.692033333331,
+		"area": 44.2,
+		"capex": 331713.368,
+		"cost_per_day": 118370.05796666667,
+		"input_costs": [
+			{
+				"ticker": "W",
+				"amount": 2,
+				"vwap_7d": 19600
+			},
+			{
+				"ticker": "RE",
+				"amount": 4,
+				"vwap_7d": 3292.8
+			}
+		],
+		"worker_consumable_cost_per_day": 9263.3913,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 1.9570135962369755,
+		"output_per_day": 12.5,
+		"average_traded_7d": 16.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1723.25
+			}
+		],
+		"recipe": "1xFE 50xPE=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP1",
+		"profit_per_day": 869.7034666666655,
+		"area": 27.0,
+		"capex": 46365.668,
+		"cost_per_day": 13490.713200000002,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1502.4632000000001,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 2.5845679201553633,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 92.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "COM",
+				"amount": 1,
+				"vwap_7d": 132750
+			}
+		],
+		"recipe": "1xBWS 1xAAR 4xRAD=>1xCOM",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 27295.40219999999,
+		"area": 51.6,
+		"capex": 1476477.064,
+		"cost_per_day": 193954.5978,
+		"input_costs": [
+			{
+				"ticker": "RAD",
+				"amount": 4,
+				"vwap_7d": 15033.33
+			},
+			{
+				"ticker": "AAR",
+				"amount": 1,
+				"vwap_7d": 17400
+			},
+			{
+				"ticker": "BWS",
+				"amount": 1,
+				"vwap_7d": 32903.7
+			}
+		],
+		"worker_consumable_cost_per_day": 9892.8978,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.04844961240310077,
+		"output_per_day": 1.6666666666666665,
+		"average_traded_7d": 3.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TCL",
+				"amount": 3,
+				"vwap_7d": 3550.01
+			}
+		],
+		"recipe": "1xCL 1xO 1xH=>3xTCL",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 6316.608500000001,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 15870.954000000002,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "H",
+				"amount": 1,
+				"vwap_7d": 154.73
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 4867.43
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.24703181453890374,
+		"output_per_day": 6.25,
+		"average_traded_7d": 306.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "GRA",
+				"amount": 5,
+				"vwap_7d": 3630.92
+			}
+		],
+		"recipe": "40xH2O 1xDDT=>5xGRA",
+		"expertise": "AGRICULTURE",
+		"building": "ORC",
+		"profit_per_day": 10515.866389999997,
+		"area": 129.8,
+		"capex": 598300.458,
+		"cost_per_day": 14927.80551,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 40,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "DDT",
+				"amount": 1,
+				"vwap_7d": 6531.74
+			}
+		],
+		"worker_consumable_cost_per_day": 3167.3425,
+		"runs_per_day": 1.4015,
+		"logistics_per_area": 0.08756675782924853,
+		"output_per_day": 7.0075,
+		"average_traded_7d": 28
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RCO",
+				"amount": 2,
+				"vwap_7d": 1589.29
+			}
+		],
+		"recipe": "10xH2O 4xNS=>2xRCO",
+		"expertise": "AGRICULTURE",
+		"building": "HYF",
+		"profit_per_day": 2232.763309090908,
+		"area": 21.4,
+		"capex": 134792.776,
+		"cost_per_day": 15827.35032727273,
+		"input_costs": [
+			{
+				"ticker": "NS",
+				"amount": 4,
+				"vwap_7d": 515.22
+			},
+			{
+				"ticker": "H2O",
+				"amount": 10,
+				"vwap_7d": 46.49
+			}
+		],
+		"worker_consumable_cost_per_day": 1476.3276,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.1682243322986818,
+		"output_per_day": 11.363636363636365,
+		"average_traded_7d": 410.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 5,
+				"vwap_7d": 545.71
+			}
+		],
+		"recipe": "1xSTL=>5xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 885.8495714285723,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 8858.971857142857,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 1.2743506338689234,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 1880
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BHP",
+				"amount": 4,
+				"vwap_7d": 4967.34
+			}
+		],
+		"recipe": "12xAL 1xSTL 1xHE=>4xBHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": 1284.6765000000028,
+		"area": 31.2,
+		"capex": 79163.14,
+		"cost_per_day": 81504.3235,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 5.394631473379386,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 88.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SIO",
+				"amount": 1,
+				"vwap_7d": 193.46
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "BE",
+				"amount": 1,
+				"vwap_7d": 1823.14
+			}
+		],
+		"recipe": "2xBER=>1xBE 1xAL 1xSIO",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 20496.198800000006,
+		"area": 52.6,
+		"capex": 1282051.074,
+		"cost_per_day": 22281.0512,
+		"input_costs": [
+			{
+				"ticker": "BER",
+				"amount": 2,
+				"vwap_7d": 473.93
+			}
+		],
+		"worker_consumable_cost_per_day": 10432.8012,
+		"runs_per_day": 12.5,
+		"logistics_per_area": 1.5042775767384373,
+		"output_per_day": 12.5,
+		"average_traded_7d": 5009.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NN",
+				"amount": 1,
+				"vwap_7d": 65875
+			}
+		],
+		"recipe": "1xBAI 1xMLI=>1xNN",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 11735.936799999996,
+		"area": 24.8,
+		"capex": 734224.8019999999,
+		"cost_per_day": 43159.89653333333,
+		"input_costs": [
+			{
+				"ticker": "BAI",
+				"amount": 1,
+				"vwap_7d": 16450
+			},
+			{
+				"ticker": "MLI",
+				"amount": 1,
+				"vwap_7d": 24333.33
+			}
+		],
+		"worker_consumable_cost_per_day": 9173.788199999999,
+		"runs_per_day": 0.8333333333333333,
+		"logistics_per_area": 0.0006720429957313562,
+		"output_per_day": 0.8333333333333333,
+		"average_traded_7d": 1.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ASE",
+				"amount": 1,
+				"vwap_7d": 53471.86
+			}
+		],
+		"recipe": "1xRSE 2xTI=>1xASE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 14021.072163636358,
+		"area": 50.4,
+		"capex": 884453.546,
+		"cost_per_day": 107505.88238181817,
+		"input_costs": [
+			{
+				"ticker": "RSE",
+				"amount": 1,
+				"vwap_7d": 36383.47
+			},
+			{
+				"ticker": "TI",
+				"amount": 2,
+				"vwap_7d": 2887.36
+			}
+		],
+		"worker_consumable_cost_per_day": 11691.814199999999,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.49152236544724665,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 171.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SWF",
+				"amount": 30,
+				"vwap_7d": 192.44
+			}
+		],
+		"recipe": "1xSI 1xAL=>30xSWF",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 2968.49525,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 11464.50475,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3916666700832569,
+		"output_per_day": 75.0,
+		"average_traded_7d": 4557.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LSE",
+				"amount": 1,
+				"vwap_7d": 12075.23
+			}
+		],
+		"recipe": "120xPG 3xAL=>1xLSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": 872.5602499999936,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 59503.58975000001,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 3,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "PG",
+				"amount": 120,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.3672131400738583,
+		"output_per_day": 5.0,
+		"average_traded_7d": 189.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 336.63
+			}
+		],
+		"recipe": "10xOVE 1xAL=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 833.9210000000007,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 20205.453999999998,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 152.68
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.8238636486401613,
+		"output_per_day": 62.5,
+		"average_traded_7d": 1139.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ATA",
+				"amount": 1,
+				"vwap_7d": 29936.97
+			}
+		],
+		"recipe": "1xRTA 1xNG=>1xATA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": 13643.935799999997,
+		"area": 50.4,
+		"capex": 884453.546,
+		"cost_per_day": 54394.632381818185,
+		"input_costs": [
+			{
+				"ticker": "NG",
+				"amount": 1,
+				"vwap_7d": 1095.24
+			},
+			{
+				"ticker": "RTA",
+				"amount": 1,
+				"vwap_7d": 17694
+			}
+		],
+		"worker_consumable_cost_per_day": 11691.814199999999,
+		"runs_per_day": 2.2727272727272725,
+		"logistics_per_area": 0.06863275612738053,
+		"output_per_day": 2.2727272727272725,
+		"average_traded_7d": 23.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THF",
+				"amount": 20,
+				"vwap_7d": 474.3
+			}
+		],
+		"recipe": "4xAMM 4xH2O 4xNA=>20xTHF",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 5318.208500000002,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 6539.2915,
+		"input_costs": [
+			{
+				"ticker": "AMM",
+				"amount": 4,
+				"vwap_7d": 209.97
+			},
+			{
+				"ticker": "H2O",
+				"amount": 4,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "NA",
+				"amount": 4,
+				"vwap_7d": 25.07
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.40322582247436684,
+		"output_per_day": 25.0,
+		"average_traded_7d": 919.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HD",
+				"amount": 5,
+				"vwap_7d": 3883.7
+			}
+		],
+		"recipe": "1xRG 5xDCS 5xLDI=>5xHD",
+		"expertise": "MANUFACTURING",
+		"building": "MCA",
+		"profit_per_day": 7364.90219402985,
+		"area": 40.2,
+		"capex": 495375.88399999996,
+		"cost_per_day": 28863.642582089553,
+		"input_costs": [
+			{
+				"ticker": "LDI",
+				"amount": 5,
+				"vwap_7d": 532
+			},
+			{
+				"ticker": "DCS",
+				"amount": 5,
+				"vwap_7d": 2062.15
+			},
+			{
+				"ticker": "RG",
+				"amount": 1,
+				"vwap_7d": 1436.68
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 1.8656716417910448,
+		"logistics_per_area": 0.46409742333110565,
+		"output_per_day": 9.328358208955224,
+		"average_traded_7d": 6.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AST",
+				"amount": 4,
+				"vwap_7d": 3650
+			}
+		],
+		"recipe": "1xAL 3xTI=>4xAST",
+		"expertise": "METALLURGY",
+		"building": "ASM",
+		"profit_per_day": 4900.171200000001,
+		"area": 44.2,
+		"capex": 331713.368,
+		"cost_per_day": 40724.8288,
+		"input_costs": [
+			{
+				"ticker": "TI",
+				"amount": 3,
+				"vwap_7d": 2887.36
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 9263.3913,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 1.4083710461180674,
+		"output_per_day": 12.5,
+		"average_traded_7d": 4.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 19600
+			}
+		],
+		"recipe": "5xBTS=>1xW",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 17950.42796666667,
+		"area": 52.6,
+		"capex": 1282051.074,
+		"cost_per_day": 22882.905366666666,
+		"input_costs": [
+			{
+				"ticker": "BTS",
+				"amount": 5,
+				"vwap_7d": 1195.21
+			}
+		],
+		"worker_consumable_cost_per_day": 10432.8012,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.2978057689086566,
+		"output_per_day": 2.0833333333333335,
+		"average_traded_7d": 2.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BLE",
+				"amount": 4,
+				"vwap_7d": 2270
+			}
+		],
+		"recipe": "10xNAB 3xS 2xO=>4xBLE",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 4823.295999999999,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 9364.204000000002,
+		"input_costs": [
+			{
+				"ticker": "O",
+				"amount": 2,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "NAB",
+				"amount": 10,
+				"vwap_7d": 190.36
+			},
+			{
+				"ticker": "S",
+				"amount": 3,
+				"vwap_7d": 179.94
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.20337701707537614,
+		"output_per_day": 6.25,
+		"average_traded_7d": 6.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TRU",
+				"amount": 6,
+				"vwap_7d": 563.52
+			}
+		],
+		"recipe": "2xAL 1xHE=>6xTRU",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": 745.719699999999,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 20386.2803,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 2.1634615384615383,
+		"output_per_day": 37.5,
+		"average_traded_7d": 1099
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AIR",
+				"amount": 1,
+				"vwap_7d": 200000
+			}
+		],
+		"recipe": "1xHCP 1xNS 1xH2O 1xWAI 1xPCB 1xSAR 1xGV 1xFC 1xBAC=>1xAIR",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 19322.072200000002,
+		"area": 51.6,
+		"capex": 1476477.064,
+		"cost_per_day": 80677.9278,
+		"input_costs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 94538.46
+			},
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 4938.05
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 515.22
+			},
+			{
+				"ticker": "GV",
+				"amount": 1,
+				"vwap_7d": 2262.3
+			},
+			{
+				"ticker": "PCB",
+				"amount": 1,
+				"vwap_7d": 2726.37
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 432.17
+			},
+			{
+				"ticker": "BAC",
+				"amount": 1,
+				"vwap_7d": 3359.61
+			},
+			{
+				"ticker": "SAR",
+				"amount": 1,
+				"vwap_7d": 32751.39
+			}
+		],
+		"worker_consumable_cost_per_day": 9892.8978,
+		"runs_per_day": 0.5,
+		"logistics_per_area": 0.04176356604091765,
+		"output_per_day": 0.5,
+		"average_traded_7d": 67.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HSE",
+				"amount": 2,
+				"vwap_7d": 16223.01
+			}
+		],
+		"recipe": "2xLSE 1xTCS=>2xHSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP3",
+		"profit_per_day": 2368.0030000000033,
+		"area": 40.0,
+		"capex": 199553.596,
+		"cost_per_day": 99025.8095,
+		"input_costs": [
+			{
+				"ticker": "TCS",
+				"amount": 1,
+				"vwap_7d": 6500
+			},
+			{
+				"ticker": "LSE",
+				"amount": 2,
+				"vwap_7d": 12075.23
+			}
+		],
+		"worker_consumable_cost_per_day": 3243.1220000000003,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.4843749850988388,
+		"output_per_day": 6.25,
+		"average_traded_7d": 122.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MTP",
+				"amount": 4,
+				"vwap_7d": 1957.47
+			}
+		],
+		"recipe": "1xPPA 1xNS 1xHCP=>4xMTP",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 6788.9545,
+		"area": 41.8,
+		"capex": 580589.892,
+		"cost_per_day": 6260.8455,
+		"input_costs": [
+			{
+				"ticker": "PPA",
+				"amount": 1,
+				"vwap_7d": 165.19
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 515.22
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 432.17
+			}
+		],
+		"worker_consumable_cost_per_day": 4406.5455,
+		"runs_per_day": 1.6666666666666665,
+		"logistics_per_area": 0.1594896331738437,
+		"output_per_day": 6.666666666666666,
+		"average_traded_7d": 163
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RSI",
+				"amount": 8,
+				"vwap_7d": 1300
+			}
+		],
+		"recipe": "16xH2O 1xHCP 1xNS=>8xRSI",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "IVP",
+		"profit_per_day": 6479.417000000001,
+		"area": 41.8,
+		"capex": 580589.892,
+		"cost_per_day": 6520.5830000000005,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 16,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "HCP",
+				"amount": 1,
+				"vwap_7d": 432.17
+			},
+			{
+				"ticker": "NS",
+				"amount": 1,
+				"vwap_7d": 515.22
+			}
+		],
+		"worker_consumable_cost_per_day": 4406.5455,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.26315790044063586,
+		"output_per_day": 10.0,
+		"average_traded_7d": 14.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BOS",
+				"amount": 4,
+				"vwap_7d": 4458.3
+			}
+		],
+		"recipe": "1xBOR 1xSI 4xAL=>4xBOS",
+		"expertise": "CHEMISTRY",
+		"building": "AML",
+		"profit_per_day": 13238.023800000004,
+		"area": 52.6,
+		"capex": 1282051.074,
+		"cost_per_day": 31344.976199999997,
+		"input_costs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			},
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "BOR",
+				"amount": 1,
+				"vwap_7d": 302.58
+			}
+		],
+		"worker_consumable_cost_per_day": 10432.8012,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.7095532385568655,
+		"output_per_day": 10.0,
+		"average_traded_7d": 39.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CAP",
+				"amount": 15,
+				"vwap_7d": 299
+			}
+		],
+		"recipe": "1xSI 1xFE=>15xCAP",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": 1822.62025,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 12193.00475,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.9932827169650068,
+		"output_per_day": 46.875,
+		"average_traded_7d": 16.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFK",
+				"amount": 16,
+				"vwap_7d": 68.4
+			}
+		],
+		"recipe": "1xFE=>16xSFK",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 529.0308333333342,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 10870.969166666668,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 1,
+				"vwap_7d": 869.59
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 2.64583335768792,
+		"output_per_day": 166.66666666666669,
+		"average_traded_7d": 1961.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "POW",
+				"amount": 1,
+				"vwap_7d": 9325.07
+			}
+		],
+		"recipe": "1xNCS 4xLI=>1xPOW",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": 5181.078499999996,
+		"area": 40.2,
+		"capex": 603530.824,
+		"cost_per_day": 53100.609,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 1,
+				"vwap_7d": 38.68
+			},
+			{
+				"ticker": "LI",
+				"amount": 4,
+				"vwap_7d": 2034.99
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.6234452735970899,
+		"output_per_day": 6.25,
+		"average_traded_7d": 20.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NV2",
+				"amount": 1,
+				"vwap_7d": 200000
+			}
+		],
+		"recipe": "1xBMF 1xSNM=>1xNV2",
+		"expertise": "MANUFACTURING",
+		"building": "AAF",
+		"profit_per_day": 12528.9434,
+		"area": 60.0,
+		"capex": 1510651.1859999998,
+		"cost_per_day": 112471.0566,
+		"input_costs": [
+			{
+				"ticker": "SNM",
+				"amount": 1,
+				"vwap_7d": 115000
+			},
+			{
+				"ticker": "BMF",
+				"amount": 1,
+				"vwap_7d": 31500
+			}
+		],
+		"worker_consumable_cost_per_day": 20908.5566,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.06979166467984517,
+		"output_per_day": 0.625,
+		"average_traded_7d": 1.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRP",
+				"amount": 12,
+				"vwap_7d": 5490
+			}
+		],
+		"recipe": "5xLST 2xKV=>12xBRP",
+		"expertise": "MANUFACTURING",
+		"building": "SPP",
+		"profit_per_day": 7625.460550000005,
+		"area": 71.8,
+		"capex": 1004591.002,
+		"cost_per_day": 198249.53945,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 5,
+				"vwap_7d": 204.03
+			},
+			{
+				"ticker": "KV",
+				"amount": 2,
+				"vwap_7d": 29238.44
+			}
+		],
+		"worker_consumable_cost_per_day": 12321.320699999998,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 0.7377263251951478,
+		"output_per_day": 37.5,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MEA",
+				"amount": 2,
+				"vwap_7d": 4472.95
+			}
+		],
+		"recipe": "2xFIM 1xMTP=>2xMEA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": 236.0953230769228,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 16967.558523076925,
+		"input_costs": [
+			{
+				"ticker": "MTP",
+				"amount": 1,
+				"vwap_7d": 1957.47
+			},
+			{
+				"ticker": "FIM",
+				"amount": 2,
+				"vwap_7d": 3237.51
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 0.2403846153846154,
+		"output_per_day": 3.8461538461538463,
+		"average_traded_7d": 432
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BRO",
+				"amount": 3,
+				"vwap_7d": 2317.44
+			}
+		],
+		"recipe": "1xAL 2xCU=>3xBRO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": 351.1349999999984,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 21374.865,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2427.15
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 2.6401208293053413,
+		"output_per_day": 9.375,
+		"average_traded_7d": 22.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EES",
+				"amount": 1,
+				"vwap_7d": 49000
+			}
+		],
+		"recipe": "1xES 4xREA 4xFLX=>1xEES",
+		"expertise": "CHEMISTRY",
+		"building": "EEP",
+		"profit_per_day": 7708.526850000002,
+		"area": 116.8,
+		"capex": 1536911.864,
+		"cost_per_day": 43333.13981666666,
+		"input_costs": [
+			{
+				"ticker": "REA",
+				"amount": 4,
+				"vwap_7d": 996.61
+			},
+			{
+				"ticker": "ES",
+				"amount": 1,
+				"vwap_7d": 2206.25
+			},
+			{
+				"ticker": "FLX",
+				"amount": 4,
+				"vwap_7d": 283.48
+			}
+		],
+		"worker_consumable_cost_per_day": 35701.2544,
+		"runs_per_day": 1.0416666666666667,
+		"logistics_per_area": 0.08204908505694507,
+		"output_per_day": 1.0416666666666667,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "IDC",
+				"amount": 1,
+				"vwap_7d": 11028.5
+			}
+		],
+		"recipe": "=>1xIDC",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 5108.786,
+		"area": 23.6,
+		"capex": 1021037.1,
+		"cost_per_day": 8676.839,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 8676.839,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005296610051103062,
+		"output_per_day": 1.25,
+		"average_traded_7d": 407
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "DCS",
+				"amount": 2,
+				"vwap_7d": 2062.15
+			}
+		],
+		"recipe": "4xSFK 10xPG 1xPSS=>2xDCS",
+		"expertise": "MANUFACTURING",
+		"building": "PPF",
+		"profit_per_day": 323.6350000000002,
+		"area": 22.0,
+		"capex": 66144.91,
+		"cost_per_day": 16860.948333333337,
+		"input_costs": [
+			{
+				"ticker": "SFK",
+				"amount": 4,
+				"vwap_7d": 68.4
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "PSS",
+				"amount": 1,
+				"vwap_7d": 2720.57
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.03787878844322581,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 139.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 94538.46
+			}
+		],
+		"recipe": "1xNN 1xROM=>1xWAI",
+		"expertise": "ELECTRONICS",
+		"building": "SL",
+		"profit_per_day": 4895.629750000007,
+		"area": 23.6,
+		"capex": 1021037.1,
+		"cost_per_day": 54190.90775,
+		"input_costs": [
+			{
+				"ticker": "ROM",
+				"amount": 1,
+				"vwap_7d": 6947.51
+			},
+			{
+				"ticker": "NN",
+				"amount": 1,
+				"vwap_7d": 65875
+			}
+		],
+		"worker_consumable_cost_per_day": 8676.839,
+		"runs_per_day": 0.625,
+		"logistics_per_area": 0.00029131355466048813,
+		"output_per_day": 0.625,
+		"average_traded_7d": 1.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "NR",
+				"amount": 50,
+				"vwap_7d": 376.78
+			}
+		],
+		"recipe": "50xEPO 75xNCS=>50xNR",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": 1233.2022499999994,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 28202.73525,
+		"input_costs": [
+			{
+				"ticker": "NCS",
+				"amount": 75,
+				"vwap_7d": 38.68
+			},
+			{
+				"ticker": "EPO",
+				"amount": 50,
+				"vwap_7d": 237.29
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 0.17221102235032626,
+		"output_per_day": 78.125,
+		"average_traded_7d": 10357.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "WR",
+				"amount": 1,
+				"vwap_7d": 140000
+			}
+		],
+		"recipe": "12xFLP 1xFC 1xAWF 1xPCB 1xSEN 1xWAI=>1xWR",
+		"expertise": "MANUFACTURING",
+		"building": "APF",
+		"profit_per_day": 5117.4330823529435,
+		"area": 51.6,
+		"capex": 1476477.064,
+		"cost_per_day": 97823.7433882353,
+		"input_costs": [
+			{
+				"ticker": "WAI",
+				"amount": 1,
+				"vwap_7d": 94538.46
+			},
+			{
+				"ticker": "SEN",
+				"amount": 1,
+				"vwap_7d": 876.4
+			},
+			{
+				"ticker": "PCB",
+				"amount": 1,
+				"vwap_7d": 2726.37
+			},
+			{
+				"ticker": "AWF",
+				"amount": 1,
+				"vwap_7d": 6373.03
+			},
+			{
+				"ticker": "FLP",
+				"amount": 12,
+				"vwap_7d": 844.47
+			},
+			{
+				"ticker": "FC",
+				"amount": 1,
+				"vwap_7d": 4938.05
+			}
+		],
+		"worker_consumable_cost_per_day": 9892.8978,
+		"runs_per_day": 0.7352941176470589,
+		"logistics_per_area": 0.3635288424568621,
+		"output_per_day": 0.7352941176470589,
+		"average_traded_7d": 12.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 336.63
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xSWF=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": 134.254333333334,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 27918.24566666667,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 152.68
+			},
+			{
+				"ticker": "SWF",
+				"amount": 1,
+				"vwap_7d": 192.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 1.0996212284997897,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 1139.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HSS",
+				"amount": 20,
+				"vwap_7d": 2889.01
+			}
+		],
+		"recipe": "5xNL 1xBLE 5xSEN 5xPCB=>20xHSS",
+		"expertise": "MANUFACTURING",
+		"building": "CLF",
+		"profit_per_day": 224.18300000000886,
+		"area": 41.8,
+		"capex": 96217.00400000002,
+		"cost_per_day": 72001.067,
+		"input_costs": [
+			{
+				"ticker": "BLE",
+				"amount": 1,
+				"vwap_7d": 2270
+			},
+			{
+				"ticker": "PCB",
+				"amount": 5,
+				"vwap_7d": 2726.37
+			},
+			{
+				"ticker": "SEN",
+				"amount": 5,
+				"vwap_7d": 876.4
+			},
+			{
+				"ticker": "NL",
+				"amount": 5,
+				"vwap_7d": 7231.37
+			}
+		],
+		"worker_consumable_cost_per_day": 1450.1920000000002,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.19153708074524284,
+		"output_per_day": 25.0,
+		"average_traded_7d": 214.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EDC",
+				"amount": 1,
+				"vwap_7d": 8000
+			}
+		],
+		"recipe": "=>1xEDC",
+		"expertise": "ELECTRONICS",
+		"building": "SE",
+		"profit_per_day": 826.211800000001,
+		"area": 24.8,
+		"capex": 734224.8019999999,
+		"cost_per_day": 9173.788199999999,
+		"input_costs": [],
+		"worker_consumable_cost_per_day": 9173.788199999999,
+		"runs_per_day": 1.25,
+		"logistics_per_area": 0.0005040322467985172,
+		"output_per_day": 1.25,
+		"average_traded_7d": 72.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MHP",
+				"amount": 1,
+				"vwap_7d": 5302.63
+			}
+		],
+		"recipe": "1xPCB 1xTRA=>1xMHP",
+		"expertise": "ELECTRONICS",
+		"building": "EDM",
+		"profit_per_day": 171.25999999999726,
+		"area": 36.0,
+		"capex": 162858.17,
+		"cost_per_day": 32970.177500000005,
+		"input_costs": [
+			{
+				"ticker": "TRA",
+				"amount": 1,
+				"vwap_7d": 2258.82
+			},
+			{
+				"ticker": "PCB",
+				"amount": 1,
+				"vwap_7d": 2726.37
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 0.009548611221058914,
+		"output_per_day": 6.25,
+		"average_traded_7d": 10.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "LDI",
+				"amount": 6,
+				"vwap_7d": 532
+			}
+		],
+		"recipe": "1xGAL 1xSI=>6xLDI",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": -20.23689285714204,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 11420.236892857143,
+		"input_costs": [
+			{
+				"ticker": "GAL",
+				"amount": 1,
+				"vwap_7d": 239.52
+			},
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 0.538384511198104,
+		"output_per_day": 21.42857142857143,
+		"average_traded_7d": 7.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 6,
+				"vwap_7d": 165.19
+			}
+		],
+		"recipe": "1xALG 1xH2O 1xBEA=>6xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": -120.13160000000016,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 2597.9816,
+		"input_costs": [
+			{
+				"ticker": "ALG",
+				"amount": 1,
+				"vwap_7d": 310.86
+			},
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "BEA",
+				"amount": 1,
+				"vwap_7d": 381.35
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.875,
+		"output_per_day": 15.0,
+		"average_traded_7d": 167.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "STR",
+				"amount": 2,
+				"vwap_7d": 3300
+			}
+		],
+		"recipe": "50xPE 4xAL=>2xSTR",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -175.2456666666651,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 27675.24566666667,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 4,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "PE",
+				"amount": 50,
+				"vwap_7d": 11.38
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.1401515491589005,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 0.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BDE",
+				"amount": 1,
+				"vwap_7d": 2682.33
+			}
+		],
+		"recipe": "40xPG=>1xBDE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -312.23974999999973,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 13723.88975,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 40,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 0.2459016393442623,
+		"output_per_day": 5.0,
+		"average_traded_7d": 664.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 30,
+				"vwap_7d": 152.68
+			}
+		],
+		"recipe": "1xCOT 10xPG=>30xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -335.82899999999836,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 19420.829000000005,
+		"input_costs": [
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3592.86
+			},
+			{
+				"ticker": "PG",
+				"amount": 10,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.1912878788778361,
+		"output_per_day": 125.00000000000001,
+		"average_traded_7d": 5901
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ABH",
+				"amount": 2,
+				"vwap_7d": 49315.85
+			}
+		],
+		"recipe": "2xRBH 125xNR=>2xABH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -655.8499142857145,
+		"area": 50.4,
+		"capex": 884453.546,
+		"cost_per_day": 176783.8856285714,
+		"input_costs": [
+			{
+				"ticker": "RBH",
+				"amount": 2,
+				"vwap_7d": 22677.03
+			},
+			{
+				"ticker": "NR",
+				"amount": 125,
+				"vwap_7d": 376.78
+			}
+		],
+		"worker_consumable_cost_per_day": 11691.814199999999,
+		"runs_per_day": 1.7857142857142858,
+		"logistics_per_area": 0.3915107810327069,
+		"output_per_day": 3.5714285714285716,
+		"average_traded_7d": 231.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BLE",
+				"amount": 3,
+				"vwap_7d": 2270
+			}
+		],
+		"recipe": "1xNA 1xCL 1xO=>3xBLE",
+		"expertise": "CHEMISTRY",
+		"building": "LAB",
+		"profit_per_day": -669.6665000000003,
+		"area": 37.2,
+		"capex": 346286.704,
+		"cost_per_day": 17694.6665,
+		"input_costs": [
+			{
+				"ticker": "NA",
+				"amount": 1,
+				"vwap_7d": 25.07
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			},
+			{
+				"ticker": "CL",
+				"amount": 1,
+				"vwap_7d": 4867.43
+			}
+		],
+		"worker_consumable_cost_per_day": 5131.641500000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.3569220503171285,
+		"output_per_day": 7.5,
+		"average_traded_7d": 6.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 4,
+				"vwap_7d": 165.19
+			}
+		],
+		"recipe": "2xALG 1xH2O=>4xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": -782.2732666666669,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 3535.4399333333336,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "ALG",
+				"amount": 2,
+				"vwap_7d": 310.86
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.0833333333333335,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 167.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BSE",
+				"amount": 1,
+				"vwap_7d": 1892.4
+			}
+		],
+		"recipe": "1xAL 2xLST=>1xBSE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -928.3897499999985,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 11680.662477272728,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 2,
+				"vwap_7d": 204.03
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 1.5201192410265816,
+		"output_per_day": 5.6818181818181825,
+		"average_traded_7d": 1947.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 152.68
+			}
+		],
+		"recipe": "100xPE 25xPG=>20xOVE",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1102.8706666666656,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 7464.537333333334,
+		"input_costs": [
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "PG",
+				"amount": 25,
+				"vwap_7d": 61.74
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.0994318162900692,
+		"output_per_day": 41.66666666666667,
+		"average_traded_7d": 5901
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PPA",
+				"amount": 4,
+				"vwap_7d": 165.19
+			}
+		],
+		"recipe": "2xBEA 1xH2O=>4xPPA",
+		"expertise": "FOOD_INDUSTRIES",
+		"building": "FP",
+		"profit_per_day": -1369.6899333333336,
+		"area": 16.0,
+		"capex": 33808.304000000004,
+		"cost_per_day": 4122.856600000001,
+		"input_costs": [
+			{
+				"ticker": "H2O",
+				"amount": 1,
+				"vwap_7d": 46.49
+			},
+			{
+				"ticker": "BEA",
+				"amount": 2,
+				"vwap_7d": 381.35
+			}
+		],
+		"worker_consumable_cost_per_day": 751.2316000000001,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 2.0833333333333335,
+		"output_per_day": 16.666666666666668,
+		"average_traded_7d": 167.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "UTS",
+				"amount": 1,
+				"vwap_7d": 5489.74
+			}
+		],
+		"recipe": "2xSFK 6xFE=>1xUTS",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": -1389.6150000000014,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 18545.0525,
+		"input_costs": [
+			{
+				"ticker": "FE",
+				"amount": 6,
+				"vwap_7d": 869.59
+			},
+			{
+				"ticker": "SFK",
+				"amount": 2,
+				"vwap_7d": 68.4
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 3.125,
+		"logistics_per_area": 4.770564559787031,
+		"output_per_day": 3.125,
+		"average_traded_7d": 11.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CA",
+				"amount": 1,
+				"vwap_7d": 476.99
+			}
+		],
+		"recipe": "1xLST=>1xCA",
+		"expertise": "CHEMISTRY",
+		"building": "CHP",
+		"profit_per_day": -1413.5704666666666,
+		"area": 27.2,
+		"capex": 45011.038,
+		"cost_per_day": 3401.0288,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 204.03
+			}
+		],
+		"worker_consumable_cost_per_day": 2550.9038,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.418198532333561,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 37
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "EXO",
+				"amount": 10,
+				"vwap_7d": 336.63
+			}
+		],
+		"recipe": "10xOVE 1xAL 1xMFK=>10xEXO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1466.387823529413,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 26218.593705882355,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 1,
+				"vwap_7d": 377.93
+			},
+			{
+				"ticker": "OVE",
+				"amount": 10,
+				"vwap_7d": 152.68
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 7.352941176470589,
+		"logistics_per_area": 1.0026738117324479,
+		"output_per_day": 73.52941176470588,
+		"average_traded_7d": 1139.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PWO",
+				"amount": 20,
+				"vwap_7d": 338.52
+			}
+		],
+		"recipe": "1xCOT 50xPG=>20xPWO",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -1500.8290000000036,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 29710.829000000005,
+		"input_costs": [
+			{
+				"ticker": "PG",
+				"amount": 50,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "COT",
+				"amount": 1,
+				"vwap_7d": 3592.86
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 0.19886363681342284,
+		"output_per_day": 83.33333333333334,
+		"average_traded_7d": 2410.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "THP",
+				"amount": 4,
+				"vwap_7d": 5667.39
+			}
+		],
+		"recipe": "2xBE 2xCF 1xHE=>4xTHP",
+		"expertise": "CONSTRUCTION",
+		"building": "WEL",
+		"profit_per_day": -1571.738633333311,
+		"area": 26.0,
+		"capex": 54114.87699999999,
+		"cost_per_day": 158999.23863333333,
+		"input_costs": [
+			{
+				"ticker": "BE",
+				"amount": 2,
+				"vwap_7d": 1823.14
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 9410
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1314.6553000000001,
+		"runs_per_day": 6.944444444444445,
+		"logistics_per_area": 2.52804485285002,
+		"output_per_day": 27.77777777777778,
+		"average_traded_7d": 13.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BTA",
+				"amount": 1,
+				"vwap_7d": 1723.25
+			}
+		],
+		"recipe": "1xGL 1xAL=>1xBTA",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -1880.3897499999996,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 16240.806416666668,
+		"input_costs": [
+			{
+				"ticker": "GL",
+				"amount": 1,
+				"vwap_7d": 378.21
+			},
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 8.333333333333334,
+		"logistics_per_area": 0.7420765159682172,
+		"output_per_day": 8.333333333333334,
+		"average_traded_7d": 92.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "BBH",
+				"amount": 1,
+				"vwap_7d": 2881.25
+			}
+		],
+		"recipe": "2xAL 1xLST=>1xBBH",
+		"expertise": "CONSTRUCTION",
+		"building": "PP2",
+		"profit_per_day": -2045.58975,
+		"area": 30.5,
+		"capex": 56513.5025,
+		"cost_per_day": 16451.83975,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 2,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "LST",
+				"amount": 1,
+				"vwap_7d": 204.03
+			}
+		],
+		"worker_consumable_cost_per_day": 1375.8897499999998,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.332786904006708,
+		"output_per_day": 5.0,
+		"average_traded_7d": 1263.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HE3",
+				"amount": 2,
+				"vwap_7d": 377.68
+			}
+		],
+		"recipe": "3xTS=>2xHE3",
+		"expertise": "FUEL_REFINING",
+		"building": "REF",
+		"profit_per_day": -2560.1434,
+		"area": 33.4,
+		"capex": 67251.278,
+		"cost_per_day": 6336.9434,
+		"input_costs": [
+			{
+				"ticker": "TS",
+				"amount": 3,
+				"vwap_7d": 299
+			}
+		],
+		"worker_consumable_cost_per_day": 1851.9434,
+		"runs_per_day": 5.0,
+		"logistics_per_area": 1.0778443542069305,
+		"output_per_day": 10.0,
+		"average_traded_7d": 223.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SI",
+				"amount": 1,
+				"vwap_7d": 2439.97
+			}
+		],
+		"recipe": "4xTS 1xO 1xAL=>1xSI",
+		"expertise": "METALLURGY",
+		"building": "SME",
+		"profit_per_day": -4004.872833333335,
+		"area": 22.0,
+		"capex": 48219.335,
+		"cost_per_day": 29421.227000000003,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 1,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "TS",
+				"amount": 4,
+				"vwap_7d": 299
+			},
+			{
+				"ticker": "O",
+				"amount": 1,
+				"vwap_7d": 132.71
+			}
+		],
+		"worker_consumable_cost_per_day": 939.0394999999999,
+		"runs_per_day": 10.416666666666668,
+		"logistics_per_area": 6.364110067035213,
+		"output_per_day": 10.416666666666668,
+		"average_traded_7d": 702.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SUN",
+				"amount": 20,
+				"vwap_7d": 671.03
+			}
+		],
+		"recipe": "20xOVE 10xC=>20xSUN",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -4381.829000000013,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 88260.579,
+		"input_costs": [
+			{
+				"ticker": "OVE",
+				"amount": 20,
+				"vwap_7d": 152.68
+			},
+			{
+				"ticker": "C",
+				"amount": 10,
+				"vwap_7d": 1076.76
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 6.505681815641847,
+		"output_per_day": 125.0,
+		"average_traded_7d": 102.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42000
+			}
+		],
+		"recipe": "6xLI 6xBE 20xBCO 60xPG=>1xCBS",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -4407.359000000008,
+		"area": 40.2,
+		"capex": 603530.824,
+		"cost_per_day": 179407.35900000003,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 6,
+				"vwap_7d": 2034.99
+			},
+			{
+				"ticker": "PG",
+				"amount": 60,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "BCO",
+				"amount": 20,
+				"vwap_7d": 786.42
+			},
+			{
+				"ticker": "BE",
+				"amount": 6,
+				"vwap_7d": 1823.14
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 4.166666666666667,
+		"logistics_per_area": 1.509121089890309,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 86.71
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "FLO",
+				"amount": 1,
+				"vwap_7d": 19500
+			}
+		],
+		"recipe": "10xAL 4xSTL=>1xFLO",
+		"expertise": "METALLURGY",
+		"building": "FS",
+		"profit_per_day": -5522.7400000000025,
+		"area": 31.0,
+		"capex": 58980.350000000006,
+		"cost_per_day": 35991.49,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 4,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "AL",
+				"amount": 10,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 1812.7400000000002,
+		"runs_per_day": 1.5625,
+		"logistics_per_area": 2.9435483919036005,
+		"output_per_day": 1.5625,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "AHP",
+				"amount": 4,
+				"vwap_7d": 14572.33
+			}
+		],
+		"recipe": "8xAL 10xFET 1xHE=>4xAHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": -6518.059611111115,
+		"area": 31.2,
+		"capex": 79163.14,
+		"cost_per_day": 87475.4485,
+		"input_costs": [
+			{
+				"ticker": "AL",
+				"amount": 8,
+				"vwap_7d": 1405.58
+			},
+			{
+				"ticker": "FET",
+				"amount": 10,
+				"vwap_7d": 5000
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 1.3888888888888888,
+		"logistics_per_area": 4.017316569783791,
+		"output_per_day": 5.555555555555555,
+		"average_traded_7d": 58.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SOL",
+				"amount": 12,
+				"vwap_7d": 1200
+			}
+		],
+		"recipe": "2xCU 2xSI 4xBCO 1xBRO=>12xSOL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -6967.609000000004,
+		"area": 40.2,
+		"capex": 603530.824,
+		"cost_per_day": 96967.609,
+		"input_costs": [
+			{
+				"ticker": "CU",
+				"amount": 2,
+				"vwap_7d": 2427.15
+			},
+			{
+				"ticker": "SI",
+				"amount": 2,
+				"vwap_7d": 2439.97
+			},
+			{
+				"ticker": "BCO",
+				"amount": 4,
+				"vwap_7d": 786.42
+			},
+			{
+				"ticker": "BRO",
+				"amount": 1,
+				"vwap_7d": 2317.44
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 4.858208906521733,
+		"output_per_day": 75.0,
+		"average_traded_7d": 117.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "ADE",
+				"amount": 2,
+				"vwap_7d": 42481.84
+			}
+		],
+		"recipe": "2xLDE 2xKV=>2xADE",
+		"expertise": "CONSTRUCTION",
+		"building": "PP4",
+		"profit_per_day": -8070.397533333335,
+		"area": 50.4,
+		"capex": 884453.546,
+		"cost_per_day": 185078.0642,
+		"input_costs": [
+			{
+				"ticker": "LDE",
+				"amount": 2,
+				"vwap_7d": 12374.26
+			},
+			{
+				"ticker": "KV",
+				"amount": 2,
+				"vwap_7d": 29238.44
+			}
+		],
+		"worker_consumable_cost_per_day": 11691.814199999999,
+		"runs_per_day": 2.0833333333333335,
+		"logistics_per_area": 0.18187831082041303,
+		"output_per_day": 4.166666666666667,
+		"average_traded_7d": 173.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SBU",
+				"amount": 1,
+				"vwap_7d": 35895.16
+			}
+		],
+		"recipe": "50xDW 60xRAT 5xEXO 5xPT 10xKOM 2xREP 100xPE=>1xSBU",
+		"expertise": "MANUFACTURING",
+		"building": "PAC",
+		"profit_per_day": -10335.12598181818,
+		"area": 41.8,
+		"capex": 168812.226,
+		"cost_per_day": 214284.89870909095,
+		"input_costs": [
+			{
+				"ticker": "KOM",
+				"amount": 10,
+				"vwap_7d": 1385.05
+			},
+			{
+				"ticker": "PT",
+				"amount": 5,
+				"vwap_7d": 545.71
+			},
+			{
+				"ticker": "PE",
+				"amount": 100,
+				"vwap_7d": 11.38
+			},
+			{
+				"ticker": "DW",
+				"amount": 50,
+				"vwap_7d": 116.98
+			},
+			{
+				"ticker": "RAT",
+				"amount": 60,
+				"vwap_7d": 175.15
+			},
+			{
+				"ticker": "EXO",
+				"amount": 5,
+				"vwap_7d": 336.63
+			},
+			{
+				"ticker": "REP",
+				"amount": 2,
+				"vwap_7d": 817.3
+			}
+		],
+		"worker_consumable_cost_per_day": 1825.8078000000003,
+		"runs_per_day": 5.6818181818181825,
+		"logistics_per_area": 2.903708090639879,
+		"output_per_day": 5.6818181818181825,
+		"average_traded_7d": 8.86
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "TCS",
+				"amount": 3,
+				"vwap_7d": 6500
+			}
+		],
+		"recipe": "1xTC=>3xTCS",
+		"expertise": "CHEMISTRY",
+		"building": "TNP",
+		"profit_per_day": -13036.052,
+		"area": 41.2,
+		"capex": 416840.748,
+		"cost_per_day": 61786.052,
+		"input_costs": [
+			{
+				"ticker": "TC",
+				"amount": 1,
+				"vwap_7d": 22700
+			}
+		],
+		"worker_consumable_cost_per_day": 5036.052000000001,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 0.7160194290494455,
+		"output_per_day": 7.5,
+		"average_traded_7d": 8
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "RAM",
+				"amount": 6,
+				"vwap_7d": 3061.36
+			}
+		],
+		"recipe": "6xPSS 6xCAP 6xBCO=>6xRAM",
+		"expertise": "MANUFACTURING",
+		"building": "SCA",
+		"profit_per_day": -15185.483785714294,
+		"area": 39.2,
+		"capex": 410634.11799999996,
+		"cost_per_day": 69852.62664285714,
+		"input_costs": [
+			{
+				"ticker": "BCO",
+				"amount": 6,
+				"vwap_7d": 786.42
+			},
+			{
+				"ticker": "PSS",
+				"amount": 6,
+				"vwap_7d": 2720.57
+			},
+			{
+				"ticker": "CAP",
+				"amount": 6,
+				"vwap_7d": 299
+			}
+		],
+		"worker_consumable_cost_per_day": 1888.5195,
+		"runs_per_day": 2.9761904761904763,
+		"logistics_per_area": 0.046920554679577474,
+		"output_per_day": 17.857142857142858,
+		"average_traded_7d": 6.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MCB",
+				"amount": 1,
+				"vwap_7d": 360000
+			}
+		],
+		"recipe": "100xAST 16xMFK=>1xMCB",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": -23323.698500000013,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 715631.3908076924,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 100,
+				"vwap_7d": 3650
+			},
+			{
+				"ticker": "MFK",
+				"amount": 16,
+				"vwap_7d": 377.93
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 1.9230769230769231,
+		"logistics_per_area": 20.79587087625668,
+		"output_per_day": 1.9230769230769231,
+		"average_traded_7d": 0.14
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SSL",
+				"amount": 1,
+				"vwap_7d": 46566.67
+			}
+		],
+		"recipe": "20xTI 2xMFK=>1xSSL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": -31920.67350000002,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 148337.34850000002,
+		"input_costs": [
+			{
+				"ticker": "MFK",
+				"amount": 2,
+				"vwap_7d": 377.93
+			},
+			{
+				"ticker": "TI",
+				"amount": 20,
+				"vwap_7d": 2887.36
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.880952381113649,
+		"output_per_day": 2.5,
+		"average_traded_7d": 0.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "HHP",
+				"amount": 4,
+				"vwap_7d": 4900
+			}
+		],
+		"recipe": "12xAL 4xAST 1xHE=>4xHHP",
+		"expertise": "METALLURGY",
+		"building": "HWP",
+		"profit_per_day": -32347.848499999993,
+		"area": 31.2,
+		"capex": 79163.14,
+		"cost_per_day": 81347.8485,
+		"input_costs": [
+			{
+				"ticker": "AST",
+				"amount": 4,
+				"vwap_7d": 3650
+			},
+			{
+				"ticker": "HE",
+				"amount": 1,
+				"vwap_7d": 240.3
+			},
+			{
+				"ticker": "AL",
+				"amount": 12,
+				"vwap_7d": 1405.58
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.203926333679985,
+		"output_per_day": 10.0,
+		"average_traded_7d": 1.57
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "CBL",
+				"amount": 1,
+				"vwap_7d": 91115.87
+			}
+		],
+		"recipe": "12xLI 12xBE 60xHCC 150xPG=>1xCBL",
+		"expertise": "ELECTRONICS",
+		"building": "ECA",
+		"profit_per_day": -41250.834,
+		"area": 40.2,
+		"capex": 603530.824,
+		"cost_per_day": 269040.509,
+		"input_costs": [
+			{
+				"ticker": "LI",
+				"amount": 12,
+				"vwap_7d": 2034.99
+			},
+			{
+				"ticker": "HCC",
+				"amount": 60,
+				"vwap_7d": 854.4
+			},
+			{
+				"ticker": "PG",
+				"amount": 150,
+				"vwap_7d": 61.74
+			},
+			{
+				"ticker": "BE",
+				"amount": 12,
+				"vwap_7d": 1823.14
+			}
+		],
+		"worker_consumable_cost_per_day": 1984.1090000000002,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 1.8395522726637157,
+		"output_per_day": 2.5,
+		"average_traded_7d": 9
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SFE",
+				"amount": 1,
+				"vwap_7d": 54294.12
+			}
+		],
+		"recipe": "2xCF 1xCBS=>1xSFE",
+		"expertise": "ELECTRONICS",
+		"building": "CLR",
+		"profit_per_day": -42637.379749999986,
+		"area": 32.1,
+		"capex": 187561.799,
+		"cost_per_day": 381975.62975,
+		"input_costs": [
+			{
+				"ticker": "CBS",
+				"amount": 1,
+				"vwap_7d": 42000
+			},
+			{
+				"ticker": "CF",
+				"amount": 2,
+				"vwap_7d": 9410
+			}
+		],
+		"worker_consumable_cost_per_day": 1850.62975,
+		"runs_per_day": 6.25,
+		"logistics_per_area": 1.4485980955611135,
+		"output_per_day": 6.25,
+		"average_traded_7d": 2.43
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "SRP",
+				"amount": 10,
+				"vwap_7d": 18000
+			}
+		],
+		"recipe": "5xLST 5xW 5xTA=>10xSRP",
+		"expertise": "MANUFACTURING",
+		"building": "SPP",
+		"profit_per_day": -44314.19569999998,
+		"area": 71.8,
+		"capex": 1004591.002,
+		"cost_per_day": 494314.1957,
+		"input_costs": [
+			{
+				"ticker": "LST",
+				"amount": 5,
+				"vwap_7d": 204.03
+			},
+			{
+				"ticker": "W",
+				"amount": 5,
+				"vwap_7d": 19600
+			},
+			{
+				"ticker": "TA",
+				"amount": 5,
+				"vwap_7d": 18755.4
+			}
+		],
+		"worker_consumable_cost_per_day": 12321.320699999998,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 4.68297348381085,
+		"output_per_day": 25.0,
+		"average_traded_7d": 14.29
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "PT",
+				"amount": 15,
+				"vwap_7d": 545.71
+			}
+		],
+		"recipe": "1xSTL 1xW=>15xPT",
+		"expertise": "MANUFACTURING",
+		"building": "BMP",
+		"profit_per_day": -49624.50757142857,
+		"area": 22.0,
+		"capex": 54053.53,
+		"cost_per_day": 78858.97185714287,
+		"input_costs": [
+			{
+				"ticker": "STL",
+				"amount": 1,
+				"vwap_7d": 1954.65
+			},
+			{
+				"ticker": "W",
+				"amount": 1,
+				"vwap_7d": 19600
+			}
+		],
+		"worker_consumable_cost_per_day": 1878.0789999999997,
+		"runs_per_day": 3.5714285714285716,
+		"logistics_per_area": 2.4949675256555732,
+		"output_per_day": 53.57142857142858,
+		"average_traded_7d": 1880
+	},
+	{
+		"outputs": [
+			{
+				"ticker": "MFL",
+				"amount": 1,
+				"vwap_7d": 176000
+			}
+		],
+		"recipe": "10xZR 4xMFK=>1xMFL",
+		"expertise": "METALLURGY",
+		"building": "SKF",
+		"profit_per_day": -168358.9985,
+		"area": 46.2,
+		"capex": 78831.58,
+		"cost_per_day": 608358.9985000001,
+		"input_costs": [
+			{
+				"ticker": "ZR",
+				"amount": 10,
+				"vwap_7d": 24100
+			},
+			{
+				"ticker": "MFK",
+				"amount": 4,
+				"vwap_7d": 377.93
+			}
+		],
+		"worker_consumable_cost_per_day": 2079.6985000000004,
+		"runs_per_day": 2.5,
+		"logistics_per_area": 3.5551949190499976,
+		"output_per_day": 2.5,
+		"average_traded_7d": 0.43
+	}
+]