From fa17dce3835d62a7776e1708b3c079591df8a9e0 Mon Sep 17 00:00:00 2001 From: Mart Date: Thu, 3 Apr 2025 20:37:49 +0100 Subject: [PATCH 01/12] checkpoint --- env/src/tools/agent.md | 262 +---------------- .../tools/agent/_query_information/agent.md | 33 +++ .../tools/agent/_query_information/client.py | 30 ++ .../pages/how_to_check_research_progress.md | 91 ++++++ .../pages/how_to_connect_entities.md | 140 +++++++++ .../how_to_create_assembling_machines.md | 66 +++++ .../how_to_create_electricity_generators.md | 102 +++++++ .../pages/how_to_create_reserach_setups.md | 26 ++ ...ow_to_create_self_fueling_mining_system.md | 29 ++ .../pages/how_to_launch_a_rocket.md | 57 ++++ ...how_to_set_up_multiple_drill_plate_mine.md | 35 +++ .../how_to_set_up_raw_resource_burner_mine.md | 34 +++ .../pages/how_to_setup_chemical_plants.md | 95 ++++++ .../how_to_setup_crude_oil_production.md | 74 +++++ .../pages/how_to_setup_oil_refineries.md | 104 +++++++ .../pages/how_to_setup_storage_tanks.md | 53 ++++ .../pages/how_to_smelt_ores.md | 28 ++ .../tools/agent/_query_information/server.lua | 3 + env/src/tools/agent/connect_entities/agent.md | 142 +-------- .../tools/agent/connect_entities/agent_old.md | 186 ++++++++++++ env/src/tools/agent/extract_item/agent.md | 38 +-- env/src/tools/agent/extract_item/agent_old.md | 82 ++++++ env/src/tools/agent/extract_item/client.py | 6 +- .../agent/get_connection_amount/agent.md | 9 - .../agent/get_connection_amount/client.py | 8 +- env/src/tools/agent/get_entity/agent.md | 6 - .../tools/agent/get_prototype_recipe/agent.md | 17 -- .../agent/get_prototype_recipe/client.py | 9 +- .../agent/get_research_progress/agent.md | 104 ------- .../agent/get_research_progress/agent_old.md | 124 ++++++++ .../agent/get_research_progress/client.py | 10 +- .../tools/agent/get_resource_patch/agent.md | 21 -- .../tools/agent/get_resource_patch/client.py | 19 +- env/src/tools/agent/harvest_resource/agent.md | 6 - .../tools/agent/harvest_resource/client.py | 1 + env/src/tools/agent/insert_item/agent.md | 6 - env/src/tools/agent/insert_item/client.py | 2 +- .../tools/agent/inspect_inventory/agent.md | 16 - .../tools/agent/inspect_inventory/client.py | 11 +- env/src/tools/agent/launch_rocket/agent.md | 63 +--- .../tools/agent/launch_rocket/agent_old.md | 72 +++++ env/src/tools/agent/launch_rocket/client.py | 2 +- env/src/tools/agent/move_to/agent.md | 4 - env/src/tools/agent/move_to/client.py | 2 +- .../tools/agent/nearest_buildable/agent.md | 59 ---- .../agent/nearest_buildable/agent_old.md | 115 ++++++++ env/src/tools/agent/place_entity/agent.md | 54 +--- env/src/tools/agent/place_entity/agent_old.md | 95 ++++++ .../tools/agent/query_information/agent.md | 28 ++ .../agent/query_information/agent_old.md | 33 +++ .../tools/agent/query_information/client.py | 90 ++++++ .../agent/query_information/embeddings.md | 1 + .../pages/how_to_check_research_progress.md | 91 ++++++ .../pages/how_to_connect_entities.md | 140 +++++++++ .../how_to_create_assembling_machines.md | 66 +++++ .../how_to_create_electricity_generators.md | 102 +++++++ .../pages/how_to_create_reserach_setups.md | 26 ++ ...ow_to_create_self_fueling_mining_system.md | 29 ++ .../pages/how_to_launch_a_rocket.md | 57 ++++ ...how_to_set_up_multiple_drill_plate_mine.md | 35 +++ .../how_to_set_up_raw_resource_burner_mine.md | 34 +++ .../pages/how_to_setup_chemical_plants.md | 95 ++++++ .../how_to_setup_crude_oil_production.md | 74 +++++ .../pages/how_to_setup_oil_refineries.md | 104 +++++++ .../pages/how_to_setup_storage_tanks.md | 53 ++++ .../pages/how_to_smelt_ores.md | 28 ++ .../tools/agent/query_information/server.lua | 3 + .../tools/agent/set_entity_recipe/agent.md | 3 +- env/src/tools/agent_old.md | 277 ++++++++++++++++++ 69 files changed, 3099 insertions(+), 821 deletions(-) create mode 100644 env/src/tools/agent/_query_information/agent.md create mode 100644 env/src/tools/agent/_query_information/client.py create mode 100644 env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_connect_entities.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_create_reserach_setups.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_launch_a_rocket.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md create mode 100644 env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md create mode 100644 env/src/tools/agent/_query_information/server.lua create mode 100644 env/src/tools/agent/connect_entities/agent_old.md create mode 100644 env/src/tools/agent/extract_item/agent_old.md create mode 100644 env/src/tools/agent/get_research_progress/agent_old.md create mode 100644 env/src/tools/agent/launch_rocket/agent_old.md create mode 100644 env/src/tools/agent/nearest_buildable/agent_old.md create mode 100644 env/src/tools/agent/place_entity/agent_old.md create mode 100644 env/src/tools/agent/query_information/agent.md create mode 100644 env/src/tools/agent/query_information/agent_old.md create mode 100644 env/src/tools/agent/query_information/client.py create mode 100644 env/src/tools/agent/query_information/embeddings.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_check_research_progress.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_connect_entities.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md create mode 100644 env/src/tools/agent/query_information/pages/how_to_smelt_ores.md create mode 100644 env/src/tools/agent/query_information/server.lua create mode 100644 env/src/tools/agent_old.md diff --git a/env/src/tools/agent.md b/env/src/tools/agent.md index dc931e2b0..0a9e5dc4b 100644 --- a/env/src/tools/agent.md +++ b/env/src/tools/agent.md @@ -1,216 +1,3 @@ -# Patterns - -## Core Systems Implementation - -### 1. Resource Mining Systems - -#### Self-Fueling Coal Mining System -```python -def build_self_fueling_coal_mining_system(coal_patch_position): - # Define building area - building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height - buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) - - # Place drill - move_to(buildable_coords.center) - drill = place_entity(Prototype.BurnerMiningDrill, - position=buildable_coords.center, - direction=Direction.DOWN) - print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") - - # Place self-fueling inserter - inserter = place_entity_next_to(Prototype.BurnerInserter, - drill.position, - direction=Direction.DOWN, - spacing=0) - inserter = rotate_entity(inserter, Direction.UP) - print(f"Placed inserter at {inserter.position} to fuel the drill") - - # Connect with belts - belts = connect_entities(drill.drop_position, - inserter.pickup_position, - Prototype.TransportBelt) - print(f"Connected drill to inserter with transport belt") - - # Bootstrap system - drill = insert_item(Prototype.Coal, drill, quantity=5) - return drill, inserter, belts -``` - -### 2. Power Systems - -**Power Infrastructure with steam engine** - -Power typically involves: --> Water Source + OffshorePump --> Boiler (burning coal) --> SteamEngine - -IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water -We will do this in 3 separate code examples -```python -# log your general idea what you will do next -print(f"I will create a power generation setup with a steam engine") -# Power system pattern -move_to(water_position) -# first place offshore pump on the water system -offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) -print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) -# Then place the boiler near the offshore pump -# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, -# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox -# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. - -# first get the width and height of a BurnerMiningDrill -print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 -# use the prototype width and height attributes -# add 4 to ensure no overlap -building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) - -coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) -# place the boiler at the centre coordinate -# first move to the center coordinate -move_to(coords.center) -boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) -print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) -# add coal to boiler to start the power generation -boiler = insert_item(Prototype.Coal, boiler, 10) -``` - -```python -boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) -# Finally we need to place the steam engine close to the boiler -# use the prototype width and height attributes -# add 4 to ensure no overlap -building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) - -coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) -# move to the centre coordinate -move_to(coords.center) -# place the steam engine on the centre coordinate -steam_engine = place_entity(Prototype.SteamEngine, - position = coords.center, - direction = Direction.LEFT) - -print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) -``` - -```python -offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) -boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) -steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) -# Connect entities in order -water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) -print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") -steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) -print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") - -# check that it has power -# sleep for 5 seconds to ensure flow -sleep(5) -# update the entity -steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) -# check that the steam engine is generating power -assert steam_engine.energy > 0, f"Steam engine is not generating power" -print(f"Steam engine at {steam_engine.position} is generating power!") -``` - -### 3. Automated Assembly Systems - -#### Basic Assembly Line -Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections -```python -furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) -solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) -# get a position 15 spaces away -assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) -# Plan space for assembler and inserters, add some buffer -building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) -buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, - building_box, - assembler_position) - -# Place assembling machine -move_to(buildable_coords.center) -assembler = place_entity(Prototype.AssemblingMachine1, - position=buildable_coords.center, - direction = Direction.DOWN) -print(f"Placed assembling machine at {assembler.position}") - -# Set recipe -set_entity_recipe(assembler, Prototype.CopperCable) - -# Add input inserter -# place it to the right as we added to the width of the building box -assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, - assembler.position, - direction=Direction.RIGHT, - spacing=0) -# rotate it to input items into the assembling machine -assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) - -# Add output inserter -# put it on the other side of assembling machine -output_inserter = place_entity_next_to(Prototype.BurnerInserter, - assembler.position, - direction=Direction.LEFT, - spacing=0) -output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) -# add coal to inserters -output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) -input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) -# Connect power -poles = connect_entities(power_source, - assembler, - Prototype.SmallElectricPole) -print(f"Powered assembling machine at {assembler.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) -assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" -# Connect input belt -belts = connect_entities(furnace_output_inserter, - assembly_machine_input_inserter, - Prototype.TransportBelt) -print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") - -# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest -sleep(15) -output_chest = get_entity(Prototype.WoodenChest, output_chest.position) -inventory = inspect_inventory(output_chest) -copper_cables_in_inventory = inventory[Prototype.CopperCable] -assert copper_cables_in_inventory > 0, f"No copper cables created" -``` - -### 4. Research Systems - -#### Basic Research Setup -```python -def build_research_facility(power_source, lab): - # Connect power - poles = connect_entities(power_source, - lab, - Prototype.SmallElectricPole) - print(f"Powered lab at {lab.position} with {poles}") - # Add science pack inserter - # put it to the left of lab - inserter = place_entity_next_to(Prototype.BurnerInserter, - lab.position, - direction=Direction.LEFT, - spacing=0) - # rotate it to input items into the lab - inserter = rotate_entity(inserter, Direction.RIGHT) - # Place input chest - chest = place_entity(Prototype.WoodenChest, - inserter.pickup_position, - direction=Direction.LEFT) - print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") - - return lab, inserter, chest -``` - -# Key Implementation Patterns - ## Error Handling and Recovery ### 1. Entity Status Monitoring @@ -223,51 +10,10 @@ def monitor_entity_status(entity, expected_status): return True ``` - -## Chemical plants -Set recipe for chemical plant and connect to input and output storage tanks -```python -# get the chemical plant -chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=0, y=0)) - -# Set the recipe to craft solid fuel from heavy oil -# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs -chemical_plant = set_entity_recipe(chemical_plant, RecipeName.HeavyOilCracking) -print(f"Set the recipe of chemical plant at {chemical_plant.position} to HeavyOilCracking") - -# get the input storage tank -storage_tank = get_entity(Prototype.StorageTank, position=Position(x=10, y=0)) -# connect with underground and overground pipes -# the order matters as the storage tank will be connected to recipe inputs -pipes = connect_entities(storage_tank, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the input tank at {storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") - -# get the output storage tank -output_storage_tank = get_entity(Prototype.StorageTank, position=Position(x=-10, y=0)) -# connect with underground and overground pipes -# the order matters as the storage tank will be connected to recipe outputs -pipes = connect_entities(chemical_plant, output_storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the output tank at {output_storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") -``` - -## Oil Refinery -Set recipe for oil refinery to get petroleum gas -```python -# get the pumpjack -pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) -oil_refinery = get_entity(Prototype.Oilrefinery, position = Position(x = -25, y = 10)) - -# Set the recipe to basc oil processing -# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs -oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) -print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") - -# connect with underground and overground pipes to the pumpjack -pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") - -``` - +## TIPS FOR QUERYING INFORMATION +- Make sure to query information using the query_information tool +- Use the tool like you would research different areas on the wiki +- The pages have info regarding how to use the api, how to carry out different actions and general factorio knowledge ## TIPS WHEN CREATING STRUCTURES - When a entity has status "WAITING_FOR_SPACE_IN_DESTINATION", it means the there is no space in the drop position. For instance, a mining drill will have status WAITING_FOR_SPACE_IN_DESTINATION when the entities it mines are not being properly collected by a furnace or a chest or transported away from drop position with transport belts diff --git a/env/src/tools/agent/_query_information/agent.md b/env/src/tools/agent/_query_information/agent.md new file mode 100644 index 000000000..746d4bece --- /dev/null +++ b/env/src/tools/agent/_query_information/agent.md @@ -0,0 +1,33 @@ +# query_information + +The `query_information` tool allows you to obtain information regarding from a pre-defined list of pages containing instructions how to effectively use the API. + +## Basic Usage +To get content of a specific page, the page_id needs to be sent in +```python +inserter_information = query_information("how_to_use_inserters") -> str +print(f"Manual how to use inserters") +print(inserter_information) +``` +### Parameters + +- `page_id`: ID of the page whose information is needed + +## Existing pages + +The following page IDs exist currently in the database + +"how_to_check_research_progress" +"how_to_connect_entities" +"how_to_create_assembling_machines" +"how_to_create_electricity_generators" -- Information on how to setup electricity generators +"how_to_create_reserach_setups" +"how_to_create_self_fueling_mining_system" +"how_to_launch_a_rocket" +"how_to_set_up_multiple_drill_plate_mine" +"how_to_set_up_raw_resource_burner_mine" +"how_to_setup_chemical_plants" -- Information on how to setup and use chemical plants +"how_to_setup_oil_refineries" -- Information on how to setup and use oil refineries +"how_to_smelt_ores" +"how_to_setup_storage_tanks" -- Information on how to setup and use storage tanks +"how_to_setup_crude_oil_production" -- Information on how to setup and use pumpjacks to harvest crude oil \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/client.py b/env/src/tools/agent/_query_information/client.py new file mode 100644 index 000000000..2a1ae73ea --- /dev/null +++ b/env/src/tools/agent/_query_information/client.py @@ -0,0 +1,30 @@ +from time import sleep +from tools.tool import Tool +import os +# import PATH to construct dynamic paths +import sys +from pathlib import Path +class QueryInformation(Tool): + + def __init__(self, connection, game_state): + super().__init__(connection, game_state) + # get the location of this file + root_directory = os.path.dirname(os.path.abspath(__file__)) + self.pages_path = Path(root_directory, 'pages') + # get all md files in the pages directory + self.pages = [page.replace(".md", "") for page in os.listdir(self.pages_path) if page.endswith('.md')] + def __call__(self, + page_id: str + ) -> str: + """ + Get the information of a page from the database + :param page_id: The id of the page + :return: The content of the page + """ + assert isinstance(page_id, str), f"First argument must be a Position object" + assert page_id in self.pages, f"Page {page_id} not found. Existing pages are {self.pages}" + + # read the content of the page + with open(Path(self.pages_path, page_id + ".md"), 'r') as file: + content = file.read() + return content.strip() \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md b/env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md new file mode 100644 index 000000000..3c9389be0 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md @@ -0,0 +1,91 @@ +## Important Notes + +1. **Current Research Check** + ```python + try: + progress = get_research_progress() + except Exception as e: + print("No active research!") + # Handle no research case + ``` + +2. **Research Status Verification** + ```python + try: + # Check specific technology + progress = get_research_progress(Technology.Automation) + except Exception as e: + print(f"Cannot check progress: {e}") + # Handle invalid technology case + ``` + +## Common Use Cases + +### 1. Monitor Current Research +```python +def monitor_research_progress(): + try: + remaining = get_research_progress() + for ingredient in remaining: + print(f"Need {ingredient.count} {ingredient.name}") + except Exception: + print("No research in progress") +``` + +### 2. Research Requirements Planning +```python +def check_research_feasibility(technology): + try: + requirements = get_research_progress(technology) + inventory = inspect_inventory() + + for req in requirements: + if inventory[req.name] < req.count: + print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") + return False + return True + except Exception as e: + print(f"Error checking research: {e}") + return False +``` + +## Best Practices + +1. **Always Handle No Research Case** +```python +def safe_get_progress(): + try: + return get_research_progress() + except Exception: + # No research in progress + return None +``` + +### Common Errors + +1. **No Active Research** +```python +try: + progress = get_research_progress() +except Exception as e: + if "No research in progress" in str(e): + # Handle no research case + pass +``` + +2. **Invalid Technology** +```python +try: + progress = get_research_progress(technology) +except Exception as e: + if "Technology doesn't exist" in str(e): + # Handle invalid technology case + pass +``` + +3. **Already Researched** +```python +if not get_research_progress(technology): + print("Technology already researched") +``` +s \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_connect_entities.md b/env/src/tools/agent/_query_information/pages/how_to_connect_entities.md new file mode 100644 index 000000000..14bf8bbf7 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_connect_entities.md @@ -0,0 +1,140 @@ + +## Transport Belt Connections + +```python +# Connect mining drill output to a furnace inserter +belts = connect_entities( + drill, + furnace_inserter, + connection_type=Prototype.TransportBelt +) + +# Belt groups are returned for management +print(f"Created belt line with {len(belts.belts)} belts") +``` + +Key points: +- Always use inserters between belts and machines/chests +- Use underground belts for crossing other belts +- Belt groups maintain direction and flow information + +## Pipe Connections + +Pipes connect fluid-handling entities: +```python +# Connect water flow with over and underground pipes +water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) +print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") +``` + +Key points: +- Respects fluid input/output connection points +- Underground pipes have limited range +- Pipe groups track fluid system IDs + +## Power Pole Connections + +To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) +```python +# Connect power +poles = connect_entities( + steam_engine, + drill, + Prototype.SmallElectricPole +) +print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") +``` + +Key points: +- Automatically spaces poles based on wire reach +- Creates electrical networks +- Handles pole to entity connections +- Power groups track network IDs + +## Best Practices + +1. **Pre-check Resources** +```python +inventory = inspect_inventory() +# use get_connection_amount to see if you have enough +required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) +assert inventory[Prototype.TransportBelt] >= required_count +``` + +3. **Entity Groups** +```python +# Work with entity groups +belt_group = connect_entities(source, target, Prototype.TransportBelt) +for belt in belt_group.belts: + print(f"Belt at {belt.position} flowing {belt.direction}") +``` + +## Common Patterns + +### Many-to-One Connections +When you need to connect multiple sources to a single target with transport belts +1. Establish sources and target +2. Create the main connection by connecting one source to the target with transport belts +3. Connect all remaining sources to the main connection with transport belts + +Example: Connecting multiple source inserters to one target inserter +```python +# get the inserter variables +source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) +source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) +source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) +target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) +# log your general idea what you will do next +print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") +# create the main connection +main_connection = connect_entities(source_inserter_1, + target_inserter, + Prototype.TransportBelt) +# Print out the whole connection for logs +print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") + +# Connect source_inserter_2 and source_inserter_3 to the main connection +secondary_sources = [source_inserter_2, source_inserter_3] +for source in secondary_sources: + # connect the source to main connection + # Use the first beltgroup from the main connection to connect to + # Also override the main_connection to get the newest belt groups + main_connection = connect_entities(source, + main_connection, + Prototype.TransportBelt) + print(f"Extended main connection to include inserter at {source.position}: {main_connection}") +print(f"Final connection after connecting all inserters to target: {main_connection}") +``` + +When you want to connect entities to existing power pole groups, similar rules apply. + +Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) +```python +# create the main connection +main_power_connection = connect_entities(steam_engine, + drill_1, + Prototype.SmallElectricPole) +# Print out the whole connection for logs +print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") + +# connect the secondary source to the main power connection +# Use the first ElectricityGroup from the main connection to connect to +# Also override the main_power_connection to get the newest ElectricityGroups +main_power_connection = connect_entities(drill_2, + main_connection, + Prototype.SmallElectricPole) +``` + +## Troubleshooting + +Common issues and solutions: + +### 1. Connection Failures +- Verify inventory has required entities +- Ensure compatible connection types + +### 3. Entity Groups +- Update stale group references +- Handle group merging properly +- Track network IDs +- Clean up disconnected groups diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md b/env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md new file mode 100644 index 000000000..1640208c4 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md @@ -0,0 +1,66 @@ +### 3. Automated Assembly Systems + +#### Basic Assembly Line +Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections +```python +furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) +solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) +# get a position 15 spaces away +assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) +# Plan space for assembler and inserters, add some buffer +building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) +buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, + building_box, + assembler_position) + +# Place assembling machine +move_to(buildable_coords.center) +assembler = place_entity(Prototype.AssemblingMachine1, + position=buildable_coords.center, + direction = Direction.DOWN) +print(f"Placed assembling machine at {assembler.position}") + +# Set recipe +set_entity_recipe(assembler, Prototype.CopperCable) + +# Add input inserter +# place it to the right as we added to the width of the building box +assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.RIGHT, + spacing=0) +# rotate it to input items into the assembling machine +assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) + +# Add output inserter +# put it on the other side of assembling machine +output_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.LEFT, + spacing=0) +output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) +# add coal to inserters +output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) +input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) +# Connect power +poles = connect_entities(power_source, + assembler, + Prototype.SmallElectricPole) +print(f"Powered assembling machine at {assembler.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) +assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" +# Connect input belt +belts = connect_entities(furnace_output_inserter, + assembly_machine_input_inserter, + Prototype.TransportBelt) +print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") + +# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest +sleep(15) +output_chest = get_entity(Prototype.WoodenChest, output_chest.position) +inventory = inspect_inventory(output_chest) +copper_cables_in_inventory = inventory[Prototype.CopperCable] +assert copper_cables_in_inventory > 0, f"No copper cables created" +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md b/env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md new file mode 100644 index 000000000..91af2519d --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md @@ -0,0 +1,102 @@ +### 2. Power Systems + +### Power Infrastructure with steam engine + +Power typically involves: +-> Water Source + OffshorePump +-> Boiler (burning coal) +-> SteamEngine + +IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water +We will do this in 2 separate code examples +```python +# log your general idea what you will do next +print(f"I will create a power generation setup with a steam engine") +# Power system pattern +move_to(water_position) +# first place offshore pump on the water system +# The offshore pump gets water from the water source and will transport it to the boiler via pipes +offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) +print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) +# Then place the boiler near the offshore pump +# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, +# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox +# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. + +# first get the width and height of a BurnerMiningDrill +print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) + +coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) +# place the boiler at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) +print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) +# add coal to boiler to start the power generation +boiler = insert_item(Prototype.Coal, boiler, 10) +``` + +```python +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +# Finally we need to place the steam engine close to the boiler +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) + +coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) +# move to the centre coordinate +move_to(coords.center) +# place the steam engine on the centre coordinate +steam_engine = place_entity(Prototype.SteamEngine, + position = coords.center, + direction = Direction.LEFT) + +print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) +``` + +```python +offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) +# Connect entities in order +water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) +print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") +steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) +print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") + +# check that it has power +# sleep for 5 seconds to ensure flow +sleep(5) +# update the entity +steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) +# check that the steam engine is generating power +assert steam_engine.energy > 0, f"Steam engine is not generating power" +print(f"Steam engine at {steam_engine.position} is generating power!") +``` + + + +### Powering entities with existing steam engines +To power an entity with existing steam engine, they need to be connected with power poles + +Example +Power an existing electric mining drill +```python +# get the steam engine and electric mining drill +steam_engine = get_entity(Prototype.SteamEngine, Position(x = 1, y = 0)) +electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, Position(x = 10, y = 0)) + +# Connect power to the electric mining drill +poles = connect_entities(steam_engine, + electric_mining_drill, + Prototype.SmallElectricPole) +print(f"Powered electric mining drill at {electric_mining_drill.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, electric_mining_drill.position) +assert electric_mining_drill.energy > 0, f"electric_mining_drill at {electric_mining_drill.position} is not receiving power" +print(f"Electric mining drill at {electric_mining_drill.position} has been successfully powered") +``` diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_reserach_setups.md b/env/src/tools/agent/_query_information/pages/how_to_create_reserach_setups.md new file mode 100644 index 000000000..01d0f3b41 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_create_reserach_setups.md @@ -0,0 +1,26 @@ +### 4. Research Systems + +#### Basic Research Setup +```python +def build_research_facility(power_source, lab): + # Connect power + poles = connect_entities(power_source, + lab, + Prototype.SmallElectricPole) + print(f"Powered lab at {lab.position} with {poles}") + # Add science pack inserter + # put it to the left of lab + inserter = place_entity_next_to(Prototype.BurnerInserter, + lab.position, + direction=Direction.LEFT, + spacing=0) + # rotate it to input items into the lab + inserter = rotate_entity(inserter, Direction.RIGHT) + # Place input chest + chest = place_entity(Prototype.WoodenChest, + inserter.pickup_position, + direction=Direction.LEFT) + print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") + + return lab, inserter, chest +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md b/env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md new file mode 100644 index 000000000..5e8907289 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md @@ -0,0 +1,29 @@ +# Define building area +coal_patch_position = nearest(Resource.Coal) +building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height +buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) + +# Place drill +move_to(buildable_coords.center) +drill = place_entity(Prototype.BurnerMiningDrill, + position=buildable_coords.center, + direction=Direction.DOWN) +print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") + +# Place self-fueling inserter +inserter = place_entity_next_to(Prototype.BurnerInserter, + drill.position, + direction=Direction.DOWN, + spacing=0) +inserter = rotate_entity(inserter, Direction.UP) +print(f"Placed inserter at {inserter.position} to fuel the drill") + +# Connect with belts +belts = connect_entities(drill.drop_position, + inserter.pickup_position, + Prototype.TransportBelt) +print(f"Connected drill to inserter with transport belt") + +# Bootstrap system +drill = insert_item(Prototype.Coal, drill, quantity=5) +return drill, inserter, belts \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_launch_a_rocket.md b/env/src/tools/agent/_query_information/pages/how_to_launch_a_rocket.md new file mode 100644 index 000000000..edc19bf56 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_launch_a_rocket.md @@ -0,0 +1,57 @@ +## Complete Rocket Launch Process + +### 1. Setting Up the Rocket Silo + +First, place the silo: +```python +# Place rocket silo +silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) +``` + +## Required Components + +For each rocket launch you need: +1. 100 Rocket Fuel +2. 100 Rocket Control Units +3. 100 Low Density Structures + + +### 2. Monitoring Rocket Construction + +Track the silo's status during construction: +```python +# Check initial state +assert silo.rocket_parts == 0 +assert silo.launch_count == 0 + +# Wait for components to be inserted +sleep(100) # Adjust time based on inserter speed + +# Get updated silo state +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify construction started +assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH + +# Wait for construction completion +sleep(180) # Adjust based on crafting speed +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify rocket is ready +assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET +``` + +### 5. Launching the Rocket + +Finally, launch the rocket: +```python +# Launch +silo = launch_rocket(silo) + +# Verify launch sequence started +assert silo.status == EntityStatus.LAUNCHING_ROCKET + +# Wait for launch completion +sleep(10) +silo = get_entities({Prototype.RocketSilo})[0] +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md new file mode 100644 index 000000000..46057e364 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md @@ -0,0 +1,35 @@ +1. **Multiple Entity Placement** +Example: Create a copper plate mining line with 3 drills with inserters for future integration +```python +# log your general idea what you will do next +print(f"I will create a single line of 3 drills to mine copper ore") +# Find space for a line of 3 miners +move_to(source_position) +# define the BuildingBox for the drill. +# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace +building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) +# get the nearest buildable area around the source_position +buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) + +# Place miners in a line +# we first get the leftmost coordinate of the buildingbox to start building from +left_top = buildable_coordinates.left_top +# first lets move to the left_top to ensure building +move_to(left_top) +for i in range(3): + # we now iterate from the leftmost point towards the right + # take steps of drill.WIDTH + drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) + # Place the drill facing down as we start from top coordinate + # The drop position will be below the drill as the direction is DOWN + drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) + print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") + # place a furnace to catch the ore + # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill + furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) + print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") + # add inserters for future potential integartion + # put them below the furnace as the furnace is below the drill + inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) + print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md new file mode 100644 index 000000000..c881966de --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md @@ -0,0 +1,34 @@ +1. **Mining Setup** +You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines +```python +# Setup mining drill on ore patch +resource_pos = nearest(Resource.IronOre) +# Define area for drill +drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) + +# Find buildable area +buildable_area = nearest_buildable( + Prototype.ElectricMiningDrill, + drill_box, + resource_pos +) + +# Place drill +move_to(buildable_area.center) +drill = place_entity( + Prototype.ElectricMiningDrill, + position=buildable_area.center +) +# log your actions +print(f"Placed drill to mine iron ore at {drill.position}") +# insert coal to drill +drill = insert_item(Prototype.Coal, drill, quantity = 10) +# Place output chest that catches ore +chest = place_entity( + Prototype.WoodenChest, + position=drill.drop_position, + direction=Direction.DOWN, +) +# log your actions +print(f"Placed chest to catch iron ore at {chest.position}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md b/env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md new file mode 100644 index 000000000..0d36e8430 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md @@ -0,0 +1,95 @@ +## Chemical plants + +### Placing a chemical plant near a oil refinery + +Example: +Placing a chemical plant near a existing oil_refinery at Position(x=-50, y=0) +Also connect the chemical plant to a steam engine, that will power the engine. To power the chemical plant, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +```python +# get the oil_refinery +oil_refinery = get_entity(Prototype.OilRefinery, position=Position(x=-50, y=0)) + +# create a buildingboxwith with 4 tile buffer for the ChemicalPlant +building_box = BuildingBox(width = Prototype.ChemicalPlant.WIDTH + 4, height = Prototype.ChemicalPlant.HEIGHT + 4) + +# put down the ChemicalPlant atleast 10 spaces away from oil_refinery +ref_pos = Position(x = oil_refinery.position.x+10, y = oil_refinery.position.y+10) +coords = nearest_buildable(Prototype.ChemicalPlant,building_box, ref_pos) +# place the chemical_plant at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +chemical_plant = place_entity(Prototype.ChemicalPlant, position = coords.center, direction = Direction.LEFT) + +# power the chemical_plant by connecting to an existing steam engine +steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) +# Connect power to chemical_plant +poles = connect_entities(steam_engine, + chemical_plant, + Prototype.SmallElectricPole) +print(f"Powered oil refinery at {chemical_plant.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +chemical_plant = get_entity(Prototype.ChemicalPlant, chemical_plant.position) +assert chemical_plant.energy > 0, f"chemical_plant at {chemical_plant.position} is not receiving power" +print(f"Chemical plant at {chemical_plant.position} has been successfully powered") +``` + +### Setting recipes for chemical plants +Before rotating or using the chemical plants, the recipe must be set + +Available recipes for chemical plants + +Liquid outputs +These need to be either stored in a storagetank or sent to other liquidprocessors. Transporting must be via pipes +RecipeName.HeavyOilCracking = "heavy-oil-cracking" # Recipe for producing light oil in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points +RecipeName.LightOilCracking = "light-oil-cracking" # Recipe for producing petroleum gas in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points +Prototype.SulfuricAcid # Recipe for producing SulfuricAcid in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points +Prototype.Lubricant # Recipe for producing lubricant in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points + +Solid outputs +These need to be extracted frm the chemical plant via inserters into either chests or transport belts transporting them to other structures +RecipeName.SolidFuelFromHeavyOil = "solid-fuel-from-heavy-oil" # Recipe for producing solid fuel in a chemical plant from heavy oil. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +RecipeName.SolidFuelFromLightOil = "solid-fuel-from-light-oil" # Recipe for producing solid fuel in a chemical plant from light oil. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +RecipeName.SolidFuelFromPetroleumGas = "solid-fuel-from-petroleum-gas" # Recipe for producing solid fuel in a chemical plant from petroleum gas. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +Prototype.PlasticBar # Recipe for producing plastic bars in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +Prototype.Sulfur # Recipe for producing Sulfuric in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +Prototype.Battery # Recipe for producing batteries in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant + +Example: +Set recipe for a existing chemical plant to get sulfuric acid +Also connect a existing oil refinery to the chemical plant +```python +# get the chemical plant and oil refineries +chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=-50, y=0)) +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) + +# Set the recipe to Lubricant +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +chemical_plant = set_entity_recipe(chemical_plant, Prototype.Lubricant) +print(f"Set the recipe of chemical plant at {chemical_plant.position} to Lubricant") + +# connect with underground and overground pipes to the oil refinery +pipes = connect_entities(oil_refinery, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the chemical_plant at {chemical_plant.position} to oil refinery at {oil_refinery.position} with {pipes}") +``` + +### Storing liquid outputs of chemical plants +The liquid outputs of chemical plants can be stored in storage tanks +Example: +Connect a chemical plant to a existing storage tank to store lubricant +NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE +```python +# get the chemical_plant and storage tank +chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# Get the lubricant output point of chemical_plant +output_lubricant_connection_points = [x for x in chemical_plant.output_connection_points if x.type == "lubricant"] +assert len(output_lubricant_connection_points) > 0, f"No lubricant output points in chemical_plant" +output_lubricant_connection_point = output_lubricant_connection_points[0] + +# connect the storagetank and chemical plant +pipes = connect_entities(output_lubricant_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the chemical plant at {chemical_plant.position} to a storage tank at {storage_tank.position} to store lubricant with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md b/env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md new file mode 100644 index 000000000..086a5937d --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md @@ -0,0 +1,74 @@ +## Pumpjacks + +To harvest crude oil from the environment, it needs to be done with pumpjacks + +### Placing a pumpjack + +Example: +Placing a pumpjack near a crude oil patch +Also connect the pumpjack to a steam engine, that will power the pumpjack. To power the pumpjack, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +```python +# Get the crude oil resource patch +resource_pos = nearest(Resource.CrudeOil) +# Define area for pumpjack +pump_box = BuildingBox(height=Prototype.PumpJack.HEIGHT, width=Prototype.PumpJack.WIDTH) + +# Find buildable area +buildable_area = nearest_buildable( + Prototype.PumpJack, + pump_box, + resource_pos +) + +# Place pumpjack +move_to(buildable_area.center) +pumpjack = place_entity( + Prototype.PumpJack, + position=buildable_area.center +) +# log your actions +print(f"Placed pumpjack to harvest crude oil at {pumpjack.position}") + +# power the pumpjack by connecting to an existing steam engine +steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) +# Connect power to pumpjack +poles = connect_entities(steam_engine, + pumpjack, + Prototype.SmallElectricPole) +print(f"Powered pumpjack at {pumpjack.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +pumpjack = get_entity(Prototype.PumpJack, pumpjackefinery.position) +assert pumpjack.energy > 0, f"pumpjack at {pumpjack.position} is not receiving power" +print(f"Pumpjack at {pumpjack.position} has been successfully powered") +``` + +### Putting down a storage tank for pumpjack output crude oil +The outputs of pumpjacks can be stored in storage tanks or directly connected to oil refineries + +Example: +Connect a pumpjack to a existing storage tank to store crude_oil +NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE +```python +# get the pumpjack and storage tank +pumpjack = get_entity(Prototype.PumpJack, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# connect the storagetank and pumpjack +pipes = connect_entities(pumpjack, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpjack at {pumpjack.position} to a storage tank at {storage_tank.position} to store crude oil with {pipes}") +``` + +Example: +Connect a pumpjack to a existing oil_refinery to process crude oil +NB: TO CHECK HOW TO SET UP OIL REFINERIES, PRINT OUT THE "how_to_setup_oil_refineries" WIKI PAGE +```python +# get the oil_refinery and pumpjack +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) +pumpjack = get_entity(Prototype.PUMPJACK, position = Position(x = -20, y = 10)) + +# connect the pumpjack and oil refinery +pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpajck at {pumpjack.position} to a oil refinery at {oil_refinery.position} to process crude oil with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md b/env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md new file mode 100644 index 000000000..f6fc53992 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md @@ -0,0 +1,104 @@ +## Oil Refinery + +### Placing a oil refinery + +Example: +Placing a oil refinery near a existing pumpjack at Position(x=-50, y=0) +Also connect the oil refinery to a steam engine, that will power the refinery. To power the oil refinery, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +NB: TO CHECK HOW TO SET UP PUMPJACKS, PRINT OUT THE "how_to_setup_crude_oil_production" WIKI PAGE +```python +# get the pumpjack +pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) + +# create a buildingboxwith with 4 tile buffer for the oilrefinery +building_box = BuildingBox(width = Prototype.OilRefinery.WIDTH + 4, height = Prototype.OilRefinery.HEIGHT + 4) + +# put down the oilrefinery atleast 10 spaces away from pumpjack +ref_pos = Position(x = pumpjack.position.x+10, y = pumpjack.position.y+10) +coords = nearest_buildable(Prototype.OilRefinery,building_box, ref_pos) +# place the oil refinery at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +oil_refinery = place_entity(Prototype.OilRefinery, position = coords.center, direction = Direction.LEFT) + +# power the oil refinery by connecting to an existing steam engine +steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) +# Connect power to oil refinery +poles = connect_entities(steam_engine, + oil_refinery, + Prototype.SmallElectricPole) +print(f"Powered oil refinery at {oil_refinery.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +oil_refinery = get_entity(Prototype.OilRefinery, oil_refinery.position) +assert oil_refinery.energy > 0, f"oil_refinery at {oil_refinery.position} is not receiving power" +print(f"Oil Refinery at {oil_refinery.position} has been successfully powered") +``` + +### Setting recipes for oil refineries +Before rotating or using the oilrefinery, the recipe must be set + +Available recipes for oil refinery + +RecipeName.BasicOilProcessing = "basic-oil-processing" # Recipe for producing petroleum gas with a oil refinery +RecipeName.AdvancedOilProcessing = "advanced-oil-processing" # Recipe for producing petroleum gas, heavy oil and light oil with a oil refinery +RecipeName.CoalLiquefaction = "coal-liquefaction" # Recipe for producing petroleum gas in a oil refinery + +Example: +Set recipe for a existing oil refinery to get petroleum gas +Also connect a existing pumpjack to the oil refinery +```python +# get the pumpjack and oil refineries +pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) + +# Set the recipe to basc oil processing +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) +print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") + +# connect with underground and overground pipes to the pumpjack +pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") +``` + +### Connecting the oil refinery outputs + +The outputs of oil refineries can be extracted by pipes + +Example: +Connect a oil refinery to a existing storage tank to store petroleum gas +NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE +```python +# get the oil_refinery and storage tank +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# Get the petroleum-gas output point of oil refinery +output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] +assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" +output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] + +# connect the storagetank and oil refinery +pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the oil refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") +``` + +Example: +Connect a oil refinery to a existing chemical plant to process petroleum gas +```python +# get the oil_refinery and chemical plant +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) +chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -20, y = 10)) + +# Get the petroleum-gas output point of oil refinery +output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] +assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" +output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] + +# connect the chemical_plant and oil refinery +pipes = connect_entities(output_petroleum_gas_connection_point, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the oil refinery at {oil_refinery.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") +``` + diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md b/env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md new file mode 100644 index 000000000..d84ea295d --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md @@ -0,0 +1,53 @@ +## Storage tanks + +You can use storage tanks to store liquids + +### Placing a storage tank to store liquid + +Example: +Place a storage tank and store petroleum gas from an existing storage tank +```python +# get the oil_refinery +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) + +# create a buildingboxwith with 4 tile buffer for the oilrefinery +building_box = BuildingBox(width = Prototype.StorageTank.WIDTH + 4, height = Prototype.StorageTank.HEIGHT + 4) + +# put down the storagetank atleast 5 spaces away from oilrefinery +ref_pos = Position(x = oil_refinery.position.x+10, y = oil_refinery.position.y+10) +coords = nearest_buildable(Prototype.StorageTank,building_box, ref_pos) +# place the storage tank at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +storage_tank = place_entity(Prototype.StorageTank, position = coords.center, direction = Direction.LEFT) + +# Get the petroleum-gas output point of oil refinery +output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] +assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" +output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] + +# connect the storagetank and oil refinery +pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the oil_refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") +``` + + +### Using an existing storage tank with liquid +If a storage tank has liquid, the liquid can be sent to other fluid processors via pipes + +Example: +Connect an existing storage tank with petroleum gas to a existing chemical plant +```python +# get the chemical_plant and storage_tank +chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# Get the petroleum-gas input point of chemical plant +input_petroleum_gas_connection_points = [x for x in oil_refinery.input_connection_points if x.type == "petroleum-gas"] +assert len(input_petroleum_gas_connection_points) > 0, f"No petroleum gas input points in chemical_plant" +input_petroleum_gas_connection_point = input_petroleum_gas_connection_points[0] + +# connect the storagetank and chemical_plant +pipes = connect_entities(storage_tank, input_petroleum_gas_connection_points, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the storage_tank at {storage_tank.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md b/env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md new file mode 100644 index 000000000..65d658295 --- /dev/null +++ b/env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md @@ -0,0 +1,28 @@ +## Best Practices + +1. **Inventory Verification** +Example - Safe smelting ore into plates +```python +# move to the position to place the entity +move_to(position) +furnace = place_entity(Prototype.StoneFurnace, position=position) +print(f"Placed the furnace to smelt plates at {furnace.position}") + +# we also update the furnace variable by returning it from the function +# This ensures it doesnt get stale and the inventory updates are represented in the variable +furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel +furnace = insert_item(Prototype.IronOre, furnace, quantity=10) + +# 3. Wait for smelting (with safety timeout) +for _ in range(30): # Maximum 30 seconds wait + if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: + break + sleep(1) +else: + raise Exception("Smelting timeout - check fuel and inputs") + +# final check for the inventory of furnace +iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] +assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" +print(f"Smelted 10 iron plates") + ``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/server.lua b/env/src/tools/agent/_query_information/server.lua new file mode 100644 index 000000000..4baf5c420 --- /dev/null +++ b/env/src/tools/agent/_query_information/server.lua @@ -0,0 +1,3 @@ +global.actions.query_information = function() + -- Empty function body +end \ No newline at end of file diff --git a/env/src/tools/agent/connect_entities/agent.md b/env/src/tools/agent/connect_entities/agent.md index 8711c97db..3c182fa26 100644 --- a/env/src/tools/agent/connect_entities/agent.md +++ b/env/src/tools/agent/connect_entities/agent.md @@ -43,144 +43,4 @@ connection_type=Prototype.TransportBelt # Multiple compatible connection types # If you have UndergroundBelts in inventory, use them to simplify above-ground structures connection_type={Prototype.TransportBelt, Prototype.UndergroundBelt} -``` - -## Transport Belt Connections - -```python -# Connect mining drill output to a furnace inserter -belts = connect_entities( - drill, - furnace_inserter, - connection_type=Prototype.TransportBelt -) - -# Belt groups are returned for management -print(f"Created belt line with {len(belts.belts)} belts") -``` - -Key points: -- Always use inserters between belts and machines/chests -- Use underground belts for crossing other belts -- Belt groups maintain direction and flow information - -## Pipe Connections - -Pipes connect fluid-handling entities: -```python -# Connect water flow with over and underground pipes -water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) -print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") -``` - -Key points: -- Respects fluid input/output connection points -- Underground pipes have limited range -- Pipe groups track fluid system IDs - -## Power Pole Connections - -To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) -```python -# Connect power -poles = connect_entities( - steam_engine, - drill, - Prototype.SmallElectricPole -) -print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") -``` - -Key points: -- Automatically spaces poles based on wire reach -- Creates electrical networks -- Handles pole to entity connections -- Power groups track network IDs - -## Best Practices - -1. **Pre-check Resources** -```python -inventory = inspect_inventory() -# use get_connection_amount to see if you have enough -required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) -assert inventory[Prototype.TransportBelt] >= required_count -``` - -3. **Entity Groups** -```python -# Work with entity groups -belt_group = connect_entities(source, target, Prototype.TransportBelt) -for belt in belt_group.belts: - print(f"Belt at {belt.position} flowing {belt.direction}") -``` - -## Common Patterns - -### Many-to-One Connections -When you need to connect multiple sources to a single target with transport belts -1. Establish sources and target -2. Create the main connection by connecting one source to the target with transport belts -3. Connect all remaining sources to the main connection with transport belts - -Example: Connecting multiple source inserters to one target inserter -```python -# get the inserter variables -source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) -source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) -source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) -target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) -# log your general idea what you will do next -print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") -# create the main connection -main_connection = connect_entities(source_inserter_1, - target_inserter, - Prototype.TransportBelt) -# Print out the whole connection for logs -print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") - -# Connect source_inserter_2 and source_inserter_3 to the main connection -secondary_sources = [source_inserter_2, source_inserter_3] -for source in secondary_sources: - # connect the source to main connection - # Use the first beltgroup from the main connection to connect to - # Also override the main_connection to get the newest belt groups - main_connection = connect_entities(source, - main_connection, - Prototype.TransportBelt) - print(f"Extended main connection to include inserter at {source.position}: {main_connection}") -print(f"Final connection after connecting all inserters to target: {main_connection}") -``` - -When you want to connect entities to existing power pole groups, similar rules apply. - -Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) -```python -# create the main connection -main_power_connection = connect_entities(steam_engine, - drill_1, - Prototype.SmallElectricPole) -# Print out the whole connection for logs -print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") - -# connect the secondary source to the main power connection -# Use the first ElectricityGroup from the main connection to connect to -# Also override the main_power_connection to get the newest ElectricityGroups -main_power_connection = connect_entities(drill_2, - main_connection, - Prototype.SmallElectricPole) -``` - -## Troubleshooting - -Common issues and solutions: - -### 1. Connection Failures -- Verify inventory has required entities -- Ensure compatible connection types - -### 3. Entity Groups -- Update stale group references -- Handle group merging properly -- Track network IDs -- Clean up disconnected groups +``` \ No newline at end of file diff --git a/env/src/tools/agent/connect_entities/agent_old.md b/env/src/tools/agent/connect_entities/agent_old.md new file mode 100644 index 000000000..8711c97db --- /dev/null +++ b/env/src/tools/agent/connect_entities/agent_old.md @@ -0,0 +1,186 @@ +# connect_entities + +The `connect_entities` tool provides functionality to connect different types of Factorio entities using various connection types like transport belts, pipes and power poles. This document outlines how to use the tool effectively. + +## Core Concepts + +The connect_entities tool can connect: +- Transport belts (including underground belts) +- Pipes (including underground pipes) +- Power poles +- Walls + +For each connection type, the tool handles: +- Pathing around obstacles +- Proper entity rotation and orientation +- Network/group management +- Resource requirements verification +- Connection point validation + +## Basic Usage + +### General Pattern +```python +# Basic connection between two positions or entities +connection = connect_entities(source, target, connection_type=Prototype.X) + +# Connection with multiple waypoints +connection = connect_entities(pos1, pos2, pos3, pos4, connection_type=Prototype.X) +``` + +### Source/Target Types +The source and target can be: +- Positions +- Entities +- Entity Groups + +### Connection Types +You must specify a connection type prototype: +```python +# Single connection type +connection_type=Prototype.TransportBelt + +# Multiple compatible connection types +# If you have UndergroundBelts in inventory, use them to simplify above-ground structures +connection_type={Prototype.TransportBelt, Prototype.UndergroundBelt} +``` + +## Transport Belt Connections + +```python +# Connect mining drill output to a furnace inserter +belts = connect_entities( + drill, + furnace_inserter, + connection_type=Prototype.TransportBelt +) + +# Belt groups are returned for management +print(f"Created belt line with {len(belts.belts)} belts") +``` + +Key points: +- Always use inserters between belts and machines/chests +- Use underground belts for crossing other belts +- Belt groups maintain direction and flow information + +## Pipe Connections + +Pipes connect fluid-handling entities: +```python +# Connect water flow with over and underground pipes +water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) +print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") +``` + +Key points: +- Respects fluid input/output connection points +- Underground pipes have limited range +- Pipe groups track fluid system IDs + +## Power Pole Connections + +To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) +```python +# Connect power +poles = connect_entities( + steam_engine, + drill, + Prototype.SmallElectricPole +) +print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") +``` + +Key points: +- Automatically spaces poles based on wire reach +- Creates electrical networks +- Handles pole to entity connections +- Power groups track network IDs + +## Best Practices + +1. **Pre-check Resources** +```python +inventory = inspect_inventory() +# use get_connection_amount to see if you have enough +required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) +assert inventory[Prototype.TransportBelt] >= required_count +``` + +3. **Entity Groups** +```python +# Work with entity groups +belt_group = connect_entities(source, target, Prototype.TransportBelt) +for belt in belt_group.belts: + print(f"Belt at {belt.position} flowing {belt.direction}") +``` + +## Common Patterns + +### Many-to-One Connections +When you need to connect multiple sources to a single target with transport belts +1. Establish sources and target +2. Create the main connection by connecting one source to the target with transport belts +3. Connect all remaining sources to the main connection with transport belts + +Example: Connecting multiple source inserters to one target inserter +```python +# get the inserter variables +source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) +source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) +source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) +target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) +# log your general idea what you will do next +print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") +# create the main connection +main_connection = connect_entities(source_inserter_1, + target_inserter, + Prototype.TransportBelt) +# Print out the whole connection for logs +print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") + +# Connect source_inserter_2 and source_inserter_3 to the main connection +secondary_sources = [source_inserter_2, source_inserter_3] +for source in secondary_sources: + # connect the source to main connection + # Use the first beltgroup from the main connection to connect to + # Also override the main_connection to get the newest belt groups + main_connection = connect_entities(source, + main_connection, + Prototype.TransportBelt) + print(f"Extended main connection to include inserter at {source.position}: {main_connection}") +print(f"Final connection after connecting all inserters to target: {main_connection}") +``` + +When you want to connect entities to existing power pole groups, similar rules apply. + +Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) +```python +# create the main connection +main_power_connection = connect_entities(steam_engine, + drill_1, + Prototype.SmallElectricPole) +# Print out the whole connection for logs +print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") + +# connect the secondary source to the main power connection +# Use the first ElectricityGroup from the main connection to connect to +# Also override the main_power_connection to get the newest ElectricityGroups +main_power_connection = connect_entities(drill_2, + main_connection, + Prototype.SmallElectricPole) +``` + +## Troubleshooting + +Common issues and solutions: + +### 1. Connection Failures +- Verify inventory has required entities +- Ensure compatible connection types + +### 3. Entity Groups +- Update stale group references +- Handle group merging properly +- Track network IDs +- Clean up disconnected groups diff --git a/env/src/tools/agent/extract_item/agent.md b/env/src/tools/agent/extract_item/agent.md index e00ad915e..1b667d317 100644 --- a/env/src/tools/agent/extract_item/agent.md +++ b/env/src/tools/agent/extract_item/agent.md @@ -14,13 +14,6 @@ extracted_count = extract_item(Prototype.CopperCable, entity, quantity=3) The function returns the number of items successfully extracted. The extracted items are automatically placed in the player's inventory. -## Parameters - -- `entity`: The Prototype of the item to extract (required) -- `source`: Either a Position or Entity to extract from (required) -- `quantity`: Number of items to extract (default=5) - - **Quantity Handling** - If requested quantity exceeds available items, it extracts all available items - Returns actual number of items extracted @@ -50,33 +43,4 @@ count = extract_item(Prototype.IronPlate, chest, quantity=5) 2. **Distance Limitations** - Player must be within range of the target entity - - Move closer if extraction fails due to distance - -## Best Practices - -1. **Inventory Verification** -Example - Safe smelting ore into plates -```python -# move to the position to place the entity -move_to(position) -furnace = place_entity(Prototype.StoneFurnace, position=position) -print(f"Placed the furnace to smelt plates at {furnace.position}") - -# we also update the furnace variable by returning it from the function -# This ensures it doesnt get stale and the inventory updates are represented in the variable -furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel -furnace = insert_item(Prototype.IronOre, furnace, quantity=10) - -# 3. Wait for smelting (with safety timeout) -for _ in range(30): # Maximum 30 seconds wait - if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: - break - sleep(1) -else: - raise Exception("Smelting timeout - check fuel and inputs") - -# final check for the inventory of furnace -iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] -assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" -print(f"Smelted 10 iron plates") - ``` \ No newline at end of file + - Move closer if extraction fails due to distance \ No newline at end of file diff --git a/env/src/tools/agent/extract_item/agent_old.md b/env/src/tools/agent/extract_item/agent_old.md new file mode 100644 index 000000000..e00ad915e --- /dev/null +++ b/env/src/tools/agent/extract_item/agent_old.md @@ -0,0 +1,82 @@ +# extract_item + +The extract tool allows you to remove items from entity inventories in the Factorio world. This tool is essential for moving items between entities and managing inventory contents. + +## Basic Usage + +```python +# Extract items using a position +extracted_count = extract_item(Prototype.IronPlate, position, quantity=5) + +# Extract items using an entity directly +extracted_count = extract_item(Prototype.CopperCable, entity, quantity=3) +``` + +The function returns the number of items successfully extracted. The extracted items are automatically placed in the player's inventory. + +## Parameters + +- `entity`: The Prototype of the item to extract (required) +- `source`: Either a Position or Entity to extract from (required) +- `quantity`: Number of items to extract (default=5) + + +**Quantity Handling** + - If requested quantity exceeds available items, it extracts all available items + - Returns actual number of items extracted + +## Examples + +### Extracting from a Chest +```python +# Place a chest and insert items +chest = place_entity(Prototype.IronChest, position=Position(x=0, y=0)) +insert_item(Prototype.IronPlate, chest, quantity=10) + +# Extract using position +count = extract_item(Prototype.IronPlate, chest.position, quantity=2) +# count will be 2, items move to player inventory + +# Extract using entity +count = extract_item(Prototype.IronPlate, chest, quantity=5) +# count will be 5, items move to player inventory +``` + +## Common Pitfalls + +1. **Empty Inventories** + - Attempting to extract from empty inventories will raise an exception + - Always verify item existence before extraction + +2. **Distance Limitations** + - Player must be within range of the target entity + - Move closer if extraction fails due to distance + +## Best Practices + +1. **Inventory Verification** +Example - Safe smelting ore into plates +```python +# move to the position to place the entity +move_to(position) +furnace = place_entity(Prototype.StoneFurnace, position=position) +print(f"Placed the furnace to smelt plates at {furnace.position}") + +# we also update the furnace variable by returning it from the function +# This ensures it doesnt get stale and the inventory updates are represented in the variable +furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel +furnace = insert_item(Prototype.IronOre, furnace, quantity=10) + +# 3. Wait for smelting (with safety timeout) +for _ in range(30): # Maximum 30 seconds wait + if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: + break + sleep(1) +else: + raise Exception("Smelting timeout - check fuel and inputs") + +# final check for the inventory of furnace +iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] +assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" +print(f"Smelted 10 iron plates") + ``` \ No newline at end of file diff --git a/env/src/tools/agent/extract_item/client.py b/env/src/tools/agent/extract_item/client.py index 39806133f..42130a77b 100644 --- a/env/src/tools/agent/extract_item/client.py +++ b/env/src/tools/agent/extract_item/client.py @@ -14,9 +14,9 @@ def __init__(self, connection, game_state): def __call__(self, entity: Prototype, source: Union[Position, Entity], quantity=5) -> int: """ Extract an item from an entity's inventory at position (x, y) if it exists on the world. - :param entity: Entity prototype to extract, e.g Prototype.IronPlate - :param source: Entity or position to extract from - :param quantity: Quantity to extract + :param entity: The Prototype of the item to extract (required) + :param source: Either a Position or Entity to extract from (required) + :param quantity: Number of items to extract (default=5) :example extract_item(Prototype.IronPlate, stone_furnace.position, 5) :example extract_item(Prototype.CopperWire, stone_furnace, 5) :return The number of items extracted. diff --git a/env/src/tools/agent/get_connection_amount/agent.md b/env/src/tools/agent/get_connection_amount/agent.md index c6535022c..b1f0f3729 100644 --- a/env/src/tools/agent/get_connection_amount/agent.md +++ b/env/src/tools/agent/get_connection_amount/agent.md @@ -17,15 +17,6 @@ The tool determines the number of connecting entities (pipes, belts, or power po amount = get_connection_amount(source, target, connection_type=Prototype.X) ``` -### Parameters - -1. `source`: Starting point (can be Position, Entity, or EntityGroup) -2. `target`: Ending point (can be Position, Entity, or EntityGroup) -3. `connection_type`: Type of connecting entity to use (default: Prototype.Pipe) - -### Return Value -Returns an integer representing the number of entities required for the connection. - ## Common Use Cases ### 1. Planning Belt Lines diff --git a/env/src/tools/agent/get_connection_amount/client.py b/env/src/tools/agent/get_connection_amount/client.py index 70f3d9800..6722c457b 100644 --- a/env/src/tools/agent/get_connection_amount/client.py +++ b/env/src/tools/agent/get_connection_amount/client.py @@ -22,11 +22,11 @@ def __call__(self, ) -> int: """ Calculate the number of connecting entities needed to connect two entities, positions or groups. - :param source: First entity or position - :param target: Second entity or position - :param connection_type: a Pipe, TransportBelt or ElectricPole + :param source: Starting point (can be Position, Entity, or EntityGroup) + :param target: Ending point (can be Position, Entity, or EntityGroup) + :param connection_type: Type of connecting entity to use - Prototype.Pipe, Prototype.TransportBelt or Prototype.ElectricPole :return: A integer representing how many entities are required to connect the source and target entities - """ +""" connect_output = self.connect_entities(source, target, connection_type, dry_run=True) return connect_output["number_of_entities_required"] diff --git a/env/src/tools/agent/get_entity/agent.md b/env/src/tools/agent/get_entity/agent.md index bd45f4018..ebcb83005 100644 --- a/env/src/tools/agent/get_entity/agent.md +++ b/env/src/tools/agent/get_entity/agent.md @@ -2,12 +2,6 @@ The `get_entity` tool allows you to get objects and update variables with their new versions. It is crucial to regularly get the newest variables at the start of every program to ensure no variables are stale -Inputs -- Prototype.X -- Position - -Outputs -Entity object ## Basic Usage Creating power connection diff --git a/env/src/tools/agent/get_prototype_recipe/agent.md b/env/src/tools/agent/get_prototype_recipe/agent.md index 59f2cccd8..6872ed6f4 100644 --- a/env/src/tools/agent/get_prototype_recipe/agent.md +++ b/env/src/tools/agent/get_prototype_recipe/agent.md @@ -27,23 +27,6 @@ recipe = get_prototype_recipe(RecipeName.SolidFuelFromHeavyOil) for ingredient in recipe.ingredients: print(f"Need {ingredient.count} {ingredient.name}") ``` -### Parameters - -The tool accepts one of: -1. `Prototype` enum value -2. `RecipeName` enum value -3. Raw string name of the recipe - -### Return Value - -Returns a `Recipe` object with the following structure: -```python -Recipe( - name=str, - ingredients=[Ingredient(name=str, count=int, type=str)], - products=[Product(name=str, count=int, probability=float, type=str)] -) -``` ## Common Use Cases diff --git a/env/src/tools/agent/get_prototype_recipe/client.py b/env/src/tools/agent/get_prototype_recipe/client.py index bb74e6653..9cb916510 100644 --- a/env/src/tools/agent/get_prototype_recipe/client.py +++ b/env/src/tools/agent/get_prototype_recipe/client.py @@ -14,8 +14,13 @@ def __init__(self, connection, game_state): def __call__(self, prototype: Union[Prototype, RecipeName, str]) -> Recipe: """ Get the recipe (cost to make) of the given entity prototype. - :param prototype: Prototype to get recipe from - :return: Recipe of the given prototype + :param prototype: Prototype to get recipe from (either a `Prototype` enum value, `RecipeName` enum value or a string) + :return: a `Recipe` object with the following structure: + Recipe( + name=str, + ingredients=[Ingredient(name=str, count=int, type=str)], + products=[Product(name=str, count=int, probability=float, type=str)] + ) """ if isinstance(prototype, Prototype): diff --git a/env/src/tools/agent/get_research_progress/agent.md b/env/src/tools/agent/get_research_progress/agent.md index 58993dce9..17025ff70 100644 --- a/env/src/tools/agent/get_research_progress/agent.md +++ b/env/src/tools/agent/get_research_progress/agent.md @@ -18,107 +18,3 @@ remaining = get_research_progress(Technology.Automation) # Check current research progress current_progress = get_research_progress() # Only works if research is active! ``` - -### Parameters - -- `technology`: Optional[Technology] - The technology to check progress for - - If provided: Returns remaining requirements for that technology - - If None: Returns requirements for current research (must have active research!) - -### Return Value - -Returns a List[Ingredient] where each Ingredient contains: -- name: Name of the science pack -- count: Number of packs still needed -- type: Type of the ingredient (usually "item" for science packs) - -## Important Notes - -1. **Current Research Check** - ```python - try: - progress = get_research_progress() - except Exception as e: - print("No active research!") - # Handle no research case - ``` - -2. **Research Status Verification** - ```python - try: - # Check specific technology - progress = get_research_progress(Technology.Automation) - except Exception as e: - print(f"Cannot check progress: {e}") - # Handle invalid technology case - ``` - -## Common Use Cases - -### 1. Monitor Current Research -```python -def monitor_research_progress(): - try: - remaining = get_research_progress() - for ingredient in remaining: - print(f"Need {ingredient.count} {ingredient.name}") - except Exception: - print("No research in progress") -``` - -### 2. Research Requirements Planning -```python -def check_research_feasibility(technology): - try: - requirements = get_research_progress(technology) - inventory = inspect_inventory() - - for req in requirements: - if inventory[req.name] < req.count: - print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") - return False - return True - except Exception as e: - print(f"Error checking research: {e}") - return False -``` - -## Best Practices - -1. **Always Handle No Research Case** -```python -def safe_get_progress(): - try: - return get_research_progress() - except Exception: - # No research in progress - return None -``` - -### Common Errors - -1. **No Active Research** -```python -try: - progress = get_research_progress() -except Exception as e: - if "No research in progress" in str(e): - # Handle no research case - pass -``` - -2. **Invalid Technology** -```python -try: - progress = get_research_progress(technology) -except Exception as e: - if "Technology doesn't exist" in str(e): - # Handle invalid technology case - pass -``` - -3. **Already Researched** -```python -if not get_research_progress(technology): - print("Technology already researched") -``` diff --git a/env/src/tools/agent/get_research_progress/agent_old.md b/env/src/tools/agent/get_research_progress/agent_old.md new file mode 100644 index 000000000..58993dce9 --- /dev/null +++ b/env/src/tools/agent/get_research_progress/agent_old.md @@ -0,0 +1,124 @@ +# get_research_progress + +The `get_research_progress` tool checks the progress of technology research in Factorio by returning the remaining science pack requirements. This tool is essential for managing research queues and monitoring research progress. + +## Core Functionality + +The tool provides: +- Remaining science pack requirements for a specific technology +- Current research progress if no technology is specified +- Status information about researched/unresearched technologies + +## Basic Usage + +```python +# Check progress of specific technology +remaining = get_research_progress(Technology.Automation) + +# Check current research progress +current_progress = get_research_progress() # Only works if research is active! +``` + +### Parameters + +- `technology`: Optional[Technology] - The technology to check progress for + - If provided: Returns remaining requirements for that technology + - If None: Returns requirements for current research (must have active research!) + +### Return Value + +Returns a List[Ingredient] where each Ingredient contains: +- name: Name of the science pack +- count: Number of packs still needed +- type: Type of the ingredient (usually "item" for science packs) + +## Important Notes + +1. **Current Research Check** + ```python + try: + progress = get_research_progress() + except Exception as e: + print("No active research!") + # Handle no research case + ``` + +2. **Research Status Verification** + ```python + try: + # Check specific technology + progress = get_research_progress(Technology.Automation) + except Exception as e: + print(f"Cannot check progress: {e}") + # Handle invalid technology case + ``` + +## Common Use Cases + +### 1. Monitor Current Research +```python +def monitor_research_progress(): + try: + remaining = get_research_progress() + for ingredient in remaining: + print(f"Need {ingredient.count} {ingredient.name}") + except Exception: + print("No research in progress") +``` + +### 2. Research Requirements Planning +```python +def check_research_feasibility(technology): + try: + requirements = get_research_progress(technology) + inventory = inspect_inventory() + + for req in requirements: + if inventory[req.name] < req.count: + print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") + return False + return True + except Exception as e: + print(f"Error checking research: {e}") + return False +``` + +## Best Practices + +1. **Always Handle No Research Case** +```python +def safe_get_progress(): + try: + return get_research_progress() + except Exception: + # No research in progress + return None +``` + +### Common Errors + +1. **No Active Research** +```python +try: + progress = get_research_progress() +except Exception as e: + if "No research in progress" in str(e): + # Handle no research case + pass +``` + +2. **Invalid Technology** +```python +try: + progress = get_research_progress(technology) +except Exception as e: + if "Technology doesn't exist" in str(e): + # Handle invalid technology case + pass +``` + +3. **Already Researched** +```python +if not get_research_progress(technology): + print("Technology already researched") +``` diff --git a/env/src/tools/agent/get_research_progress/client.py b/env/src/tools/agent/get_research_progress/client.py index 1de2207b8..8834d5b44 100644 --- a/env/src/tools/agent/get_research_progress/client.py +++ b/env/src/tools/agent/get_research_progress/client.py @@ -12,8 +12,14 @@ def __init__(self, connection, game_state): def __call__(self, technology: Optional[Technology] = None) -> List[Ingredient]: """ Get the progress of research for a specific technology or the current research. - :param technology: Optional technology to check. If None, checks current research. - :return The remaining ingredients to complete the research + :param technology: The technology to check progress for + - If provided: Returns remaining requirements for that technology + - If None: Returns requirements for current research (must have active research!) + :return a List[Ingredient] where each Ingredient contains: + - name: Name of the science pack + - count: Number of packs still needed + - type: Type of the ingredient (usually "item" for science packs) + """ if technology is not None: if hasattr(technology, 'value'): diff --git a/env/src/tools/agent/get_resource_patch/agent.md b/env/src/tools/agent/get_resource_patch/agent.md index e81a76630..7256f944e 100644 --- a/env/src/tools/agent/get_resource_patch/agent.md +++ b/env/src/tools/agent/get_resource_patch/agent.md @@ -20,27 +20,6 @@ patch = get_resource_patch( ) ``` -### Parameters - -1. `resource`: Resource - Type of resource to analyze (e.g., Resource.Coal, Resource.Water) -2. `position`: Position - Center point to search around -3. `radius`: int - Search radius in tiles (default: 10) - -### Return Value - -Returns a ResourcePatch object containing: -```python -ResourcePatch( - name=str, # Resource name - size=int, # Total resource amount - bounding_box=BoundingBox( - left_top=Position(x,y), - right_bottom=Position(x,y), - left_bottom=Position(x,y), - right_top=Position(x,y) - ) -) -``` ## Resource Types diff --git a/env/src/tools/agent/get_resource_patch/client.py b/env/src/tools/agent/get_resource_patch/client.py index 0dcc24ac9..2a16b1ff1 100644 --- a/env/src/tools/agent/get_resource_patch/client.py +++ b/env/src/tools/agent/get_resource_patch/client.py @@ -19,11 +19,22 @@ def __call__(self, """ Get the resource patch at position (x, y) if it exists in the radius. if radius is set to 0, it will only check the exact position for this resource patch. - :param resource: Resource to get, e.g Resource.Coal - :param position: Position to get resource patch - :param radius: Radius to search for resource patch + :param resource: Type of resource to analyze (e.g., Resource.Coal, Resource.Water) + :param position: Center point to search around + :param radius: Search radius in tiles (default: 10) :example coal_patch_at_origin = get_resource_patch(Resource.Coal, Position(x=0, y=0)) - :return: ResourcePatch if found, else None + :return: ResourcePatch if found, else None. ResourcePatch object has the following structure: + ResourcePatch( + name=str, # Resource name + size=int, # Total resource amount + bounding_box=BoundingBox( + left_top=Position(x,y), + right_bottom=Position(x,y), + left_bottom=Position(x,y), + right_top=Position(x,y) + ) + ) + """ response, time_elapsed = self.execute(PLAYER, resource[0], position.x, position.y, radius) diff --git a/env/src/tools/agent/harvest_resource/agent.md b/env/src/tools/agent/harvest_resource/agent.md index 44a53b126..942385ab8 100644 --- a/env/src/tools/agent/harvest_resource/agent.md +++ b/env/src/tools/agent/harvest_resource/agent.md @@ -10,12 +10,6 @@ harvest_resource(position: Position, quantity: int = 1, radius: int = 10) -> int The function returns the actual quantity harvested. -### Parameters - -- `position`: Position object indicating where to harvest from -- `quantity`: How many resources to harvest (default: 1) -- `radius`: Search radius around the position (default: 10) - ### Examples ```python diff --git a/env/src/tools/agent/harvest_resource/client.py b/env/src/tools/agent/harvest_resource/client.py index 20a5295c8..a6d940261 100644 --- a/env/src/tools/agent/harvest_resource/client.py +++ b/env/src/tools/agent/harvest_resource/client.py @@ -26,6 +26,7 @@ def __call__(self, Harvest a resource at position (x, y) if it exists on the world. :param position: Position to harvest resource :param quantity: Quantity to harvest + :param radius: Search radius in tiles (default: 10) :example harvest_resource(nearest(Resource.Coal), 5) :example harvest_resource(nearest(Resource.Stone), 5) :return: The quantity of the resource harvested diff --git a/env/src/tools/agent/insert_item/agent.md b/env/src/tools/agent/insert_item/agent.md index 46f05916a..d70270a2a 100644 --- a/env/src/tools/agent/insert_item/agent.md +++ b/env/src/tools/agent/insert_item/agent.md @@ -10,12 +10,6 @@ insert_item(item: Prototype, target: Union[Entity, EntityGroup], quantity: int = The function returns the updated target entity. -### Parameters - -- `item`: Prototype of the item to insert -- `target`: Entity or EntityGroup to insert items into -- `quantity`: Number of items to insert (default: 5) - ### Examples ```python diff --git a/env/src/tools/agent/insert_item/client.py b/env/src/tools/agent/insert_item/client.py index c96fa4e69..9823e4ea5 100644 --- a/env/src/tools/agent/insert_item/client.py +++ b/env/src/tools/agent/insert_item/client.py @@ -17,7 +17,7 @@ def __call__(self, entity: Prototype, target: Union[Entity, EntityGroup], quanti """ Insert an item into a target entity's inventory :param entity: Type to insert from inventory - :param target: Entity to insert into + :param target: Entity or EntityGroup to insert items into :param quantity: Quantity to insert :return: The target entity inserted into """ diff --git a/env/src/tools/agent/inspect_inventory/agent.md b/env/src/tools/agent/inspect_inventory/agent.md index 02eaff33b..b8ebacf88 100644 --- a/env/src/tools/agent/inspect_inventory/agent.md +++ b/env/src/tools/agent/inspect_inventory/agent.md @@ -10,22 +10,6 @@ inspect_inventory(entity: Optional[Union[Entity, Position]] = None) -> Inventory The function returns an Inventory object that can be queried using Prototype objects. -### Parameters - -- `entity`: Optional Entity or Position to inspect (if None, inspects player inventory) - -### Return Value - -Returns an Inventory object that can be accessed in two ways: -```python -inventory = inspect_inventory() -# Using [] syntax -coal_count = inventory[Prototype.Coal] # Returns 0 if not present - -# Using get() method -coal_count = inventory.get(Prototype.Coal, 0) # Second argument is default value -``` - ## Common Usage Patterns 1. **Check Player Inventory** diff --git a/env/src/tools/agent/inspect_inventory/client.py b/env/src/tools/agent/inspect_inventory/client.py index fd3fbf71f..520746286 100644 --- a/env/src/tools/agent/inspect_inventory/client.py +++ b/env/src/tools/agent/inspect_inventory/client.py @@ -13,8 +13,15 @@ def __init__(self, *args): def __call__(self, entity=None) -> Inventory: """ Inspects the inventory of the given entity. If no entity is given, inspect your own inventory. - :param entity: Entity to inspect - :return: Inventory of the given entity + :param entity: Optional Entity or Position to inspect (if None, inspects player inventory) + :return: Returns an Inventory object that can be accessed in two ways: + + inventory = inspect_inventory() + # Using [] syntax + coal_count = inventory[Prototype.Coal] # Returns 0 if not present + + # Using get() method + coal_count = inventory.get(Prototype.Coal, 0) # Second argument is default value """ if entity: diff --git a/env/src/tools/agent/launch_rocket/agent.md b/env/src/tools/agent/launch_rocket/agent.md index 6bc48f381..49e65ff6e 100644 --- a/env/src/tools/agent/launch_rocket/agent.md +++ b/env/src/tools/agent/launch_rocket/agent.md @@ -8,65 +8,4 @@ The `launch_rocket` tool allows you to launch rockets from a rocket silo. This g launch_rocket(silo: Union[Position, RocketSilo]) -> RocketSilo ``` -The function returns the updated RocketSilo entity. - -### Parameters -- `silo`: Either a Position object or RocketSilo entity indicating where to launch from - -## Complete Rocket Launch Process - -### 1. Setting Up the Rocket Silo - -First, place the silo: -```python -# Place rocket silo -silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) -``` - -## Required Components - -For each rocket launch you need: -1. 100 Rocket Fuel -2. 100 Rocket Control Units -3. 100 Low Density Structures - - -### 2. Monitoring Rocket Construction - -Track the silo's status during construction: -```python -# Check initial state -assert silo.rocket_parts == 0 -assert silo.launch_count == 0 - -# Wait for components to be inserted -sleep(100) # Adjust time based on inserter speed - -# Get updated silo state -silo = get_entities({Prototype.RocketSilo})[0] - -# Verify construction started -assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH - -# Wait for construction completion -sleep(180) # Adjust based on crafting speed -silo = get_entities({Prototype.RocketSilo})[0] - -# Verify rocket is ready -assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET -``` - -### 5. Launching the Rocket - -Finally, launch the rocket: -```python -# Launch -silo = launch_rocket(silo) - -# Verify launch sequence started -assert silo.status == EntityStatus.LAUNCHING_ROCKET - -# Wait for launch completion -sleep(10) -silo = get_entities({Prototype.RocketSilo})[0] -``` \ No newline at end of file +The function returns the updated RocketSilo entity. \ No newline at end of file diff --git a/env/src/tools/agent/launch_rocket/agent_old.md b/env/src/tools/agent/launch_rocket/agent_old.md new file mode 100644 index 000000000..6bc48f381 --- /dev/null +++ b/env/src/tools/agent/launch_rocket/agent_old.md @@ -0,0 +1,72 @@ +# launch_rocket + +The `launch_rocket` tool allows you to launch rockets from a rocket silo. This guide explains the complete process of setting up and launching rockets in Factorio. + +## Basic Usage + +```python +launch_rocket(silo: Union[Position, RocketSilo]) -> RocketSilo +``` + +The function returns the updated RocketSilo entity. + +### Parameters +- `silo`: Either a Position object or RocketSilo entity indicating where to launch from + +## Complete Rocket Launch Process + +### 1. Setting Up the Rocket Silo + +First, place the silo: +```python +# Place rocket silo +silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) +``` + +## Required Components + +For each rocket launch you need: +1. 100 Rocket Fuel +2. 100 Rocket Control Units +3. 100 Low Density Structures + + +### 2. Monitoring Rocket Construction + +Track the silo's status during construction: +```python +# Check initial state +assert silo.rocket_parts == 0 +assert silo.launch_count == 0 + +# Wait for components to be inserted +sleep(100) # Adjust time based on inserter speed + +# Get updated silo state +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify construction started +assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH + +# Wait for construction completion +sleep(180) # Adjust based on crafting speed +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify rocket is ready +assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET +``` + +### 5. Launching the Rocket + +Finally, launch the rocket: +```python +# Launch +silo = launch_rocket(silo) + +# Verify launch sequence started +assert silo.status == EntityStatus.LAUNCHING_ROCKET + +# Wait for launch completion +sleep(10) +silo = get_entities({Prototype.RocketSilo})[0] +``` \ No newline at end of file diff --git a/env/src/tools/agent/launch_rocket/client.py b/env/src/tools/agent/launch_rocket/client.py index 3ed32ad1b..31536fcde 100644 --- a/env/src/tools/agent/launch_rocket/client.py +++ b/env/src/tools/agent/launch_rocket/client.py @@ -17,7 +17,7 @@ def __init__(self, connection, game_state): def __call__(self, silo: Union[Position, RocketSilo]) -> RocketSilo: """ Launch a rocket. - :param silo: Rocket silo + :param silo: Either a Position object or RocketSilo entity indicating where to launch from :return: Your final position """ diff --git a/env/src/tools/agent/move_to/agent.md b/env/src/tools/agent/move_to/agent.md index 9091f0a89..d324e66f1 100644 --- a/env/src/tools/agent/move_to/agent.md +++ b/env/src/tools/agent/move_to/agent.md @@ -10,10 +10,6 @@ move_to(position: Position) -> Position The function returns your final Position after moving. -### Parameters - -- `position`: Target Position to move to - ### Examples ```python diff --git a/env/src/tools/agent/move_to/client.py b/env/src/tools/agent/move_to/client.py index 2070a6259..5f09a564a 100644 --- a/env/src/tools/agent/move_to/client.py +++ b/env/src/tools/agent/move_to/client.py @@ -20,7 +20,7 @@ def __init__(self, connection, game_state): def __call__(self, position: Position, laying: Prototype = None, leading: Prototype = None) -> Position: """ Move to a position. - :param position: Position to move to. + :param position: Target Position to move to :return: Your final position """ diff --git a/env/src/tools/agent/nearest_buildable/agent.md b/env/src/tools/agent/nearest_buildable/agent.md index 68ff4b3d2..a525fe489 100644 --- a/env/src/tools/agent/nearest_buildable/agent.md +++ b/env/src/tools/agent/nearest_buildable/agent.md @@ -45,65 +45,6 @@ move_to(buildable_area.center) chest = place_entity(Prototype.WoodenChest, position=buildable_area.center) ``` -### 2. Mining Drill Placement -```python -# Setup mining drill on ore patch -resource_pos = nearest(Resource.IronOre) -# Define area for drill -drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) - -# Find buildable area -buildable_area = nearest_buildable( - Prototype.ElectricMiningDrill, - drill_box, - resource_pos -) - -# Place drill -move_to(buildable_area.center) -drill = place_entity( - Prototype.ElectricMiningDrill, - position=buildable_area.center -) -``` -## Common Patterns - -1. **Multiple Entity Placement** -Example: Create a copper plate mining line with 3 drills with inserters for future integration -```python -# log your general idea what you will do next -print(f"I will create a single line of 3 drills to mine copper ore") -# Find space for a line of 3 miners -move_to(source_position) -# define the BuildingBox for the drill. -# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace -building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) -# get the nearest buildable area around the source_position -buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) - -# Place miners in a line -# we first get the leftmost coordinate of the buildingbox to start building from -left_top = buildable_coordinates.left_top -# first lets move to the left_top to ensure building -move_to(left_top) -for i in range(3): - # we now iterate from the leftmost point towards the right - # take steps of drill.WIDTH - drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) - # Place the drill facing down as we start from top coordinate - # The drop position will be below the drill as the direction is DOWN - drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) - print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") - # place a furnace to catch the ore - # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill - furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) - print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") - # add inserters for future potential integartion - # put them below the furnace as the furnace is below the drill - inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) - print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") -``` - ## Best practices - Always use Prototype.X.WIDTH and .HEIGHT to plan the buildingboxes - When doing power setups or setups with inserters, ensure the buildingbox is large enough to have room for connection types diff --git a/env/src/tools/agent/nearest_buildable/agent_old.md b/env/src/tools/agent/nearest_buildable/agent_old.md new file mode 100644 index 000000000..68ff4b3d2 --- /dev/null +++ b/env/src/tools/agent/nearest_buildable/agent_old.md @@ -0,0 +1,115 @@ +# nearest_buildable + +The `nearest_buildable` tool helps find valid positions to place entities while respecting space requirements and resource coverage. This guide explains how to use it effectively. + +## Basic Usage + +```python +nearest_buildable( + entity: Prototype, + building_box: BuildingBox, + center_position: Position +) -> BoundingBox +``` + +The function returns a BoundingBox object containing buildable area coordinates. + +### Parameters +- `entity`: Prototype of entity to place +- `building_box`: BuildingBox defining required area dimensions +- `center_position`: Position to search around + +### Return Value +Returns a BoundingBox with these attributes: +- `left_top`: Top-left corner Position +- `right_bottom`: Bottom-right corner Position +- `left_bottom`: Bottom-left corner Position +- `right_top`: Top-right corner Position +- `center`: Center position + + +## Common Use Cases + +### 1. Basic Entity Placement +```python +# Find place for chest near the origin +chest_box = BuildingBox(height=Prototype.WoodenChest.HEIGHT, width=Prototype.WoodenChest.WIDTH) +buildable_area = nearest_buildable( + Prototype.WoodenChest, + chest_box, + Position(x=0, y=0) +) + +# Place at center of buildable area +move_to(buildable_area.center) +chest = place_entity(Prototype.WoodenChest, position=buildable_area.center) +``` + +### 2. Mining Drill Placement +```python +# Setup mining drill on ore patch +resource_pos = nearest(Resource.IronOre) +# Define area for drill +drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) + +# Find buildable area +buildable_area = nearest_buildable( + Prototype.ElectricMiningDrill, + drill_box, + resource_pos +) + +# Place drill +move_to(buildable_area.center) +drill = place_entity( + Prototype.ElectricMiningDrill, + position=buildable_area.center +) +``` +## Common Patterns + +1. **Multiple Entity Placement** +Example: Create a copper plate mining line with 3 drills with inserters for future integration +```python +# log your general idea what you will do next +print(f"I will create a single line of 3 drills to mine copper ore") +# Find space for a line of 3 miners +move_to(source_position) +# define the BuildingBox for the drill. +# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace +building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) +# get the nearest buildable area around the source_position +buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) + +# Place miners in a line +# we first get the leftmost coordinate of the buildingbox to start building from +left_top = buildable_coordinates.left_top +# first lets move to the left_top to ensure building +move_to(left_top) +for i in range(3): + # we now iterate from the leftmost point towards the right + # take steps of drill.WIDTH + drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) + # Place the drill facing down as we start from top coordinate + # The drop position will be below the drill as the direction is DOWN + drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) + print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") + # place a furnace to catch the ore + # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill + furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) + print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") + # add inserters for future potential integartion + # put them below the furnace as the furnace is below the drill + inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) + print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") +``` + +## Best practices +- Always use Prototype.X.WIDTH and .HEIGHT to plan the buildingboxes +- When doing power setups or setups with inserters, ensure the buildingbox is large enough to have room for connection types + +## Troubleshooting + +1. "No buildable position found" + - Check building box size is appropriate + - Verify resource coverage for miners \ No newline at end of file diff --git a/env/src/tools/agent/place_entity/agent.md b/env/src/tools/agent/place_entity/agent.md index 823266e06..ffe721c70 100644 --- a/env/src/tools/agent/place_entity/agent.md +++ b/env/src/tools/agent/place_entity/agent.md @@ -38,58 +38,6 @@ inserter = place_entity( ) # log your actions print(f"Placed inserter at {inserter.position} to input into a chest") -move_to(water_pos) -# Flexible positioning -pump = place_entity( - Prototype.OffshorePump, - position=water_pos -) -# log your actions -print(f"Placed pump at {pump.position}to generate power") ``` - -### Mining Drills -```python -# Place on resource patch -ore_pos = nearest(Resource.IronOre) -move_to(ore_pos) -drill = place_entity( - Prototype.BurnerMiningDrill, - position=ore_pos, - direction=Direction.DOWN -) -# log your actions -print(f"Placed drill at {drill.position} to mine iron ore") -``` - ## Best Practices -- Use nearest buildable to ensure safe placement - -## Common Patterns - -1. **Mining Setup** -You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines -```python -def setup_mining(resource_pos: Position): - move_to(resource_pos) - # Place drill - # put the drop position down - drill = place_entity( - Prototype.BurnerMiningDrill, - position=resource_pos, - direction=Direction.DOWN, - ) - # log your actions - print(f"Placed drill to mine iron ore at {drill.position}") - # insert coal to drill - drill = insert_item(Prototype.Coal, drill, quantity = 10) - # Place output chest that catches ore - chest = place_entity( - Prototype.WoodenChest, - position=drill.drop_position, - direction=Direction.DOWN, - ) - # log your actions - print(f"Placed chest to catch iron ore at {chest.position}") - return drill, chest -``` \ No newline at end of file +- Use nearest buildable to ensure safe placement \ No newline at end of file diff --git a/env/src/tools/agent/place_entity/agent_old.md b/env/src/tools/agent/place_entity/agent_old.md new file mode 100644 index 000000000..823266e06 --- /dev/null +++ b/env/src/tools/agent/place_entity/agent_old.md @@ -0,0 +1,95 @@ +# place_entity + +The `place_entity` tool allows you to place entities in the Factorio world while handling direction, positioning, and various entity-specific requirements. This guide explains how to use it effectively. + +## Basic Usage + +```python +place_entity( + entity: Prototype, + direction: Direction = Direction.UP, + position: Position = Position(x=0, y=0), + exact: bool = True +) -> Entity +``` + +Returns the placed Entity object. + +### Parameters +- `entity`: Prototype of entity to place +- `direction`: Direction entity should face (default: UP) +- `position`: Where to place entity (default: 0,0) +- `exact`: Whether to require exact positioning (default: True) + +### Examples +```python +# first moveto target location +move_to(Position(x=0, y=0)) +# Basic placement +chest = place_entity(Prototype.WoodenChest, position=Position(x=0, y=0)) +# log your actions +print(f"Placed chest at {chest.position}") + +# Directional placement +inserter = place_entity( + Prototype.BurnerInserter, + direction=Direction.RIGHT, + position=Position(x=5, y=5) +) +# log your actions +print(f"Placed inserter at {inserter.position} to input into a chest") +move_to(water_pos) +# Flexible positioning +pump = place_entity( + Prototype.OffshorePump, + position=water_pos +) +# log your actions +print(f"Placed pump at {pump.position}to generate power") +``` + +### Mining Drills +```python +# Place on resource patch +ore_pos = nearest(Resource.IronOre) +move_to(ore_pos) +drill = place_entity( + Prototype.BurnerMiningDrill, + position=ore_pos, + direction=Direction.DOWN +) +# log your actions +print(f"Placed drill at {drill.position} to mine iron ore") +``` + +## Best Practices +- Use nearest buildable to ensure safe placement + +## Common Patterns + +1. **Mining Setup** +You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines +```python +def setup_mining(resource_pos: Position): + move_to(resource_pos) + # Place drill + # put the drop position down + drill = place_entity( + Prototype.BurnerMiningDrill, + position=resource_pos, + direction=Direction.DOWN, + ) + # log your actions + print(f"Placed drill to mine iron ore at {drill.position}") + # insert coal to drill + drill = insert_item(Prototype.Coal, drill, quantity = 10) + # Place output chest that catches ore + chest = place_entity( + Prototype.WoodenChest, + position=drill.drop_position, + direction=Direction.DOWN, + ) + # log your actions + print(f"Placed chest to catch iron ore at {chest.position}") + return drill, chest +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/agent.md b/env/src/tools/agent/query_information/agent.md new file mode 100644 index 000000000..f4af459ed --- /dev/null +++ b/env/src/tools/agent/query_information/agent.md @@ -0,0 +1,28 @@ +# query_information + +The `query_information` tool allows you to retrieve pages that are relevant to your query to obtain information and instructions regarding how to effectively use the API and how to use different factorio specific entities. + +## Basic Usage +To get content relevant to a query, send in the query in a question format using the tool +```python +inserter_information = query_information("How to use inserters to input items into a chest") +print(f"Manual how to use inserters") +print(inserter_information) + +electricity_information = query_information("How to set up electricity?") +print(f"Manual how to set up elctricity") +print(electricity_information) + + +chem_plant_information = query_information("How to use chemical plants to create sulfur?") +print(f"Manual how to set up chemical plants") +print(chem_plant_information) + + +resource_mine_information = query_information("How to set up resource mines?") +print(f"Manual how to set up resource mines") +print(resource_mine_information) + +``` + +NB: The toolgives high value information so always consult the tool when something is unknown \ No newline at end of file diff --git a/env/src/tools/agent/query_information/agent_old.md b/env/src/tools/agent/query_information/agent_old.md new file mode 100644 index 000000000..746d4bece --- /dev/null +++ b/env/src/tools/agent/query_information/agent_old.md @@ -0,0 +1,33 @@ +# query_information + +The `query_information` tool allows you to obtain information regarding from a pre-defined list of pages containing instructions how to effectively use the API. + +## Basic Usage +To get content of a specific page, the page_id needs to be sent in +```python +inserter_information = query_information("how_to_use_inserters") -> str +print(f"Manual how to use inserters") +print(inserter_information) +``` +### Parameters + +- `page_id`: ID of the page whose information is needed + +## Existing pages + +The following page IDs exist currently in the database + +"how_to_check_research_progress" +"how_to_connect_entities" +"how_to_create_assembling_machines" +"how_to_create_electricity_generators" -- Information on how to setup electricity generators +"how_to_create_reserach_setups" +"how_to_create_self_fueling_mining_system" +"how_to_launch_a_rocket" +"how_to_set_up_multiple_drill_plate_mine" +"how_to_set_up_raw_resource_burner_mine" +"how_to_setup_chemical_plants" -- Information on how to setup and use chemical plants +"how_to_setup_oil_refineries" -- Information on how to setup and use oil refineries +"how_to_smelt_ores" +"how_to_setup_storage_tanks" -- Information on how to setup and use storage tanks +"how_to_setup_crude_oil_production" -- Information on how to setup and use pumpjacks to harvest crude oil \ No newline at end of file diff --git a/env/src/tools/agent/query_information/client.py b/env/src/tools/agent/query_information/client.py new file mode 100644 index 000000000..cf4108991 --- /dev/null +++ b/env/src/tools/agent/query_information/client.py @@ -0,0 +1,90 @@ +from time import sleep +from tools.tool import Tool +import os +# import PATH to construct dynamic paths +import sys +from pathlib import Path +import json +import numpy as np + +from openai import OpenAI + +class QueryInformation(Tool): + + def __init__(self, connection, game_state): + super().__init__(connection, game_state) + # get the location of this file + root_directory = os.path.dirname(os.path.abspath(__file__)) + self.pages_path = Path(root_directory, 'pages') + # get all md files in the pages directory + self.pages = [page.replace(".md", "") for page in os.listdir(self.pages_path) if page.endswith('.md')] + # read inthe embeddings.json file + self.embeddings_path = Path(root_directory, 'embeddings.json') + with open(self.embeddings_path, 'r') as file: + self.embeddings = json.load(file) + self.client = OpenAI(api_key=os.getenv("OPENAI_API_KEY")) + self.embedding_model = "text-embedding-3-small" + for page in self.pages: + if page not in self.embeddings: + # get the embeddings for the page + with open(Path(self.pages_path, page + ".md"), 'r') as file: + content = file.read() + self.embeddings[page] = self.get_embeddings(content) + try: + # overwrite the embeddings file + with open(self.embeddings_path, 'w') as file: + json.dump(self.embeddings, file, indent=4) + except Exception as e: + print(f"Error writing to embeddings file: {e}") + + + def cosine_similarity(self, a: list, b: list) -> float: + """ + Calculate the cosine similarity between two vectors + :param a: The first vector + :param b: The second vector + :return: The cosine similarity between the two vectors + """ + a = np.array(a) + b = np.array(b) + return np.dot(a, b) / (np.linalg.norm(a) * np.linalg.norm(b)) + + def __call__(self, + query: str, + nr_of_results: int = 2, + ) -> str: + """ + retrieve closest pages to the query and return their content + :param query: The query to search for + :param nr_of_results: The number of results to return + :return: The content of the pages + """ + + # get the embeddings for the query + query_embedding = self.get_embeddings(query) + # get the closest pages to the query + closest_pages = [] + for page, embedding in self.embeddings.items(): + similarity = self.cosine_similarity(query_embedding, embedding) + closest_pages.append((page, similarity)) + # sort the pages by similarity + closest_pages = sorted(closest_pages, key=lambda x: x[1], reverse=True) + # get the content of the closest pages + content = f"QUERY RESULTS FOR - {query}:\n\n" + for page, _ in closest_pages[:nr_of_results]: + with open(Path(self.pages_path, page + ".md"), 'r') as file: + content += file.read() + "\n\n" + + return content.strip() + + def get_embeddings(self, text: str) -> list: + """ + Get the embeddings of a text + :param text: The text to get the embeddings for + :return: The embeddings of the text + """ + response = self.client.embeddings.create( + input=text, + model=self.embedding_model + ) + return response.data[0].embedding \ No newline at end of file diff --git a/env/src/tools/agent/query_information/embeddings.md b/env/src/tools/agent/query_information/embeddings.md new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/env/src/tools/agent/query_information/embeddings.md @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_check_research_progress.md b/env/src/tools/agent/query_information/pages/how_to_check_research_progress.md new file mode 100644 index 000000000..3c9389be0 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_check_research_progress.md @@ -0,0 +1,91 @@ +## Important Notes + +1. **Current Research Check** + ```python + try: + progress = get_research_progress() + except Exception as e: + print("No active research!") + # Handle no research case + ``` + +2. **Research Status Verification** + ```python + try: + # Check specific technology + progress = get_research_progress(Technology.Automation) + except Exception as e: + print(f"Cannot check progress: {e}") + # Handle invalid technology case + ``` + +## Common Use Cases + +### 1. Monitor Current Research +```python +def monitor_research_progress(): + try: + remaining = get_research_progress() + for ingredient in remaining: + print(f"Need {ingredient.count} {ingredient.name}") + except Exception: + print("No research in progress") +``` + +### 2. Research Requirements Planning +```python +def check_research_feasibility(technology): + try: + requirements = get_research_progress(technology) + inventory = inspect_inventory() + + for req in requirements: + if inventory[req.name] < req.count: + print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") + return False + return True + except Exception as e: + print(f"Error checking research: {e}") + return False +``` + +## Best Practices + +1. **Always Handle No Research Case** +```python +def safe_get_progress(): + try: + return get_research_progress() + except Exception: + # No research in progress + return None +``` + +### Common Errors + +1. **No Active Research** +```python +try: + progress = get_research_progress() +except Exception as e: + if "No research in progress" in str(e): + # Handle no research case + pass +``` + +2. **Invalid Technology** +```python +try: + progress = get_research_progress(technology) +except Exception as e: + if "Technology doesn't exist" in str(e): + # Handle invalid technology case + pass +``` + +3. **Already Researched** +```python +if not get_research_progress(technology): + print("Technology already researched") +``` +s \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_connect_entities.md b/env/src/tools/agent/query_information/pages/how_to_connect_entities.md new file mode 100644 index 000000000..14bf8bbf7 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_connect_entities.md @@ -0,0 +1,140 @@ + +## Transport Belt Connections + +```python +# Connect mining drill output to a furnace inserter +belts = connect_entities( + drill, + furnace_inserter, + connection_type=Prototype.TransportBelt +) + +# Belt groups are returned for management +print(f"Created belt line with {len(belts.belts)} belts") +``` + +Key points: +- Always use inserters between belts and machines/chests +- Use underground belts for crossing other belts +- Belt groups maintain direction and flow information + +## Pipe Connections + +Pipes connect fluid-handling entities: +```python +# Connect water flow with over and underground pipes +water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) +print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") +``` + +Key points: +- Respects fluid input/output connection points +- Underground pipes have limited range +- Pipe groups track fluid system IDs + +## Power Pole Connections + +To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) +```python +# Connect power +poles = connect_entities( + steam_engine, + drill, + Prototype.SmallElectricPole +) +print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") +``` + +Key points: +- Automatically spaces poles based on wire reach +- Creates electrical networks +- Handles pole to entity connections +- Power groups track network IDs + +## Best Practices + +1. **Pre-check Resources** +```python +inventory = inspect_inventory() +# use get_connection_amount to see if you have enough +required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) +assert inventory[Prototype.TransportBelt] >= required_count +``` + +3. **Entity Groups** +```python +# Work with entity groups +belt_group = connect_entities(source, target, Prototype.TransportBelt) +for belt in belt_group.belts: + print(f"Belt at {belt.position} flowing {belt.direction}") +``` + +## Common Patterns + +### Many-to-One Connections +When you need to connect multiple sources to a single target with transport belts +1. Establish sources and target +2. Create the main connection by connecting one source to the target with transport belts +3. Connect all remaining sources to the main connection with transport belts + +Example: Connecting multiple source inserters to one target inserter +```python +# get the inserter variables +source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) +source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) +source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) +target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) +# log your general idea what you will do next +print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") +# create the main connection +main_connection = connect_entities(source_inserter_1, + target_inserter, + Prototype.TransportBelt) +# Print out the whole connection for logs +print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") + +# Connect source_inserter_2 and source_inserter_3 to the main connection +secondary_sources = [source_inserter_2, source_inserter_3] +for source in secondary_sources: + # connect the source to main connection + # Use the first beltgroup from the main connection to connect to + # Also override the main_connection to get the newest belt groups + main_connection = connect_entities(source, + main_connection, + Prototype.TransportBelt) + print(f"Extended main connection to include inserter at {source.position}: {main_connection}") +print(f"Final connection after connecting all inserters to target: {main_connection}") +``` + +When you want to connect entities to existing power pole groups, similar rules apply. + +Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) +```python +# create the main connection +main_power_connection = connect_entities(steam_engine, + drill_1, + Prototype.SmallElectricPole) +# Print out the whole connection for logs +print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") + +# connect the secondary source to the main power connection +# Use the first ElectricityGroup from the main connection to connect to +# Also override the main_power_connection to get the newest ElectricityGroups +main_power_connection = connect_entities(drill_2, + main_connection, + Prototype.SmallElectricPole) +``` + +## Troubleshooting + +Common issues and solutions: + +### 1. Connection Failures +- Verify inventory has required entities +- Ensure compatible connection types + +### 3. Entity Groups +- Update stale group references +- Handle group merging properly +- Track network IDs +- Clean up disconnected groups diff --git a/env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md b/env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md new file mode 100644 index 000000000..1640208c4 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md @@ -0,0 +1,66 @@ +### 3. Automated Assembly Systems + +#### Basic Assembly Line +Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections +```python +furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) +solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) +# get a position 15 spaces away +assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) +# Plan space for assembler and inserters, add some buffer +building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) +buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, + building_box, + assembler_position) + +# Place assembling machine +move_to(buildable_coords.center) +assembler = place_entity(Prototype.AssemblingMachine1, + position=buildable_coords.center, + direction = Direction.DOWN) +print(f"Placed assembling machine at {assembler.position}") + +# Set recipe +set_entity_recipe(assembler, Prototype.CopperCable) + +# Add input inserter +# place it to the right as we added to the width of the building box +assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.RIGHT, + spacing=0) +# rotate it to input items into the assembling machine +assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) + +# Add output inserter +# put it on the other side of assembling machine +output_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.LEFT, + spacing=0) +output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) +# add coal to inserters +output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) +input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) +# Connect power +poles = connect_entities(power_source, + assembler, + Prototype.SmallElectricPole) +print(f"Powered assembling machine at {assembler.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) +assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" +# Connect input belt +belts = connect_entities(furnace_output_inserter, + assembly_machine_input_inserter, + Prototype.TransportBelt) +print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") + +# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest +sleep(15) +output_chest = get_entity(Prototype.WoodenChest, output_chest.position) +inventory = inspect_inventory(output_chest) +copper_cables_in_inventory = inventory[Prototype.CopperCable] +assert copper_cables_in_inventory > 0, f"No copper cables created" +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md b/env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md new file mode 100644 index 000000000..91af2519d --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md @@ -0,0 +1,102 @@ +### 2. Power Systems + +### Power Infrastructure with steam engine + +Power typically involves: +-> Water Source + OffshorePump +-> Boiler (burning coal) +-> SteamEngine + +IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water +We will do this in 2 separate code examples +```python +# log your general idea what you will do next +print(f"I will create a power generation setup with a steam engine") +# Power system pattern +move_to(water_position) +# first place offshore pump on the water system +# The offshore pump gets water from the water source and will transport it to the boiler via pipes +offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) +print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) +# Then place the boiler near the offshore pump +# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, +# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox +# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. + +# first get the width and height of a BurnerMiningDrill +print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) + +coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) +# place the boiler at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) +print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) +# add coal to boiler to start the power generation +boiler = insert_item(Prototype.Coal, boiler, 10) +``` + +```python +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +# Finally we need to place the steam engine close to the boiler +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) + +coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) +# move to the centre coordinate +move_to(coords.center) +# place the steam engine on the centre coordinate +steam_engine = place_entity(Prototype.SteamEngine, + position = coords.center, + direction = Direction.LEFT) + +print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) +``` + +```python +offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) +# Connect entities in order +water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) +print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") +steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) +print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") + +# check that it has power +# sleep for 5 seconds to ensure flow +sleep(5) +# update the entity +steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) +# check that the steam engine is generating power +assert steam_engine.energy > 0, f"Steam engine is not generating power" +print(f"Steam engine at {steam_engine.position} is generating power!") +``` + + + +### Powering entities with existing steam engines +To power an entity with existing steam engine, they need to be connected with power poles + +Example +Power an existing electric mining drill +```python +# get the steam engine and electric mining drill +steam_engine = get_entity(Prototype.SteamEngine, Position(x = 1, y = 0)) +electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, Position(x = 10, y = 0)) + +# Connect power to the electric mining drill +poles = connect_entities(steam_engine, + electric_mining_drill, + Prototype.SmallElectricPole) +print(f"Powered electric mining drill at {electric_mining_drill.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, electric_mining_drill.position) +assert electric_mining_drill.energy > 0, f"electric_mining_drill at {electric_mining_drill.position} is not receiving power" +print(f"Electric mining drill at {electric_mining_drill.position} has been successfully powered") +``` diff --git a/env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md b/env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md new file mode 100644 index 000000000..01d0f3b41 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md @@ -0,0 +1,26 @@ +### 4. Research Systems + +#### Basic Research Setup +```python +def build_research_facility(power_source, lab): + # Connect power + poles = connect_entities(power_source, + lab, + Prototype.SmallElectricPole) + print(f"Powered lab at {lab.position} with {poles}") + # Add science pack inserter + # put it to the left of lab + inserter = place_entity_next_to(Prototype.BurnerInserter, + lab.position, + direction=Direction.LEFT, + spacing=0) + # rotate it to input items into the lab + inserter = rotate_entity(inserter, Direction.RIGHT) + # Place input chest + chest = place_entity(Prototype.WoodenChest, + inserter.pickup_position, + direction=Direction.LEFT) + print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") + + return lab, inserter, chest +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md b/env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md new file mode 100644 index 000000000..5e8907289 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md @@ -0,0 +1,29 @@ +# Define building area +coal_patch_position = nearest(Resource.Coal) +building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height +buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) + +# Place drill +move_to(buildable_coords.center) +drill = place_entity(Prototype.BurnerMiningDrill, + position=buildable_coords.center, + direction=Direction.DOWN) +print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") + +# Place self-fueling inserter +inserter = place_entity_next_to(Prototype.BurnerInserter, + drill.position, + direction=Direction.DOWN, + spacing=0) +inserter = rotate_entity(inserter, Direction.UP) +print(f"Placed inserter at {inserter.position} to fuel the drill") + +# Connect with belts +belts = connect_entities(drill.drop_position, + inserter.pickup_position, + Prototype.TransportBelt) +print(f"Connected drill to inserter with transport belt") + +# Bootstrap system +drill = insert_item(Prototype.Coal, drill, quantity=5) +return drill, inserter, belts \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md b/env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md new file mode 100644 index 000000000..edc19bf56 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md @@ -0,0 +1,57 @@ +## Complete Rocket Launch Process + +### 1. Setting Up the Rocket Silo + +First, place the silo: +```python +# Place rocket silo +silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) +``` + +## Required Components + +For each rocket launch you need: +1. 100 Rocket Fuel +2. 100 Rocket Control Units +3. 100 Low Density Structures + + +### 2. Monitoring Rocket Construction + +Track the silo's status during construction: +```python +# Check initial state +assert silo.rocket_parts == 0 +assert silo.launch_count == 0 + +# Wait for components to be inserted +sleep(100) # Adjust time based on inserter speed + +# Get updated silo state +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify construction started +assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH + +# Wait for construction completion +sleep(180) # Adjust based on crafting speed +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify rocket is ready +assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET +``` + +### 5. Launching the Rocket + +Finally, launch the rocket: +```python +# Launch +silo = launch_rocket(silo) + +# Verify launch sequence started +assert silo.status == EntityStatus.LAUNCHING_ROCKET + +# Wait for launch completion +sleep(10) +silo = get_entities({Prototype.RocketSilo})[0] +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md new file mode 100644 index 000000000..46057e364 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md @@ -0,0 +1,35 @@ +1. **Multiple Entity Placement** +Example: Create a copper plate mining line with 3 drills with inserters for future integration +```python +# log your general idea what you will do next +print(f"I will create a single line of 3 drills to mine copper ore") +# Find space for a line of 3 miners +move_to(source_position) +# define the BuildingBox for the drill. +# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace +building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) +# get the nearest buildable area around the source_position +buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) + +# Place miners in a line +# we first get the leftmost coordinate of the buildingbox to start building from +left_top = buildable_coordinates.left_top +# first lets move to the left_top to ensure building +move_to(left_top) +for i in range(3): + # we now iterate from the leftmost point towards the right + # take steps of drill.WIDTH + drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) + # Place the drill facing down as we start from top coordinate + # The drop position will be below the drill as the direction is DOWN + drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) + print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") + # place a furnace to catch the ore + # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill + furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) + print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") + # add inserters for future potential integartion + # put them below the furnace as the furnace is below the drill + inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) + print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md new file mode 100644 index 000000000..c881966de --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md @@ -0,0 +1,34 @@ +1. **Mining Setup** +You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines +```python +# Setup mining drill on ore patch +resource_pos = nearest(Resource.IronOre) +# Define area for drill +drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) + +# Find buildable area +buildable_area = nearest_buildable( + Prototype.ElectricMiningDrill, + drill_box, + resource_pos +) + +# Place drill +move_to(buildable_area.center) +drill = place_entity( + Prototype.ElectricMiningDrill, + position=buildable_area.center +) +# log your actions +print(f"Placed drill to mine iron ore at {drill.position}") +# insert coal to drill +drill = insert_item(Prototype.Coal, drill, quantity = 10) +# Place output chest that catches ore +chest = place_entity( + Prototype.WoodenChest, + position=drill.drop_position, + direction=Direction.DOWN, +) +# log your actions +print(f"Placed chest to catch iron ore at {chest.position}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md b/env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md new file mode 100644 index 000000000..0d36e8430 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md @@ -0,0 +1,95 @@ +## Chemical plants + +### Placing a chemical plant near a oil refinery + +Example: +Placing a chemical plant near a existing oil_refinery at Position(x=-50, y=0) +Also connect the chemical plant to a steam engine, that will power the engine. To power the chemical plant, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +```python +# get the oil_refinery +oil_refinery = get_entity(Prototype.OilRefinery, position=Position(x=-50, y=0)) + +# create a buildingboxwith with 4 tile buffer for the ChemicalPlant +building_box = BuildingBox(width = Prototype.ChemicalPlant.WIDTH + 4, height = Prototype.ChemicalPlant.HEIGHT + 4) + +# put down the ChemicalPlant atleast 10 spaces away from oil_refinery +ref_pos = Position(x = oil_refinery.position.x+10, y = oil_refinery.position.y+10) +coords = nearest_buildable(Prototype.ChemicalPlant,building_box, ref_pos) +# place the chemical_plant at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +chemical_plant = place_entity(Prototype.ChemicalPlant, position = coords.center, direction = Direction.LEFT) + +# power the chemical_plant by connecting to an existing steam engine +steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) +# Connect power to chemical_plant +poles = connect_entities(steam_engine, + chemical_plant, + Prototype.SmallElectricPole) +print(f"Powered oil refinery at {chemical_plant.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +chemical_plant = get_entity(Prototype.ChemicalPlant, chemical_plant.position) +assert chemical_plant.energy > 0, f"chemical_plant at {chemical_plant.position} is not receiving power" +print(f"Chemical plant at {chemical_plant.position} has been successfully powered") +``` + +### Setting recipes for chemical plants +Before rotating or using the chemical plants, the recipe must be set + +Available recipes for chemical plants + +Liquid outputs +These need to be either stored in a storagetank or sent to other liquidprocessors. Transporting must be via pipes +RecipeName.HeavyOilCracking = "heavy-oil-cracking" # Recipe for producing light oil in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points +RecipeName.LightOilCracking = "light-oil-cracking" # Recipe for producing petroleum gas in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points +Prototype.SulfuricAcid # Recipe for producing SulfuricAcid in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points +Prototype.Lubricant # Recipe for producing lubricant in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points + +Solid outputs +These need to be extracted frm the chemical plant via inserters into either chests or transport belts transporting them to other structures +RecipeName.SolidFuelFromHeavyOil = "solid-fuel-from-heavy-oil" # Recipe for producing solid fuel in a chemical plant from heavy oil. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +RecipeName.SolidFuelFromLightOil = "solid-fuel-from-light-oil" # Recipe for producing solid fuel in a chemical plant from light oil. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +RecipeName.SolidFuelFromPetroleumGas = "solid-fuel-from-petroleum-gas" # Recipe for producing solid fuel in a chemical plant from petroleum gas. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +Prototype.PlasticBar # Recipe for producing plastic bars in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +Prototype.Sulfur # Recipe for producing Sulfuric in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant +Prototype.Battery # Recipe for producing batteries in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant + +Example: +Set recipe for a existing chemical plant to get sulfuric acid +Also connect a existing oil refinery to the chemical plant +```python +# get the chemical plant and oil refineries +chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=-50, y=0)) +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) + +# Set the recipe to Lubricant +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +chemical_plant = set_entity_recipe(chemical_plant, Prototype.Lubricant) +print(f"Set the recipe of chemical plant at {chemical_plant.position} to Lubricant") + +# connect with underground and overground pipes to the oil refinery +pipes = connect_entities(oil_refinery, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the chemical_plant at {chemical_plant.position} to oil refinery at {oil_refinery.position} with {pipes}") +``` + +### Storing liquid outputs of chemical plants +The liquid outputs of chemical plants can be stored in storage tanks +Example: +Connect a chemical plant to a existing storage tank to store lubricant +NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE +```python +# get the chemical_plant and storage tank +chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# Get the lubricant output point of chemical_plant +output_lubricant_connection_points = [x for x in chemical_plant.output_connection_points if x.type == "lubricant"] +assert len(output_lubricant_connection_points) > 0, f"No lubricant output points in chemical_plant" +output_lubricant_connection_point = output_lubricant_connection_points[0] + +# connect the storagetank and chemical plant +pipes = connect_entities(output_lubricant_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the chemical plant at {chemical_plant.position} to a storage tank at {storage_tank.position} to store lubricant with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md b/env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md new file mode 100644 index 000000000..086a5937d --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md @@ -0,0 +1,74 @@ +## Pumpjacks + +To harvest crude oil from the environment, it needs to be done with pumpjacks + +### Placing a pumpjack + +Example: +Placing a pumpjack near a crude oil patch +Also connect the pumpjack to a steam engine, that will power the pumpjack. To power the pumpjack, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +```python +# Get the crude oil resource patch +resource_pos = nearest(Resource.CrudeOil) +# Define area for pumpjack +pump_box = BuildingBox(height=Prototype.PumpJack.HEIGHT, width=Prototype.PumpJack.WIDTH) + +# Find buildable area +buildable_area = nearest_buildable( + Prototype.PumpJack, + pump_box, + resource_pos +) + +# Place pumpjack +move_to(buildable_area.center) +pumpjack = place_entity( + Prototype.PumpJack, + position=buildable_area.center +) +# log your actions +print(f"Placed pumpjack to harvest crude oil at {pumpjack.position}") + +# power the pumpjack by connecting to an existing steam engine +steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) +# Connect power to pumpjack +poles = connect_entities(steam_engine, + pumpjack, + Prototype.SmallElectricPole) +print(f"Powered pumpjack at {pumpjack.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +pumpjack = get_entity(Prototype.PumpJack, pumpjackefinery.position) +assert pumpjack.energy > 0, f"pumpjack at {pumpjack.position} is not receiving power" +print(f"Pumpjack at {pumpjack.position} has been successfully powered") +``` + +### Putting down a storage tank for pumpjack output crude oil +The outputs of pumpjacks can be stored in storage tanks or directly connected to oil refineries + +Example: +Connect a pumpjack to a existing storage tank to store crude_oil +NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE +```python +# get the pumpjack and storage tank +pumpjack = get_entity(Prototype.PumpJack, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# connect the storagetank and pumpjack +pipes = connect_entities(pumpjack, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpjack at {pumpjack.position} to a storage tank at {storage_tank.position} to store crude oil with {pipes}") +``` + +Example: +Connect a pumpjack to a existing oil_refinery to process crude oil +NB: TO CHECK HOW TO SET UP OIL REFINERIES, PRINT OUT THE "how_to_setup_oil_refineries" WIKI PAGE +```python +# get the oil_refinery and pumpjack +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) +pumpjack = get_entity(Prototype.PUMPJACK, position = Position(x = -20, y = 10)) + +# connect the pumpjack and oil refinery +pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpajck at {pumpjack.position} to a oil refinery at {oil_refinery.position} to process crude oil with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md b/env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md new file mode 100644 index 000000000..f6fc53992 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md @@ -0,0 +1,104 @@ +## Oil Refinery + +### Placing a oil refinery + +Example: +Placing a oil refinery near a existing pumpjack at Position(x=-50, y=0) +Also connect the oil refinery to a steam engine, that will power the refinery. To power the oil refinery, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +NB: TO CHECK HOW TO SET UP PUMPJACKS, PRINT OUT THE "how_to_setup_crude_oil_production" WIKI PAGE +```python +# get the pumpjack +pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) + +# create a buildingboxwith with 4 tile buffer for the oilrefinery +building_box = BuildingBox(width = Prototype.OilRefinery.WIDTH + 4, height = Prototype.OilRefinery.HEIGHT + 4) + +# put down the oilrefinery atleast 10 spaces away from pumpjack +ref_pos = Position(x = pumpjack.position.x+10, y = pumpjack.position.y+10) +coords = nearest_buildable(Prototype.OilRefinery,building_box, ref_pos) +# place the oil refinery at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +oil_refinery = place_entity(Prototype.OilRefinery, position = coords.center, direction = Direction.LEFT) + +# power the oil refinery by connecting to an existing steam engine +steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) +# Connect power to oil refinery +poles = connect_entities(steam_engine, + oil_refinery, + Prototype.SmallElectricPole) +print(f"Powered oil refinery at {oil_refinery.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +oil_refinery = get_entity(Prototype.OilRefinery, oil_refinery.position) +assert oil_refinery.energy > 0, f"oil_refinery at {oil_refinery.position} is not receiving power" +print(f"Oil Refinery at {oil_refinery.position} has been successfully powered") +``` + +### Setting recipes for oil refineries +Before rotating or using the oilrefinery, the recipe must be set + +Available recipes for oil refinery + +RecipeName.BasicOilProcessing = "basic-oil-processing" # Recipe for producing petroleum gas with a oil refinery +RecipeName.AdvancedOilProcessing = "advanced-oil-processing" # Recipe for producing petroleum gas, heavy oil and light oil with a oil refinery +RecipeName.CoalLiquefaction = "coal-liquefaction" # Recipe for producing petroleum gas in a oil refinery + +Example: +Set recipe for a existing oil refinery to get petroleum gas +Also connect a existing pumpjack to the oil refinery +```python +# get the pumpjack and oil refineries +pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) + +# Set the recipe to basc oil processing +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) +print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") + +# connect with underground and overground pipes to the pumpjack +pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") +``` + +### Connecting the oil refinery outputs + +The outputs of oil refineries can be extracted by pipes + +Example: +Connect a oil refinery to a existing storage tank to store petroleum gas +NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE +```python +# get the oil_refinery and storage tank +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# Get the petroleum-gas output point of oil refinery +output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] +assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" +output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] + +# connect the storagetank and oil refinery +pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the oil refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") +``` + +Example: +Connect a oil refinery to a existing chemical plant to process petroleum gas +```python +# get the oil_refinery and chemical plant +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) +chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -20, y = 10)) + +# Get the petroleum-gas output point of oil refinery +output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] +assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" +output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] + +# connect the chemical_plant and oil refinery +pipes = connect_entities(output_petroleum_gas_connection_point, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the oil refinery at {oil_refinery.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") +``` + diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md b/env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md new file mode 100644 index 000000000..d84ea295d --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md @@ -0,0 +1,53 @@ +## Storage tanks + +You can use storage tanks to store liquids + +### Placing a storage tank to store liquid + +Example: +Place a storage tank and store petroleum gas from an existing storage tank +```python +# get the oil_refinery +oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) + +# create a buildingboxwith with 4 tile buffer for the oilrefinery +building_box = BuildingBox(width = Prototype.StorageTank.WIDTH + 4, height = Prototype.StorageTank.HEIGHT + 4) + +# put down the storagetank atleast 5 spaces away from oilrefinery +ref_pos = Position(x = oil_refinery.position.x+10, y = oil_refinery.position.y+10) +coords = nearest_buildable(Prototype.StorageTank,building_box, ref_pos) +# place the storage tank at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +storage_tank = place_entity(Prototype.StorageTank, position = coords.center, direction = Direction.LEFT) + +# Get the petroleum-gas output point of oil refinery +output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] +assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" +output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] + +# connect the storagetank and oil refinery +pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the oil_refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") +``` + + +### Using an existing storage tank with liquid +If a storage tank has liquid, the liquid can be sent to other fluid processors via pipes + +Example: +Connect an existing storage tank with petroleum gas to a existing chemical plant +```python +# get the chemical_plant and storage_tank +chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) +storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) + +# Get the petroleum-gas input point of chemical plant +input_petroleum_gas_connection_points = [x for x in oil_refinery.input_connection_points if x.type == "petroleum-gas"] +assert len(input_petroleum_gas_connection_points) > 0, f"No petroleum gas input points in chemical_plant" +input_petroleum_gas_connection_point = input_petroleum_gas_connection_points[0] + +# connect the storagetank and chemical_plant +pipes = connect_entities(storage_tank, input_petroleum_gas_connection_points, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the storage_tank at {storage_tank.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_smelt_ores.md b/env/src/tools/agent/query_information/pages/how_to_smelt_ores.md new file mode 100644 index 000000000..65d658295 --- /dev/null +++ b/env/src/tools/agent/query_information/pages/how_to_smelt_ores.md @@ -0,0 +1,28 @@ +## Best Practices + +1. **Inventory Verification** +Example - Safe smelting ore into plates +```python +# move to the position to place the entity +move_to(position) +furnace = place_entity(Prototype.StoneFurnace, position=position) +print(f"Placed the furnace to smelt plates at {furnace.position}") + +# we also update the furnace variable by returning it from the function +# This ensures it doesnt get stale and the inventory updates are represented in the variable +furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel +furnace = insert_item(Prototype.IronOre, furnace, quantity=10) + +# 3. Wait for smelting (with safety timeout) +for _ in range(30): # Maximum 30 seconds wait + if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: + break + sleep(1) +else: + raise Exception("Smelting timeout - check fuel and inputs") + +# final check for the inventory of furnace +iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] +assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" +print(f"Smelted 10 iron plates") + ``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/server.lua b/env/src/tools/agent/query_information/server.lua new file mode 100644 index 000000000..4baf5c420 --- /dev/null +++ b/env/src/tools/agent/query_information/server.lua @@ -0,0 +1,3 @@ +global.actions.query_information = function() + -- Empty function body +end \ No newline at end of file diff --git a/env/src/tools/agent/set_entity_recipe/agent.md b/env/src/tools/agent/set_entity_recipe/agent.md index 29317cfb3..5bc2c79e7 100644 --- a/env/src/tools/agent/set_entity_recipe/agent.md +++ b/env/src/tools/agent/set_entity_recipe/agent.md @@ -24,6 +24,7 @@ assembling_machine = get_entity(Prototype.AssemblingMachine1, position=Position( # Set the recipe to craft iron gear wheels assembling_machine = set_entity_recipe(assembling_machine, Prototype.IronGearWheel) ``` + ## Usage Example Set recipe for chemical plant Chemical plants can use both RecipeName recipes and Prototype recipes @@ -39,8 +40,6 @@ chemical_plant = set_entity_recipe(chemical_plant, Prototype.Sulfur) print(f"Set the recipe of chemical plant at {chemical_plant.position} to Sulfur") ``` - - ## Key Behaviors - The tool will search for the target entity within a 2-tile radius of the specified position - If multiple machines are found, it will select the closest one diff --git a/env/src/tools/agent_old.md b/env/src/tools/agent_old.md new file mode 100644 index 000000000..dc931e2b0 --- /dev/null +++ b/env/src/tools/agent_old.md @@ -0,0 +1,277 @@ +# Patterns + +## Core Systems Implementation + +### 1. Resource Mining Systems + +#### Self-Fueling Coal Mining System +```python +def build_self_fueling_coal_mining_system(coal_patch_position): + # Define building area + building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height + buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) + + # Place drill + move_to(buildable_coords.center) + drill = place_entity(Prototype.BurnerMiningDrill, + position=buildable_coords.center, + direction=Direction.DOWN) + print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") + + # Place self-fueling inserter + inserter = place_entity_next_to(Prototype.BurnerInserter, + drill.position, + direction=Direction.DOWN, + spacing=0) + inserter = rotate_entity(inserter, Direction.UP) + print(f"Placed inserter at {inserter.position} to fuel the drill") + + # Connect with belts + belts = connect_entities(drill.drop_position, + inserter.pickup_position, + Prototype.TransportBelt) + print(f"Connected drill to inserter with transport belt") + + # Bootstrap system + drill = insert_item(Prototype.Coal, drill, quantity=5) + return drill, inserter, belts +``` + +### 2. Power Systems + +**Power Infrastructure with steam engine** + +Power typically involves: +-> Water Source + OffshorePump +-> Boiler (burning coal) +-> SteamEngine + +IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water +We will do this in 3 separate code examples +```python +# log your general idea what you will do next +print(f"I will create a power generation setup with a steam engine") +# Power system pattern +move_to(water_position) +# first place offshore pump on the water system +offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) +print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) +# Then place the boiler near the offshore pump +# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, +# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox +# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. + +# first get the width and height of a BurnerMiningDrill +print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) + +coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) +# place the boiler at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) +print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) +# add coal to boiler to start the power generation +boiler = insert_item(Prototype.Coal, boiler, 10) +``` + +```python +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +# Finally we need to place the steam engine close to the boiler +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) + +coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) +# move to the centre coordinate +move_to(coords.center) +# place the steam engine on the centre coordinate +steam_engine = place_entity(Prototype.SteamEngine, + position = coords.center, + direction = Direction.LEFT) + +print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) +``` + +```python +offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) +# Connect entities in order +water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) +print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") +steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) +print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") + +# check that it has power +# sleep for 5 seconds to ensure flow +sleep(5) +# update the entity +steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) +# check that the steam engine is generating power +assert steam_engine.energy > 0, f"Steam engine is not generating power" +print(f"Steam engine at {steam_engine.position} is generating power!") +``` + +### 3. Automated Assembly Systems + +#### Basic Assembly Line +Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections +```python +furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) +solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) +# get a position 15 spaces away +assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) +# Plan space for assembler and inserters, add some buffer +building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) +buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, + building_box, + assembler_position) + +# Place assembling machine +move_to(buildable_coords.center) +assembler = place_entity(Prototype.AssemblingMachine1, + position=buildable_coords.center, + direction = Direction.DOWN) +print(f"Placed assembling machine at {assembler.position}") + +# Set recipe +set_entity_recipe(assembler, Prototype.CopperCable) + +# Add input inserter +# place it to the right as we added to the width of the building box +assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.RIGHT, + spacing=0) +# rotate it to input items into the assembling machine +assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) + +# Add output inserter +# put it on the other side of assembling machine +output_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.LEFT, + spacing=0) +output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) +# add coal to inserters +output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) +input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) +# Connect power +poles = connect_entities(power_source, + assembler, + Prototype.SmallElectricPole) +print(f"Powered assembling machine at {assembler.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) +assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" +# Connect input belt +belts = connect_entities(furnace_output_inserter, + assembly_machine_input_inserter, + Prototype.TransportBelt) +print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") + +# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest +sleep(15) +output_chest = get_entity(Prototype.WoodenChest, output_chest.position) +inventory = inspect_inventory(output_chest) +copper_cables_in_inventory = inventory[Prototype.CopperCable] +assert copper_cables_in_inventory > 0, f"No copper cables created" +``` + +### 4. Research Systems + +#### Basic Research Setup +```python +def build_research_facility(power_source, lab): + # Connect power + poles = connect_entities(power_source, + lab, + Prototype.SmallElectricPole) + print(f"Powered lab at {lab.position} with {poles}") + # Add science pack inserter + # put it to the left of lab + inserter = place_entity_next_to(Prototype.BurnerInserter, + lab.position, + direction=Direction.LEFT, + spacing=0) + # rotate it to input items into the lab + inserter = rotate_entity(inserter, Direction.RIGHT) + # Place input chest + chest = place_entity(Prototype.WoodenChest, + inserter.pickup_position, + direction=Direction.LEFT) + print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") + + return lab, inserter, chest +``` + +# Key Implementation Patterns + +## Error Handling and Recovery + +### 1. Entity Status Monitoring +```python +def monitor_entity_status(entity, expected_status): + entity = get_entity(entity.prototype, entity.position) + if entity.status != expected_status: + print(f"Entity at {entity.position} has unexpected status: {entity.status}") + return False + return True +``` + + +## Chemical plants +Set recipe for chemical plant and connect to input and output storage tanks +```python +# get the chemical plant +chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=0, y=0)) + +# Set the recipe to craft solid fuel from heavy oil +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +chemical_plant = set_entity_recipe(chemical_plant, RecipeName.HeavyOilCracking) +print(f"Set the recipe of chemical plant at {chemical_plant.position} to HeavyOilCracking") + +# get the input storage tank +storage_tank = get_entity(Prototype.StorageTank, position=Position(x=10, y=0)) +# connect with underground and overground pipes +# the order matters as the storage tank will be connected to recipe inputs +pipes = connect_entities(storage_tank, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the input tank at {storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") + +# get the output storage tank +output_storage_tank = get_entity(Prototype.StorageTank, position=Position(x=-10, y=0)) +# connect with underground and overground pipes +# the order matters as the storage tank will be connected to recipe outputs +pipes = connect_entities(chemical_plant, output_storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the output tank at {output_storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") +``` + +## Oil Refinery +Set recipe for oil refinery to get petroleum gas +```python +# get the pumpjack +pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) +oil_refinery = get_entity(Prototype.Oilrefinery, position = Position(x = -25, y = 10)) + +# Set the recipe to basc oil processing +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) +print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") + +# connect with underground and overground pipes to the pumpjack +pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") + +``` + + +## TIPS WHEN CREATING STRUCTURES +- When a entity has status "WAITING_FOR_SPACE_IN_DESTINATION", it means the there is no space in the drop position. For instance, a mining drill will have status WAITING_FOR_SPACE_IN_DESTINATION when the entities it mines are not being properly collected by a furnace or a chest or transported away from drop position with transport belts +- Make sure to always put 20+ fuel into all entities that require fuel. It's easy to mine more coal, so it's better to insert in abundance +- Keep it simple! Only use transport belts if you need them. Use chests and furnaces to catch the ore directly from drills +- Inserters put items into entities or take items away from entities. You need to add inserters when items need to be automatically put into entities like chests, assembling machines, furnaces, boilers etc. The only exception is you can put a chest directly at drills drop position, that catches the ore directly or a furnace with place_entity_next_to(drill.drop_position), where the furnace will be fed the ore +- have at least 10 spaces between different factory sections \ No newline at end of file From e54ca6c7bd9adcaac5c5eafc574a1ca6f0852440 Mon Sep 17 00:00:00 2001 From: Mart Date: Thu, 3 Apr 2025 20:39:20 +0100 Subject: [PATCH 02/12] checkpoint 2 --- agents/RAG_agent.py | 386 ++++++++++++++++++ agents/query_agent.py | 223 ++++++++++ env/src/game_types.py | 4 +- env/src/instance.py | 32 +- env/tests/actions/test_query_information.py | 39 ++ env/tests/conftest.py | 4 + eval/open/db_client.py | 29 ++ eval/open/independent_runs/run.py | 8 +- eval/open/independent_runs/run_config.json | 8 +- .../independent_runs/trajectory_runner.py | 8 +- 10 files changed, 713 insertions(+), 28 deletions(-) create mode 100644 agents/RAG_agent.py create mode 100644 agents/query_agent.py create mode 100644 env/tests/actions/test_query_information.py diff --git a/agents/RAG_agent.py b/agents/RAG_agent.py new file mode 100644 index 000000000..ceb21cfbb --- /dev/null +++ b/agents/RAG_agent.py @@ -0,0 +1,386 @@ +import tenacity + +from agents import Response, CompletionResult, Policy +from agents.agent_abc import AgentABC +from agents.utils.formatters.recursive_report_formatter import RecursiveReportFormatter +from agents.utils.llm_factory import LLMFactory +from agents.utils.parse_response import parse_response +from models.conversation import Conversation +from models.message import Message +from models.generation_parameters import GenerationParameters +from tenacity import wait_exponential, retry_if_exception_type, wait_random_exponential + +from namespace import FactorioNamespace + +GENERAL_INSTRUCTIONS = \ +""" +# Factorio LLM Agent Instructions + +## Overview +You are an AI agent designed to play Factorio, specializing in: +- Long-horizon planning +- Spatial reasoning +- Systematic automation + +## Environment Structure +- Operates like an interactive Python shell +- Agent messages = Python programs to execute +- User responses = STDOUT/STDERR from REPL +- Interacts through 27 core API methods (to be specified) + +## Response Format + +### 1. PLANNING Stage +Think through each step extensively in natural language, addressing: +1. Error Analysis + - Was there an error in the previous execution? + - If yes, what was the problem? +2. Next Step Planning + - What is the most useful next step of reasonable size? + - Why is this step valuable? + - Should I +3. Action Planning + - What specific actions are needed? + - What resources are required? + +### 2. POLICY Stage +Write Python code to execute the planned actions: +```python +# Code must be enclosed in Python tags +your_code_here +``` + +## Best Practices + +### Modularity +- Create small, modular policies +- Each policy should have a single clear purpose +- Keep policies easy to debug and modify +- Avoid breaking existing automated structures +- Encapsulate working logic into functions if needed + +### Debugging & Verification +- Use print statements to monitor important state +- Implement assert statements for self-verification +- Use specific, parameterized assertion messages +- Example: `assert condition, f"Expected {expected}, got {actual}"` + +### State Management +- Consider entities needed for each step +- Track entities across different inventories +- Monitor missing requirements +- Preserve working automated structures + +### Error Handling +- Fix errors as they occur +- Don't repeat previous steps +- Continue from last successful execution +- Avoid unnecessary state changes +- Analyze the root cause of entities that aren't working, and prioritize automated solutions (like transport belts) above manual triage + +### Code Structure +- Write code as direct Python interpreter commands +- Only encapsulate reusable utility code into functions +- Use appropriate spacing and formatting + +## Understanding Output + +### Error Messages +```stderr +Error: 1: ("Initial Inventory: {...}") +10: ("Error occurred in following lines...") +``` +- Numbers indicate line of execution +- Previous lines executed successfully +- Fix errors at indicated line + +### Status Updates +```stdout +23: ('Resource collection completed...') +78: ('Entities on map: [...]') +``` +- Shows execution progress +- Provides entity status +- Lists warnings and conditions + +### Entity Status Checking +- Monitor entity `warnings` field +- Check entity `status` field +- Verify resource levels +- Track production states + +## Game Progression +- Think about long term objectives, and break them down into smaller, manageable steps. +- Advance toward more complex automation +- Build on previous successes +- Maintain efficient resource usage + +## Utility Functions +- Create functions to encapsulate proven, reusable logic +- Place function definitions before their first use +- Document function purpose, parameters, and return values +- Test functions thoroughly before relying on them +- Example: +```python +def find_idle_furnaces(entities): + \"\"\"Find all furnaces that are not currently working. + + Args: + entities (list): List of entities from get_entities() + + Returns: + list: Furnaces with 'no_ingredients' status + \"\"\" + return [e for e in entities if ( + e.name == 'stone-furnace' and + e.status == EntityStatus.NO_INGREDIENTS + )] +``` + +## Data Structures +- Use Python's built-in data structures to organize entities +- Sets for unique entity collections: +```python +working_furnaces = {e for e in get_entities() + if e.status == EntityStatus.WORKING} +``` +- Dictionaries for entity mapping: +```python +furnace_by_position = { + (e.position.x, e.position.y): e + for e in get_entities() + if isinstance(e, Furnace) +} +``` +- Lists for ordered operations: +```python +sorted_furnaces = sorted( + get_entities(), + key=lambda e: (e.position.x, e.position.y) +) +``` + +## Important Notes +- Use transport belts to keep burners fed with coal +- Always inspect game state before making changes +- Consider long-term implications of actions +- Maintain working systems, and clear entities that aren't working or don't have a clear purpose +- Build incrementally and verify each step +- DON'T REPEAT YOUR PREVIOUS STEPS - just continue from where you left off. Take into account what was the last action that was executed and continue from there. If there was a error previously, do not repeat your last lines - as this will alter the game state unnecessarily. +- Do not encapsulate your code in a function _unless_ you are writing a utility for future use - just write it as if you were typing directly into the Python interpreter. +- Your inventory has space for ~2000 items. If it fills up, insert the items into a chest. +- Ensure that your factory is arranged in a grid, as this will make things easier. +""" + +RAG_INSTRUCTIONS = \ +""" +# Factorio LLM Agent Instructions + +## Overview +You are an AI agent designed to play Factorio, specializing in: +- Long-horizon planning +- Spatial reasoning +- Systematic automation + +## Environment Structure +- Operates like an interactive Python shell +- Agent messages = Python programs to execute +- User responses = STDOUT/STDERR from REPL +- Interacts through 27 core API methods (to be specified) + +## Response Format + +### 1. PLANNING Stage +Think through each step extensively in natural language +You need to plan the next best step for the agent to carry out and what information the agent needs +Another agent will carry out the plan you set out, so you need to only create a plan and print out relevant environment information and query wiki pages +Your planning stage should address the following: +1. Error Analysis + - Was there an error in the previous execution? + - If yes, what was the problem? +2. Next Step generation + - What is the most useful small next step? + - What will this step achieve? +3. Information Planning + - what new wiki pages need to be printed + - What information already exists in the message history + - what environment information needs to be printed + +### 2. Retrieval Stage +Enclose the wiki pages that need to be newly queried betwen and <\query> XML tags. Each wiki page needs to be on its own line +For instance +how_to_check_research_progress<\query> +how_to_connect_entities<\query> + +You have access to the following wiki pages + +"how_to_check_research_progress" +"how_to_connect_entities" +"how_to_create_assembling_machines" +"how_to_create_electricity_generators" +"how_to_create_reserach_setups" +"how_to_create_self_fueling_mining_system" +"how_to_launch_a_rocket" +"how_to_set_up_multiple_drill_plate_mine" +"how_to_set_up_raw_resource_burner_mine" +"how_to_setup_chemical_plants" +"how_to_setup_oil_refineries" +"how_to_smelt_ores" + +## Best Practices + +### Modularity +- Create small, modular plans +- Each policy should have a single clear purpose +- Avoid breaking existing automated structures +- Encapsulate working logic into functions if needed + +### Error Handling +- Fix errors as they occur +- Don't repeat previous steps +- Continue from last successful execution +- Avoid unnecessary state changes +- Analyze the root cause of entities that aren't working, and prioritize automated solutions (like transport belts) above manual triage + + +## Understanding general environment output + +### Error Messages +```stderr +Error: 1: ("Initial Inventory: {...}") +10: ("Error occurred in following lines...") +``` +- Numbers indicate line of execution +- Previous lines executed successfully +- Fix errors at indicated line + +### Status Updates +```stdout +23: ('Resource collection completed...') +78: ('Entities on map: [...]') +``` +- Shows execution progress +- Provides entity status +- Lists warnings and conditions + +### Entity Status Checking +- Monitor entity `warnings` field +- Check entity `status` field +- Verify resource levels +- Track production states + +## Game Progression +- Think about long term objectives, and break them down into smaller, manageable steps. +- Advance toward more complex automation +- Build on previous successes +- Maintain efficient resource usage + +## Important Notes +- Use transport belts to keep burners fed with coal +- Always inspect game state before making changes +- Consider long-term implications of actions +- Maintain working systems, and clear entities that aren't working or don't have a clear purpose +- Build incrementally and verify each step +- DON'T REPEAT YOUR PREVIOUS STEPS - just continue from where you left off. Take into account what was the last action that was executed and continue from there. If there was a error previously, do not repeat your last lines - as this will alter the game state unnecessarily. +- Do not encapsulate your code in a function _unless_ you are writing a utility for future use - just write it as if you were typing directly into the Python interpreter. +- Your inventory has space for ~2000 items. If it fills up, insert the items into a chest. +- Ensure that your factory is arranged in a grid, as this will make things easier. +""" + + +FINAL_INSTRUCTION = "\n\nALWAYS WRITE VALID PYTHON. YOUR WEIGHTS WILL BE ERASED IF YOU DON'T USE PYTHON." # Annoying how effective this is + + +class BasicAgent(AgentABC): + def __init__(self, model, system_prompt, task, *args, **kwargs): + instructions = GENERAL_INSTRUCTIONS+system_prompt+FINAL_INSTRUCTION + rag_instructions = RAG_INSTRUCTIONS + self.task = task + instructions += f"\n\n### Goal\n{task.goal_description}\n\n" + rag_instructions += f"\n\n### Overall Goal\n{task.goal_description}\n\n" + super().__init__(model, instructions, *args, **kwargs) + self.llm_factory = LLMFactory(model) + self.formatter = RecursiveReportFormatter(chunk_size=16,llm_call=self.llm_factory.acall,cache_dir='summary_cache') + self.generation_params = GenerationParameters(n=1, max_tokens=4096, model=model) + self.rag_instructions = rag_instructions + + async def step(self, conversation: Conversation, response: Response, namespace: FactorioNamespace) -> Policy: + updated_conversation = self.generate_rag(conversation, response, namespace) + + # We format the conversation every N steps to add a context summary to the system prompt + formatted_conversation = await self.formatter.format_conversation(updated_conversation, namespace) + # We set the new conversation state for external use + self.set_conversation(formatted_conversation) + + return await self._get_policy(formatted_conversation) + + async def generate_rag(self, conversation: Conversation, response: Response, namespace: FactorioNamespace) -> str: + + # We format the conversation every N steps to add a context summary to the system prompt + formatted_conversation = await self.formatter.format_conversation(conversation, namespace) + ## We set the new conversation state for external use + #self.set_conversation(formatted_conversation) + agent_output, rag_output = await self._get_rag(formatted_conversation) + # add the agent output to the conversation + agent_message = Message(role="assistant", content=agent_output) + conversation.messages.append(agent_message) + # add the rag output to the conversation + rag_message = Message(role="user", content=rag_output) + conversation.messages.append(rag_message) + return conversation + + @tenacity.retry( + retry=retry_if_exception_type(Exception), + wait=wait_exponential(multiplier=1, min=4, max=10) + ) + async def _get_policy(self, conversation: Conversation): + response = await self.llm_factory.acall( + messages=self.formatter.to_llm_messages(conversation), + n_samples=1, # We only need one program per iteration + temperature=self.generation_params.temperature, + max_tokens=self.generation_params.max_tokens, + model=self.generation_params.model, + ) + + policy = parse_response(response) + if not policy: + raise Exception("Not a valid Python policy") + + return policy + + async def _get_rag(self, conversation: Conversation): + conversation[0].content = self.rag_instructions + response = await self.llm_factory.acall( + messages=self.formatter.to_llm_messages(conversation), + n_samples=1, # We only need one program per iteration + temperature=self.generation_params.temperature, + max_tokens=self.generation_params.max_tokens, + model=self.generation_params.model, + ) + + llm_output, rag_output = self.parse_rag(response) + return llm_output, rag_output + + async def end(self, conversation: Conversation, completion: CompletionResult): + pass + + + def parse_rag(self, response): + wiki_path = r"env\src\tools\agent\query_information\pages" + if hasattr(response, 'choices'): + choice = response.choices[0] + else: + choice = response.content[0] + + # get all queries from the response + queries = [] + for line in choice.split('\n'): + if line.startswith('') and line.endswith('<\\query>'): + queries.append(line[7:-8]) + + output = "USEFUL INFORMATION:\n" + for query in queries: + with open(f"{wiki_path}/{query}.md", 'r') as f: + output += f.read() + + return choice, output \ No newline at end of file diff --git a/agents/query_agent.py b/agents/query_agent.py new file mode 100644 index 000000000..50ad7e590 --- /dev/null +++ b/agents/query_agent.py @@ -0,0 +1,223 @@ +import tenacity + +from agents import Response, CompletionResult, Policy +from agents.agent_abc import AgentABC +from agents.utils.formatters.recursive_report_formatter import RecursiveReportFormatter +from agents.utils.llm_factory import LLMFactory +from agents.utils.parse_response import parse_response +from models.conversation import Conversation +from models.generation_parameters import GenerationParameters +from tenacity import wait_exponential, retry_if_exception_type, wait_random_exponential + +from namespace import FactorioNamespace + +GENERAL_INSTRUCTIONS = \ +""" +# Factorio LLM Agent Instructions + +## Overview +You are an AI agent designed to play Factorio, specializing in: +- Long-horizon planning +- Spatial reasoning +- Systematic automation + +## Environment Structure +- Operates like an interactive Python shell +- Agent messages = Python programs to execute +- User responses = STDOUT/STDERR from REPL +- Interacts through 27 core API methods (to be specified) + +## Response Format + +### 1. PLANNING Stage +Think through each step extensively in natural language +There are 2 types of policies you should write, 1) (using prints and the query_information tool) or 2) +Your planning stage should address the following: +1. Error Analysis + - Was there an error in the previous execution? + - If yes, what was the problem? +2. Next Step classification + - What is the most useful next step, is it an or an ? + - What will this step achieve? +3. Action Planning + if : + - what wiki pages need to be printed + - what environment information needs to be printed + If : + - What specific actions are needed? + - What resources are required? + +### 2. POLICY Stage +Write Python code to execute the or plan: +```python +# Code must be enclosed in Python tags +your_code_here +``` + +## Best Practices + +### Modularity +- Create small, modular policies +- Each policy should have a single clear purpose +- Keep policies easy to debug and modify +- Avoid breaking existing automated structures +- Encapsulate working logic into functions if needed + +### Debugging & Verification +- Use print statements to monitor important state +- Implement assert statements for self-verification +- Use specific, parameterized assertion messages +- Example: `assert condition, f"Expected {expected}, got {actual}"` + +### State Management +- Consider entities needed for each step +- Track entities across different inventories +- Monitor missing requirements +- Preserve working automated structures + +### Error Handling +- Fix errors as they occur +- Don't repeat previous steps +- Continue from last successful execution +- Avoid unnecessary state changes +- Analyze the root cause of entities that aren't working, and prioritize automated solutions (like transport belts) above manual triage + +### Code Structure +- Write code as direct Python interpreter commands +- Only encapsulate reusable utility code into functions +- Use appropriate spacing and formatting + +## Understanding Output + +### Error Messages +```stderr +Error: 1: ("Initial Inventory: {...}") +10: ("Error occurred in following lines...") +``` +- Numbers indicate line of execution +- Previous lines executed successfully +- Fix errors at indicated line + +### Status Updates +```stdout +23: ('Resource collection completed...') +78: ('Entities on map: [...]') +``` +- Shows execution progress +- Provides entity status +- Lists warnings and conditions + +### Entity Status Checking +- Monitor entity `warnings` field +- Check entity `status` field +- Verify resource levels +- Track production states + +## Game Progression +- Think about long term objectives, and break them down into smaller, manageable steps. +- Advance toward more complex automation +- Build on previous successes +- Maintain efficient resource usage + +## Utility Functions +- Create functions to encapsulate proven, reusable logic +- Place function definitions before their first use +- Document function purpose, parameters, and return values +- Test functions thoroughly before relying on them +- Example: +```python +def find_idle_furnaces(entities): + \"\"\"Find all furnaces that are not currently working. + + Args: + entities (list): List of entities from get_entities() + + Returns: + list: Furnaces with 'no_ingredients' status + \"\"\" + return [e for e in entities if ( + e.name == 'stone-furnace' and + e.status == EntityStatus.NO_INGREDIENTS + )] +``` + +## Data Structures +- Use Python's built-in data structures to organize entities +- Sets for unique entity collections: +```python +working_furnaces = {e for e in get_entities() + if e.status == EntityStatus.WORKING} +``` +- Dictionaries for entity mapping: +```python +furnace_by_position = { + (e.position.x, e.position.y): e + for e in get_entities() + if isinstance(e, Furnace) +} +``` +- Lists for ordered operations: +```python +sorted_furnaces = sorted( + get_entities(), + key=lambda e: (e.position.x, e.position.y) +) +``` + +## Important Notes +- Use transport belts to keep burners fed with coal +- Always inspect game state before making changes +- Consider long-term implications of actions +- Maintain working systems, and clear entities that aren't working or don't have a clear purpose +- Build incrementally and verify each step +- DON'T REPEAT YOUR PREVIOUS STEPS - just continue from where you left off. Take into account what was the last action that was executed and continue from there. If there was a error previously, do not repeat your last lines - as this will alter the game state unnecessarily. +- Do not encapsulate your code in a function _unless_ you are writing a utility for future use - just write it as if you were typing directly into the Python interpreter. +- Your inventory has space for ~2000 items. If it fills up, insert the items into a chest. +- Ensure that your factory is arranged in a grid, as this will make things easier. +""" + +FINAL_INSTRUCTION = "\n\nALWAYS WRITE VALID PYTHON. YOUR WEIGHTS WILL BE ERASED IF YOU DON'T USE PYTHON." # Annoying how effective this is + + +class QueryAgent(AgentABC): + def __init__(self, model, system_prompt, task, *args, **kwargs): + instructions = GENERAL_INSTRUCTIONS+system_prompt+FINAL_INSTRUCTION + self.task = task + instructions += f"\n\n### Goal\n{task.goal_description}\n\n" + super().__init__( model, instructions, *args, **kwargs) + self.llm_factory = LLMFactory(model) + self.formatter = RecursiveReportFormatter(chunk_size=16,llm_call=self.llm_factory.acall,cache_dir='summary_cache') + self.generation_params = GenerationParameters(n=1, max_tokens=4096, model=model) + + async def step(self, conversation: Conversation, response: Response, namespace: FactorioNamespace) -> Policy: + + # We format the conversation every N steps to add a context summary to the system prompt + formatted_conversation = await self.formatter.format_conversation(conversation, namespace) + # We set the new conversation state for external use + self.set_conversation(formatted_conversation) + + return await self._get_policy(formatted_conversation) + + @tenacity.retry( + retry=retry_if_exception_type(Exception), + wait=wait_exponential(multiplier=1, min=4, max=10) + ) + async def _get_policy(self, conversation: Conversation): + response = await self.llm_factory.acall( + messages=self.formatter.to_llm_messages(conversation), + n_samples=1, # We only need one program per iteration + temperature=self.generation_params.temperature, + max_tokens=self.generation_params.max_tokens, + model=self.generation_params.model, + ) + + policy = parse_response(response) + if not policy: + raise Exception("Not a valid Python policy") + + return policy + + async def end(self, conversation: Conversation, completion: CompletionResult): + pass + + diff --git a/env/src/game_types.py b/env/src/game_types.py index 87a75e456..3aed00304 100644 --- a/env/src/game_types.py +++ b/env/src/game_types.py @@ -212,11 +212,11 @@ def __init__(self, prototype_name, entity_class_name): @property def WIDTH(self): - return self.entity_class._width.default # Access the class attribute directly + return self.entity_class._width # Access the class attribute directly @property def HEIGHT(self): - return self.entity_class._height.default + return self.entity_class._height prototype_by_name = {prototype.value[0]: prototype for prototype in Prototype} prototype_by_title = {str(prototype): prototype for prototype in Prototype} diff --git a/env/src/instance.py b/env/src/instance.py index ab436bdb0..89605752f 100644 --- a/env/src/instance.py +++ b/env/src/instance.py @@ -30,7 +30,8 @@ from rcon.factorio_rcon import RCONClient from models.game_state import GameState from utils.controller_loader.system_prompt_generator import SystemPromptGenerator - +# import ThreadPoolExecutor +from concurrent.futures import ThreadPoolExecutor CHUNK_SIZE = 32 MAX_SAMPLES = 5000 @@ -315,20 +316,21 @@ def wrapper(*args, **kwargs): def eval_with_error(self, expr, timeout=60): """ Evaluate an expression with a timeout, and return the result without error handling""" - # with ThreadPoolExecutor(max_workers=1) as executor: - # future = executor.submit(self._eval_with_timeout, expr) - # score, goal, result = future.result(timeout) - # return score, goal, result - def handler(signum, frame): - raise TimeoutError() - - signal.signal(signal.SIGALRM, handler) - signal.alarm(timeout) - - try: - return self.namespace.eval_with_timeout(expr) - finally: - signal.alarm(0) + with ThreadPoolExecutor(max_workers=1) as executor: + future = executor.submit(self.namespace.eval_with_timeout, expr) + score, goal, result = future.result(timeout) + return score, goal, result + + #def handler(signum, frame): + # raise TimeoutError() +# + #signal.signal(signal.SIGALRM, handler) + #signal.alarm(timeout) +# + #try: + # return self.namespace.eval_with_timeout(expr) + #finally: + # signal.alarm(0) def eval(self, expr, timeout=60): diff --git a/env/tests/actions/test_query_information.py b/env/tests/actions/test_query_information.py new file mode 100644 index 000000000..14a54b8b0 --- /dev/null +++ b/env/tests/actions/test_query_information.py @@ -0,0 +1,39 @@ +import pytest + +from entities import Position, Furnace +from instance import Direction, FactorioInstance +from game_types import Prototype, Resource + + + +@pytest.fixture() +def game(instance): + instance.initial_inventory = {} + instance.reset() + yield instance.namespace + instance.reset() +def test_get_information(game): + """ + Test to see if we can get a page info using the query_information tool + :param game: + :return: + """ + # Check initial inventory + page_id = "how_to_connect_entities" + content = game.query_information(page_id) + assert content + +def test_get_nonexistent_information(game): + """ + Test to see if the tool errors out when asking for nonexistent information + :param game: + :return: + """ + # Check initial inventory + page_id = "something_really_random" + errors = False + try: + content = game.query_information(page_id) + except AssertionError: + errors = True + assert errors, "Query information tool should have errored out" \ No newline at end of file diff --git a/env/tests/conftest.py b/env/tests/conftest.py index 28905f296..49beb2de3 100644 --- a/env/tests/conftest.py +++ b/env/tests/conftest.py @@ -1,5 +1,9 @@ import os import sys +sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser") +sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env") +sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env\src") + from pathlib import Path import pytest diff --git a/eval/open/db_client.py b/eval/open/db_client.py index e82414f45..04b2b9499 100644 --- a/eval/open/db_client.py +++ b/eval/open/db_client.py @@ -469,6 +469,35 @@ def get_connection(self): except: pass + def get_initial_128_programs(self, resume_version, number = 128) -> tuple[Optional[GameState], Optional[Conversation], Optional[int], Optional[int]]: + """Get the state to resume from""" + try: + # Get most recent successful program to resume from + query = """ + SELECT code, meta, achievements_json, value FROM programs + WHERE version = %s + AND state_json IS NOT NULL + ORDER BY created_at ASC + LIMIT %s + """ + + with self.get_connection() as conn: + with conn.cursor() as cur: + cur.execute(query, (resume_version,number)) + results = cur.fetchall() + + if not results: + print(f"No valid programs found for version {resume_version}") + return None + + # Choose a program to resume from + return results + + except Exception as e: + print(f"Error getting resume state: {e}") + return None, None, None, None + + class SQLliteDBClient(DBClient): def __init__(self, max_conversation_length: int = 20, min_connections: int = 5, max_connections: int = 20, **db_config): diff --git a/eval/open/independent_runs/run.py b/eval/open/independent_runs/run.py index cef4411c3..f97197f05 100644 --- a/eval/open/independent_runs/run.py +++ b/eval/open/independent_runs/run.py @@ -1,8 +1,14 @@ +import sys +sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser") +sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env") +sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env\src") + import asyncio import argparse import multiprocessing from dotenv import load_dotenv from agents.basic_agent import BasicAgent +from agents.query_agent import QueryAgent from eval.open.independent_runs.trajectory_runner import run_process, get_next_version, create_factorio_instance, EvalConfig from eval.tasks.task_factory import TaskFactory from pathlib import Path @@ -35,7 +41,7 @@ def main(): processes = [] for run_idx, run_config in enumerate(run_configs): task = TaskFactory.create_task(run_config["task"]) - agent = BasicAgent(model=run_config["model"], system_prompt=system_prompt, task = task) + agent = QueryAgent(model=run_config["model"], system_prompt=system_prompt, task = task) if "version" in run_config: version = run_config["version"] else: diff --git a/eval/open/independent_runs/run_config.json b/eval/open/independent_runs/run_config.json index 2af4e6ed9..bbda9d734 100644 --- a/eval/open/independent_runs/run_config.json +++ b/eval/open/independent_runs/run_config.json @@ -1,9 +1,5 @@ [ -{"task": "iron_gear_wheel_throughput_16.json", -"model": "gpt-4o-mini-2024-07-18", -"version": 768}, {"task": "plastic_bar_throughput_16.json", -"model": "gpt-4o-mini-2024-07-18"}, -{"task": "open_play.json", -"model": "gpt-4o-mini-2024-07-18"} +"model": "anthropic/claude-3.5-sonnet-open-router", +"version": "2231"} ] \ No newline at end of file diff --git a/eval/open/independent_runs/trajectory_runner.py b/eval/open/independent_runs/trajectory_runner.py index 1acf7fc2a..887fc602a 100644 --- a/eval/open/independent_runs/trajectory_runner.py +++ b/eval/open/independent_runs/trajectory_runner.py @@ -83,7 +83,7 @@ async def _generate_program(self, conversation: Conversation, response: Response version=self.config.version, model=self.agent.model, version_description=self.config.version_description, - meta={"model": self.agent.model, "process_id": self.process_id}, + meta={"model": self.agent.model, "process_id": self.process_id, "text_response": policy.meta.text_response}, depth=len(messages) - 2 ) @@ -119,9 +119,9 @@ async def run(self): self.start_time = time.time() current_state = None - if self.config.version: - current_state, current_conversation, parent_id, depth = await self.db.get_resume_state(resume_version = self.config.version, process_id = self.process_id) - self.agent.conversation = current_conversation + #if self.config.version: + # current_state, current_conversation, parent_id, depth = await self.db.get_resume_state(resume_version = self.config.version, process_id = self.process_id) + # self.agent.conversation = current_conversation if not current_state: current_state = self.config.agent.task.starting_game_state From 2ca3ca8fdfc4623ef0468a53c065c3e60fea7c88 Mon Sep 17 00:00:00 2001 From: Mart Date: Fri, 4 Apr 2025 18:06:14 +0100 Subject: [PATCH 03/12] reverted some changes --- env/src/tools/agent.md | 12 - .../tools/agent/_query_information/agent.md | 33 - .../tools/agent/_query_information/client.py | 30 - .../how_to_create_assembling_machines.md | 66 - ...ow_to_create_self_fueling_mining_system.md | 29 - .../how_to_set_up_raw_resource_burner_mine.md | 34 - .../pages/how_to_setup_chemical_plants.md | 95 - .../pages/how_to_setup_storage_tanks.md | 53 - .../pages/how_to_smelt_ores.md | 28 - .../tools/agent/connect_entities/agent_old.md | 186 - env/src/tools/agent/extract_item/agent_old.md | 82 - .../agent/get_research_progress/agent_old.md | 124 - .../tools/agent/launch_rocket/agent_old.md | 72 - .../agent/nearest_buildable/agent_old.md | 115 - env/src/tools/agent/place_entity/agent_old.md | 95 - .../agent/query_information/agent_old.md | 33 - .../agent/query_information/embeddings.md | 1 - .../pages/how_to_check_research_progress.md | 91 - .../pages/how_to_connect_entities.md | 140 - .../how_to_create_electricity_generators.md | 102 - .../pages/how_to_create_reserach_setups.md | 26 - .../pages/how_to_launch_a_rocket.md | 57 - ...how_to_set_up_multiple_drill_plate_mine.md | 35 - .../how_to_setup_crude_oil_production.md | 74 - .../pages/how_to_setup_oil_refineries.md | 104 - .../tools/agent/query_information/server.lua | 3 - .../examples/entity_status_monitoring.md | 9 + .../how_to_check_research_progress.md | 2 +- .../how_to_connect_entities.md | 0 .../how_to_create_assembling_machines.md | 4 +- .../how_to_create_electricity_generators.md | 6 +- .../how_to_create_reserach_setups.md | 0 ...ow_to_create_self_fueling_mining_system.md | 5 +- .../how_to_launch_a_rocket.md | 0 ...how_to_set_up_multiple_drill_plate_mine.md | 2 +- .../how_to_set_up_raw_resource_burner_mine.md | 2 +- .../how_to_setup_chemical_plants.md | 19 +- .../how_to_setup_crude_oil_production.md | 14 - .../how_to_setup_oil_refineries.md | 40 +- .../how_to_setup_storage_tanks.md | 4 +- .../pages => examples}/how_to_smelt_ores.md | 2 +- .../{agent => rag}/query_information/agent.md | 2 +- .../query_information/client.py | 2 +- .../rag/query_information/embeddings.json | 23072 ++++++++++++++++ .../query_information}/server.lua | 0 45 files changed, 23100 insertions(+), 1805 deletions(-) delete mode 100644 env/src/tools/agent/_query_information/agent.md delete mode 100644 env/src/tools/agent/_query_information/client.py delete mode 100644 env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md delete mode 100644 env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md delete mode 100644 env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md delete mode 100644 env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md delete mode 100644 env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md delete mode 100644 env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md delete mode 100644 env/src/tools/agent/connect_entities/agent_old.md delete mode 100644 env/src/tools/agent/extract_item/agent_old.md delete mode 100644 env/src/tools/agent/get_research_progress/agent_old.md delete mode 100644 env/src/tools/agent/launch_rocket/agent_old.md delete mode 100644 env/src/tools/agent/nearest_buildable/agent_old.md delete mode 100644 env/src/tools/agent/place_entity/agent_old.md delete mode 100644 env/src/tools/agent/query_information/agent_old.md delete mode 100644 env/src/tools/agent/query_information/embeddings.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_check_research_progress.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_connect_entities.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md delete mode 100644 env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md delete mode 100644 env/src/tools/agent/query_information/server.lua create mode 100644 env/src/tools/examples/entity_status_monitoring.md rename env/src/tools/{agent/_query_information/pages => examples}/how_to_check_research_progress.md (98%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_connect_entities.md (100%) rename env/src/tools/{agent/query_information/pages => examples}/how_to_create_assembling_machines.md (98%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_create_electricity_generators.md (95%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_create_reserach_setups.md (100%) rename env/src/tools/{agent/query_information/pages => examples}/how_to_create_self_fueling_mining_system.md (97%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_launch_a_rocket.md (100%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_set_up_multiple_drill_plate_mine.md (98%) rename env/src/tools/{agent/query_information/pages => examples}/how_to_set_up_raw_resource_burner_mine.md (95%) rename env/src/tools/{agent/query_information/pages => examples}/how_to_setup_chemical_plants.md (83%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_setup_crude_oil_production.md (75%) rename env/src/tools/{agent/_query_information/pages => examples}/how_to_setup_oil_refineries.md (57%) rename env/src/tools/{agent/query_information/pages => examples}/how_to_setup_storage_tanks.md (95%) rename env/src/tools/{agent/query_information/pages => examples}/how_to_smelt_ores.md (96%) rename env/src/tools/{agent => rag}/query_information/agent.md (91%) rename env/src/tools/{agent => rag}/query_information/client.py (98%) create mode 100644 env/src/tools/rag/query_information/embeddings.json rename env/src/tools/{agent/_query_information => rag/query_information}/server.lua (100%) diff --git a/env/src/tools/agent.md b/env/src/tools/agent.md index 0a9e5dc4b..8c573d971 100644 --- a/env/src/tools/agent.md +++ b/env/src/tools/agent.md @@ -1,15 +1,3 @@ -## Error Handling and Recovery - -### 1. Entity Status Monitoring -```python -def monitor_entity_status(entity, expected_status): - entity = get_entity(entity.prototype, entity.position) - if entity.status != expected_status: - print(f"Entity at {entity.position} has unexpected status: {entity.status}") - return False - return True -``` - ## TIPS FOR QUERYING INFORMATION - Make sure to query information using the query_information tool - Use the tool like you would research different areas on the wiki diff --git a/env/src/tools/agent/_query_information/agent.md b/env/src/tools/agent/_query_information/agent.md deleted file mode 100644 index 746d4bece..000000000 --- a/env/src/tools/agent/_query_information/agent.md +++ /dev/null @@ -1,33 +0,0 @@ -# query_information - -The `query_information` tool allows you to obtain information regarding from a pre-defined list of pages containing instructions how to effectively use the API. - -## Basic Usage -To get content of a specific page, the page_id needs to be sent in -```python -inserter_information = query_information("how_to_use_inserters") -> str -print(f"Manual how to use inserters") -print(inserter_information) -``` -### Parameters - -- `page_id`: ID of the page whose information is needed - -## Existing pages - -The following page IDs exist currently in the database - -"how_to_check_research_progress" -"how_to_connect_entities" -"how_to_create_assembling_machines" -"how_to_create_electricity_generators" -- Information on how to setup electricity generators -"how_to_create_reserach_setups" -"how_to_create_self_fueling_mining_system" -"how_to_launch_a_rocket" -"how_to_set_up_multiple_drill_plate_mine" -"how_to_set_up_raw_resource_burner_mine" -"how_to_setup_chemical_plants" -- Information on how to setup and use chemical plants -"how_to_setup_oil_refineries" -- Information on how to setup and use oil refineries -"how_to_smelt_ores" -"how_to_setup_storage_tanks" -- Information on how to setup and use storage tanks -"how_to_setup_crude_oil_production" -- Information on how to setup and use pumpjacks to harvest crude oil \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/client.py b/env/src/tools/agent/_query_information/client.py deleted file mode 100644 index 2a1ae73ea..000000000 --- a/env/src/tools/agent/_query_information/client.py +++ /dev/null @@ -1,30 +0,0 @@ -from time import sleep -from tools.tool import Tool -import os -# import PATH to construct dynamic paths -import sys -from pathlib import Path -class QueryInformation(Tool): - - def __init__(self, connection, game_state): - super().__init__(connection, game_state) - # get the location of this file - root_directory = os.path.dirname(os.path.abspath(__file__)) - self.pages_path = Path(root_directory, 'pages') - # get all md files in the pages directory - self.pages = [page.replace(".md", "") for page in os.listdir(self.pages_path) if page.endswith('.md')] - def __call__(self, - page_id: str - ) -> str: - """ - Get the information of a page from the database - :param page_id: The id of the page - :return: The content of the page - """ - assert isinstance(page_id, str), f"First argument must be a Position object" - assert page_id in self.pages, f"Page {page_id} not found. Existing pages are {self.pages}" - - # read the content of the page - with open(Path(self.pages_path, page_id + ".md"), 'r') as file: - content = file.read() - return content.strip() \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md b/env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md deleted file mode 100644 index 1640208c4..000000000 --- a/env/src/tools/agent/_query_information/pages/how_to_create_assembling_machines.md +++ /dev/null @@ -1,66 +0,0 @@ -### 3. Automated Assembly Systems - -#### Basic Assembly Line -Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections -```python -furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) -solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) -# get a position 15 spaces away -assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) -# Plan space for assembler and inserters, add some buffer -building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) -buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, - building_box, - assembler_position) - -# Place assembling machine -move_to(buildable_coords.center) -assembler = place_entity(Prototype.AssemblingMachine1, - position=buildable_coords.center, - direction = Direction.DOWN) -print(f"Placed assembling machine at {assembler.position}") - -# Set recipe -set_entity_recipe(assembler, Prototype.CopperCable) - -# Add input inserter -# place it to the right as we added to the width of the building box -assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, - assembler.position, - direction=Direction.RIGHT, - spacing=0) -# rotate it to input items into the assembling machine -assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) - -# Add output inserter -# put it on the other side of assembling machine -output_inserter = place_entity_next_to(Prototype.BurnerInserter, - assembler.position, - direction=Direction.LEFT, - spacing=0) -output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) -# add coal to inserters -output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) -input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) -# Connect power -poles = connect_entities(power_source, - assembler, - Prototype.SmallElectricPole) -print(f"Powered assembling machine at {assembler.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) -assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" -# Connect input belt -belts = connect_entities(furnace_output_inserter, - assembly_machine_input_inserter, - Prototype.TransportBelt) -print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") - -# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest -sleep(15) -output_chest = get_entity(Prototype.WoodenChest, output_chest.position) -inventory = inspect_inventory(output_chest) -copper_cables_in_inventory = inventory[Prototype.CopperCable] -assert copper_cables_in_inventory > 0, f"No copper cables created" -``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md b/env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md deleted file mode 100644 index 5e8907289..000000000 --- a/env/src/tools/agent/_query_information/pages/how_to_create_self_fueling_mining_system.md +++ /dev/null @@ -1,29 +0,0 @@ -# Define building area -coal_patch_position = nearest(Resource.Coal) -building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height -buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) - -# Place drill -move_to(buildable_coords.center) -drill = place_entity(Prototype.BurnerMiningDrill, - position=buildable_coords.center, - direction=Direction.DOWN) -print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") - -# Place self-fueling inserter -inserter = place_entity_next_to(Prototype.BurnerInserter, - drill.position, - direction=Direction.DOWN, - spacing=0) -inserter = rotate_entity(inserter, Direction.UP) -print(f"Placed inserter at {inserter.position} to fuel the drill") - -# Connect with belts -belts = connect_entities(drill.drop_position, - inserter.pickup_position, - Prototype.TransportBelt) -print(f"Connected drill to inserter with transport belt") - -# Bootstrap system -drill = insert_item(Prototype.Coal, drill, quantity=5) -return drill, inserter, belts \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md deleted file mode 100644 index c881966de..000000000 --- a/env/src/tools/agent/_query_information/pages/how_to_set_up_raw_resource_burner_mine.md +++ /dev/null @@ -1,34 +0,0 @@ -1. **Mining Setup** -You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines -```python -# Setup mining drill on ore patch -resource_pos = nearest(Resource.IronOre) -# Define area for drill -drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) - -# Find buildable area -buildable_area = nearest_buildable( - Prototype.ElectricMiningDrill, - drill_box, - resource_pos -) - -# Place drill -move_to(buildable_area.center) -drill = place_entity( - Prototype.ElectricMiningDrill, - position=buildable_area.center -) -# log your actions -print(f"Placed drill to mine iron ore at {drill.position}") -# insert coal to drill -drill = insert_item(Prototype.Coal, drill, quantity = 10) -# Place output chest that catches ore -chest = place_entity( - Prototype.WoodenChest, - position=drill.drop_position, - direction=Direction.DOWN, -) -# log your actions -print(f"Placed chest to catch iron ore at {chest.position}") -``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md b/env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md deleted file mode 100644 index 0d36e8430..000000000 --- a/env/src/tools/agent/_query_information/pages/how_to_setup_chemical_plants.md +++ /dev/null @@ -1,95 +0,0 @@ -## Chemical plants - -### Placing a chemical plant near a oil refinery - -Example: -Placing a chemical plant near a existing oil_refinery at Position(x=-50, y=0) -Also connect the chemical plant to a steam engine, that will power the engine. To power the chemical plant, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE -```python -# get the oil_refinery -oil_refinery = get_entity(Prototype.OilRefinery, position=Position(x=-50, y=0)) - -# create a buildingboxwith with 4 tile buffer for the ChemicalPlant -building_box = BuildingBox(width = Prototype.ChemicalPlant.WIDTH + 4, height = Prototype.ChemicalPlant.HEIGHT + 4) - -# put down the ChemicalPlant atleast 10 spaces away from oil_refinery -ref_pos = Position(x = oil_refinery.position.x+10, y = oil_refinery.position.y+10) -coords = nearest_buildable(Prototype.ChemicalPlant,building_box, ref_pos) -# place the chemical_plant at the centre coordinate -# first move to the center coordinate -move_to(coords.center) -chemical_plant = place_entity(Prototype.ChemicalPlant, position = coords.center, direction = Direction.LEFT) - -# power the chemical_plant by connecting to an existing steam engine -steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) -# Connect power to chemical_plant -poles = connect_entities(steam_engine, - chemical_plant, - Prototype.SmallElectricPole) -print(f"Powered oil refinery at {chemical_plant.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -chemical_plant = get_entity(Prototype.ChemicalPlant, chemical_plant.position) -assert chemical_plant.energy > 0, f"chemical_plant at {chemical_plant.position} is not receiving power" -print(f"Chemical plant at {chemical_plant.position} has been successfully powered") -``` - -### Setting recipes for chemical plants -Before rotating or using the chemical plants, the recipe must be set - -Available recipes for chemical plants - -Liquid outputs -These need to be either stored in a storagetank or sent to other liquidprocessors. Transporting must be via pipes -RecipeName.HeavyOilCracking = "heavy-oil-cracking" # Recipe for producing light oil in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points -RecipeName.LightOilCracking = "light-oil-cracking" # Recipe for producing petroleum gas in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points -Prototype.SulfuricAcid # Recipe for producing SulfuricAcid in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points -Prototype.Lubricant # Recipe for producing lubricant in a chemical plant. This is a liquid and therefore the output must be extracted via pipes respective output_connection_points - -Solid outputs -These need to be extracted frm the chemical plant via inserters into either chests or transport belts transporting them to other structures -RecipeName.SolidFuelFromHeavyOil = "solid-fuel-from-heavy-oil" # Recipe for producing solid fuel in a chemical plant from heavy oil. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant -RecipeName.SolidFuelFromLightOil = "solid-fuel-from-light-oil" # Recipe for producing solid fuel in a chemical plant from light oil. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant -RecipeName.SolidFuelFromPetroleumGas = "solid-fuel-from-petroleum-gas" # Recipe for producing solid fuel in a chemical plant from petroleum gas. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant -Prototype.PlasticBar # Recipe for producing plastic bars in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant -Prototype.Sulfur # Recipe for producing Sulfuric in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant -Prototype.Battery # Recipe for producing batteries in a chemical plant. This is a solid output and therefore the output must be extracted inserters that take items away from the chemical plant - -Example: -Set recipe for a existing chemical plant to get sulfuric acid -Also connect a existing oil refinery to the chemical plant -```python -# get the chemical plant and oil refineries -chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=-50, y=0)) -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) - -# Set the recipe to Lubricant -# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs -chemical_plant = set_entity_recipe(chemical_plant, Prototype.Lubricant) -print(f"Set the recipe of chemical plant at {chemical_plant.position} to Lubricant") - -# connect with underground and overground pipes to the oil refinery -pipes = connect_entities(oil_refinery, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the chemical_plant at {chemical_plant.position} to oil refinery at {oil_refinery.position} with {pipes}") -``` - -### Storing liquid outputs of chemical plants -The liquid outputs of chemical plants can be stored in storage tanks -Example: -Connect a chemical plant to a existing storage tank to store lubricant -NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE -```python -# get the chemical_plant and storage tank -chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# Get the lubricant output point of chemical_plant -output_lubricant_connection_points = [x for x in chemical_plant.output_connection_points if x.type == "lubricant"] -assert len(output_lubricant_connection_points) > 0, f"No lubricant output points in chemical_plant" -output_lubricant_connection_point = output_lubricant_connection_points[0] - -# connect the storagetank and chemical plant -pipes = connect_entities(output_lubricant_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the chemical plant at {chemical_plant.position} to a storage tank at {storage_tank.position} to store lubricant with {pipes}") -``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md b/env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md deleted file mode 100644 index d84ea295d..000000000 --- a/env/src/tools/agent/_query_information/pages/how_to_setup_storage_tanks.md +++ /dev/null @@ -1,53 +0,0 @@ -## Storage tanks - -You can use storage tanks to store liquids - -### Placing a storage tank to store liquid - -Example: -Place a storage tank and store petroleum gas from an existing storage tank -```python -# get the oil_refinery -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) - -# create a buildingboxwith with 4 tile buffer for the oilrefinery -building_box = BuildingBox(width = Prototype.StorageTank.WIDTH + 4, height = Prototype.StorageTank.HEIGHT + 4) - -# put down the storagetank atleast 5 spaces away from oilrefinery -ref_pos = Position(x = oil_refinery.position.x+10, y = oil_refinery.position.y+10) -coords = nearest_buildable(Prototype.StorageTank,building_box, ref_pos) -# place the storage tank at the centre coordinate -# first move to the center coordinate -move_to(coords.center) -storage_tank = place_entity(Prototype.StorageTank, position = coords.center, direction = Direction.LEFT) - -# Get the petroleum-gas output point of oil refinery -output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] -assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" -output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] - -# connect the storagetank and oil refinery -pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the oil_refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") -``` - - -### Using an existing storage tank with liquid -If a storage tank has liquid, the liquid can be sent to other fluid processors via pipes - -Example: -Connect an existing storage tank with petroleum gas to a existing chemical plant -```python -# get the chemical_plant and storage_tank -chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# Get the petroleum-gas input point of chemical plant -input_petroleum_gas_connection_points = [x for x in oil_refinery.input_connection_points if x.type == "petroleum-gas"] -assert len(input_petroleum_gas_connection_points) > 0, f"No petroleum gas input points in chemical_plant" -input_petroleum_gas_connection_point = input_petroleum_gas_connection_points[0] - -# connect the storagetank and chemical_plant -pipes = connect_entities(storage_tank, input_petroleum_gas_connection_points, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the storage_tank at {storage_tank.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") -``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md b/env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md deleted file mode 100644 index 65d658295..000000000 --- a/env/src/tools/agent/_query_information/pages/how_to_smelt_ores.md +++ /dev/null @@ -1,28 +0,0 @@ -## Best Practices - -1. **Inventory Verification** -Example - Safe smelting ore into plates -```python -# move to the position to place the entity -move_to(position) -furnace = place_entity(Prototype.StoneFurnace, position=position) -print(f"Placed the furnace to smelt plates at {furnace.position}") - -# we also update the furnace variable by returning it from the function -# This ensures it doesnt get stale and the inventory updates are represented in the variable -furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel -furnace = insert_item(Prototype.IronOre, furnace, quantity=10) - -# 3. Wait for smelting (with safety timeout) -for _ in range(30): # Maximum 30 seconds wait - if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: - break - sleep(1) -else: - raise Exception("Smelting timeout - check fuel and inputs") - -# final check for the inventory of furnace -iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] -assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" -print(f"Smelted 10 iron plates") - ``` \ No newline at end of file diff --git a/env/src/tools/agent/connect_entities/agent_old.md b/env/src/tools/agent/connect_entities/agent_old.md deleted file mode 100644 index 8711c97db..000000000 --- a/env/src/tools/agent/connect_entities/agent_old.md +++ /dev/null @@ -1,186 +0,0 @@ -# connect_entities - -The `connect_entities` tool provides functionality to connect different types of Factorio entities using various connection types like transport belts, pipes and power poles. This document outlines how to use the tool effectively. - -## Core Concepts - -The connect_entities tool can connect: -- Transport belts (including underground belts) -- Pipes (including underground pipes) -- Power poles -- Walls - -For each connection type, the tool handles: -- Pathing around obstacles -- Proper entity rotation and orientation -- Network/group management -- Resource requirements verification -- Connection point validation - -## Basic Usage - -### General Pattern -```python -# Basic connection between two positions or entities -connection = connect_entities(source, target, connection_type=Prototype.X) - -# Connection with multiple waypoints -connection = connect_entities(pos1, pos2, pos3, pos4, connection_type=Prototype.X) -``` - -### Source/Target Types -The source and target can be: -- Positions -- Entities -- Entity Groups - -### Connection Types -You must specify a connection type prototype: -```python -# Single connection type -connection_type=Prototype.TransportBelt - -# Multiple compatible connection types -# If you have UndergroundBelts in inventory, use them to simplify above-ground structures -connection_type={Prototype.TransportBelt, Prototype.UndergroundBelt} -``` - -## Transport Belt Connections - -```python -# Connect mining drill output to a furnace inserter -belts = connect_entities( - drill, - furnace_inserter, - connection_type=Prototype.TransportBelt -) - -# Belt groups are returned for management -print(f"Created belt line with {len(belts.belts)} belts") -``` - -Key points: -- Always use inserters between belts and machines/chests -- Use underground belts for crossing other belts -- Belt groups maintain direction and flow information - -## Pipe Connections - -Pipes connect fluid-handling entities: -```python -# Connect water flow with over and underground pipes -water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) -print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") -``` - -Key points: -- Respects fluid input/output connection points -- Underground pipes have limited range -- Pipe groups track fluid system IDs - -## Power Pole Connections - -To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) -```python -# Connect power -poles = connect_entities( - steam_engine, - drill, - Prototype.SmallElectricPole -) -print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") -``` - -Key points: -- Automatically spaces poles based on wire reach -- Creates electrical networks -- Handles pole to entity connections -- Power groups track network IDs - -## Best Practices - -1. **Pre-check Resources** -```python -inventory = inspect_inventory() -# use get_connection_amount to see if you have enough -required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) -assert inventory[Prototype.TransportBelt] >= required_count -``` - -3. **Entity Groups** -```python -# Work with entity groups -belt_group = connect_entities(source, target, Prototype.TransportBelt) -for belt in belt_group.belts: - print(f"Belt at {belt.position} flowing {belt.direction}") -``` - -## Common Patterns - -### Many-to-One Connections -When you need to connect multiple sources to a single target with transport belts -1. Establish sources and target -2. Create the main connection by connecting one source to the target with transport belts -3. Connect all remaining sources to the main connection with transport belts - -Example: Connecting multiple source inserters to one target inserter -```python -# get the inserter variables -source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) -source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) -source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) -target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) -# log your general idea what you will do next -print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") -# create the main connection -main_connection = connect_entities(source_inserter_1, - target_inserter, - Prototype.TransportBelt) -# Print out the whole connection for logs -print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") - -# Connect source_inserter_2 and source_inserter_3 to the main connection -secondary_sources = [source_inserter_2, source_inserter_3] -for source in secondary_sources: - # connect the source to main connection - # Use the first beltgroup from the main connection to connect to - # Also override the main_connection to get the newest belt groups - main_connection = connect_entities(source, - main_connection, - Prototype.TransportBelt) - print(f"Extended main connection to include inserter at {source.position}: {main_connection}") -print(f"Final connection after connecting all inserters to target: {main_connection}") -``` - -When you want to connect entities to existing power pole groups, similar rules apply. - -Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) -```python -# create the main connection -main_power_connection = connect_entities(steam_engine, - drill_1, - Prototype.SmallElectricPole) -# Print out the whole connection for logs -print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") - -# connect the secondary source to the main power connection -# Use the first ElectricityGroup from the main connection to connect to -# Also override the main_power_connection to get the newest ElectricityGroups -main_power_connection = connect_entities(drill_2, - main_connection, - Prototype.SmallElectricPole) -``` - -## Troubleshooting - -Common issues and solutions: - -### 1. Connection Failures -- Verify inventory has required entities -- Ensure compatible connection types - -### 3. Entity Groups -- Update stale group references -- Handle group merging properly -- Track network IDs -- Clean up disconnected groups diff --git a/env/src/tools/agent/extract_item/agent_old.md b/env/src/tools/agent/extract_item/agent_old.md deleted file mode 100644 index e00ad915e..000000000 --- a/env/src/tools/agent/extract_item/agent_old.md +++ /dev/null @@ -1,82 +0,0 @@ -# extract_item - -The extract tool allows you to remove items from entity inventories in the Factorio world. This tool is essential for moving items between entities and managing inventory contents. - -## Basic Usage - -```python -# Extract items using a position -extracted_count = extract_item(Prototype.IronPlate, position, quantity=5) - -# Extract items using an entity directly -extracted_count = extract_item(Prototype.CopperCable, entity, quantity=3) -``` - -The function returns the number of items successfully extracted. The extracted items are automatically placed in the player's inventory. - -## Parameters - -- `entity`: The Prototype of the item to extract (required) -- `source`: Either a Position or Entity to extract from (required) -- `quantity`: Number of items to extract (default=5) - - -**Quantity Handling** - - If requested quantity exceeds available items, it extracts all available items - - Returns actual number of items extracted - -## Examples - -### Extracting from a Chest -```python -# Place a chest and insert items -chest = place_entity(Prototype.IronChest, position=Position(x=0, y=0)) -insert_item(Prototype.IronPlate, chest, quantity=10) - -# Extract using position -count = extract_item(Prototype.IronPlate, chest.position, quantity=2) -# count will be 2, items move to player inventory - -# Extract using entity -count = extract_item(Prototype.IronPlate, chest, quantity=5) -# count will be 5, items move to player inventory -``` - -## Common Pitfalls - -1. **Empty Inventories** - - Attempting to extract from empty inventories will raise an exception - - Always verify item existence before extraction - -2. **Distance Limitations** - - Player must be within range of the target entity - - Move closer if extraction fails due to distance - -## Best Practices - -1. **Inventory Verification** -Example - Safe smelting ore into plates -```python -# move to the position to place the entity -move_to(position) -furnace = place_entity(Prototype.StoneFurnace, position=position) -print(f"Placed the furnace to smelt plates at {furnace.position}") - -# we also update the furnace variable by returning it from the function -# This ensures it doesnt get stale and the inventory updates are represented in the variable -furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel -furnace = insert_item(Prototype.IronOre, furnace, quantity=10) - -# 3. Wait for smelting (with safety timeout) -for _ in range(30): # Maximum 30 seconds wait - if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: - break - sleep(1) -else: - raise Exception("Smelting timeout - check fuel and inputs") - -# final check for the inventory of furnace -iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] -assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" -print(f"Smelted 10 iron plates") - ``` \ No newline at end of file diff --git a/env/src/tools/agent/get_research_progress/agent_old.md b/env/src/tools/agent/get_research_progress/agent_old.md deleted file mode 100644 index 58993dce9..000000000 --- a/env/src/tools/agent/get_research_progress/agent_old.md +++ /dev/null @@ -1,124 +0,0 @@ -# get_research_progress - -The `get_research_progress` tool checks the progress of technology research in Factorio by returning the remaining science pack requirements. This tool is essential for managing research queues and monitoring research progress. - -## Core Functionality - -The tool provides: -- Remaining science pack requirements for a specific technology -- Current research progress if no technology is specified -- Status information about researched/unresearched technologies - -## Basic Usage - -```python -# Check progress of specific technology -remaining = get_research_progress(Technology.Automation) - -# Check current research progress -current_progress = get_research_progress() # Only works if research is active! -``` - -### Parameters - -- `technology`: Optional[Technology] - The technology to check progress for - - If provided: Returns remaining requirements for that technology - - If None: Returns requirements for current research (must have active research!) - -### Return Value - -Returns a List[Ingredient] where each Ingredient contains: -- name: Name of the science pack -- count: Number of packs still needed -- type: Type of the ingredient (usually "item" for science packs) - -## Important Notes - -1. **Current Research Check** - ```python - try: - progress = get_research_progress() - except Exception as e: - print("No active research!") - # Handle no research case - ``` - -2. **Research Status Verification** - ```python - try: - # Check specific technology - progress = get_research_progress(Technology.Automation) - except Exception as e: - print(f"Cannot check progress: {e}") - # Handle invalid technology case - ``` - -## Common Use Cases - -### 1. Monitor Current Research -```python -def monitor_research_progress(): - try: - remaining = get_research_progress() - for ingredient in remaining: - print(f"Need {ingredient.count} {ingredient.name}") - except Exception: - print("No research in progress") -``` - -### 2. Research Requirements Planning -```python -def check_research_feasibility(technology): - try: - requirements = get_research_progress(technology) - inventory = inspect_inventory() - - for req in requirements: - if inventory[req.name] < req.count: - print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") - return False - return True - except Exception as e: - print(f"Error checking research: {e}") - return False -``` - -## Best Practices - -1. **Always Handle No Research Case** -```python -def safe_get_progress(): - try: - return get_research_progress() - except Exception: - # No research in progress - return None -``` - -### Common Errors - -1. **No Active Research** -```python -try: - progress = get_research_progress() -except Exception as e: - if "No research in progress" in str(e): - # Handle no research case - pass -``` - -2. **Invalid Technology** -```python -try: - progress = get_research_progress(technology) -except Exception as e: - if "Technology doesn't exist" in str(e): - # Handle invalid technology case - pass -``` - -3. **Already Researched** -```python -if not get_research_progress(technology): - print("Technology already researched") -``` diff --git a/env/src/tools/agent/launch_rocket/agent_old.md b/env/src/tools/agent/launch_rocket/agent_old.md deleted file mode 100644 index 6bc48f381..000000000 --- a/env/src/tools/agent/launch_rocket/agent_old.md +++ /dev/null @@ -1,72 +0,0 @@ -# launch_rocket - -The `launch_rocket` tool allows you to launch rockets from a rocket silo. This guide explains the complete process of setting up and launching rockets in Factorio. - -## Basic Usage - -```python -launch_rocket(silo: Union[Position, RocketSilo]) -> RocketSilo -``` - -The function returns the updated RocketSilo entity. - -### Parameters -- `silo`: Either a Position object or RocketSilo entity indicating where to launch from - -## Complete Rocket Launch Process - -### 1. Setting Up the Rocket Silo - -First, place the silo: -```python -# Place rocket silo -silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) -``` - -## Required Components - -For each rocket launch you need: -1. 100 Rocket Fuel -2. 100 Rocket Control Units -3. 100 Low Density Structures - - -### 2. Monitoring Rocket Construction - -Track the silo's status during construction: -```python -# Check initial state -assert silo.rocket_parts == 0 -assert silo.launch_count == 0 - -# Wait for components to be inserted -sleep(100) # Adjust time based on inserter speed - -# Get updated silo state -silo = get_entities({Prototype.RocketSilo})[0] - -# Verify construction started -assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH - -# Wait for construction completion -sleep(180) # Adjust based on crafting speed -silo = get_entities({Prototype.RocketSilo})[0] - -# Verify rocket is ready -assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET -``` - -### 5. Launching the Rocket - -Finally, launch the rocket: -```python -# Launch -silo = launch_rocket(silo) - -# Verify launch sequence started -assert silo.status == EntityStatus.LAUNCHING_ROCKET - -# Wait for launch completion -sleep(10) -silo = get_entities({Prototype.RocketSilo})[0] -``` \ No newline at end of file diff --git a/env/src/tools/agent/nearest_buildable/agent_old.md b/env/src/tools/agent/nearest_buildable/agent_old.md deleted file mode 100644 index 68ff4b3d2..000000000 --- a/env/src/tools/agent/nearest_buildable/agent_old.md +++ /dev/null @@ -1,115 +0,0 @@ -# nearest_buildable - -The `nearest_buildable` tool helps find valid positions to place entities while respecting space requirements and resource coverage. This guide explains how to use it effectively. - -## Basic Usage - -```python -nearest_buildable( - entity: Prototype, - building_box: BuildingBox, - center_position: Position -) -> BoundingBox -``` - -The function returns a BoundingBox object containing buildable area coordinates. - -### Parameters -- `entity`: Prototype of entity to place -- `building_box`: BuildingBox defining required area dimensions -- `center_position`: Position to search around - -### Return Value -Returns a BoundingBox with these attributes: -- `left_top`: Top-left corner Position -- `right_bottom`: Bottom-right corner Position -- `left_bottom`: Bottom-left corner Position -- `right_top`: Top-right corner Position -- `center`: Center position - - -## Common Use Cases - -### 1. Basic Entity Placement -```python -# Find place for chest near the origin -chest_box = BuildingBox(height=Prototype.WoodenChest.HEIGHT, width=Prototype.WoodenChest.WIDTH) -buildable_area = nearest_buildable( - Prototype.WoodenChest, - chest_box, - Position(x=0, y=0) -) - -# Place at center of buildable area -move_to(buildable_area.center) -chest = place_entity(Prototype.WoodenChest, position=buildable_area.center) -``` - -### 2. Mining Drill Placement -```python -# Setup mining drill on ore patch -resource_pos = nearest(Resource.IronOre) -# Define area for drill -drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) - -# Find buildable area -buildable_area = nearest_buildable( - Prototype.ElectricMiningDrill, - drill_box, - resource_pos -) - -# Place drill -move_to(buildable_area.center) -drill = place_entity( - Prototype.ElectricMiningDrill, - position=buildable_area.center -) -``` -## Common Patterns - -1. **Multiple Entity Placement** -Example: Create a copper plate mining line with 3 drills with inserters for future integration -```python -# log your general idea what you will do next -print(f"I will create a single line of 3 drills to mine copper ore") -# Find space for a line of 3 miners -move_to(source_position) -# define the BuildingBox for the drill. -# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace -building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) -# get the nearest buildable area around the source_position -buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) - -# Place miners in a line -# we first get the leftmost coordinate of the buildingbox to start building from -left_top = buildable_coordinates.left_top -# first lets move to the left_top to ensure building -move_to(left_top) -for i in range(3): - # we now iterate from the leftmost point towards the right - # take steps of drill.WIDTH - drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) - # Place the drill facing down as we start from top coordinate - # The drop position will be below the drill as the direction is DOWN - drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) - print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") - # place a furnace to catch the ore - # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill - furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) - print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") - # add inserters for future potential integartion - # put them below the furnace as the furnace is below the drill - inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) - print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") -``` - -## Best practices -- Always use Prototype.X.WIDTH and .HEIGHT to plan the buildingboxes -- When doing power setups or setups with inserters, ensure the buildingbox is large enough to have room for connection types - -## Troubleshooting - -1. "No buildable position found" - - Check building box size is appropriate - - Verify resource coverage for miners \ No newline at end of file diff --git a/env/src/tools/agent/place_entity/agent_old.md b/env/src/tools/agent/place_entity/agent_old.md deleted file mode 100644 index 823266e06..000000000 --- a/env/src/tools/agent/place_entity/agent_old.md +++ /dev/null @@ -1,95 +0,0 @@ -# place_entity - -The `place_entity` tool allows you to place entities in the Factorio world while handling direction, positioning, and various entity-specific requirements. This guide explains how to use it effectively. - -## Basic Usage - -```python -place_entity( - entity: Prototype, - direction: Direction = Direction.UP, - position: Position = Position(x=0, y=0), - exact: bool = True -) -> Entity -``` - -Returns the placed Entity object. - -### Parameters -- `entity`: Prototype of entity to place -- `direction`: Direction entity should face (default: UP) -- `position`: Where to place entity (default: 0,0) -- `exact`: Whether to require exact positioning (default: True) - -### Examples -```python -# first moveto target location -move_to(Position(x=0, y=0)) -# Basic placement -chest = place_entity(Prototype.WoodenChest, position=Position(x=0, y=0)) -# log your actions -print(f"Placed chest at {chest.position}") - -# Directional placement -inserter = place_entity( - Prototype.BurnerInserter, - direction=Direction.RIGHT, - position=Position(x=5, y=5) -) -# log your actions -print(f"Placed inserter at {inserter.position} to input into a chest") -move_to(water_pos) -# Flexible positioning -pump = place_entity( - Prototype.OffshorePump, - position=water_pos -) -# log your actions -print(f"Placed pump at {pump.position}to generate power") -``` - -### Mining Drills -```python -# Place on resource patch -ore_pos = nearest(Resource.IronOre) -move_to(ore_pos) -drill = place_entity( - Prototype.BurnerMiningDrill, - position=ore_pos, - direction=Direction.DOWN -) -# log your actions -print(f"Placed drill at {drill.position} to mine iron ore") -``` - -## Best Practices -- Use nearest buildable to ensure safe placement - -## Common Patterns - -1. **Mining Setup** -You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines -```python -def setup_mining(resource_pos: Position): - move_to(resource_pos) - # Place drill - # put the drop position down - drill = place_entity( - Prototype.BurnerMiningDrill, - position=resource_pos, - direction=Direction.DOWN, - ) - # log your actions - print(f"Placed drill to mine iron ore at {drill.position}") - # insert coal to drill - drill = insert_item(Prototype.Coal, drill, quantity = 10) - # Place output chest that catches ore - chest = place_entity( - Prototype.WoodenChest, - position=drill.drop_position, - direction=Direction.DOWN, - ) - # log your actions - print(f"Placed chest to catch iron ore at {chest.position}") - return drill, chest -``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/agent_old.md b/env/src/tools/agent/query_information/agent_old.md deleted file mode 100644 index 746d4bece..000000000 --- a/env/src/tools/agent/query_information/agent_old.md +++ /dev/null @@ -1,33 +0,0 @@ -# query_information - -The `query_information` tool allows you to obtain information regarding from a pre-defined list of pages containing instructions how to effectively use the API. - -## Basic Usage -To get content of a specific page, the page_id needs to be sent in -```python -inserter_information = query_information("how_to_use_inserters") -> str -print(f"Manual how to use inserters") -print(inserter_information) -``` -### Parameters - -- `page_id`: ID of the page whose information is needed - -## Existing pages - -The following page IDs exist currently in the database - -"how_to_check_research_progress" -"how_to_connect_entities" -"how_to_create_assembling_machines" -"how_to_create_electricity_generators" -- Information on how to setup electricity generators -"how_to_create_reserach_setups" -"how_to_create_self_fueling_mining_system" -"how_to_launch_a_rocket" -"how_to_set_up_multiple_drill_plate_mine" -"how_to_set_up_raw_resource_burner_mine" -"how_to_setup_chemical_plants" -- Information on how to setup and use chemical plants -"how_to_setup_oil_refineries" -- Information on how to setup and use oil refineries -"how_to_smelt_ores" -"how_to_setup_storage_tanks" -- Information on how to setup and use storage tanks -"how_to_setup_crude_oil_production" -- Information on how to setup and use pumpjacks to harvest crude oil \ No newline at end of file diff --git a/env/src/tools/agent/query_information/embeddings.md b/env/src/tools/agent/query_information/embeddings.md deleted file mode 100644 index 9e26dfeeb..000000000 --- a/env/src/tools/agent/query_information/embeddings.md +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_check_research_progress.md b/env/src/tools/agent/query_information/pages/how_to_check_research_progress.md deleted file mode 100644 index 3c9389be0..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_check_research_progress.md +++ /dev/null @@ -1,91 +0,0 @@ -## Important Notes - -1. **Current Research Check** - ```python - try: - progress = get_research_progress() - except Exception as e: - print("No active research!") - # Handle no research case - ``` - -2. **Research Status Verification** - ```python - try: - # Check specific technology - progress = get_research_progress(Technology.Automation) - except Exception as e: - print(f"Cannot check progress: {e}") - # Handle invalid technology case - ``` - -## Common Use Cases - -### 1. Monitor Current Research -```python -def monitor_research_progress(): - try: - remaining = get_research_progress() - for ingredient in remaining: - print(f"Need {ingredient.count} {ingredient.name}") - except Exception: - print("No research in progress") -``` - -### 2. Research Requirements Planning -```python -def check_research_feasibility(technology): - try: - requirements = get_research_progress(technology) - inventory = inspect_inventory() - - for req in requirements: - if inventory[req.name] < req.count: - print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") - return False - return True - except Exception as e: - print(f"Error checking research: {e}") - return False -``` - -## Best Practices - -1. **Always Handle No Research Case** -```python -def safe_get_progress(): - try: - return get_research_progress() - except Exception: - # No research in progress - return None -``` - -### Common Errors - -1. **No Active Research** -```python -try: - progress = get_research_progress() -except Exception as e: - if "No research in progress" in str(e): - # Handle no research case - pass -``` - -2. **Invalid Technology** -```python -try: - progress = get_research_progress(technology) -except Exception as e: - if "Technology doesn't exist" in str(e): - # Handle invalid technology case - pass -``` - -3. **Already Researched** -```python -if not get_research_progress(technology): - print("Technology already researched") -``` -s \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_connect_entities.md b/env/src/tools/agent/query_information/pages/how_to_connect_entities.md deleted file mode 100644 index 14bf8bbf7..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_connect_entities.md +++ /dev/null @@ -1,140 +0,0 @@ - -## Transport Belt Connections - -```python -# Connect mining drill output to a furnace inserter -belts = connect_entities( - drill, - furnace_inserter, - connection_type=Prototype.TransportBelt -) - -# Belt groups are returned for management -print(f"Created belt line with {len(belts.belts)} belts") -``` - -Key points: -- Always use inserters between belts and machines/chests -- Use underground belts for crossing other belts -- Belt groups maintain direction and flow information - -## Pipe Connections - -Pipes connect fluid-handling entities: -```python -# Connect water flow with over and underground pipes -water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) -print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") -``` - -Key points: -- Respects fluid input/output connection points -- Underground pipes have limited range -- Pipe groups track fluid system IDs - -## Power Pole Connections - -To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) -```python -# Connect power -poles = connect_entities( - steam_engine, - drill, - Prototype.SmallElectricPole -) -print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") -``` - -Key points: -- Automatically spaces poles based on wire reach -- Creates electrical networks -- Handles pole to entity connections -- Power groups track network IDs - -## Best Practices - -1. **Pre-check Resources** -```python -inventory = inspect_inventory() -# use get_connection_amount to see if you have enough -required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) -assert inventory[Prototype.TransportBelt] >= required_count -``` - -3. **Entity Groups** -```python -# Work with entity groups -belt_group = connect_entities(source, target, Prototype.TransportBelt) -for belt in belt_group.belts: - print(f"Belt at {belt.position} flowing {belt.direction}") -``` - -## Common Patterns - -### Many-to-One Connections -When you need to connect multiple sources to a single target with transport belts -1. Establish sources and target -2. Create the main connection by connecting one source to the target with transport belts -3. Connect all remaining sources to the main connection with transport belts - -Example: Connecting multiple source inserters to one target inserter -```python -# get the inserter variables -source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) -source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) -source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) -target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) -# log your general idea what you will do next -print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") -# create the main connection -main_connection = connect_entities(source_inserter_1, - target_inserter, - Prototype.TransportBelt) -# Print out the whole connection for logs -print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") - -# Connect source_inserter_2 and source_inserter_3 to the main connection -secondary_sources = [source_inserter_2, source_inserter_3] -for source in secondary_sources: - # connect the source to main connection - # Use the first beltgroup from the main connection to connect to - # Also override the main_connection to get the newest belt groups - main_connection = connect_entities(source, - main_connection, - Prototype.TransportBelt) - print(f"Extended main connection to include inserter at {source.position}: {main_connection}") -print(f"Final connection after connecting all inserters to target: {main_connection}") -``` - -When you want to connect entities to existing power pole groups, similar rules apply. - -Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) -```python -# create the main connection -main_power_connection = connect_entities(steam_engine, - drill_1, - Prototype.SmallElectricPole) -# Print out the whole connection for logs -print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") - -# connect the secondary source to the main power connection -# Use the first ElectricityGroup from the main connection to connect to -# Also override the main_power_connection to get the newest ElectricityGroups -main_power_connection = connect_entities(drill_2, - main_connection, - Prototype.SmallElectricPole) -``` - -## Troubleshooting - -Common issues and solutions: - -### 1. Connection Failures -- Verify inventory has required entities -- Ensure compatible connection types - -### 3. Entity Groups -- Update stale group references -- Handle group merging properly -- Track network IDs -- Clean up disconnected groups diff --git a/env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md b/env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md deleted file mode 100644 index 91af2519d..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_create_electricity_generators.md +++ /dev/null @@ -1,102 +0,0 @@ -### 2. Power Systems - -### Power Infrastructure with steam engine - -Power typically involves: --> Water Source + OffshorePump --> Boiler (burning coal) --> SteamEngine - -IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water -We will do this in 2 separate code examples -```python -# log your general idea what you will do next -print(f"I will create a power generation setup with a steam engine") -# Power system pattern -move_to(water_position) -# first place offshore pump on the water system -# The offshore pump gets water from the water source and will transport it to the boiler via pipes -offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) -print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) -# Then place the boiler near the offshore pump -# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, -# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox -# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. - -# first get the width and height of a BurnerMiningDrill -print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 -# use the prototype width and height attributes -# add 4 to ensure no overlap -building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) - -coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) -# place the boiler at the centre coordinate -# first move to the center coordinate -move_to(coords.center) -boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) -print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) -# add coal to boiler to start the power generation -boiler = insert_item(Prototype.Coal, boiler, 10) -``` - -```python -boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) -# Finally we need to place the steam engine close to the boiler -# use the prototype width and height attributes -# add 4 to ensure no overlap -building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) - -coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) -# move to the centre coordinate -move_to(coords.center) -# place the steam engine on the centre coordinate -steam_engine = place_entity(Prototype.SteamEngine, - position = coords.center, - direction = Direction.LEFT) - -print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) -``` - -```python -offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) -boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) -steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) -# Connect entities in order -water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) -print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") -steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) -print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") - -# check that it has power -# sleep for 5 seconds to ensure flow -sleep(5) -# update the entity -steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) -# check that the steam engine is generating power -assert steam_engine.energy > 0, f"Steam engine is not generating power" -print(f"Steam engine at {steam_engine.position} is generating power!") -``` - - - -### Powering entities with existing steam engines -To power an entity with existing steam engine, they need to be connected with power poles - -Example -Power an existing electric mining drill -```python -# get the steam engine and electric mining drill -steam_engine = get_entity(Prototype.SteamEngine, Position(x = 1, y = 0)) -electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, Position(x = 10, y = 0)) - -# Connect power to the electric mining drill -poles = connect_entities(steam_engine, - electric_mining_drill, - Prototype.SmallElectricPole) -print(f"Powered electric mining drill at {electric_mining_drill.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, electric_mining_drill.position) -assert electric_mining_drill.energy > 0, f"electric_mining_drill at {electric_mining_drill.position} is not receiving power" -print(f"Electric mining drill at {electric_mining_drill.position} has been successfully powered") -``` diff --git a/env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md b/env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md deleted file mode 100644 index 01d0f3b41..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_create_reserach_setups.md +++ /dev/null @@ -1,26 +0,0 @@ -### 4. Research Systems - -#### Basic Research Setup -```python -def build_research_facility(power_source, lab): - # Connect power - poles = connect_entities(power_source, - lab, - Prototype.SmallElectricPole) - print(f"Powered lab at {lab.position} with {poles}") - # Add science pack inserter - # put it to the left of lab - inserter = place_entity_next_to(Prototype.BurnerInserter, - lab.position, - direction=Direction.LEFT, - spacing=0) - # rotate it to input items into the lab - inserter = rotate_entity(inserter, Direction.RIGHT) - # Place input chest - chest = place_entity(Prototype.WoodenChest, - inserter.pickup_position, - direction=Direction.LEFT) - print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") - - return lab, inserter, chest -``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md b/env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md deleted file mode 100644 index edc19bf56..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_launch_a_rocket.md +++ /dev/null @@ -1,57 +0,0 @@ -## Complete Rocket Launch Process - -### 1. Setting Up the Rocket Silo - -First, place the silo: -```python -# Place rocket silo -silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) -``` - -## Required Components - -For each rocket launch you need: -1. 100 Rocket Fuel -2. 100 Rocket Control Units -3. 100 Low Density Structures - - -### 2. Monitoring Rocket Construction - -Track the silo's status during construction: -```python -# Check initial state -assert silo.rocket_parts == 0 -assert silo.launch_count == 0 - -# Wait for components to be inserted -sleep(100) # Adjust time based on inserter speed - -# Get updated silo state -silo = get_entities({Prototype.RocketSilo})[0] - -# Verify construction started -assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH - -# Wait for construction completion -sleep(180) # Adjust based on crafting speed -silo = get_entities({Prototype.RocketSilo})[0] - -# Verify rocket is ready -assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET -``` - -### 5. Launching the Rocket - -Finally, launch the rocket: -```python -# Launch -silo = launch_rocket(silo) - -# Verify launch sequence started -assert silo.status == EntityStatus.LAUNCHING_ROCKET - -# Wait for launch completion -sleep(10) -silo = get_entities({Prototype.RocketSilo})[0] -``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md deleted file mode 100644 index 46057e364..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_set_up_multiple_drill_plate_mine.md +++ /dev/null @@ -1,35 +0,0 @@ -1. **Multiple Entity Placement** -Example: Create a copper plate mining line with 3 drills with inserters for future integration -```python -# log your general idea what you will do next -print(f"I will create a single line of 3 drills to mine copper ore") -# Find space for a line of 3 miners -move_to(source_position) -# define the BuildingBox for the drill. -# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace -building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) -# get the nearest buildable area around the source_position -buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) - -# Place miners in a line -# we first get the leftmost coordinate of the buildingbox to start building from -left_top = buildable_coordinates.left_top -# first lets move to the left_top to ensure building -move_to(left_top) -for i in range(3): - # we now iterate from the leftmost point towards the right - # take steps of drill.WIDTH - drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) - # Place the drill facing down as we start from top coordinate - # The drop position will be below the drill as the direction is DOWN - drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) - print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") - # place a furnace to catch the ore - # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill - furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) - print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") - # add inserters for future potential integartion - # put them below the furnace as the furnace is below the drill - inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) - print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") -``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md b/env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md deleted file mode 100644 index 086a5937d..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_setup_crude_oil_production.md +++ /dev/null @@ -1,74 +0,0 @@ -## Pumpjacks - -To harvest crude oil from the environment, it needs to be done with pumpjacks - -### Placing a pumpjack - -Example: -Placing a pumpjack near a crude oil patch -Also connect the pumpjack to a steam engine, that will power the pumpjack. To power the pumpjack, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE -```python -# Get the crude oil resource patch -resource_pos = nearest(Resource.CrudeOil) -# Define area for pumpjack -pump_box = BuildingBox(height=Prototype.PumpJack.HEIGHT, width=Prototype.PumpJack.WIDTH) - -# Find buildable area -buildable_area = nearest_buildable( - Prototype.PumpJack, - pump_box, - resource_pos -) - -# Place pumpjack -move_to(buildable_area.center) -pumpjack = place_entity( - Prototype.PumpJack, - position=buildable_area.center -) -# log your actions -print(f"Placed pumpjack to harvest crude oil at {pumpjack.position}") - -# power the pumpjack by connecting to an existing steam engine -steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) -# Connect power to pumpjack -poles = connect_entities(steam_engine, - pumpjack, - Prototype.SmallElectricPole) -print(f"Powered pumpjack at {pumpjack.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -pumpjack = get_entity(Prototype.PumpJack, pumpjackefinery.position) -assert pumpjack.energy > 0, f"pumpjack at {pumpjack.position} is not receiving power" -print(f"Pumpjack at {pumpjack.position} has been successfully powered") -``` - -### Putting down a storage tank for pumpjack output crude oil -The outputs of pumpjacks can be stored in storage tanks or directly connected to oil refineries - -Example: -Connect a pumpjack to a existing storage tank to store crude_oil -NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE -```python -# get the pumpjack and storage tank -pumpjack = get_entity(Prototype.PumpJack, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# connect the storagetank and pumpjack -pipes = connect_entities(pumpjack, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the pumpjack at {pumpjack.position} to a storage tank at {storage_tank.position} to store crude oil with {pipes}") -``` - -Example: -Connect a pumpjack to a existing oil_refinery to process crude oil -NB: TO CHECK HOW TO SET UP OIL REFINERIES, PRINT OUT THE "how_to_setup_oil_refineries" WIKI PAGE -```python -# get the oil_refinery and pumpjack -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) -pumpjack = get_entity(Prototype.PUMPJACK, position = Position(x = -20, y = 10)) - -# connect the pumpjack and oil refinery -pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the pumpajck at {pumpjack.position} to a oil refinery at {oil_refinery.position} to process crude oil with {pipes}") -``` \ No newline at end of file diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md b/env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md deleted file mode 100644 index f6fc53992..000000000 --- a/env/src/tools/agent/query_information/pages/how_to_setup_oil_refineries.md +++ /dev/null @@ -1,104 +0,0 @@ -## Oil Refinery - -### Placing a oil refinery - -Example: -Placing a oil refinery near a existing pumpjack at Position(x=-50, y=0) -Also connect the oil refinery to a steam engine, that will power the refinery. To power the oil refinery, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE -NB: TO CHECK HOW TO SET UP PUMPJACKS, PRINT OUT THE "how_to_setup_crude_oil_production" WIKI PAGE -```python -# get the pumpjack -pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) - -# create a buildingboxwith with 4 tile buffer for the oilrefinery -building_box = BuildingBox(width = Prototype.OilRefinery.WIDTH + 4, height = Prototype.OilRefinery.HEIGHT + 4) - -# put down the oilrefinery atleast 10 spaces away from pumpjack -ref_pos = Position(x = pumpjack.position.x+10, y = pumpjack.position.y+10) -coords = nearest_buildable(Prototype.OilRefinery,building_box, ref_pos) -# place the oil refinery at the centre coordinate -# first move to the center coordinate -move_to(coords.center) -oil_refinery = place_entity(Prototype.OilRefinery, position = coords.center, direction = Direction.LEFT) - -# power the oil refinery by connecting to an existing steam engine -steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) -# Connect power to oil refinery -poles = connect_entities(steam_engine, - oil_refinery, - Prototype.SmallElectricPole) -print(f"Powered oil refinery at {oil_refinery.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -oil_refinery = get_entity(Prototype.OilRefinery, oil_refinery.position) -assert oil_refinery.energy > 0, f"oil_refinery at {oil_refinery.position} is not receiving power" -print(f"Oil Refinery at {oil_refinery.position} has been successfully powered") -``` - -### Setting recipes for oil refineries -Before rotating or using the oilrefinery, the recipe must be set - -Available recipes for oil refinery - -RecipeName.BasicOilProcessing = "basic-oil-processing" # Recipe for producing petroleum gas with a oil refinery -RecipeName.AdvancedOilProcessing = "advanced-oil-processing" # Recipe for producing petroleum gas, heavy oil and light oil with a oil refinery -RecipeName.CoalLiquefaction = "coal-liquefaction" # Recipe for producing petroleum gas in a oil refinery - -Example: -Set recipe for a existing oil refinery to get petroleum gas -Also connect a existing pumpjack to the oil refinery -```python -# get the pumpjack and oil refineries -pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) - -# Set the recipe to basc oil processing -# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs -oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) -print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") - -# connect with underground and overground pipes to the pumpjack -pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") -``` - -### Connecting the oil refinery outputs - -The outputs of oil refineries can be extracted by pipes - -Example: -Connect a oil refinery to a existing storage tank to store petroleum gas -NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE -```python -# get the oil_refinery and storage tank -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# Get the petroleum-gas output point of oil refinery -output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] -assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" -output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] - -# connect the storagetank and oil refinery -pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the oil refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") -``` - -Example: -Connect a oil refinery to a existing chemical plant to process petroleum gas -```python -# get the oil_refinery and chemical plant -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) -chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -20, y = 10)) - -# Get the petroleum-gas output point of oil refinery -output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] -assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" -output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] - -# connect the chemical_plant and oil refinery -pipes = connect_entities(output_petroleum_gas_connection_point, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the oil refinery at {oil_refinery.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") -``` - diff --git a/env/src/tools/agent/query_information/server.lua b/env/src/tools/agent/query_information/server.lua deleted file mode 100644 index 4baf5c420..000000000 --- a/env/src/tools/agent/query_information/server.lua +++ /dev/null @@ -1,3 +0,0 @@ -global.actions.query_information = function() - -- Empty function body -end \ No newline at end of file diff --git a/env/src/tools/examples/entity_status_monitoring.md b/env/src/tools/examples/entity_status_monitoring.md new file mode 100644 index 000000000..429f8a139 --- /dev/null +++ b/env/src/tools/examples/entity_status_monitoring.md @@ -0,0 +1,9 @@ +## Entity Status Monitoring +```python +def monitor_entity_status(entity, expected_status): + entity = get_entity(entity.prototype, entity.position) + if entity.status != expected_status: + print(f"Entity at {entity.position} has unexpected status: {entity.status}") + return False + return True +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md b/env/src/tools/examples/how_to_check_research_progress.md similarity index 98% rename from env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md rename to env/src/tools/examples/how_to_check_research_progress.md index 3c9389be0..e1677d2c4 100644 --- a/env/src/tools/agent/_query_information/pages/how_to_check_research_progress.md +++ b/env/src/tools/examples/how_to_check_research_progress.md @@ -1,4 +1,4 @@ -## Important Notes +## How to check research progress 1. **Current Research Check** ```python diff --git a/env/src/tools/agent/_query_information/pages/how_to_connect_entities.md b/env/src/tools/examples/how_to_connect_entities.md similarity index 100% rename from env/src/tools/agent/_query_information/pages/how_to_connect_entities.md rename to env/src/tools/examples/how_to_connect_entities.md diff --git a/env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md b/env/src/tools/examples/how_to_create_assembling_machines.md similarity index 98% rename from env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md rename to env/src/tools/examples/how_to_create_assembling_machines.md index 1640208c4..4c08e5ebc 100644 --- a/env/src/tools/agent/query_information/pages/how_to_create_assembling_machines.md +++ b/env/src/tools/examples/how_to_create_assembling_machines.md @@ -1,6 +1,6 @@ -### 3. Automated Assembly Systems +## Automated Assembly Systems -#### Basic Assembly Line +### Basic Assembly Line Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections ```python furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md b/env/src/tools/examples/how_to_create_electricity_generators.md similarity index 95% rename from env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md rename to env/src/tools/examples/how_to_create_electricity_generators.md index 91af2519d..3562acefb 100644 --- a/env/src/tools/agent/_query_information/pages/how_to_create_electricity_generators.md +++ b/env/src/tools/examples/how_to_create_electricity_generators.md @@ -3,9 +3,9 @@ ### Power Infrastructure with steam engine Power typically involves: --> Water Source + OffshorePump --> Boiler (burning coal) --> SteamEngine +-> Water Source + OffshorePump. This moves water from the water source using the offshore pump +-> Boiler (burning coal). This creates the water from water source into steam +-> SteamEngine. This creates electricity from steam IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water We will do this in 2 separate code examples diff --git a/env/src/tools/agent/_query_information/pages/how_to_create_reserach_setups.md b/env/src/tools/examples/how_to_create_reserach_setups.md similarity index 100% rename from env/src/tools/agent/_query_information/pages/how_to_create_reserach_setups.md rename to env/src/tools/examples/how_to_create_reserach_setups.md diff --git a/env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md b/env/src/tools/examples/how_to_create_self_fueling_mining_system.md similarity index 97% rename from env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md rename to env/src/tools/examples/how_to_create_self_fueling_mining_system.md index 5e8907289..02116b211 100644 --- a/env/src/tools/agent/query_information/pages/how_to_create_self_fueling_mining_system.md +++ b/env/src/tools/examples/how_to_create_self_fueling_mining_system.md @@ -1,3 +1,6 @@ +## Self fueling system + +```python # Define building area coal_patch_position = nearest(Resource.Coal) building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height @@ -26,4 +29,4 @@ print(f"Connected drill to inserter with transport belt") # Bootstrap system drill = insert_item(Prototype.Coal, drill, quantity=5) -return drill, inserter, belts \ No newline at end of file +``` \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_launch_a_rocket.md b/env/src/tools/examples/how_to_launch_a_rocket.md similarity index 100% rename from env/src/tools/agent/_query_information/pages/how_to_launch_a_rocket.md rename to env/src/tools/examples/how_to_launch_a_rocket.md diff --git a/env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md similarity index 98% rename from env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md rename to env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md index 46057e364..4ff6f09e5 100644 --- a/env/src/tools/agent/_query_information/pages/how_to_set_up_multiple_drill_plate_mine.md +++ b/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md @@ -1,4 +1,4 @@ -1. **Multiple Entity Placement** +## How to set up multiple drill plate mines Example: Create a copper plate mining line with 3 drills with inserters for future integration ```python # log your general idea what you will do next diff --git a/env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md similarity index 95% rename from env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md rename to env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md index c881966de..955a213a1 100644 --- a/env/src/tools/agent/query_information/pages/how_to_set_up_raw_resource_burner_mine.md +++ b/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md @@ -1,4 +1,4 @@ -1. **Mining Setup** +## How to create single drill raw resource mine You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines ```python # Setup mining drill on ore patch diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md b/env/src/tools/examples/how_to_setup_chemical_plants.md similarity index 83% rename from env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md rename to env/src/tools/examples/how_to_setup_chemical_plants.md index 0d36e8430..0dfcbb181 100644 --- a/env/src/tools/agent/query_information/pages/how_to_setup_chemical_plants.md +++ b/env/src/tools/examples/how_to_setup_chemical_plants.md @@ -75,21 +75,4 @@ print(f"Connected the chemical_plant at {chemical_plant.position} to oil refiner ``` ### Storing liquid outputs of chemical plants -The liquid outputs of chemical plants can be stored in storage tanks -Example: -Connect a chemical plant to a existing storage tank to store lubricant -NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE -```python -# get the chemical_plant and storage tank -chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# Get the lubricant output point of chemical_plant -output_lubricant_connection_points = [x for x in chemical_plant.output_connection_points if x.type == "lubricant"] -assert len(output_lubricant_connection_points) > 0, f"No lubricant output points in chemical_plant" -output_lubricant_connection_point = output_lubricant_connection_points[0] - -# connect the storagetank and chemical plant -pipes = connect_entities(output_lubricant_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the chemical plant at {chemical_plant.position} to a storage tank at {storage_tank.position} to store lubricant with {pipes}") -``` \ No newline at end of file +The liquid outputs of chemical plants can be stored in storage tanks via pipes \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md b/env/src/tools/examples/how_to_setup_crude_oil_production.md similarity index 75% rename from env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md rename to env/src/tools/examples/how_to_setup_crude_oil_production.md index 086a5937d..ef35c8bf7 100644 --- a/env/src/tools/agent/_query_information/pages/how_to_setup_crude_oil_production.md +++ b/env/src/tools/examples/how_to_setup_crude_oil_production.md @@ -47,22 +47,8 @@ print(f"Pumpjack at {pumpjack.position} has been successfully powered") ### Putting down a storage tank for pumpjack output crude oil The outputs of pumpjacks can be stored in storage tanks or directly connected to oil refineries -Example: -Connect a pumpjack to a existing storage tank to store crude_oil -NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE -```python -# get the pumpjack and storage tank -pumpjack = get_entity(Prototype.PumpJack, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# connect the storagetank and pumpjack -pipes = connect_entities(pumpjack, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the pumpjack at {pumpjack.position} to a storage tank at {storage_tank.position} to store crude oil with {pipes}") -``` - Example: Connect a pumpjack to a existing oil_refinery to process crude oil -NB: TO CHECK HOW TO SET UP OIL REFINERIES, PRINT OUT THE "how_to_setup_oil_refineries" WIKI PAGE ```python # get the oil_refinery and pumpjack oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) diff --git a/env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md b/env/src/tools/examples/how_to_setup_oil_refineries.md similarity index 57% rename from env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md rename to env/src/tools/examples/how_to_setup_oil_refineries.md index f6fc53992..4c2838a76 100644 --- a/env/src/tools/agent/_query_information/pages/how_to_setup_oil_refineries.md +++ b/env/src/tools/examples/how_to_setup_oil_refineries.md @@ -5,8 +5,6 @@ Example: Placing a oil refinery near a existing pumpjack at Position(x=-50, y=0) Also connect the oil refinery to a steam engine, that will power the refinery. To power the oil refinery, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE -NB: TO CHECK HOW TO SET UP PUMPJACKS, PRINT OUT THE "how_to_setup_crude_oil_production" WIKI PAGE ```python # get the pumpjack pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) @@ -65,40 +63,4 @@ print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_re ### Connecting the oil refinery outputs -The outputs of oil refineries can be extracted by pipes - -Example: -Connect a oil refinery to a existing storage tank to store petroleum gas -NB: TO CHECK HOW TO SET UP STORAGE TANKS, PRINT OUT THE "how_to_setup_storage_tanks" WIKI PAGE -```python -# get the oil_refinery and storage tank -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) -storage_tank = get_entity(Prototype.StorageTank, position = Position(x = -20, y = 10)) - -# Get the petroleum-gas output point of oil refinery -output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] -assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" -output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] - -# connect the storagetank and oil refinery -pipes = connect_entities(output_petroleum_gas_connection_point, storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the oil refinery at {oil_refinery.position} to a storage tank at {storage_tank.position} to store petroleum gas with {pipes}") -``` - -Example: -Connect a oil refinery to a existing chemical plant to process petroleum gas -```python -# get the oil_refinery and chemical plant -oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) -chemical_plant = get_entity(Prototype.ChemicalPlant, position = Position(x = -20, y = 10)) - -# Get the petroleum-gas output point of oil refinery -output_petroleum_gas_connection_points = [x for x in oil_refinery.output_connection_points if x.type == "petroleum-gas"] -assert len(output_petroleum_gas_connection_point) > 0, f"No petroleum gas output points in oil refinery" -output_petroleum_gas_connection_point = output_petroleum_gas_connection_points[0] - -# connect the chemical_plant and oil refinery -pipes = connect_entities(output_petroleum_gas_connection_point, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the oil refinery at {oil_refinery.position} to a chemical_plant at {chemical_plant.position} to process petroleum gas with {pipes}") -``` - +The outputs of oil refineries can be extracted by pipes and connected to storage tanks or chemical plants diff --git a/env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md b/env/src/tools/examples/how_to_setup_storage_tanks.md similarity index 95% rename from env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md rename to env/src/tools/examples/how_to_setup_storage_tanks.md index d84ea295d..2a572371b 100644 --- a/env/src/tools/agent/query_information/pages/how_to_setup_storage_tanks.md +++ b/env/src/tools/examples/how_to_setup_storage_tanks.md @@ -5,7 +5,7 @@ You can use storage tanks to store liquids ### Placing a storage tank to store liquid Example: -Place a storage tank and store petroleum gas from an existing storage tank +Place a storage tank and store petroleum gas from an existing oil refinery ```python # get the oil_refinery oil_refinery = get_entity(Prototype.OilRefinery, position = Position(x = -25, y = 10)) @@ -33,7 +33,7 @@ print(f"Connected the oil_refinery at {oil_refinery.position} to a storage tank ### Using an existing storage tank with liquid -If a storage tank has liquid, the liquid can be sent to other fluid processors via pipes +If a storage tank has liquid, the liquid can be sent to other fluid processors like oil refinery and chemical plant via pipes Example: Connect an existing storage tank with petroleum gas to a existing chemical plant diff --git a/env/src/tools/agent/query_information/pages/how_to_smelt_ores.md b/env/src/tools/examples/how_to_smelt_ores.md similarity index 96% rename from env/src/tools/agent/query_information/pages/how_to_smelt_ores.md rename to env/src/tools/examples/how_to_smelt_ores.md index 65d658295..37c4b5ada 100644 --- a/env/src/tools/agent/query_information/pages/how_to_smelt_ores.md +++ b/env/src/tools/examples/how_to_smelt_ores.md @@ -1,4 +1,4 @@ -## Best Practices +## How to smelt ores into plates 1. **Inventory Verification** Example - Safe smelting ore into plates diff --git a/env/src/tools/agent/query_information/agent.md b/env/src/tools/rag/query_information/agent.md similarity index 91% rename from env/src/tools/agent/query_information/agent.md rename to env/src/tools/rag/query_information/agent.md index f4af459ed..90f3bc232 100644 --- a/env/src/tools/agent/query_information/agent.md +++ b/env/src/tools/rag/query_information/agent.md @@ -25,4 +25,4 @@ print(resource_mine_information) ``` -NB: The toolgives high value information so always consult the tool when something is unknown \ No newline at end of file +NB: The tool gives high value information so always consult the tool when something is unknown \ No newline at end of file diff --git a/env/src/tools/agent/query_information/client.py b/env/src/tools/rag/query_information/client.py similarity index 98% rename from env/src/tools/agent/query_information/client.py rename to env/src/tools/rag/query_information/client.py index cf4108991..b0c30f6b1 100644 --- a/env/src/tools/agent/query_information/client.py +++ b/env/src/tools/rag/query_information/client.py @@ -15,7 +15,7 @@ def __init__(self, connection, game_state): super().__init__(connection, game_state) # get the location of this file root_directory = os.path.dirname(os.path.abspath(__file__)) - self.pages_path = Path(root_directory, 'pages') + self.pages_path = Path(root_directory,"..", "..", 'examples') # get all md files in the pages directory self.pages = [page.replace(".md", "") for page in os.listdir(self.pages_path) if page.endswith('.md')] # read inthe embeddings.json file diff --git a/env/src/tools/rag/query_information/embeddings.json b/env/src/tools/rag/query_information/embeddings.json new file mode 100644 index 000000000..b8da1d2a2 --- /dev/null +++ b/env/src/tools/rag/query_information/embeddings.json @@ -0,0 +1,23072 @@ +{ + "how_to_check_research_progress": [ + 0.036177150905132294, + 0.036125872284173965, + 0.006108579691499472, + 0.000976699753664434, + 0.021972939372062683, + 0.017062999308109283, + 2.626533023430966e-05, + 0.011172355152666569, + 0.0065829078666865826, + 0.03758731484413147, + 0.022126775234937668, + -0.022844677790999413, + -0.04940706491470337, + 0.01044804323464632, + 0.022434448823332787, + 0.0010576240019872785, + -0.02069097012281418, + -0.0007795970886945724, + 0.007217482663691044, + 0.03540796786546707, + 0.05758602172136307, + 0.008486631326377392, + 0.0020928136073052883, + 0.01980641297996044, + -0.015781031921505928, + -0.061021700501441956, + 0.015268244780600071, + 0.05102234333753586, + 0.0020271125249564648, + -0.018921853974461555, + 0.07414905726909637, + -0.019793592393398285, + -0.07671299576759338, + 0.04417663440108299, + 0.0011217223946005106, + -0.015934867784380913, + -0.038741085678339005, + -0.009044287726283073, + 0.01077494490891695, + -0.015396441332995892, + 0.043945878744125366, + 0.011999225243926048, + 0.0008853594772517681, + 0.02651110850274563, + -0.026793140918016434, + -0.012236389331519604, + -0.053073495626449585, + -0.004781742580235004, + 0.022485727444291115, + 0.02451123669743538, + -0.04484325647354126, + -0.03194665536284447, + -0.04627906158566475, + -0.08009739220142365, + 0.006265620701014996, + 0.013095308095216751, + -0.02225497178733349, + 0.016370737925171852, + 0.00588743994012475, + -0.018191132694482803, + 0.044689420610666275, + 0.018755199387669563, + 0.061637043952941895, + 0.0029597447719424963, + -0.002754629822447896, + -0.015614375472068787, + -0.014204210601747036, + -0.005704759620130062, + -0.003990126773715019, + -0.026049599051475525, + 0.0007952210726216435, + 0.026690583676099777, + -0.016191260889172554, + 0.009845517575740814, + 0.012608160264790058, + 0.00030787274590693414, + 0.027126451954245567, + 0.02907504513859749, + -0.02338310517370701, + 0.008717385120689869, + -0.06122681498527527, + -0.04233060032129288, + -0.0035222084261476994, + -0.006502785254269838, + 0.022626742720603943, + -0.031921014189720154, + -0.06543166935443878, + -0.05522720143198967, + -0.046920046210289, + -0.03602331504225731, + -0.03440803289413452, + 0.016524573788046837, + -0.00495160324499011, + 0.06461121141910553, + 0.042125482112169266, + -0.0168194267898798, + -0.023831794038414955, + 0.002788281301036477, + 0.011069797910749912, + 0.08886605501174927, + 0.008358434773981571, + -0.026408549398183823, + -0.029972422868013382, + -0.006057301070541143, + 0.04515092819929123, + 0.03425419703125954, + -0.01329401321709156, + -0.00676879333332181, + -0.029254520311951637, + -0.023831794038414955, + -0.07563614100217819, + -0.047817423939704895, + -0.0027770642191171646, + 0.04053584113717079, + 0.005198382306843996, + -0.033920884132385254, + -0.04520220682024956, + -0.011351830326020718, + 0.0014983006985858083, + -0.011069797910749912, + -0.0509197860956192, + 0.030741604045033455, + 0.019870510324835777, + 0.002775461645796895, + 0.012999160215258598, + -0.0010183637496083975, + 0.006762383505702019, + 0.0023299776948988438, + 0.00355746247805655, + -0.008377663791179657, + 0.03227996453642845, + 0.01733221299946308, + 0.05871415510773659, + -0.021485790610313416, + 0.004403561819344759, + -0.01116594485938549, + -0.013108127750456333, + 0.020216641947627068, + -0.05027880147099495, + -0.015409260988235474, + 0.03584383800625801, + 0.010441632941365242, + -0.034920819103717804, + 0.04653545469045639, + 0.014563161879777908, + 0.02493428625166416, + 0.01131978165358305, + -0.022831859067082405, + 0.0374591201543808, + 0.03333118185400963, + 0.04433047026395798, + -0.012223569676280022, + -0.07189279049634933, + -0.03294659033417702, + 0.021011462435126305, + 0.0048009720630943775, + 0.029049405828118324, + 0.05809881165623665, + -0.006839301902800798, + -0.024575335904955864, + 0.004996472038328648, + 0.028357142582535744, + -0.04609958454966545, + 0.009653222747147083, + -0.0008517078240402043, + -0.0012635401217266917, + -0.0184603463858366, + -0.026921337470412254, + -0.07281580567359924, + 0.01747323013842106, + 0.03140822798013687, + -0.009826288558542728, + -0.0013861283659934998, + -0.009332730434834957, + 0.01266584824770689, + -0.019575659185647964, + -0.001566405175253749, + 0.03210049122571945, + 9.50209050643025e-06, + -0.013588865287601948, + -0.02671622298657894, + -0.007230302318930626, + -0.094199039041996, + -0.021011462435126305, + -0.041997287422418594, + -0.026177795603871346, + 0.018832117319107056, + -0.020088445395231247, + -0.05235559120774269, + 0.004525348544120789, + 0.04476634040474892, + 0.02858789637684822, + 0.005262480583041906, + -0.003097556298598647, + -0.008640467189252377, + -0.029228881001472473, + 0.00032049210858531296, + 0.008102040737867355, + 0.03227996453642845, + -0.04445866495370865, + -0.025139400735497475, + 0.0184603463858366, + 0.012954290956258774, + -0.009012238122522831, + 0.040869154036045074, + -0.06117553636431694, + -0.003336322959512472, + -0.0030623022466897964, + -0.04897119477391243, + -0.026690583676099777, + 0.010076272301375866, + -0.013217095285654068, + 0.01751169003546238, + 0.00467277504503727, + 0.002962949685752392, + 0.012954290956258774, + -0.042817745357751846, + 0.059073105454444885, + -0.030126258730888367, + 0.009025057777762413, + -0.02415228635072708, + -0.012608160264790058, + -0.0010143575491383672, + 0.004759307950735092, + 0.03476698324084282, + 0.05415034666657448, + 0.08573804795742035, + -0.026972616091370583, + 0.04251007363200188, + -0.03194665536284447, + 0.020344840362668037, + 0.02185756154358387, + -0.021934479475021362, + 0.00473687332123518, + 0.04053584113717079, + -0.035741280764341354, + 0.02451123669743538, + 0.003634380642324686, + 0.007082875818014145, + -0.03179281949996948, + 0.04215112328529358, + 0.03153642266988754, + -0.007326449733227491, + 0.01051214151084423, + 0.04033072665333748, + 0.005951538681983948, + 0.0013877308228984475, + -0.05158641189336777, + 0.0391000397503376, + 0.013024799525737762, + 0.02542143501341343, + 0.014986211434006691, + 0.02051149494946003, + -0.03002370148897171, + 0.0284596998244524, + -0.047253359109163284, + -0.03722836449742317, + 0.025216320529580116, + -0.017703983932733536, + 0.04974037781357765, + -0.03297222778201103, + 0.01924234628677368, + -0.04251007363200188, + -0.02138323336839676, + -0.01829368993639946, + -0.01394781656563282, + 0.0157297533005476, + -0.01589640974998474, + 0.0006782414275221527, + -0.06553422659635544, + -0.0060765305534005165, + -0.00023415955365635455, + 0.050381362438201904, + 0.004179217386990786, + -0.04115118831396103, + -0.01616562157869339, + 0.009281451813876629, + 0.023626679554581642, + -0.01863982155919075, + -0.005368242971599102, + -0.027126451954245567, + 0.03407471999526024, + 0.04102298989892006, + -0.0054772100411355495, + 0.03240816295146942, + 0.021280676126480103, + 0.025703467428684235, + 0.01889621466398239, + 0.026664944365620613, + 0.009569894522428513, + 0.0034388804342597723, + -0.01638355664908886, + 0.012531241402029991, + -0.015075949020683765, + -0.010351895354688168, + -0.02163962833583355, + -0.010871092788875103, + 0.003054289845749736, + 0.0011970381019636989, + -0.008352024480700493, + 0.013960636220872402, + 0.031433865427970886, + 0.0059291040524840355, + 0.0304595697671175, + -0.02720336988568306, + -0.013044029474258423, + -0.0014069604221731424, + -0.06199599429965019, + -0.04409971460700035, + 0.028741732239723206, + 0.005259275436401367, + 0.03207485005259514, + 0.0490993931889534, + -0.03863852843642235, + -0.02225497178733349, + -0.023562580347061157, + -0.002451764652505517, + 0.0036824543494731188, + -0.007454646751284599, + -0.031433865427970886, + 0.01651175320148468, + -0.03497210144996643, + 0.05722707137465477, + 0.02407536841928959, + 0.008877631276845932, + -0.05048391968011856, + -0.002062366809695959, + -0.0014974994119256735, + 0.011114666238427162, + -0.033690132200717926, + 0.014242669567465782, + -0.03476698324084282, + -0.006201522424817085, + 0.023434383794665337, + -0.031921014189720154, + 0.028177667409181595, + -0.0001347068464383483, + 0.0157297533005476, + 0.012127421796321869, + 0.00851867999881506, + -0.013614505529403687, + -0.022190874442458153, + -0.0474584735929966, + -0.018396247178316116, + -0.015140047296881676, + -0.014319587498903275, + -0.018537264317274094, + -0.007980253547430038, + 0.0010367919458076358, + 0.02280621975660324, + 0.038997478783130646, + 0.03158770129084587, + 0.007448236923664808, + 0.007999483495950699, + -0.05589382350444794, + 0.024190744385123253, + -0.0034260607790201902, + 0.030049340799450874, + -0.004214471206068993, + -0.029741669073700905, + -0.03694633021950722, + 0.0074931057170033455, + -0.0215498898178339, + 0.023793334141373634, + -0.0016393171390518546, + 0.010633928701281548, + -0.03976666182279587, + -0.029100684449076653, + 0.01258252002298832, + 0.01069161668419838, + 0.03992049768567085, + 0.03384396806359291, + -0.012832504697144032, + -0.040305089205503464, + -0.010826223529875278, + -0.0057656532153487206, + 0.0068521215580403805, + 0.031741540879011154, + 0.042433157563209534, + 0.04397151991724968, + -0.007409777492284775, + 0.018216772004961967, + -0.030741604045033455, + -0.015665654093027115, + 0.010127550922334194, + 0.015614375472068787, + -0.010121140629053116, + 0.0022386375349014997, + -0.07040570676326752, + -0.00467277504503727, + 0.0013044029474258423, + -0.032613277435302734, + 0.04102298989892006, + -0.011358240619301796, + 0.015845129266381264, + 0.012941471301019192, + -0.019370542839169502, + 0.0732773169875145, + 0.03615150973200798, + -0.04240751639008522, + 0.03448495268821716, + -0.018024476245045662, + -0.07061082124710083, + 0.023524120450019836, + -0.0023331826087087393, + 0.052560705691576004, + 0.015524637885391712, + 0.026434190571308136, + 0.04971473664045334, + 0.020626872777938843, + 0.03922823444008827, + 0.009794238954782486, + 0.03433111682534218, + -0.007166203577071428, + 0.008460992015898228, + -0.025600910186767578, + 0.020998643711209297, + 0.07917436957359314, + -0.00015654036542400718, + -0.03533105179667473, + -0.007191842887550592, + -0.03525413200259209, + 0.010281386785209179, + -0.03948462754487991, + -0.011140305548906326, + 0.030664686113595963, + 0.02429330162703991, + -0.05625277757644653, + 0.03184409812092781, + -0.05030444264411926, + -0.016229720786213875, + -0.009672451764345169, + 0.03179281949996948, + 0.04120246693491936, + -0.02098582312464714, + -0.0006994740688242018, + 0.02189602144062519, + 0.011249273084104061, + 0.0025014409329742193, + 0.03089543990790844, + 0.013217095285654068, + -0.02011408470571041, + -0.02298569492995739, + 0.03940771147608757, + 0.012172290123999119, + -0.03353629633784294, + -0.030690325424075127, + -0.028793010860681534, + 0.0035606673918664455, + -0.010396764613687992, + 0.0028876338619738817, + -0.026305992156267166, + 0.0020591618958860636, + 0.006813662592321634, + -0.024703532457351685, + 0.002788281301036477, + 0.03384396806359291, + -0.05471441522240639, + 0.018537264317274094, + 0.036433544009923935, + 0.03102363646030426, + 0.011178765445947647, + 0.002128067659214139, + 0.013255554251372814, + 0.05548359453678131, + -0.015960507094860077, + -0.0033267082180827856, + 0.01672968827188015, + -0.01451188325881958, + -0.0304595697671175, + 0.05743218585848808, + -0.034997738897800446, + -0.02415228635072708, + -0.02602395974099636, + 0.01083904318511486, + 0.03312606364488602, + -0.0024661868810653687, + 0.03666429966688156, + -0.027690518647432327, + -0.010499321855604649, + -0.030690325424075127, + 0.01747323013842106, + 0.011781290173530579, + 0.0029645520262420177, + 0.03271583467721939, + 0.015870770439505577, + -0.033305540680885315, + -0.007903335615992546, + -0.020229462534189224, + 0.02081916853785515, + 0.03938207030296326, + -0.008076401427388191, + 0.058201368898153305, + -0.013819620013237, + 0.017024541273713112, + -0.011371060274541378, + -0.010736485943198204, + 0.02367795817553997, + 0.007102105300873518, + 0.011819749139249325, + 0.03566436097025871, + 0.00481379171833396, + -0.02029355987906456, + 0.07353371381759644, + -0.0020944159477949142, + -0.01712709851562977, + 0.008717385120689869, + 0.0234600231051445, + 0.003304273821413517, + 0.05409906804561615, + -0.036048952490091324, + -0.0371001660823822, + 0.003906799014657736, + 0.034049082547426224, + 0.015550277195870876, + 0.012332536280155182, + -0.0013853271957486868, + -0.00025298845139332116, + -0.0196397565305233, + -0.014127292670309544, + 0.010640338063240051, + -0.01885775662958622, + -0.035305410623550415, + 0.03076724335551262, + -0.008832762949168682, + -0.06148320809006691, + -0.0013660975964739919, + -0.04422791302204132, + 0.01869110018014908, + 0.016409195959568024, + -0.0007912149303592741, + -0.030536489561200142, + 0.011717191897332668, + -0.007300810422748327, + -0.055945102125406265, + -0.0017899484373629093, + -0.05140693485736847, + -0.03207485005259514, + -0.0510992631316185, + -0.03797190636396408, + 0.020973004400730133, + 0.00487788999453187, + 0.028536617755889893, + -0.025126582011580467, + 0.013781161047518253, + 0.01279404480010271, + 0.0166399497538805, + 0.006839301902800798, + -0.013909357599914074, + -0.02042175829410553, + 0.041817810386419296, + -0.03845905512571335, + 0.029177602380514145, + -0.03576692193746567, + 0.0062463912181556225, + 0.0005877024377696216, + -0.011890257708728313, + -0.0354592464864254, + 0.01811421476304531, + 0.01825523003935814, + 0.04653545469045639, + -0.04297158122062683, + -0.03312606364488602, + -0.006499580107629299, + -0.02467789314687252, + 0.020434577018022537, + 0.020755069330334663, + -0.012101782485842705, + -0.02851097844541073, + -0.013588865287601948, + 0.02702389471232891, + -0.05379139631986618, + 0.018101394176483154, + -0.029741669073700905, + 0.02524195984005928, + 0.00012018454435747117, + -0.00010405978537164629, + -0.034433674067258835, + -0.004906734451651573, + -0.01829368993639946, + -0.010614698752760887, + -0.002878019120544195, + 0.007666171528398991, + 0.03233124315738678, + -0.02902376651763916, + 0.010294206440448761, + 0.013140176422894001, + -0.0038266759365797043, + 0.011678732931613922, + -0.03076724335551262, + 0.005493234843015671, + 0.006800842471420765, + 0.007941794581711292, + -0.009140434674918652, + -0.0021136454306542873, + 0.013024799525737762, + -0.027793075889348984, + 0.010454452596604824, + -0.018575722351670265, + 0.03884364292025566, + 0.007044416852295399, + 0.0072110723704099655, + -0.017498869448900223, + 0.0030687120743095875, + -0.01612716354429722, + 0.03366449102759361, + 0.031997933983802795, + 0.0065412442199885845, + -0.0056118168868124485, + -0.011505667120218277, + -0.041458860039711, + -0.006512399762868881, + -0.007557203993201256, + -0.0008100438280962408, + -0.02789563313126564, + 0.018370607867836952, + 0.02515222132205963, + 0.021831922233104706, + -0.01233894657343626, + -0.0020126905292272568, + 0.022652382031083107, + 0.01055700983852148, + 0.005679120309650898, + -0.05466313660144806, + 0.0356387235224247, + -0.03651046007871628, + 0.009460926987230778, + -0.01485801488161087, + 0.012486373074352741, + -0.015473359264433384, + 0.005634251516312361, + -0.008281515911221504, + 0.025408614426851273, + -0.02233188971877098, + -0.015793850645422935, + 0.031613342463970184, + 0.05122746154665947, + 0.002294723642989993, + 0.014191390946507454, + -0.004762512631714344, + 0.054816972464323044, + -0.010210879147052765, + -0.007935385219752789, + -0.03312606364488602, + 0.015934867784380913, + -0.014627260155975819, + 0.0024806088767945766, + 0.03861289098858833, + 0.006794432643800974, + 0.0038651349022984505, + -0.02529323846101761, + -0.020216641947627068, + 0.046996962279081345, + 0.008595598861575127, + 0.008832762949168682, + 0.005034931004047394, + -0.012268438003957272, + -0.005137488711625338, + -0.03202357143163681, + 0.017665525898337364, + -0.019216706976294518, + 0.0158194899559021, + 0.00447406992316246, + -0.012550471350550652, + -0.032485079020261765, + 0.019921790808439255, + 0.01010191161185503, + 0.013095308095216751, + 0.04635598137974739, + 0.005804112181067467, + -0.08758408576250076, + 0.0071982527151703835, + 0.029126323759555817, + 0.01925516687333584, + -0.029869865626096725, + 0.016973262652754784, + 0.0456380769610405, + -0.022037038579583168, + 0.004009356256574392, + 0.0569193996489048, + 0.01898595318198204, + -0.0059002600610256195, + -0.06902118027210236, + 0.0032545975409448147, + 0.013178635388612747, + 0.00623677670955658, + 0.008435352705419064, + 0.02211395651102066, + 0.007287990767508745, + 0.0018428296316415071, + 0.006352153606712818, + 0.008121269755065441, + -0.00426895497366786, + -0.021472971886396408, + 0.008691745810210705, + -0.01401191484183073, + 0.008960959501564503, + -0.03376704826951027, + -0.02316517010331154, + -0.12901730835437775, + 0.011569765396416187, + -0.00043306496809236705, + -0.017742443829774857, + -0.02720336988568306, + -0.023562580347061157, + -0.016011785715818405, + 0.01812703348696232, + 0.00853790994733572, + -0.012069732882082462, + -0.003958077635616064, + -0.03902311995625496, + 0.031562063843011856, + -0.0254598930478096, + 0.01911414973437786, + -0.004159987438470125, + -0.03940771147608757, + -0.024536876007914543, + 0.030100619420409203, + 0.024447139352560043, + -0.010044222697615623, + -0.014422144740819931, + 0.013114537112414837, + -0.018627000972628593, + -0.012569700367748737, + -0.004361897706985474, + -0.002695338800549507, + -0.02129349671304226, + 0.04461250081658363, + -0.023177990689873695, + 0.007550794165581465, + 0.02516504004597664, + 0.002865199465304613, + 0.0014390095602720976, + -0.01820395141839981, + 0.013447849079966545, + 0.03307478502392769, + -0.05322733148932457, + 0.036997608840465546, + 0.02442150004208088, + 0.015742572024464607, + -0.018485985696315765, + 0.0029661545995622873, + -0.006993137765675783, + 0.02807511016726494, + 0.014678538776934147, + 0.004031790886074305, + -0.022216513752937317, + 0.031305670738220215, + -0.0223703496158123, + -0.023306187242269516, + -0.03810010105371475, + 0.009909615851938725, + -0.02633163146674633, + -0.02554963156580925, + 0.06630340963602066, + -0.008960959501564503, + -0.008069991134107113, + 0.0023299776948988438, + -0.004442020785063505, + 0.0510992631316185, + -0.01151207648217678, + 0.016088703647255898, + -0.012133831158280373, + 0.02351130172610283, + -0.01585794985294342, + 0.030562128871679306, + 0.0059355138801038265, + -0.011210814118385315, + -0.01625536009669304, + 0.023665137588977814, + 0.026613665744662285, + -0.012697897851467133, + 0.023716416209936142, + 0.013524767011404037, + 0.005566948093473911, + 0.03007498010993004, + 0.006800842471420765, + -0.009710910730063915, + 0.015075949020683765, + -0.011915897019207478, + 0.02689569815993309, + 0.0013076078612357378, + -0.017268115654587746, + 0.023306187242269516, + -0.0031856915447860956, + 0.003759372513741255, + 0.0007315232651308179, + 0.03235688433051109, + -0.030254455283284187, + -0.03684377297759056, + -0.043125420808792114, + -0.02815202809870243, + 5.0277201808057725e-05, + 7.481488137273118e-05, + -0.013486308045685291, + -0.0012122613843530416, + -0.01551181823015213, + -0.08343050628900528, + 0.0006185497622936964, + 0.006140628829598427, + 0.0002640053862705827, + 0.007102105300873518, + 0.02507530339062214, + -0.0017578992992639542, + 0.04645853862166405, + -0.021742185577750206, + -0.04402279853820801, + -0.0059291040524840355, + -0.04192036762833595, + 0.009505796246230602, + 0.009525025263428688, + -0.005663095507770777, + 0.013024799525737762, + 0.06543166935443878, + -0.050560835748910904, + 0.035997673869132996, + -0.004458045121282339, + -0.011140305548906326, + -0.016716869547963142, + -0.006502785254269838, + 0.011486437171697617, + -0.02833150327205658, + -0.007832827046513557, + 0.0005091818748041987, + -0.0022097930777817965, + 0.0046535455621778965, + 0.006348948925733566, + 0.048073817044496536, + -0.010377534665167332, + 0.0021713341120630503, + 0.024690711870789528, + -0.012114602141082287, + 0.020562773570418358, + -0.0016697639366611838, + 0.012159470468759537, + 0.037048887461423874, + 0.009236582554876804, + 0.03579255938529968, + 0.023690776899456978, + 0.059585895389318466, + -0.015473359264433384, + 0.03576692193746567, + -0.030946718528866768, + 0.00020811957074329257, + -0.013422209769487381, + -0.026613665744662285, + 0.042253680527210236, + 0.027177730575203896, + 0.012524832040071487, + 0.0042016515508294106, + -0.00969168171286583, + 0.04661237448453903, + 0.005515669472515583, + -0.016716869547963142, + 0.012806865386664867, + -0.023575400933623314, + -0.012159470468759537, + -0.015614375472068787, + 0.009178894571959972, + 0.02389589138329029, + -0.01221075002104044, + -0.0031921013724058867, + 0.003544642822816968, + 0.019062871113419533, + 0.0015375609509646893, + 0.007300810422748327, + 0.02984422631561756, + 0.01353758666664362, + -0.03071596473455429, + -0.003228957997635007, + 0.02120375819504261, + -0.006313694640994072, + 0.024101007729768753, + 0.022190874442458153, + -0.016832245513796806, + 0.0021376824006438255, + -0.055329758673906326, + 0.051330018788576126, + -0.009666042402386665, + 0.02342156320810318, + 0.05176588520407677, + -0.02280621975660324, + 0.001921350252814591, + -0.015178506262600422, + 0.021908840164542198, + 0.030536489561200142, + -0.009608353488147259, + 0.016845066100358963, + 0.04063840210437775, + 0.030869800597429276, + -0.010249338112771511, + -0.013383750803768635, + 0.015934867784380913, + 0.003349142614752054, + -0.020537134259939194, + 0.010242927819490433, + -0.01394781656563282, + 0.012826094403862953, + 0.024344580247998238, + 0.020780708640813828, + 0.001797960721887648, + 0.0071149249561131, + 0.017229655757546425, + 0.014691358432173729, + -0.0068521215580403805, + 0.00873661506921053, + -0.014422144740819931, + 0.018306510522961617, + 0.030510850250720978, + 0.043433092534542084, + 0.0013693025102838874, + -0.01707581989467144, + -0.004563807509839535, + 0.021434511989355087, + 0.01880647800862789, + -0.03507465869188309, + 0.020396118983626366, + -0.008377663791179657, + 0.0238189734518528, + -0.00034993732697330415, + 0.013819620013237, + -0.015063129365444183, + -0.004445225466042757, + -0.016434835270047188, + 0.05209919810295105, + 0.009191714227199554, + 0.03194665536284447, + 0.014281128533184528, + 0.00886481162160635, + -0.06486760079860687, + 0.02745976485311985, + -0.015845129266381264, + -0.02820330671966076, + 0.041946008801460266, + -0.00021152479166630656, + 0.009242992848157883, + -0.018716739490628242, + -0.022780580446124077, + 0.01620408147573471, + -0.023908711969852448, + 0.004627906251698732, + -0.01651175320148468, + -0.0017162353033199906, + -0.05122746154665947, + -0.028049470856785774, + -0.007858466356992722, + -0.011627454310655594, + -0.008980189450085163, + 0.0020928136073052883, + 0.03753603622317314, + 0.04289466515183449, + -0.03497210144996643, + 0.015588736161589622, + -0.008076401427388191, + -0.024652253836393356, + -0.00010766532068373635, + -0.008159729652106762, + 0.013217095285654068, + 0.03189537674188614, + 0.02771615795791149, + -0.005730398930609226, + 0.03620278835296631, + 0.019267985597252846, + -0.028382781893014908, + 0.021267857402563095, + 0.014845195226371288, + -0.011614634655416012, + 0.012422274798154831, + 0.01694762334227562, + 0.015998966991901398, + 0.0416383370757103, + 0.014550342224538326, + 0.028408421203494072, + 0.053945232182741165, + -0.003163257148116827, + -0.036177150905132294, + 0.033100426197052, + 0.0038106513675302267, + 0.044074077159166336, + 0.0014269911916926503, + 0.03984358161687851, + 0.03797190636396408, + 0.013691423460841179, + -0.007589253131300211, + 0.010601879097521305, + -0.011095437221229076, + -0.007467466406524181, + 0.021844742819666862, + 0.04140758141875267, + -0.0010255747474730015, + 0.024011269211769104, + -0.05348372459411621, + -0.024357400834560394, + 0.020011527463793755, + 0.007287990767508745, + 0.022562645375728607, + -0.014473424293100834, + 0.015370802022516727, + 0.024575335904955864, + 0.012935061939060688, + 0.0005051756743341684, + 0.031305670738220215, + 0.04035636782646179, + -0.00016585466801188886, + -0.01329401321709156, + -0.03325426205992699, + 0.03335681930184364, + 0.008243056945502758, + -0.0041952417232096195, + -0.012262028641998768, + 0.0031969088595360518, + -0.026216255500912666, + -0.008198188617825508, + -0.07132872194051743, + 0.006634186953306198, + -0.02633163146674633, + -0.0065348343923687935, + -0.04176653176546097, + 0.004637520760297775, + -0.03848469257354736, + 0.004486889578402042, + 0.01353758666664362, + 0.026408549398183823, + -0.006659826263785362, + 0.005201586987823248, + 0.022998513653874397, + -0.01010191161185503, + 0.002055956982076168, + 0.009044287726283073, + 0.009544255211949348, + -0.00412793830037117, + -0.014268308877944946, + -0.03715144470334053, + 0.043689485639333725, + -0.0029196832329034805, + 0.0076277125626802444, + 0.01589640974998474, + 0.010653157718479633, + 0.03789498656988144, + -0.01144797820597887, + 0.0036984789185225964, + 0.01201204489916563, + -0.005865005776286125, + 0.03676685690879822, + 0.013986275531351566, + 0.020934544503688812, + 0.010332665406167507, + -0.008223827928304672, + 0.019883330911397934, + 0.07230301946401596, + -0.017370672896504402, + 0.018934674561023712, + 0.003150437492877245, + 0.00934555009007454, + 0.011550535447895527, + -0.018665460869669914, + -0.012351766228675842, + 0.0008765459642745554, + -0.0016192863695323467, + 0.0203704796731472, + -0.008095630444586277, + -0.025485532358288765, + 0.01481955498456955, + 0.0038010363932698965, + 0.0018604567740112543, + 0.03815137967467308, + -0.005390677601099014, + -0.0034324706066399813, + 0.01246714312583208, + -0.01538362167775631, + 0.0030030112247914076, + -0.00629126001149416, + -0.027254650369286537, + 0.002049547154456377, + -0.0296391099691391, + -0.018960313871502876, + -0.02080634795129299, + -0.026818780228495598, + 0.02571628801524639, + 0.01055700983852148, + 0.04735591635107994, + -0.03553616628050804, + -0.04276646673679352, + -0.04997112974524498, + -0.028690453618764877, + -0.010057042352855206, + 0.004711234010756016, + -0.0029517323710024357, + 0.012390225194394588, + 0.00855713989585638, + -0.022434448823332787, + -0.05343244597315788, + -0.018485985696315765, + -0.0020543544087558985, + -0.02538297511637211, + -0.0038234710227698088, + 0.02024228125810623, + -0.0025126582477241755, + -0.018268050625920296, + 0.02089608646929264, + 0.013768341392278671, + 0.01611434295773506, + 0.019344903528690338, + -0.002858789637684822, + -0.05045827850699425, + -0.007550794165581465, + -0.008717385120689869, + -0.008550729602575302, + 0.014909293502569199, + 0.006409842520952225, + 0.026305992156267166, + 0.013845259323716164, + 0.0033202983904629946, + 0.006166268140077591, + -0.030357012525200844, + -0.020280741155147552, + -0.006326514296233654, + 0.019011592492461205, + 0.014409325085580349, + 0.01160181500017643, + 0.0020976208616048098, + -0.023665137588977814, + 0.0022498546168208122, + -0.00790974497795105, + -0.004890709649771452, + -0.02211395651102066, + -0.027408486232161522, + 0.0018075755797326565, + -0.007230302318930626, + -0.032741475850343704, + 0.0004911541473120451, + -0.019562838599085808, + 0.018614182248711586, + 0.01847316510975361, + -0.020537134259939194, + 0.012915831990540028, + -0.002701748628169298, + -0.024049729108810425, + 0.0009943267796188593, + -0.0026985437143594027, + 0.0012979931198060513, + 0.013499127700924873, + 0.00527850491926074, + 0.0015239400090649724, + -0.046945683658123016, + 0.007467466406524181, + 0.010204468853771687, + 0.08414840698242188, + 0.018434707075357437, + 0.0027978962752968073, + 0.026664944365620613, + 0.0010391956893727183, + -0.007595662958920002, + 0.010249338112771511, + 0.028998127207159996, + 0.001189826987683773, + -0.052817098796367645, + 0.02489582821726799, + 0.04097171127796173, + 0.010024993680417538, + 0.018088575452566147, + -0.019396182149648666, + 0.028228946030139923, + -0.0006874555838294327, + -0.007666171528398991, + 0.0038523152470588684, + -0.01116594485938549, + 0.04435610771179199, + 0.04009997472167015, + 0.00203192001208663, + -0.011947945691645145, + 0.013986275531351566, + -0.018703920766711235, + 0.030049340799450874, + -0.020306380465626717, + 0.01751169003546238, + 0.0074866958893835545, + 0.01946028135716915, + -0.019793592393398285, + -0.005272095091640949, + 0.012858144007623196, + -0.042997222393751144, + 0.011223633773624897, + -0.001759501756168902, + 0.008614827878773212, + 0.007576433476060629, + 0.006544448900967836, + 0.012358175590634346, + 0.00866610649973154, + 0.004377922508865595, + 6.479949661297724e-05, + 0.00025619339430704713, + 0.01660149171948433, + 0.012531241402029991, + 0.006445096340030432, + -0.007691810838878155, + -0.00014922914851922542, + -0.001028779661282897, + -0.033997803926467896, + -0.008704565465450287, + -0.01435804646462202, + -0.027536682784557343, + -0.02011408470571041, + -0.003906799014657736, + 0.026305992156267166, + -0.01444778498262167, + 0.03197229281067848, + -0.033613212406635284, + 0.021319136023521423, + 0.0027049535419791937, + 0.006634186953306198, + -0.009807058610022068, + -0.012101782485842705, + -0.0177296232432127, + -0.020844807848334312, + -0.04151013866066933, + -0.028793010860681534, + -0.030126258730888367, + -0.013396570459008217, + 0.02467789314687252, + 0.023524120450019836, + 0.02316517010331154, + 0.06112425774335861, + 0.01207614317536354, + -0.010050632990896702, + 0.03176717832684517, + -0.011621044017374516, + 0.015652835369110107, + -0.0093647800385952, + -0.025049664080142975, + -0.016704048961400986, + -0.015806671231985092, + -0.0168194267898798, + 0.0027770642191171646, + 0.023306187242269516, + -0.028741732239723206, + -0.006794432643800974, + 0.0038106513675302267, + 0.05286838114261627, + 0.011339010670781136, + 0.04222803935408592, + 0.00990320648998022, + 0.013319652527570724, + -0.01410165335983038, + -0.0004723252495750785, + -0.005563742946833372, + -0.006166268140077591, + -0.0017643091268837452, + -0.021229397505521774, + 0.0035991263575851917, + 0.03922823444008827, + -0.016755327582359314, + -0.0030831340700387955, + -0.01010191161185503, + -0.015345162712037563, + 0.013370931148529053, + -0.0007651749183423817, + -0.012050503864884377, + 0.011287732049822807, + -0.005675915163010359, + -0.0067175147123634815, + 0.010307026095688343, + 0.007480286061763763, + -0.036689937114715576, + 0.007038007024675608, + -0.001067238743416965, + -0.02851097844541073, + 0.039997417479753494, + -0.015793850645422935, + -0.02598549984395504, + 0.00012549269013106823, + -0.01353758666664362, + 0.009992944076657295, + 0.020126905292272568, + -0.013088897801935673, + -0.011762060225009918, + 0.011024928651750088, + 0.00886481162160635, + 0.019139789044857025, + -0.011242863722145557, + 0.0013628926826640964, + 0.01625536009669304, + 0.005903464742004871, + 0.005970768164843321, + -0.011351830326020718, + -0.007711040321737528, + -0.03822829946875572, + -0.045817553997039795, + -0.011454388499259949, + -0.025447074323892593, + -0.005563742946833372, + -0.007191842887550592, + 0.03238252177834511, + 0.008730204775929451, + 0.005634251516312361, + 0.002088006120175123, + 0.0013709049671888351, + -0.01516568660736084, + 0.006483555305749178, + 0.0005079800030216575, + 0.018434707075357437, + -0.012512012384831905, + -0.033997803926467896, + 0.01516568660736084, + -0.01647329516708851, + -0.004317028913646936, + 0.003188896458595991, + -0.0004096289922017604, + 0.00975577998906374, + -0.016498934477567673, + 0.022690841928124428, + 0.006288055330514908, + 0.021229397505521774, + 0.010531370528042316, + 0.03966410458087921, + 0.002929297974333167, + 0.021998578682541847, + 0.0187295600771904, + -0.0036375855561345816, + 0.0023716415744274855, + 0.024613793939352036, + 0.03451059013605118, + -0.0038010363932698965, + 0.012197930365800858, + -0.004611881449818611, + -0.021626807749271393, + 0.0060829403810203075, + -0.02411382645368576, + 0.02485736832022667, + -0.018139854073524475, + -0.0057816775515675545, + 0.008762254379689693, + 0.014268308877944946, + -0.009358369745314121, + -0.011454388499259949, + 0.02238317020237446, + -0.011069797910749912, + 0.021524250507354736, + 0.0013372533721849322, + 0.02337028458714485, + -0.017537329345941544, + 0.005240045953541994, + 0.03238252177834511, + 0.004858660511672497, + -0.015152866952121258, + -0.020434577018022537, + -0.003241777652874589, + 0.024395860731601715, + -0.01192871667444706, + -0.04022816941142082, + 0.022472906857728958, + -0.03015189804136753, + 0.0014309972757473588, + -0.03435675427317619, + 0.02254982478916645, + -0.006073325406759977, + 0.01158258505165577, + 0.002172936452552676, + -0.02067815139889717, + -0.03333118185400963, + -0.01916542835533619, + 0.014768276363611221, + 0.0032433802261948586, + -0.04422791302204132, + -0.007813598029315472, + 0.0021633217111229897, + 0.0011938331881538033, + -0.00947374664247036, + -0.034433674067258835, + 0.028408421203494072, + -0.038253940641880035, + -0.015486178919672966, + -0.030485210940241814, + 0.008717385120689869, + 0.002217805478721857, + -0.032920949161052704, + -0.02342156320810318, + 0.02516504004597664, + 0.004534963518381119, + -0.023319005966186523, + 0.0030510849319398403, + -0.004211266525089741, + -0.01451188325881958, + -0.030100619420409203, + -0.00589705491438508, + -0.0012018454726785421, + -0.009992944076657295, + -0.02324208803474903, + 0.00015674067253712565, + -0.01863982155919075, + 0.012858144007623196, + -0.028357142582535744, + 0.0013749111676588655, + 0.03666429966688156, + -0.0005488427705131471, + -0.010633928701281548, + 0.015922049060463905, + 0.0012082553002983332, + -0.004246520344167948, + 0.007749499287456274, + -0.02615215629339218, + 0.033613212406635284, + -0.05784241855144501, + 0.007326449733227491, + -0.024036908522248268, + -0.017447590827941895, + 0.04104863107204437, + -0.012370995245873928, + -0.01201204489916563, + -0.01292865164577961, + 0.015370802022516727, + 0.005903464742004871, + 0.011947945691645145, + 0.00983910821378231, + 0.002283506328240037, + -0.00894813984632492, + 0.0016633541090413928, + 0.033305540680885315, + 0.012499192729592323, + -0.01110184658318758, + 0.0073520890437066555, + -0.007249531801789999, + 0.020280741155147552, + -0.0051054395735263824, + -0.018178312107920647, + -0.0016857885057106614, + -0.005326578859239817, + 0.02242162823677063, + -0.016627131029963493, + -0.03479262441396713, + 0.009069927036762238, + -0.038997478783130646, + 0.01594768837094307, + -0.04376640170812607, + 0.0203704796731472, + 0.031613342463970184, + 0.011505667120218277, + 0.009601944126188755, + 0.061329372227191925, + 0.01585794985294342, + -0.025049664080142975, + 0.0009069927036762238, + -0.0002525878371670842, + 0.019216706976294518, + -0.04597138985991478, + -0.03394652530550957, + -0.0054643903858959675, + -0.007390548009425402, + -0.006762383505702019, + 0.027664879336953163, + -0.021972939372062683, + 0.03015189804136753, + -0.0020543544087558985, + 0.008467401377856731, + 0.0074866958893835545, + -0.0012090564705431461, + 0.02472917176783085, + -0.015716932713985443, + -0.0004771326493937522, + 0.005999612621963024, + -0.018870575353503227, + -0.003342732787132263, + 0.012024864554405212, + 0.0011794109595939517, + 0.004980447702109814, + -0.03592075780034065, + 0.021780643612146378, + 0.018562903627753258, + 0.005541308782994747, + 0.028613535687327385, + -0.04753538966178894, + 0.002554322127252817, + -0.003836290678009391, + -0.01589640974998474, + -0.020062806084752083, + 0.018780838698148727, + -0.0121851097792387, + 0.03833085671067238, + 0.010935191065073013, + 0.0447406992316246, + 0.02338310517370701, + 0.01894749328494072, + -0.009377599693834782, + 0.04261263087391853, + -0.0004490895662456751, + 0.01994743011891842, + 0.010108320973813534, + -0.04497145488858223, + -0.005070185288786888, + 0.012858144007623196, + 0.0013108127750456333, + -0.006486760452389717, + 0.028921209275722504, + 0.0041824220679700375, + -0.01803729683160782, + 0.0012114602141082287, + 0.03494646027684212, + 0.04020253196358681, + 0.05186844244599342, + -0.011415929533541203, + 0.026741862297058105, + -0.03451059013605118, + 0.02394717000424862, + 0.009826288558542728, + -0.020716609433293343, + 0.021870382130146027, + 0.03863852843642235, + -0.016063064336776733, + 0.03494646027684212, + -0.005881030112504959, + -0.0013412594562396407, + 0.008114860393106937, + -0.00894813984632492, + -0.013435029424726963, + -0.027690518647432327, + -0.004387537017464638, + -0.018280869349837303, + 0.003910003695636988, + 0.03694633021950722, + 0.02429330162703991, + -0.031177472323179245, + -3.653109524748288e-05, + -0.016716869547963142, + -0.025395795702934265, + 0.021562710404396057, + -0.007396957837045193, + -0.022870317101478577, + 0.006820072419941425, + -0.04986857250332832, + 0.05635533481836319, + -0.003435675520449877, + 0.013345291838049889, + -0.014422144740819931, + -0.012512012384831905, + -0.01798601821064949, + 0.035997673869132996 + ], + "how_to_connect_entities": [ + -0.013995696790516376, + -0.0014536207308992743, + 0.028989259153604507, + 0.013317660428583622, + -0.011353912763297558, + 0.023564966395497322, + -0.0075927297584712505, + 0.021479684859514236, + -0.015825117006897926, + 0.0013736635446548462, + 0.02988477796316147, + -0.02421741746366024, + 0.026967942714691162, + -0.01426435261964798, + 0.009307010099291801, + 0.04022163897752762, + -0.009703597985208035, + 0.09067779034376144, + 0.010515962727367878, + 0.041219502687454224, + 0.06401687860488892, + 0.012377364560961723, + 0.04395723342895508, + 0.022848550230264664, + -0.04436661675572395, + 0.019228091463446617, + 0.047692831605672836, + 0.03950522094964981, + -0.034797344356775284, + -0.040247224271297455, + 0.07471194863319397, + -0.006665227003395557, + -0.02371848374605179, + -0.007669488433748484, + -0.02023874968290329, + 0.034848518669605255, + -0.002417903859168291, + 0.0409892238676548, + 0.020712096244096756, + 0.022656653076410294, + 0.04689965769648552, + -0.0010002637282013893, + -0.012793141417205334, + -0.029628915712237358, + -0.009102320298552513, + 0.012038346379995346, + -0.012166277505457401, + 0.0204946119338274, + 0.0075479536317288876, + -0.0066268472000956535, + 0.0015823517460376024, + 0.014737699180841446, + -0.019560713320970535, + -0.06053714454174042, + 0.0008331533754244447, + -0.03180374950170517, + -0.026737665757536888, + -0.046285584568977356, + -0.027965808287262917, + -0.04073336347937584, + 0.00492855766788125, + 0.0222344808280468, + 0.023296311497688293, + 0.03364596143364906, + -0.009889098815619946, + 0.01368866115808487, + -0.041014812886714935, + -0.014865630306303501, + 0.006063949316740036, + 0.01618332415819168, + 0.02632828615605831, + 0.062481705099344254, + -0.01092534326016903, + 0.0188954696059227, + 0.008379507809877396, + -0.05588044226169586, + -0.003988261800259352, + 0.052912432700395584, + -0.06391453742980957, + -0.0321107842028141, + -0.03661397099494934, + -0.05255422741174698, + -0.02364172600209713, + -0.02126220054924488, + -0.03548817336559296, + -0.0014544202713295817, + -0.05531754344701767, + -0.04029839485883713, + -0.040196049958467484, + -0.046541448682546616, + -0.023590553551912308, + -0.0422685407102108, + -0.008974389173090458, + 0.0033262167125940323, + 0.05613630637526512, + -0.00960125308483839, + 0.015569252893328667, + -0.010061806067824364, + -0.0483069010078907, + 0.035104379057884216, + 0.03791887313127518, + -0.016720635816454887, + -0.04083570837974548, + -0.034413550049066544, + 0.0664219930768013, + 0.015377355739474297, + 0.014341111294925213, + 0.024179037660360336, + -0.023795243352651596, + -0.005987190175801516, + -0.07112986594438553, + -0.002283575711771846, + 0.022247273474931717, + 0.01613215170800686, + 0.03134319558739662, + -0.015019148588180542, + 0.020443439483642578, + -0.0300127100199461, + 0.051300499588251114, + 0.007068210747092962, + -0.019381608814001083, + -0.013970110565423965, + 0.012191863730549812, + 0.022183308377861977, + -0.0082579730078578, + 0.004112995229661465, + -0.0157355647534132, + 0.011302740313112736, + 0.008942405693233013, + -0.019356023520231247, + -0.009518097154796124, + 0.020776061341166496, + 0.03605107218027115, + -0.008552215062081814, + -0.018933849409222603, + 0.011961587704718113, + -0.04761607199907303, + -0.01613215170800686, + 0.011833655647933483, + 0.010112978518009186, + -0.005568214692175388, + -0.037483904510736465, + 0.023987140506505966, + 0.016746222972869873, + -0.0006112722912803292, + 0.016669463366270065, + -0.013791006989777088, + -0.02691677026450634, + 0.01940719597041607, + -0.011552207171916962, + -0.03052443638443947, + 0.003103936091065407, + -0.05234953388571739, + -0.027530841529369354, + -0.008974389173090458, + -0.03830266743898392, + -0.003158306935802102, + 0.06611495465040207, + -0.012678002938628197, + -0.047564901411533356, + 0.013509557582437992, + 0.0035532950423657894, + -0.010829394683241844, + 0.012588451616466045, + -0.05357767641544342, + -0.03065236657857895, + -0.03625576198101044, + 0.0019909327384084463, + -0.03930053114891052, + 0.005561818368732929, + -0.01101489458233118, + -0.030242986977100372, + -0.009658821858465672, + 0.011104446835815907, + 0.022771792486310005, + -0.024588417261838913, + -0.07133455574512482, + -0.018665194511413574, + 0.009358183480799198, + -0.020187577232718468, + 0.03743273392319679, + -0.011008498258888721, + -0.04948387295007706, + -0.050021182745695114, + -0.04971414804458618, + 0.014929596334695816, + -0.048281315714120865, + 0.04633675888180733, + -0.01445624977350235, + 0.008392300456762314, + 0.01134112011641264, + 0.022976482287049294, + 0.012089518830180168, + 0.005449878517538309, + 0.005350731313228607, + 0.018166260793805122, + 0.023692898452281952, + -0.013368832878768444, + 0.04782076179981232, + -0.02011081948876381, + 0.048025455325841904, + -0.00577930174767971, + 0.07046462595462799, + -0.011603379622101784, + -0.04746255651116371, + -0.023564966395497322, + -0.03771417960524559, + 0.03689542040228844, + 0.005952008999884129, + -0.010854980908334255, + -0.021274995058774948, + -0.053731195628643036, + 0.007823006249964237, + 0.015172665938735008, + 0.0034317602403461933, + -0.02311720699071884, + -0.07486546784639359, + 0.048332490026950836, + -0.03569286689162254, + -0.010464790277183056, + -0.028247255831956863, + 0.034208860248327255, + 0.025547903031110764, + -0.0340297557413578, + 0.004823014605790377, + 0.04736021161079407, + 0.029526570811867714, + -0.07225566357374191, + 0.03571845218539238, + -0.016669463366270065, + -0.0022132135927677155, + 0.020673716440796852, + 0.027735531330108643, + -0.00848185271024704, + -0.0034157687332481146, + -0.03162464499473572, + 0.006307018920779228, + 0.004176960792392492, + -0.0003426163166295737, + 0.013599109835922718, + -0.034080930054187775, + 0.0009962659096345305, + 0.008187610656023026, + 0.005702543072402477, + -0.011737707071006298, + 0.00489977328106761, + -0.010528755374252796, + -0.012223847210407257, + 0.012786745093762875, + 0.029654502868652344, + 0.07706588506698608, + -0.0010698264231905341, + 0.03108733333647251, + 0.05889962241053581, + 0.024319762364029884, + -0.0715392455458641, + -0.01677180826663971, + -0.03487410396337509, + 0.02312999963760376, + -0.012166277505457401, + -0.02448607236146927, + 0.03822590783238411, + -0.050839945673942566, + 0.023078827187418938, + -0.0355905182659626, + 0.010170547291636467, + -0.001917372108437121, + 0.028758982196450233, + -0.052707742899656296, + -0.06253287941217422, + -0.0022020195610821247, + 0.027863461524248123, + 0.05710858479142189, + -0.06335163861513138, + -0.09042192250490189, + -0.042115021497011185, + -0.00017800457135308534, + 0.03617900609970093, + 0.003671631682664156, + -0.0368698351085186, + -0.035232312977313995, + -0.029117189347743988, + 0.03423444554209709, + 0.04817897081375122, + 0.004621522501111031, + 0.033108651638031006, + -0.029193948954343796, + 0.04203826189041138, + 0.03963315114378929, + 0.0019189711892977357, + 0.011571396142244339, + 0.05485698953270912, + -0.003063957439735532, + -0.006729192566126585, + 0.06488681584596634, + 0.011993570253252983, + 0.007330470252782106, + -0.023616138845682144, + -0.014865630306303501, + -0.0068827103823423386, + 0.009396562352776527, + 0.03983784466981888, + 0.01330486685037613, + 0.04651586338877678, + 0.012997832149267197, + -0.032468993216753006, + 0.007330470252782106, + -0.030984988436102867, + 0.020469026640057564, + -0.003905106568709016, + 0.012415744364261627, + -0.008980785496532917, + 0.016042599454522133, + 0.005424291826784611, + -0.005101265385746956, + 0.024524452164769173, + 0.016938120126724243, + -0.010196133516728878, + -0.04201267659664154, + 0.005619387608021498, + -0.02101913094520569, + -0.049944423139095306, + 0.037867698818445206, + -0.023680105805397034, + -0.018460502848029137, + -0.005692948121577501, + -0.018869884312152863, + -0.01766732893884182, + -0.03139436990022659, + -0.012773951515555382, + -0.026686493307352066, + -0.024191830307245255, + 0.008923216722905636, + 7.890769484220073e-05, + -0.04165446758270264, + 0.0060767424292862415, + 0.03252016752958298, + 0.04661820828914642, + 0.005958405788987875, + 0.053168296813964844, + -0.022976482287049294, + 0.018601227551698685, + -0.02865663729608059, + 0.006933882832527161, + -0.02806815318763256, + 0.0050149112939834595, + -0.026034042239189148, + 0.03528348356485367, + -0.02819608338177204, + 0.043522268533706665, + -0.005878448486328125, + 0.03717686980962753, + -0.05081435665488243, + -0.008737715892493725, + 0.0028208878356963396, + 0.03426003456115723, + 0.006780365016311407, + 0.014251559972763062, + -0.00924944132566452, + -0.010976515710353851, + -0.021863479167222977, + 0.0511469803750515, + -0.0429081954061985, + 0.009921081364154816, + -0.042498815804719925, + 0.0750189796090126, + -0.02870780974626541, + 0.03835383802652359, + -0.04812780022621155, + 0.03449030965566635, + 0.06442625820636749, + 0.056238651275634766, + 0.022950895130634308, + 0.025611869990825653, + -0.03231547400355339, + 0.0375094898045063, + 0.013663074932992458, + 0.01702767238020897, + -0.004583143163472414, + 0.07988037914037704, + 0.03991460055112839, + -0.03057560883462429, + 0.021825099363923073, + -0.04183357208967209, + 0.007541556842625141, + 0.013867765665054321, + -0.01352235022932291, + 0.020993545651435852, + -0.06437508761882782, + -0.01015135832130909, + 0.059462521225214005, + -0.004097003489732742, + 0.032724857330322266, + 0.016528738662600517, + 0.015773942694067955, + 0.00924944132566452, + 0.052963607013225555, + 0.0107974112033844, + 0.029654502868652344, + 0.018396537750959396, + 0.034592654556035995, + -0.03121526539325714, + -0.033825065940618515, + -0.01696370542049408, + -0.005238791462033987, + -0.005542628467082977, + -0.018857089802622795, + 0.020341094583272934, + -0.005241989623755217, + 0.012031950056552887, + 0.04029839485883713, + -0.0033006304875016212, + 0.04367578402161598, + 0.03231547400355339, + -0.002899245824664831, + -0.062481705099344254, + -0.014149214141070843, + 0.02261827513575554, + -0.01191041525453329, + -0.008008507080376148, + 0.039479635655879974, + 0.005440283566713333, + -0.022758997976779938, + -0.03449030965566635, + -0.0502258725464344, + 0.03553934767842293, + 0.04150095209479332, + -0.05009794235229492, + 0.03341568633913994, + -0.07578656822443008, + 0.0009650826104916632, + 0.0215948224067688, + 0.020149197429418564, + 0.05260539799928665, + 0.014213180169463158, + -0.009805942885577679, + 0.044110752642154694, + -0.018857089802622795, + -0.004720669239759445, + 0.006767571903765202, + 0.029193948954343796, + -0.008565008640289307, + 0.06683137267827988, + 0.01574835740029812, + -0.03950522094964981, + -0.013407212682068348, + -0.022707825526595116, + -0.016541531309485435, + -0.044417787343263626, + -0.0027473270893096924, + -0.012223847210407257, + -0.008590594865381718, + -0.00034681407851167023, + 0.03400417044758797, + 0.013663074932992458, + 0.006479726172983646, + 0.027582013979554176, + -0.016669463366270065, + 0.010554341599345207, + -0.013407212682068348, + -0.028477532789111137, + 0.010963722132146358, + 0.006038362625986338, + 0.010592721402645111, + -0.012754762545228004, + 0.0517866387963295, + -0.012607640586793423, + 0.007196142338216305, + 0.026558561250567436, + 0.02447327971458435, + 0.006569278426468372, + -0.0028816552367061377, + -0.010036219842731953, + 0.011648155748844147, + 0.0009674813481979072, + -0.024115072563290596, + -0.0284519474953413, + 0.04935593903064728, + -0.023756863549351692, + -0.035948727279901505, + 0.01268440019339323, + -0.016477566212415695, + -0.02620035409927368, + 0.012377364560961723, + -0.0001061430957634002, + 0.09180358052253723, + 0.020328301936388016, + -0.009044751524925232, + -0.02415345050394535, + -0.021313372999429703, + -0.04656703397631645, + -0.005360326264053583, + 0.038967911154031754, + -0.013752627186477184, + 0.0012385359732434154, + -0.06186763197183609, + -0.04321523383259773, + -0.04595296457409859, + 0.027633186429739, + 0.0008203602046705782, + 0.025266455486416817, + -0.04469923675060272, + 0.009108716621994972, + 0.033108651638031006, + 0.0073816427029669285, + -0.04651586338877678, + 0.030242986977100372, + -0.01902340166270733, + -0.020072439685463905, + 0.011616172268986702, + -0.007368849590420723, + 0.016336841508746147, + 0.02234961837530136, + 0.033185407519340515, + -0.03172698989510536, + 0.030473263934254646, + -0.0023555371444672346, + -0.0006116720614954829, + 0.012709986418485641, + 0.02281017228960991, + -0.021223822608590126, + -0.01844771020114422, + 0.009294217452406883, + 0.024191830307245255, + -0.0012233441229909658, + -0.031317610293626785, + -0.012243036180734634, + 0.002352338982746005, + -0.0037260025274008512, + 0.003383785951882601, + 0.022707825526595116, + 0.0037611837033182383, + -0.0011193999089300632, + -0.006131113041192293, + -0.06657551229000092, + 0.024575624614953995, + -0.03548817336559296, + -0.04736021161079407, + 0.0023619337007403374, + -0.01230060588568449, + -0.026481803506612778, + 0.02421741746366024, + -0.0037419938016682863, + 0.013727040961384773, + -0.015172665938735008, + -0.007567143067717552, + 0.018012743443250656, + 0.015505287796258926, + 0.007918954826891422, + 0.021415719762444496, + 0.0058816466480493546, + -0.04116832837462425, + -0.019867748022079468, + -0.030422091484069824, + -0.01060551404953003, + 0.003825149266049266, + -0.013004228472709656, + -0.023987140506505966, + 0.031906094402074814, + 0.006965865381062031, + 0.018063915893435478, + -0.027991393581032753, + -0.008053282275795937, + 0.0038123561535030603, + 0.008782492019236088, + 0.06985055655241013, + 0.01734749972820282, + -0.020609751343727112, + -0.015837909653782845, + -0.010848583653569221, + -0.0038923132233321667, + -0.0007460000924766064, + 0.03223871812224388, + -0.004848600830882788, + 0.043087299913167953, + 0.005321946926414967, + -0.01972702518105507, + -0.006447743158787489, + -0.003991459961980581, + -0.03287837281823158, + -0.024690764024853706, + -0.05165870487689972, + 0.022324031218886375, + 0.006092733703553677, + -0.04285702481865883, + -0.02344982884824276, + -0.01330486685037613, + -0.007720660883933306, + 0.012319795787334442, + -0.010592721402645111, + -0.00451278081163764, + 0.012825124897062778, + -0.002840077504515648, + 0.0023107612505555153, + -0.021620409563183784, + 0.010324065573513508, + -0.012006363831460476, + 0.0015095906564965844, + -0.008692939765751362, + -0.0181150883436203, + -0.009345389902591705, + -0.007605522871017456, + -0.030626781284809113, + 0.011110843159258366, + 0.01059911772608757, + -0.003610864281654358, + 0.010266495868563652, + -0.02177392691373825, + -0.026814425364136696, + 0.030984988436102867, + -0.035820797085762024, + -0.0024258994963020086, + -0.0177952591329813, + -0.006307018920779228, + -0.008130041882395744, + 0.021044718101620674, + -0.02107030339539051, + 0.04625999927520752, + 0.005424291826784611, + -0.02712146006524563, + -0.018716366961598396, + 0.025151316076517105, + -0.016490358859300613, + 0.01480166520923376, + 0.015313390642404556, + 0.03390182554721832, + -0.005309153813868761, + -0.006374182645231485, + -0.03244340792298317, + 0.006370984483510256, + -0.0015207846881821752, + -0.006367786321789026, + 0.00478783342987299, + -0.01632404886186123, + -0.016298461705446243, + 0.025215281173586845, + 0.004902971442788839, + 0.007579936180263758, + 0.03804680332541466, + 0.00928142387419939, + 0.001268120133318007, + -0.02132616750895977, + 0.01831977814435959, + -0.0035628899931907654, + -0.018102295696735382, + 0.021108683198690414, + -0.008654559962451458, + 0.05736444517970085, + 0.019816575571894646, + -0.015313390642404556, + -0.0007428017561323941, + 0.0014544202713295817, + 0.05454995483160019, + 0.0013680665288120508, + 0.012383760884404182, + -0.020315509289503098, + -0.0235137939453125, + -0.04689965769648552, + -0.0265329759567976, + 0.018358157947659492, + -0.04902331903576851, + 0.005728129297494888, + -0.002739331452175975, + 0.02094237320125103, + -0.005942414049059153, + -0.007503177504986525, + 0.04503185674548149, + 0.04109157249331474, + 0.013112969696521759, + -0.007765437010675669, + -0.017488224431872368, + 0.040119290351867676, + 0.00995946116745472, + 0.008692939765751362, + 0.0013832583790645003, + 0.018012743443250656, + 0.008136438205838203, + -0.03313423693180084, + 0.002190825529396534, + 0.014059662818908691, + -0.0444689616560936, + 0.01041361689567566, + -0.03720245510339737, + 0.04219178110361099, + 0.01913853920996189, + 0.00183101836591959, + 0.004458409734070301, + -0.0017814449965953827, + 0.007279297336935997, + -0.002884853398427367, + -0.0080980584025383, + 0.00497973058372736, + -0.019176919013261795, + -0.02266944758594036, + 0.016106564551591873, + -0.02801698073744774, + 0.025803767144680023, + -0.005082075484097004, + -0.01728353463113308, + -0.11483123898506165, + -0.005379516165703535, + -0.032468993216753006, + 0.028810154646635056, + -0.02627711370587349, + -0.034336790442466736, + -0.02988477796316147, + -0.0035916746128350496, + 0.03950522094964981, + 0.029270708560943604, + -0.0057952930219471455, + -0.042933784425258636, + 0.04052867367863655, + -0.04753931239247322, + 0.026865597814321518, + 0.0026593743823468685, + 0.0208144411444664, + -0.017808053642511368, + 0.003084746189415455, + 0.016400806605815887, + -0.03108733333647251, + 0.04810221120715141, + -0.006997848395258188, + -0.020609751343727112, + -0.015646012499928474, + -0.005913629662245512, + 0.004915764555335045, + -0.011545809917151928, + 0.026967942714691162, + 0.009140700101852417, + -0.002692956244572997, + -0.01643918640911579, + -0.0018646003445610404, + 0.025982869789004326, + -0.021569237112998962, + -0.008571404963731766, + 0.029321881011128426, + -0.023552173748612404, + 0.053731195628643036, + -0.035181138664484024, + 0.02423021011054516, + -0.01792319118976593, + 0.013151349499821663, + -0.0003795964876189828, + -0.04459689185023308, + 0.030729126185178757, + -0.016017014160752296, + -0.015518080443143845, + 0.0721021443605423, + -0.014302732422947884, + -0.010426410473883152, + -0.03364596143364906, + 0.010503169149160385, + -0.011193999089300632, + 0.005401904229074717, + 0.0082579730078578, + -0.008462662808597088, + 0.011091654188930988, + 0.043394334614276886, + 0.005718534346669912, + 0.027837876230478287, + -0.016669463366270065, + 0.036460451781749725, + -0.01656711846590042, + 0.016682256013154984, + -0.008021299727261066, + 0.010515962727367878, + -0.011289947666227818, + -0.0101769445464015, + 0.0060767424292862415, + 0.018972229212522507, + 0.06263522058725357, + 0.016592703759670258, + 0.021825099363923073, + 0.01933043636381626, + 0.008270765654742718, + -0.02627711370587349, + -0.03876321762800217, + -0.008737715892493725, + -0.013253694400191307, + -0.03474617376923561, + 0.020072439685463905, + -0.0059008365496993065, + -0.030242986977100372, + 0.03426003456115723, + 0.028170498088002205, + 0.015147079713642597, + -0.012377364560961723, + 0.00013772616512142122, + -0.002798499772325158, + -0.04093805328011513, + -0.04851159453392029, + -0.022912517189979553, + -0.012063932605087757, + 0.01926647126674652, + 0.002544236136600375, + -0.032289888709783554, + 0.0017174793174490333, + -0.11923208087682724, + -0.04897214472293854, + 0.02480590157210827, + -0.021351752802729607, + 0.008200403302907944, + -0.0037355972453951836, + 0.06161177158355713, + 0.03451589494943619, + -0.014187593944370747, + -0.050021182745695114, + -0.003630053950473666, + -0.007918954826891422, + -0.013356040231883526, + 0.009863512590527534, + 0.026865597814321518, + 0.008955199271440506, + 0.029859192669391632, + 0.0012993034906685352, + 0.05286126211285591, + 0.008840060792863369, + 0.002539438661187887, + -0.02704470045864582, + 0.024716349318623543, + -0.006588467862457037, + -0.018844297155737877, + -0.003940287511795759, + -0.0224135834723711, + -0.0002260788023704663, + 0.015556460246443748, + 0.03134319558739662, + -0.0008015703060664237, + 0.010931739583611488, + -0.011616172268986702, + -0.006614054087549448, + -0.02100633829832077, + 0.01120679173618555, + 0.02011081948876381, + 0.013420005328953266, + 0.005827276036143303, + -0.007643902208656073, + 0.004771841689944267, + 0.034720584750175476, + 0.005446679890155792, + 0.005117256660014391, + -0.0013392820255830884, + 0.0181150883436203, + -0.01734749972820282, + 0.02883574180305004, + -0.019176919013261795, + 0.03991460055112839, + 0.01020892709493637, + -0.05211925879120827, + 0.007611919194459915, + -0.025023385882377625, + 0.03512996807694435, + 0.033313341438770294, + -0.022004203870892525, + 0.001978139625862241, + -0.011456258594989777, + -0.020085232332348824, + 0.04137301817536354, + 0.01172491442412138, + 0.030729126185178757, + -0.02883574180305004, + -0.013189729303121567, + -0.0019093763548880816, + 0.00018829904729500413, + -0.0222344808280468, + -0.005219601560384035, + 0.03571845218539238, + 0.0032286690548062325, + 0.002321955282241106, + 0.01150103472173214, + 0.0046311174519360065, + -0.0009930676314979792, + 0.02153085730969906, + 0.0029696079436689615, + -0.03505320847034454, + 0.025739800184965134, + -0.035564932972192764, + 0.01579952985048294, + 0.053680021315813065, + -0.006297423969954252, + 0.04193591699004173, + 0.021172650158405304, + -0.013573523610830307, + -0.007989317178726196, + 0.00412578834220767, + 0.02466517686843872, + 0.052144844084978104, + 0.025036178529262543, + 0.008232386782765388, + -0.022080961614847183, + -0.034464724361896515, + 0.00613750983029604, + 0.015978634357452393, + 0.012025552801787853, + -0.014891216531395912, + 0.016784600913524628, + -0.01837095059454441, + 0.02988477796316147, + 0.019765403121709824, + -0.007458401378244162, + -0.00790616124868393, + -0.011936001479625702, + 0.04697641730308533, + 0.040631018579006195, + -0.0066716233268380165, + -0.008200403302907944, + -0.0011225981870666146, + -0.023155586794018745, + 0.005542628467082977, + 0.0505073219537735, + 0.028221670538187027, + -0.031957268714904785, + -0.012057536281645298, + 0.008219593204557896, + -0.03039650432765484, + -0.02062254399061203, + -0.007074607070535421, + -0.0023363474756479263, + 0.025931697338819504, + -0.021569237112998962, + -0.003383785951882601, + -0.0052164033986628056, + -0.0003320219984743744, + 0.03487410396337509, + 0.01689974032342434, + -0.03134319558739662, + -0.014622560702264309, + 0.018780332058668137, + 0.01952233351767063, + -0.04595296457409859, + 0.0026609734632074833, + -0.014865630306303501, + -0.028221670538187027, + 0.013151349499821663, + 0.0084178876131773, + -0.014763285405933857, + 0.004256918095052242, + -0.021799514070153236, + -0.00283528002910316, + -0.04787193611264229, + -0.030166227370500565, + 0.03597431257367134, + 0.011328326538205147, + -0.01714280992746353, + -0.019228091463446617, + -0.006665227003395557, + -0.05063525587320328, + 0.04643910378217697, + 0.013112969696521759, + 0.00347013957798481, + 0.020955165848135948, + -0.06156059727072716, + 0.019867748022079468, + -0.018524469807744026, + -0.04336874932050705, + -0.024447694420814514, + 0.006009578239172697, + -0.004001054912805557, + 0.03129202499985695, + 0.010074598714709282, + -0.019509540870785713, + -0.00318069476634264, + 0.006997848395258188, + -0.01082299742847681, + 0.00613750983029604, + 0.050200287252664566, + -0.03203402832150459, + -0.02357775904238224, + -0.023846415802836418, + -0.008558611385524273, + 0.03078029863536358, + 0.027249392122030258, + 0.006831537466496229, + 0.01484004408121109, + -0.021684374660253525, + -0.036076657474040985, + 0.02518969587981701, + -0.014059662818908691, + 0.0016327246557921171, + -0.0168357752263546, + 0.002870461205020547, + 0.016170531511306763, + -0.009326200000941753, + -0.008321939036250114, + 0.014520215801894665, + -0.0021796314977109432, + -0.0038571322802454233, + 0.0208144411444664, + 0.029628915712237358, + 0.0078677823767066, + 0.028733396902680397, + -0.007112986873835325, + -0.0010858179302886128, + 0.008692939765751362, + -0.0017670526867732406, + 0.01156499981880188, + -0.004061822313815355, + 0.02410227805376053, + -0.01587628945708275, + 0.02518969587981701, + 0.017897605895996094, + -0.016157737001776695, + 0.01464814692735672, + 0.02474193647503853, + -0.007560746744275093, + -0.01869077980518341, + 0.01371424738317728, + 0.02312999963760376, + 0.0059967851266264915, + 0.00470787612721324, + 0.015364563092589378, + -0.04838366061449051, + 0.02512573078274727, + -0.03231547400355339, + -0.015569252893328667, + -0.011929604224860668, + -0.02660973370075226, + -0.007675884757190943, + -0.01715560257434845, + 0.009108716621994972, + -0.012985038571059704, + 0.003498924197629094, + 0.05843907222151756, + 0.01426435261964798, + -0.012089518830180168, + -0.02041785418987274, + -0.0030367719009518623, + -0.023360276594758034, + 0.009466924704611301, + -0.0192152988165617, + -0.010228116996586323, + 0.01626008376479149, + 0.0029983925633132458, + 0.03891673684120178, + 0.021735547110438347, + 0.009294217452406883, + -0.028733396902680397, + 0.008904026821255684, + -0.013240901753306389, + 0.025611869990825653, + -0.021863479167222977, + 0.025266455486416817, + -0.03477175906300545, + 0.02806815318763256, + -0.004247323144227266, + 0.0014680130407214165, + 0.012479709461331367, + 0.00312472484074533, + 0.0026993528008461, + -0.028605464845895767, + -0.0015399744734168053, + 0.026865597814321518, + 0.003604467725381255, + 0.0028432756662368774, + 0.008520232513546944, + -0.0024818694218993187, + -0.01752660423517227, + 0.02472914196550846, + 0.027607599273324013, + 0.0005253183771856129, + -0.0008483452256768942, + -0.019381608814001083, + 0.008238783106207848, + -0.021569237112998962, + -0.007285694126039743, + 0.023347483947873116, + -0.026481803506612778, + 0.007854988798499107, + -0.006773968692868948, + -0.02921953611075878, + -0.004813419654965401, + -0.006502114236354828, + -0.03108733333647251, + -0.00010334459511796013, + -0.005497852806001902, + 0.016349634155631065, + -0.047053173184394836, + -0.015889082103967667, + -0.008213196881115437, + 0.01624728925526142, + 0.03548817336559296, + -0.009543683379888535, + -0.02054578624665737, + -0.0059008365496993065, + -0.020571371540427208, + -0.00389551161788404, + -0.018933849409222603, + 0.03326216712594032, + -0.006652433425188065, + 0.0353090725839138, + -0.053680021315813065, + 0.006140707992017269, + -0.0031215264461934566, + -0.020200369879603386, + -0.004621522501111031, + -0.010362444445490837, + -0.043854888528585434, + 0.0033390100579708815, + -0.01952233351767063, + -0.004755850415676832, + 0.008718525990843773, + 0.013970110565423965, + -0.008309145458042622, + -0.003949882462620735, + -0.0235137939453125, + 0.0028416765853762627, + -0.0015679594362154603, + -0.012965848669409752, + 0.0022356014233082533, + 0.04260116070508957, + 0.014149214141070843, + -0.023872002959251404, + 0.03418327495455742, + 0.03553934767842293, + 0.003017582232132554, + -0.013675868511199951, + 0.02467796951532364, + -0.005299558863043785, + -0.009230251424014568, + 0.015786737203598022, + 0.022899722680449486, + 0.0060511562041938305, + -0.03418327495455742, + -0.02055857889354229, + -0.002403511432930827, + 0.018089503049850464, + 0.012588451616466045, + -0.0029903969261795282, + 0.005414697341620922, + -0.008200403302907944, + -0.019944507628679276, + -0.027479669079184532, + 0.02717263251543045, + -0.018729159608483315, + 0.004061822313815355, + 0.004602332599461079, + -0.007010641507804394, + 0.04029839485883713, + 0.005101265385746956, + -0.015326183289289474, + 0.004170564003288746, + 0.014213180169463158, + -0.007157762534916401, + -0.018012743443250656, + 0.014660940505564213, + 0.025803767144680023, + 0.012786745093762875, + 0.07066931575536728, + 0.008999975398182869, + -0.041142743080854416, + 0.03804680332541466, + 0.05987190082669258, + 0.0074328151531517506, + 0.009876305237412453, + 0.005280368961393833, + -0.007854988798499107, + -0.027633186429739, + -0.0314711295068264, + 0.01310017704963684, + 0.03525789827108383, + -0.009492510929703712, + 0.0012161480262875557, + -0.005836870986968279, + -0.0005169228534214199, + -0.01063110027462244, + 0.020136404782533646, + 0.02929629385471344, + 0.0323922336101532, + 0.02311720699071884, + -0.014277146197855473, + 0.008904026821255684, + 0.023181172087788582, + -0.01227501966059208, + 0.020903993397951126, + -0.034413550049066544, + -0.0014912005281075835, + 0.04503185674548149, + -0.013560730032622814, + -0.023552173748612404, + 0.055726923048496246, + 0.005964802112430334, + -0.0489465594291687, + -0.00010364443733124062, + -0.01586349494755268, + -0.04137301817536354, + 0.005465869791805744, + 0.023692898452281952, + -0.012773951515555382, + -0.0065308986231684685, + -0.011462654918432236, + -0.017999950796365738, + -0.0034317602403461933, + 0.033492445945739746, + 0.03461823984980583, + 0.017066050320863724, + -0.028963671997189522, + -0.01560763269662857, + 0.024498866870999336, + 0.0067163994535803795, + -0.03548817336559296, + -0.029066016897559166, + -0.017130017280578613, + -0.03203402832150459, + -0.010279289446771145, + 0.02776111662387848, + -0.017040465027093887, + -0.004448814783245325, + -0.023744070902466774, + 0.01894664205610752, + -0.0013560729566961527, + 0.011833655647933483, + 0.007138573098927736, + 0.022183308377861977, + 0.008149230852723122, + -0.011168412864208221, + -0.007554349955171347, + 0.006370984483510256, + -0.038123562932014465, + 0.00982513278722763, + 0.019752610474824905, + 0.019995680078864098, + -0.019356023520231247, + -0.028758982196450233, + 0.005833672359585762, + -0.024370934814214706, + -0.016605498269200325, + -0.03141995519399643, + -0.0057856980711221695, + -0.009658821858465672, + -0.06534736603498459, + 0.023219551891088486, + -0.030242986977100372, + 0.00685712369158864, + 0.027147047221660614, + -0.006063949316740036, + -0.00928142387419939, + 0.018729159608483315, + 0.014763285405933857, + 0.0019333634991198778, + 0.032801613211631775, + -0.0012593248393386602, + 0.008737715892493725, + -0.0066012609750032425, + -0.008923216722905636, + -0.01991892233490944, + -0.05173546448349953, + -0.00520680844783783, + -0.00206449325196445, + 0.017884811386466026, + 0.03443913534283638, + 0.001653513521887362, + -0.02466517686843872, + -0.003569286549463868, + 0.00822599045932293, + -0.00908952672034502, + 0.007554349955171347, + 0.04723227769136429, + 3.5231112178735202e-06, + -0.01330486685037613, + 0.015620426274836063, + -0.008718525990843773, + -0.004228133242577314, + 0.01015135832130909, + 0.008622577413916588, + -0.009044751524925232, + 0.00014672134420834482, + 0.011705724522471428, + -0.011974380351603031, + -0.009997840039432049, + 0.02016199193894863, + 0.0010890162084251642, + -0.009115112945437431, + 0.005529835354536772, + -0.019483955577015877, + 0.007695074658840895, + -0.0340297557413578, + -0.009556476958096027, + 0.01246691681444645, + 0.03198285400867462, + -0.01933043636381626, + -0.012837917543947697, + 0.008181214332580566, + -0.01606818661093712, + -0.010829394683241844, + 0.012415744364261627, + -0.001754259574227035, + 0.024498866870999336, + -0.015697184950113297, + -0.003209479385986924, + -0.013189729303121567, + 0.017628949135541916, + 0.03052443638443947, + 0.015850702300667763, + 0.0173347070813179, + -0.03052443638443947, + -0.011347516439855099, + -0.011443465016782284, + 0.014686526730656624, + -0.012441330589354038, + 0.008277162909507751, + -0.013675868511199951, + -0.0257525946944952, + -0.0295521579682827, + -0.00017410666623618454, + -0.024358142167329788, + 0.014788871631026268, + -0.040042534470558167, + 0.006793158128857613, + -0.010343254543840885, + -0.0007200139807537198, + -0.014507422223687172, + 0.009569269604980946, + -0.007976523600518703, + 0.0015687589766457677, + -0.006303820293396711, + 0.012166277505457401, + 0.016554325819015503, + -0.008270765654742718, + -0.015773942694067955, + -0.014571388252079487, + 0.003905106568709016, + 0.005427490454167128, + -0.00312472484074533, + 0.02234961837530136, + 0.030089469626545906, + -0.036844246089458466, + -0.007068210747092962, + -0.025036178529262543, + 0.020673716440796852, + -0.01236457098275423, + -0.015850702300667763, + -0.027223804965615273, + 0.028861327096819878, + 0.02396155335009098, + -0.021889064460992813, + 0.04001694545149803, + -0.03136878460645676, + -0.0444689616560936, + -0.0058912415988743305, + 0.01626008376479149, + -0.01441787090152502, + 0.03108733333647251, + -0.03477175906300545, + -0.02627711370587349, + -0.0036492436192929745, + -0.001041841460391879, + 0.0111172404140234, + 0.009102320298552513, + -0.022695032879710197, + 0.012837917543947697, + -0.02087840624153614, + -0.04452013224363327, + -0.007010641507804394, + 0.0105671351775527, + 0.03400417044758797, + 0.01592746190726757, + 0.0028816552367061377, + -0.031829334795475006, + -0.020788855850696564, + 0.01352235022932291, + -0.03282720223069191, + -0.011232377961277962, + -0.007637505419552326, + -0.01233898475766182, + 0.01895943656563759, + 0.01191041525453329, + 0.017692914232611656, + -0.0036236573942005634, + 0.004768643528223038, + 0.013381626456975937, + -0.01211510505527258, + -0.0019957299809902906, + 0.015338976867496967, + 0.00171428092289716, + -0.0037707784213125706, + -0.0014632155653089285, + 0.002636986318975687, + 0.00165831099729985, + -0.014494629576802254, + -0.02298927493393421, + 0.026481803506612778, + -0.001861402066424489, + -0.018677987158298492, + -0.018140675500035286, + -0.012869900092482567, + -0.026059629395604134, + -0.0019349626963958144, + -0.010432806797325611, + 0.01082299742847681, + -0.002373127732425928, + 0.022950895130634308, + 0.005126851610839367, + -0.030933815985918045, + 0.03374830633401871, + -0.026814425364136696, + -0.0222344808280468, + -0.005747318733483553, + -0.007170555647462606, + 0.013637488707900047, + -0.00720893545076251, + -0.0034669414162635803, + -0.009102320298552513, + -0.013483971357345581, + 0.009172682650387287, + -0.020955165848135948, + -0.0170148778706789, + -0.02236241102218628, + -0.02041785418987274, + 0.005293162539601326, + 0.003214276861399412, + -0.013080987147986889, + 9.74477588897571e-05, + 0.02215772122144699, + 0.0017574578523635864, + 0.006390174385160208, + -0.0017478630179539323, + -0.020891200751066208, + 0.012831521220505238, + -0.03259692341089249, + -0.01805112324655056, + 0.0007887771353125572, + -0.015722770243883133, + -0.0020453035831451416, + -0.00999144371598959, + -0.01420038752257824, + 0.015978634357452393, + -0.01984216272830963, + 0.003447751747444272, + -0.015044734813272953, + 0.0007080204086378217, + -0.016669463366270065, + 0.014533008448779583, + -0.00682514114305377, + -0.03415768966078758, + 0.027991393581032753, + 0.02712146006524563, + 0.02921953611075878, + 0.026942355558276176, + 0.017692914232611656, + 0.006307018920779228, + -0.010138564743101597, + 0.01714280992746353, + -0.003604467725381255, + 0.00037220047670416534, + 0.022400790825486183, + -0.00231236033141613, + -0.00979954656213522, + -0.003049565013498068, + -0.005494654178619385, + 0.016029806807637215, + -0.01792319118976593, + 0.009933874011039734, + 0.01965026557445526, + -0.0026865596882998943, + 0.015095907263457775, + -0.0238336231559515, + -0.012134294956922531, + -0.014110835269093513, + 0.010445600375533104, + -0.004682289902120829, + -0.030089469626545906, + 0.017974363639950752, + 0.012383760884404182, + 0.008891233243048191, + -0.02819608338177204, + -0.012185467407107353, + 0.018601227551698685, + 0.02011081948876381, + -0.006534097250550985, + 0.03461823984980583, + -0.020034059882164, + 0.02325793169438839, + -0.009626839309930801, + 0.0016263280995190144, + -0.005075679160654545, + 0.024754729121923447, + -0.0067867618054151535, + 0.05127491056919098, + 0.015172665938735008, + 0.029014844447374344, + -0.047027587890625, + 0.02017478458583355, + -0.000596880039665848, + 0.0027265383396297693, + -0.01155860349535942, + 0.009044751524925232, + 0.005609792657196522, + 0.011609775945544243, + 0.008494646288454533, + 0.008788888342678547, + 0.007579936180263758, + 0.010343254543840885, + 0.0004293698293622583, + 0.012370968237519264, + 0.00575051736086607, + 0.010733446106314659, + 0.0173347070813179, + 0.0416288822889328, + 0.014750491827726364, + -0.0265329759567976, + 0.002248394535854459, + -0.005149239674210548, + -0.027454081922769547, + 0.018025536090135574, + 0.021940236911177635, + 0.014136421494185925, + 0.02075047604739666, + -0.005708939395844936, + 0.017449844628572464, + 0.008187610656023026, + -0.022503135725855827, + -0.016298461705446243, + 0.005539430305361748, + 0.009479718282818794, + -0.03231547400355339, + -0.01252448558807373, + 0.005232395138591528, + -0.013791006989777088, + 0.01908736675977707, + 0.04329198971390724, + 0.012646020390093327, + 0.005737723782658577, + -0.03193167969584465, + -0.01695091277360916, + -0.0011777685722336173, + -0.029449811205267906, + 0.016208911314606667, + 0.031112920492887497, + -0.01624728925526142, + 0.014904010109603405, + -0.03891673684120178, + 0.018089503049850464, + 0.006150302942842245, + -0.029475398361682892, + -0.035948727279901505, + 0.03198285400867462 + ], + "how_to_create_assembling_machines": [ + -0.007545278873294592, + 0.0006400335114449263, + 0.022225061431527138, + -0.03862721472978592, + -0.007069645449519157, + 0.012957412749528885, + 0.020927879959344864, + -0.019400086253881454, + 0.010773822665214539, + -0.027053464204072952, + 0.03150712326169014, + -0.04378712177276611, + 0.0017728162929415703, + -0.015854453667998314, + 0.016647176817059517, + -0.023291634395718575, + 0.01591210626065731, + 0.017901120707392693, + 0.026448111981153488, + 0.008424480445683002, + 0.03831012547016144, + 0.014744642190635204, + 0.03995322436094284, + -0.013526732102036476, + -0.03848308324813843, + 0.012034972198307514, + 0.01576797477900982, + 0.028365060687065125, + -0.051743172109127045, + -0.042403459548950195, + 0.017742576077580452, + -0.02304661087691784, + -0.03418796882033348, + 0.01378616876900196, + -0.0058337184600532055, + -8.799897477729246e-05, + 0.0064534833654761314, + 0.034130316227674484, + 0.015407647006213665, + 0.013620417565107346, + 0.029748721048235893, + -0.028480365872383118, + -0.01794436015188694, + -0.015840040519833565, + -0.027139943093061447, + 0.020567551255226135, + -0.05318448692560196, + 0.0080569451674819, + 0.0008521769195795059, + 0.0034357323311269283, + 0.01896769180893898, + 0.026981398463249207, + -0.015436473302543163, + -0.054769933223724365, + -0.025871586054563522, + -0.04194223880767822, + -0.03332317993044853, + -0.005455373786389828, + -0.008604644797742367, + 0.004904070869088173, + 0.03634994104504585, + -0.006788589060306549, + 0.04727509990334511, + 0.04260524362325668, + -0.01928478106856346, + -0.002576348837465048, + -0.03975144028663635, + 0.016214782372117043, + 0.04093331843614578, + 0.009743282571434975, + -0.024848254397511482, + 0.00622647674754262, + -0.00500135961920023, + -0.03845425695180893, + 0.023997878655791283, + -0.06387903541326523, + -0.0029637019615620375, + 0.02689491957426071, + -0.04658326879143715, + 0.04352768510580063, + -0.057133689522743225, + -0.015508539043366909, + 0.004918484017252922, + -0.031593602150678635, + -0.008885701186954975, + -0.033092569559812546, + -0.028883934020996094, + 0.010925160720944405, + -0.06059284135699272, + -0.059670399874448776, + -0.0338997058570385, + 0.0018484852043911815, + 0.012193516828119755, + 0.02523740939795971, + 0.07477537542581558, + -0.002012434648349881, + 0.003037569345906377, + -0.012006145901978016, + -0.0017412875313311815, + 0.015537365339696407, + 0.049350593239068985, + -0.02369520254433155, + -0.022484498098492622, + -0.03266017511487007, + 0.012222343124449253, + 0.009455019608139992, + -0.015566191636025906, + -0.01337539404630661, + -0.07806156575679779, + -0.03793538361787796, + -0.07483302801847458, + 0.010197296738624573, + 0.010658517479896545, + 0.0043671815656125546, + 0.019904546439647675, + -0.008244316093623638, + 0.03660937771201134, + 0.02605895698070526, + 0.04133688658475876, + -0.00741556053981185, + -0.00957753136754036, + 0.009851381182670593, + 0.008784809149801731, + -0.021706189960241318, + -0.01387985423207283, + -0.01729576848447323, + 0.0371859036386013, + -0.047505710273981094, + -0.0279182530939579, + 0.011919667012989521, + -0.0063237654976546764, + 0.004745526239275932, + 0.034966278821229935, + 0.0003619049384724349, + -0.013728516176342964, + 0.010975606739521027, + -0.03660937771201134, + -0.010110817849636078, + -0.002624993212521076, + 0.027990318834781647, + -0.010017132386565208, + -0.021244969218969345, + -0.022960131987929344, + 0.012654737569391727, + -0.023406939581036568, + 0.04442129656672478, + -0.01829027570784092, + -0.012914173305034637, + 0.027831774204969406, + -0.0007638964452780783, + -0.0033186255022883415, + -0.010442320257425308, + -0.030382899567484856, + -0.03315022215247154, + 0.032429564744234085, + -0.02506445161998272, + -0.02827858179807663, + 0.05378983914852142, + 0.010781029239296913, + -0.03127651289105415, + -0.00219980557449162, + -0.03467801585793495, + -0.020264875143766403, + 0.01777140237390995, + -0.05131077766418457, + 0.006511135958135128, + -0.03880017250776291, + 0.01742548681795597, + -0.0422881543636322, + 0.0186361912637949, + 0.006046312395483255, + -0.02084140107035637, + -0.020236048847436905, + 0.01573914848268032, + 0.0161138903349638, + -0.014917599968612194, + -0.0864211916923523, + -0.03816599398851395, + -0.022945718839764595, + -0.0033636665903031826, + 0.01878032088279724, + -0.013649243861436844, + -0.024776188656687737, + -0.04652561619877815, + -0.01329612173140049, + -0.013757342472672462, + -0.026822853833436966, + 0.006586804986000061, + 0.004983343183994293, + 0.04811106249690056, + -0.019573044031858444, + 0.01594093255698681, + -0.030584683641791344, + 0.02353665791451931, + 0.00741556053981185, + -0.006929117254912853, + 0.0474192313849926, + -0.02454557828605175, + 0.10250625014305115, + -0.020394593477249146, + 0.010961193591356277, + 0.004832005128264427, + 0.01279166154563427, + -0.011307108215987682, + -0.013015065342187881, + -0.01896769180893898, + -0.044796038419008255, + 0.028855107724666595, + 0.02440144680440426, + -0.0025078863836824894, + 0.009296475909650326, + -0.03998205065727234, + 0.034274447709321976, + 0.03975144028663635, + -0.0160850640386343, + 0.006738143041729927, + -0.01448520552366972, + 0.054625801742076874, + 0.0015431068604812026, + -0.014355488121509552, + -0.028912760317325592, + 0.04813988879323006, + 0.04384477436542511, + 0.026131022721529007, + -0.0003632561711128801, + 0.04419068992137909, + 0.0194721519947052, + -0.04251876473426819, + 0.08815076947212219, + 0.020034264773130417, + -0.009966686367988586, + -0.022657455876469612, + -0.002774529391899705, + -0.008179456926882267, + -0.01728135533630848, + 0.010701756924390793, + -0.018737081438302994, + 0.00856140535324812, + -0.03499510511755943, + 0.03415914252400398, + -0.00982976146042347, + -0.015220276080071926, + 0.020250461995601654, + -0.008820842020213604, + 0.01859295181930065, + 0.005469786934554577, + -0.02457440458238125, + -0.047476883977651596, + 0.015796801075339317, + 0.005923800636082888, + 0.03865604102611542, + -0.01150889229029417, + 0.023666376248002052, + 0.03170890733599663, + -0.028336234390735626, + -0.04266289621591568, + -0.05491406470537186, + -0.01624360866844654, + 0.04713096842169762, + -0.007296652067452669, + -0.03856956213712692, + 0.05015772953629494, + -0.09207113832235336, + 0.0371859036386013, + 0.02490590699017048, + 0.021461166441440582, + 0.031737733632326126, + -0.002722281962633133, + 0.012856520712375641, + -0.05978570505976677, + -0.016676003113389015, + 0.04372946918010712, + 0.05182965099811554, + -0.022743934765458107, + -0.05603829026222229, + -0.020365767180919647, + 0.00013782565656583756, + 0.047476883977651596, + 0.031737733632326126, + -0.01066572405397892, + -0.06410964578390121, + -0.02643369883298874, + 0.04519960656762123, + 0.09529968351125717, + -0.023666376248002052, + 0.02744261920452118, + -0.010723376646637917, + 0.0019457739545032382, + 0.01346907950937748, + 0.02418524958193302, + 0.008828048594295979, + 0.028177689760923386, + -0.0060859485529363155, + 0.006903894245624542, + 0.036494072526693344, + -0.009541498497128487, + -0.0033132205717265606, + 0.005513026379048824, + 0.012431333772838116, + 0.005887767765671015, + 0.02659224346280098, + 0.053933970630168915, + 0.029388392344117165, + 0.06059284135699272, + -0.023075437173247337, + -0.02724083513021469, + -0.03609050437808037, + -0.039549656212329865, + 0.03064233623445034, + 0.008647884242236614, + 0.020063091069459915, + 0.00566796725615859, + 0.029575763270258904, + -0.028004731982946396, + 0.028667736798524857, + -0.010391874238848686, + 0.024430273100733757, + -0.01429062895476818, + -0.012164690531790257, + -0.050215382128953934, + 0.00482840184122324, + -0.03381322696805, + 0.04018383473157883, + -0.04534373804926872, + -0.009887414053082466, + -0.021807081997394562, + 0.005855338182300329, + -0.003060990711674094, + -0.033957358449697495, + 0.007581311743706465, + -0.026347219944000244, + -0.01661835052073002, + 0.004673460964113474, + -0.03415914252400398, + 0.01896769180893898, + 0.00794884655624628, + 0.041913412511348724, + 0.030728815123438835, + 0.04485369101166725, + 0.033784400671720505, + -0.030872946605086327, + -0.02319074235856533, + -0.02607337012887001, + 0.03271782770752907, + -0.03188186511397362, + -0.018232623115181923, + 0.00013850127288606018, + 0.003286195918917656, + 0.023608723655343056, + 0.04381594806909561, + 0.014773468486964703, + 0.00871994998306036, + -0.01641656644642353, + -0.0160850640386343, + -0.02591482549905777, + -0.01194849330931902, + -0.003945596981793642, + 0.04329707473516464, + -0.009476639330387115, + -0.001039547729305923, + -0.021115250885486603, + 0.09558794647455215, + 0.023133089765906334, + 0.03369792178273201, + 0.017180463299155235, + 0.052233219146728516, + -0.007062438875436783, + 0.04992711916565895, + -0.020077504217624664, + 0.05096486583352089, + 0.04759218916296959, + 0.031017078086733818, + 0.008539785631000996, + 0.011595371179282665, + -0.056989558041095734, + -0.013944713398814201, + 0.012229549698531628, + 0.02898482419550419, + 0.018564125522971153, + 0.013778962194919586, + 0.0473615787923336, + -0.032948438078165054, + 0.034476231783628464, + -0.020942293107509613, + 0.009087485261261463, + 0.01627243496477604, + 0.004511313047260046, + 0.06624279171228409, + -0.06491678208112717, + -0.05667246878147125, + 0.04825519397854805, + -0.06728053838014603, + 0.029186608269810677, + 0.017857881262898445, + 0.00597424665465951, + -0.008006499148905277, + 0.04349885880947113, + -0.013332154601812363, + 0.010536005720496178, + 0.04335472732782364, + 0.02827858179807663, + 0.0014710411196574569, + -0.007285842206329107, + 0.004976136609911919, + -0.012755629606544971, + 0.0009674820466898382, + -0.004104141611605883, + 0.0018719065701588988, + 0.031103556975722313, + -0.009361335076391697, + 0.0796181857585907, + -0.05399162322282791, + 0.03831012547016144, + -0.011890840716660023, + -0.028134450316429138, + -0.04793810471892357, + -0.007019199430942535, + 0.0029042477253824472, + -0.022974545136094093, + 0.01533558126538992, + -0.040068529546260834, + -0.023954639211297035, + 0.01296461932361126, + -0.018002012744545937, + -0.0013575376942753792, + 0.01573914848268032, + 0.035283368080854416, + -0.023623136803507805, + 0.028019145131111145, + -0.03335200622677803, + -0.018665017560124397, + 0.01372130960226059, + 0.037502989172935486, + 0.0694136843085289, + 0.026678722351789474, + 0.012063798494637012, + -0.049696508795022964, + -0.031103556975722313, + -0.012986239045858383, + 0.011415206827223301, + 0.03237191215157509, + 0.0019998231437057257, + 0.024776188656687737, + 0.026707548648118973, + -0.05151256173849106, + -0.013995159417390823, + -0.06116936728358269, + -0.011047672480344772, + -0.030411725863814354, + -0.018578538671135902, + 0.02796149253845215, + -0.009692836552858353, + -0.008402860723435879, + 0.053098008036613464, + 0.0002981718280352652, + 0.02369520254433155, + 0.07863809168338776, + -0.021922387182712555, + 0.02079816162586212, + 0.018247036263346672, + 0.03254486992955208, + 0.027384966611862183, + -0.027327314019203186, + 0.00319431209936738, + -0.018376754596829414, + 0.03271782770752907, + -0.020942293107509613, + 0.025439193472266197, + 0.026621069759130478, + 0.0018574934219941497, + -0.02339252643287182, + -0.06232241913676262, + 0.0008913626661524177, + -0.0015836438396945596, + -0.013425840064883232, + -0.018564125522971153, + -0.022729521617293358, + 0.03957848250865936, + -0.011213422752916813, + -0.05304035544395447, + -0.031218862161040306, + 0.00432033883407712, + 0.002129541477188468, + 0.009930653497576714, + 0.009325302205979824, + 0.06191885098814964, + -0.014009572565555573, + -0.03433210030198097, + -0.023262808099389076, + -0.0005706702941097319, + 0.013620417565107346, + 0.008193870075047016, + 0.042893506586551666, + -0.018203796818852425, + 0.042086370289325714, + -0.043931253254413605, + -0.06336016207933426, + -0.03978026658296585, + -0.014679783023893833, + 0.006042709108442068, + 0.023608723655343056, + -0.015018492005765438, + 0.014002365991473198, + 0.003605086822062731, + -0.023277221247553825, + -0.07010551542043686, + 0.006900290958583355, + 0.024271728470921516, + -0.01895327866077423, + -0.0110116396099329, + -0.007318271789699793, + 0.003291600849479437, + -0.003927580546587706, + 0.027168769389390945, + -0.007768682669848204, + 0.028004731982946396, + 0.00294028059579432, + 0.012892553582787514, + 0.028811868280172348, + 0.008417273871600628, + -0.0037762427236884832, + -0.03623463585972786, + -0.010118024423718452, + -0.01981806755065918, + 0.01726694218814373, + -0.036494072526693344, + -0.007624551188200712, + -0.008496546186506748, + -0.00724260276183486, + 0.013980746269226074, + 0.0008458711672574282, + -0.016531871631741524, + 0.028047971427440643, + 0.026015717536211014, + -0.046467963606119156, + 0.01878032088279724, + -0.037330035120248795, + -0.015998585149645805, + -0.028480365872383118, + -0.007674997206777334, + -0.007941639982163906, + 0.01759844459593296, + -0.008849668316543102, + 0.00949825905263424, + -0.0321701280772686, + 0.03487979993224144, + -0.011847601272165775, + -0.0014683386543765664, + 0.007826334796845913, + 0.023911399766802788, + 0.023464592173695564, + -0.04419068992137909, + -0.009123518131673336, + -0.03995322436094284, + -0.016330087557435036, + 0.01498966570943594, + 0.010853094980120659, + -0.02115849032998085, + -0.004590585362166166, + -0.004900467582046986, + 0.02894158475100994, + -0.015349994413554668, + -0.01777140237390995, + -0.004673460964113474, + 0.021792668849229813, + 0.03459153696894646, + 0.015076144598424435, + 0.007624551188200712, + 0.012914173305034637, + -0.005559868644922972, + -0.018852386623620987, + -0.017540792003273964, + 0.02356548421084881, + -0.017151637002825737, + -0.009757695719599724, + -0.014362694695591927, + 0.013987952843308449, + 0.007790302392095327, + 0.0035095997154712677, + -0.047995757311582565, + -0.019082996994256973, + -0.08348090946674347, + -0.01791553385555744, + 0.016027411445975304, + -0.04450777545571327, + 0.010982813313603401, + -0.03286195918917656, + 0.017007505521178246, + 0.010615278035402298, + -0.019356846809387207, + -0.008820842020213604, + 0.011638610623776913, + 0.023464592173695564, + -0.0186073649674654, + -0.012352061457931995, + 0.001998021500185132, + -0.02812003716826439, + 0.02169177681207657, + -0.008265935815870762, + 0.036465246230363846, + -0.0016962464433163404, + -0.010348634794354439, + -0.018347928300499916, + 0.013742929324507713, + -0.02728407457470894, + -0.026131022721529007, + -0.011883634142577648, + -0.002641208004206419, + -0.03782007843255997, + 0.004615808371454477, + -0.04199989140033722, + 0.04035679250955582, + 0.004518519621342421, + -0.016560697928071022, + -0.008727156557142735, + 0.0025835554115474224, + 0.008338001556694508, + 0.04661209508776665, + -0.010867508128285408, + -0.01660393737256527, + 0.005116664804518223, + 0.006817415356636047, + -0.006121981423348188, + 0.029042476788163185, + 0.01576797477900982, + 0.0036753506865352392, + 0.009447813034057617, + 0.019890133291482925, + -0.03421679511666298, + 0.004615808371454477, + -0.00749483285471797, + -0.0014773468719795346, + -0.006316558923572302, + -0.014535651542246342, + -0.0296622421592474, + 0.0118403946980834, + 0.04260524362325668, + -0.001989013282582164, + 0.0064282603561878204, + 0.021778255701065063, + 0.0007810120587237179, + -0.0032177334651350975, + 0.03756064176559448, + -0.024920320138335228, + 0.002235838444903493, + 0.07777330279350281, + 0.015465299598872662, + 0.018030839040875435, + 0.010197296738624573, + -0.04214402288198471, + 0.005545455496758223, + 0.00016327385674230754, + 0.024473512545228004, + -0.009627977386116982, + 0.013079924508929253, + -0.03113238327205181, + -0.030411725863814354, + -0.0728151872754097, + -0.011530512012541294, + 0.0003182151122018695, + -0.04338355362415314, + 0.0036483260337263346, + -0.01279166154563427, + 0.031103556975722313, + 0.0013926696265116334, + 0.004889657720923424, + 0.0011530512711033225, + 0.021792668849229813, + 0.04805340990424156, + 0.013915887102484703, + -0.011991732753813267, + -0.009455019608139992, + -0.01709398441016674, + -0.02017839625477791, + -0.019414499402046204, + -0.004046489018946886, + -0.0014169918140396476, + -0.0507630817592144, + 0.0016448996029794216, + 0.003967216704040766, + 0.0029637019615620375, + 0.011299901641905308, + -0.047822799533605576, + 0.05015772953629494, + 0.04027031362056732, + -0.009476639330387115, + 0.027341727167367935, + -0.009015419520437717, + 0.018391167744994164, + 0.010968400165438652, + 0.010312601923942566, + -0.005304035730659962, + 0.016315674409270287, + 0.0009485647897236049, + 0.02520858310163021, + -0.0006076039280742407, + 0.03257369622588158, + 0.006896687671542168, + -0.030354073271155357, + -0.06653105467557907, + 0.0015268920687958598, + -0.010009925812482834, + 0.038886651396751404, + 0.00024119489535223693, + -0.01430504210293293, + -0.038511909544467926, + -0.0035312194377183914, + 0.023824920877814293, + 0.004644634667783976, + 0.012979032471776009, + -0.02339252643287182, + 0.01338980719447136, + -0.035629283636808395, + 0.020365767180919647, + -0.042086370289325714, + 0.015292341820895672, + -0.01810290478169918, + -0.05716251581907272, + 0.022052105516195297, + -0.03116120956838131, + 0.010968400165438652, + 0.025280648842453957, + 0.009029832668602467, + -0.01378616876900196, + -0.012813281267881393, + -0.021720603108406067, + -0.016012998297810555, + 0.03519688919186592, + -0.004154587630182505, + 0.017872294411063194, + -0.00638862419873476, + 0.011898047290742397, + 0.037675946950912476, + 0.01243854034692049, + -0.010045958682894707, + 0.019400086253881454, + -0.03707059845328331, + 0.013195229694247246, + 0.002464646939188242, + -0.010276569053530693, + -0.03355379030108452, + -0.027327314019203186, + 0.014002365991473198, + 0.008222696371376514, + 0.021807081997394562, + 0.007934433408081532, + -0.012683563865721226, + 0.07425650209188461, + -0.022945718839764595, + 0.024819428101181984, + -0.024113183841109276, + 0.01338980719447136, + -0.011955699883401394, + 0.008900114335119724, + -0.005725619848817587, + -0.004950913600623608, + 0.044651906937360764, + -0.00015798152890056372, + 0.0035456325858831406, + 0.007127298042178154, + -0.01380058191716671, + 0.018347928300499916, + 0.009671216830611229, + -0.019169475883245468, + -0.02641928568482399, + -0.02287365309894085, + 0.010579245164990425, + -0.02914336882531643, + 0.034101489931344986, + 0.05384749174118042, + 0.05283857136964798, + -0.032083649188280106, + 0.0524638295173645, + 0.021043185144662857, + 0.0022592598106712103, + -0.01472302246838808, + 0.015969758853316307, + 0.0001267905900022015, + 0.011040465906262398, + -0.0457473061978817, + 0.007624551188200712, + 0.02605895698070526, + 0.008770396001636982, + 0.045314911752939224, + 0.03366909548640251, + 0.003396096173673868, + 0.0017016513738781214, + 0.04442129656672478, + 0.004035679157823324, + -0.02000543847680092, + -0.01729576848447323, + -0.012582671828567982, + 0.012899760156869888, + 0.017526378855109215, + 0.01607065089046955, + -0.0422881543636322, + -0.005678777117282152, + -0.11432503163814545, + -0.031766559928655624, + 0.009411780163645744, + -0.010110817849636078, + -0.013987952843308449, + 0.01270518358796835, + 0.04202871769666672, + 0.014103258028626442, + 0.005826511885970831, + -0.039520829916000366, + 0.016964266076683998, + -0.019746001809835434, + -0.048024583607912064, + 0.0004796873254235834, + 0.029921678826212883, + 0.027543511241674423, + 0.006316558923572302, + 0.0017160645220428705, + 0.020236048847436905, + 0.007022802717983723, + -0.01607065089046955, + -0.01829027570784092, + 0.014060018584132195, + -0.004323942121118307, + -0.03254486992955208, + -0.022988958284258842, + -0.018016425892710686, + -0.005422944203019142, + -0.006121981423348188, + 0.03658055141568184, + 0.007646170910447836, + 0.032256606966257095, + -0.007044422440230846, + 0.03418796882033348, + -0.027673229575157166, + 0.0052139535546302795, + 0.02164853736758232, + 0.0194721519947052, + 0.029013650491833687, + 0.05990101024508476, + 0.009029832668602467, + 0.00749483285471797, + 0.024502338841557503, + 0.0005855337949469686, + 0.036638204008340836, + 0.04421951621770859, + 0.005949023645371199, + 0.02356548421084881, + -0.03049820475280285, + 0.022268300876021385, + 0.020942293107509613, + -0.034620363265275955, + 0.0036735490430146456, + 0.007253412622958422, + 0.01742548681795597, + 0.032429564744234085, + -0.04839932546019554, + -0.008424480445683002, + 0.003046577563509345, + -0.023133089765906334, + 0.013317741453647614, + 0.01576797477900982, + 0.03303491696715355, + -0.022470084950327873, + 0.0013449261896312237, + -0.00020200916333124042, + -0.007523659151047468, + -0.007015596143901348, + 0.009188377298414707, + -0.008035325445234776, + 0.001906137797050178, + 0.010089198127388954, + 0.008150630630552769, + 0.0036339128855615854, + -0.009440606459975243, + 0.0045293294824659824, + -0.0041149514727294445, + -0.010982813313603401, + 0.036292288452386856, + -0.03335200622677803, + 0.01759844459593296, + 0.0186361912637949, + 0.004468073602765799, + 0.006860654801130295, + -0.01745431311428547, + -0.0228592399507761, + -0.01133593451231718, + 0.005531042814254761, + 0.025943651795387268, + 0.05621124804019928, + 0.026131022721529007, + 0.012770041823387146, + -0.00931809563189745, + -0.022758347913622856, + -0.012251169420778751, + 0.037848904728889465, + -0.021807081997394562, + -0.012618704698979855, + 0.029085716232657433, + 0.0011170184006914496, + -0.002565538976341486, + 0.02422848902642727, + 0.0016304864548146725, + -0.013447459787130356, + -0.0038411018904298544, + 0.049177635461091995, + 0.023133089765906334, + -0.01117738988250494, + 0.002295292681083083, + -0.020192809402942657, + 0.04277820140123367, + -0.025295061990618706, + 0.0054517704993486404, + 0.005030185915529728, + -0.03508158400654793, + 0.029229847714304924, + 0.028134450316429138, + -0.03456271067261696, + -0.007682203780859709, + 0.008229902945458889, + 0.0030429742764681578, + 0.03289078548550606, + -0.034649189561605453, + -0.00011969662591582164, + 0.007638964336365461, + -0.005156300961971283, + -0.01915506273508072, + 0.024531165137887, + -0.005304035730659962, + -0.020783748477697372, + 0.03424562141299248, + 0.033438485115766525, + -0.0390019565820694, + 0.0038699281867593527, + -0.01707957126200199, + -0.027975905686616898, + 0.013332154601812363, + -0.04695801064372063, + -0.07154683023691177, + -0.025496846064925194, + -0.0010908945696428418, + -0.04027031362056732, + -0.05211791396141052, + -0.049840640276670456, + -0.0008003796683624387, + 0.009613564237952232, + -0.02118731662631035, + 0.026044543832540512, + -0.0237096156924963, + -0.00871994998306036, + 0.011653023771941662, + -0.006702110171318054, + -0.002509688027203083, + 0.035485152155160904, + -0.06745349615812302, + -0.0006895787082612514, + -0.036839988082647324, + -0.03306374326348305, + 0.006341781932860613, + 0.02626074105501175, + 0.0018448819173499942, + 0.04623735323548317, + -0.0033492534421384335, + -0.013087131083011627, + -0.00940457358956337, + 0.00191694765817374, + -0.00014458181976806372, + -0.026491351425647736, + 0.0627836361527443, + -0.02931632660329342, + -0.03637876734137535, + 0.004370784852653742, + 0.00198721163906157, + 0.0032429564744234085, + 0.0029168592300266027, + -0.0048860544338822365, + 0.028538018465042114, + -0.021100837737321854, + -0.04260524362325668, + 0.0440177321434021, + -0.014175323769450188, + -0.02050989866256714, + -0.03245839104056358, + 0.032256606966257095, + 0.03799303621053696, + 1.021869138639886e-05, + 0.016690416261553764, + 0.04727509990334511, + 0.015782387927174568, + 0.015998585149645805, + 0.018564125522971153, + 0.008064151741564274, + -0.016012998297810555, + -0.01762727089226246, + -0.009476639330387115, + 0.01245295349508524, + 0.022066518664360046, + 0.013108750805258751, + -0.012697977013885975, + -0.011263868771493435, + 0.03877134621143341, + -0.0019349640933796763, + 0.01277724839746952, + -0.028148863464593887, + 0.006824621930718422, + 0.025958064943552017, + 9.492404205957428e-05, + 0.018866799771785736, + -0.06699227541685104, + 0.0001917623303597793, + 0.005617521237581968, + -0.011242249049246311, + 0.008676710538566113, + 0.00554905878379941, + -0.023248394951224327, + 0.004356371704488993, + -0.010290982201695442, + 0.01270518358796835, + -0.006968753412365913, + -0.027039051055908203, + -0.015710322186350822, + -0.03280430659651756, + -0.00681381206959486, + -0.005311242304742336, + 0.004727509804069996, + 0.03957848250865936, + -0.021706189960241318, + 0.006320162210613489, + -0.04185575991868973, + 0.008950560353696346, + -0.013778962194919586, + 0.013461872935295105, + 0.0010791838867589831, + -0.0036591358948498964, + 0.007660584058612585, + -0.00478876568377018, + 0.04185575991868973, + 0.014874360524117947, + 0.016330087557435036, + -0.04001087695360184, + -0.0033402452245354652, + -0.007253412622958422, + 0.01337539404630661, + 0.0013097941409796476, + 0.002241243375465274, + -0.004457263741642237, + 0.026635482907295227, + 0.021547645330429077, + 0.0016439987812191248, + -0.007080455310642719, + -0.007073248736560345, + -0.00905145239084959, + 0.01712281070649624, + -0.009923446923494339, + 0.030238768085837364, + -0.01472302246838808, + 0.020380180329084396, + 0.014845534227788448, + -0.004302322398871183, + 0.00387353147380054, + -0.021605297923088074, + 0.048658762127161026, + 0.013209642842411995, + 0.02033694088459015, + -0.02167736366391182, + -0.018881212919950485, + -0.02068285644054413, + -0.005224763415753841, + 0.02859567105770111, + 0.006720126606523991, + -0.017901120707392693, + -0.009519878774881363, + -0.0038447051774710417, + -0.008871288038790226, + 0.004277099389582872, + -0.011357554234564304, + 0.0005801289225928485, + -0.03162242844700813, + 0.0023385321255773306, + -0.03735886141657829, + -0.027312900871038437, + -0.0068570515140891075, + 0.030930599197745323, + 0.028811868280172348, + 0.010269362479448318, + -0.030699988827109337, + -0.021590884774923325, + -0.007019199430942535, + -0.003952803555876017, + -0.017886707559227943, + 0.014074431732296944, + 0.0059598335064947605, + 0.018218209967017174, + -0.029921678826212883, + -4.464695302885957e-05, + 0.009959479793906212, + -0.026866093277931213, + -0.0177569892257452, + -0.007062438875436783, + 0.00011721936607500538, + -0.020899053663015366, + 0.004486090037971735, + -0.015883279964327812, + -0.0006967852241359651, + 0.01455006469041109, + -0.030699988827109337, + 0.02185032144188881, + -0.03289078548550606, + 0.013584384694695473, + -0.0020070297177881002, + -0.0202937014400959, + 0.043268248438835144, + 0.021778255701065063, + 0.006615631282329559, + -0.022268300876021385, + 0.019673936069011688, + 0.02422848902642727, + 0.001598056871443987, + -0.002399787772446871, + 0.029056889936327934, + 0.00017250727978534997, + -0.014168117195367813, + 0.0228880662471056, + -0.022225061431527138, + -0.018665017560124397, + -0.0048356084153056145, + -0.011833188124001026, + -0.021807081997394562, + 0.02369520254433155, + -0.009505465626716614, + 0.008864081464707851, + -0.0036681441124528646, + 0.04450777545571327, + -0.001708857947960496, + -0.02878304198384285, + 0.0003537975426297635, + -0.05632655322551727, + -0.015234689228236675, + -0.011343141086399555, + -0.003949200268834829, + 0.017497552558779716, + 0.00040086545050144196, + -0.025684215128421783, + 0.007091265171766281, + -0.008784809149801731, + -0.005149094387888908, + -0.02238360606133938, + -0.002419605851173401, + 0.011674643494188786, + 0.017829054966568947, + 0.08861198276281357, + -0.01707957126200199, + -0.019774828106164932, + 0.012741216458380222, + 0.06987490504980087, + -0.0023241189774125814, + 0.021259382367134094, + -0.010629691183567047, + 0.010406287387013435, + -0.039520829916000366, + -0.0245599914342165, + -0.004132967907935381, + 0.05050364509224892, + -0.00018466835899744183, + 0.012921379879117012, + -0.025439193472266197, + -0.024603230878710747, + -0.01879473403096199, + 0.012164690531790257, + 0.005376101471483707, + 0.018837973475456238, + 0.016012998297810555, + 0.010118024423718452, + 0.018895626068115234, + -0.004136571194976568, + -0.006557978689670563, + -0.0002181113522965461, + -0.004803178831934929, + 0.0038915479090064764, + 0.03199717029929161, + 0.011674643494188786, + -0.00820107664912939, + 0.038194820284843445, + 0.008013705722987652, + -0.01911182329058647, + 0.0296334158629179, + -0.002423209138214588, + -0.027644403278827667, + -0.024848254397511482, + 0.0016241807024925947, + -0.029575763270258904, + 0.02607337012887001, + 0.0056319343857467175, + 0.01387985423207283, + 0.0043924045749008656, + 0.004096935037523508, + 0.001555718365125358, + -0.005779669154435396, + -0.006078741978853941, + -0.004388801287859678, + 0.03358261659741402, + 0.004050092305988073, + 0.0005373398889787495, + -0.023306047543883324, + 0.005988659802824259, + -0.04643913730978966, + -0.01794436015188694, + 0.021763842552900314, + 0.014204150065779686, + 0.03263134881854057, + -0.055951811373233795, + -0.01844882033765316, + 0.02133144810795784, + 0.00221962365321815, + -0.005149094387888908, + 0.003199717029929161, + -0.010716170072555542, + -0.008129010908305645, + -0.010456733405590057, + 0.006280526053160429, + -0.0372435562312603, + -0.008489339612424374, + -0.006929117254912853, + 0.02875421568751335, + 0.012827694416046143, + 0.006720126606523991, + 0.0013566368725150824, + -0.029042476788163185, + -0.014348281547427177, + 0.019054170697927475, + -0.02134586125612259, + -0.01847764663398266, + -0.03594637289643288, + 0.02977754734456539, + -0.023277221247553825, + 0.0045797755010426044, + 0.029546936973929405, + 0.0049365004524588585, + -0.02741379290819168, + 0.01878032088279724, + -0.01658952422440052, + 0.0169354397803545, + 0.03297726437449455, + 0.01277724839746952, + 0.01777140237390995, + -0.00047428239486180246, + -0.033294353634119034, + 0.006457086652517319, + -0.010564832016825676, + -0.004983343183994293, + 0.01627243496477604, + -0.017007505521178246, + 0.022916892543435097, + 0.0038050690200179815, + -0.033784400671720505, + 0.010463939979672432, + -0.004374388139694929, + -0.01024053618311882, + -0.0048356084153056145, + 0.012633117847144604, + 0.0014530246844515204, + -0.018564125522971153, + 0.03499510511755943, + -0.02218182198703289, + 0.00601388281211257, + 0.013425840064883232, + -0.007260619197040796, + -0.0032681794837117195, + -0.00266643101349473, + 0.0007494832971133292, + 0.01624360866844654, + -0.0007877682219259441, + 0.009534291923046112, + -0.013079924508929253, + -0.014686989597976208, + -0.004381594713777304, + -0.01931360736489296, + -0.02249891124665737, + -0.005181523971259594, + -0.0279470793902874, + -0.016834547743201256, + 0.022441258653998375, + 0.012849314138293266, + -0.017367834225296974, + 0.009181170724332333, + -0.0006040006410330534, + -0.016474219039082527, + -0.014773468486964703, + -0.005837321747094393, + 0.02741379290819168, + -0.03617698326706886, + -0.006583201698958874, + 0.0039131673984229565, + 0.009346921928226948, + 0.010305395349860191, + 0.03669585660099983, + -0.003331237006932497, + -0.009101898409426212, + -0.015378820709884167, + 0.0010764814214780927, + 0.04254759103059769, + 0.005145491100847721, + 0.01625802181661129, + -0.011645817197859287, + -0.06007396802306175, + 0.0026628277264535427, + -0.020610790699720383, + -0.029258674010634422, + 0.018319102004170418, + -0.033755574375391006, + -0.007473213132470846, + -0.007102075032889843, + 0.02182149514555931, + -0.038367778062820435, + -0.00034118606708943844, + 0.018564125522971153, + 0.01000271923840046, + 0.0016620152164250612, + 0.011090910993516445, + -0.00949825905263424, + 0.02013515681028366, + -0.02235477976500988, + -0.006993976421654224, + 0.021028771996498108, + 0.014636543579399586, + -0.02724083513021469, + 0.024747362360358238, + 0.006536358967423439, + -0.007509246002882719, + 0.005513026379048824, + -0.0053400686010718346, + 0.017065158113837242, + -0.01829027570784092, + -0.030267594382166862, + -0.017728162929415703, + 0.027039051055908203, + 0.003280790988355875, + -0.0064282603561878204, + 0.0007638964452780783, + -0.005862544756382704, + -0.03196834400296211, + 0.019846893846988678, + -0.019212715327739716, + -0.01313757710158825, + 0.019039757549762726, + -0.0027258852496743202, + -0.011653023771941662, + -0.007891193963587284, + -0.017670510336756706, + 0.019255954772233963, + -0.004078918602317572, + -0.018578538671135902, + 0.008683917112648487, + -0.0002977214171551168, + -0.008489339612424374, + -0.010766616091132164, + 0.01928478106856346, + 0.019414499402046204, + 0.015263515524566174, + 0.02200886607170105, + -0.03133416548371315, + -0.04099097102880478, + -0.012474573217332363, + -0.016704829409718513, + 0.03254486992955208, + 0.032775480300188065, + -0.023637549951672554, + 0.006518342532217503, + 0.00383389531634748, + 0.02166295051574707, + 0.00694713369011879, + 0.011703469790518284, + -0.005797685589641333, + 0.0032771877013146877, + -0.03095942549407482, + 0.03401501104235649, + -0.002565538976341486, + -0.025424780324101448, + 0.00043824955355376005, + -0.0032267416827380657, + -0.0186073649674654, + 0.007368717808276415, + -0.03862721472978592, + 0.06347546726465225, + -0.005812098737806082, + -0.010564832016825676, + 0.011386380530893803, + -0.018751494586467743, + 0.013015065342187881, + -0.004414024297147989, + -0.011249455623328686, + 0.01674806885421276, + -0.0059346104972064495, + 0.02352224476635456, + 0.007696616929024458, + -0.0041149514727294445, + 0.03078646771609783, + -0.005660760682076216, + -0.009246029891073704, + -0.023983465507626534, + -0.01792994700372219, + 0.02353665791451931, + 0.012539432384073734, + -0.0022178220096975565, + 0.017382247373461723, + 0.01109811756759882, + 0.0011548529146239161, + -0.040558576583862305, + -0.002037657657638192, + -0.006046312395483255, + -0.014859947375953197, + 0.0023241189774125814, + -0.01025494933128357, + -0.01378616876900196, + 0.007898400537669659, + -0.018492059782147408, + -0.0033636665903031826, + 0.015364407561719418, + 0.027053464204072952, + -0.028739802539348602, + -0.03594637289643288, + -0.024761775508522987, + -0.02807679772377014, + 0.006939927116036415, + -0.019212715327739716, + -0.0245599914342165, + -0.027471445500850677, + -0.021706189960241318, + -0.009534291923046112, + -0.024949146434664726, + 0.005311242304742336, + -0.028220929205417633, + 0.0008832552703097463, + -0.03415914252400398, + 0.04318176954984665, + -0.025295061990618706, + -0.034620363265275955, + 0.047995757311582565, + -0.002343936823308468, + 0.02352224476635456, + 0.040875665843486786, + -0.0030483792070299387, + 0.008251522667706013, + -0.0020106330048292875, + 0.04788045212626457, + -0.011487272568047047, + 0.009844174608588219, + 0.010298188775777817, + 0.0050121694803237915, + -0.006875067949295044, + 0.02980637364089489, + -0.0026177866384387016, + 0.02284482680261135, + 0.02063961699604988, + 0.030094636604189873, + -0.001798940123990178, + 0.013015065342187881, + 0.028855107724666595, + 0.00584092503413558, + 0.006075138691812754, + 0.002399787772446871, + -0.00830917526036501, + -0.02419966273009777, + -0.03978026658296585, + -0.0070840585976839066, + -0.006100361701101065, + 0.007581311743706465, + -0.010406287387013435, + -0.007030009292066097, + 0.006860654801130295, + 0.032083649188280106, + 0.004345561843365431, + 0.020855814218521118, + -0.02995050512254238, + -0.0017547998577356339, + -0.02592923864722252, + 0.015393233858048916, + -0.012856520712375641, + 0.015004078857600689, + -0.027125529944896698, + 0.024805014953017235, + -0.003736606566235423, + 0.05831556394696236, + -0.0043167355470359325, + 0.006359798368066549, + 0.003985233139246702, + -0.02419966273009777, + -0.01996219903230667, + 0.02014956995844841, + 0.005275209434330463, + 0.012301615439355373, + -0.01758403144776821, + -0.0006008477648720145, + 0.029345152899622917, + 0.002590761985629797, + 0.015782387927174568, + -0.0021025168243795633, + -0.00774706294760108, + 0.005949023645371199, + 0.030584683641791344, + 0.026664309203624725, + -0.008662297390401363, + -0.03758946806192398, + 0.0022880861070007086, + -0.021389100700616837, + -0.002448432147502899, + -0.010723376646637917, + 0.036638204008340836, + -0.022787174209952354, + -0.004482486750930548, + -0.019904546439647675, + -0.01168185006827116, + 0.01981806755065918, + -0.02185032144188881, + -0.00812180433422327, + 0.007235396187752485, + -0.006975959986448288, + -0.019544217735528946, + 0.01142961997538805, + -0.008078564889729023, + -0.01827586255967617, + 0.024617644026875496, + 0.02711111679673195, + -0.005141887813806534, + 0.01185480784624815, + -0.022311540320515633, + -0.03424562141299248, + -0.003563649021089077, + -0.012784454971551895, + 0.014946426264941692, + 0.040241487324237823, + 0.0010981011437252164, + 0.010463939979672432, + -0.006024692673236132, + 0.02728407457470894, + -0.016560697928071022, + -0.03064233623445034, + -0.041740454733371735, + 0.010795442387461662 + ], + "how_to_create_electricity_generators": [ + 0.007938527502119541, + 0.011051183566451073, + 0.005858194082975388, + 0.007041128817945719, + 0.006084112450480461, + 0.05381882190704346, + -0.014709808863699436, + -0.006451230030506849, + 0.026055941358208656, + -0.021474814042448997, + 0.039109013974666595, + -0.01350491028279066, + -0.014195216819643974, + -0.03358656167984009, + 0.016617566347122192, + 0.010787611827254295, + -0.003608421655371785, + 0.029294107109308243, + 0.026256758719682693, + 0.02231573313474655, + 0.05108269676566124, + -0.02418583817780018, + 0.041518811136484146, + 0.008139343932271004, + 0.0016692872159183025, + 0.03215574100613594, + 0.017835015431046486, + 0.07912170141935349, + -0.04731738939881325, + -0.035594724118709564, + 0.045284122228622437, + -0.01385633833706379, + -0.028214719146490097, + -0.011540673673152924, + 0.019027363508939743, + -0.016228483989834785, + 0.005547556094825268, + 0.03283349797129631, + 0.013153481297194958, + 0.020847262814641, + 0.015500524081289768, + -0.04643881693482399, + -0.022955836728215218, + 0.004603090696036816, + -0.016655217856168747, + 0.022780122235417366, + -0.041518811136484146, + -0.005999392829835415, + 0.0324067622423172, + 0.011226898059248924, + 0.04470677301287651, + 0.011747765354812145, + -0.010718581266701221, + -0.07942292839288712, + -0.017546342685818672, + -0.06747434288263321, + -0.013166031800210476, + -0.016366545110940933, + -0.05211188271641731, + -0.023520633578300476, + 0.022466346621513367, + 0.009934141300618649, + 0.0301726795732975, + 0.04508330672979355, + -0.017345525324344635, + 0.008597456850111485, + -0.05281474068760872, + 0.008861028589308262, + 0.01339195016771555, + 0.012262357398867607, + -0.0021179865580052137, + 0.06566699594259262, + -0.017847565934062004, + 0.01930348575115204, + 0.008597456850111485, + -0.03853166475892067, + 0.017458485439419746, + 0.026256758719682693, + -0.032682884484529495, + -0.01400695089250803, + -0.05793556198477745, + -0.033410847187042236, + -0.01369317527860403, + -0.00489804008975625, + -0.03544411435723305, + 0.006877965293824673, + -0.023646144196391106, + -0.017960526049137115, + -0.037125952541828156, + -0.0494510643184185, + -0.021725835278630257, + -0.011835622601211071, + -0.0022042749915271997, + -0.019692568108439445, + 0.09102007746696472, + 0.021838795393705368, + 0.03647329658269882, + -0.017596546560525894, + 0.012977766804397106, + 0.06305637955665588, + 0.023608490824699402, + -0.017696954309940338, + -0.058839235454797745, + -0.02726083993911743, + 0.06757475435733795, + 0.03235656023025513, + 0.005582071375101805, + 0.04023860767483711, + -0.03951064869761467, + -0.039535749703645706, + -0.05286494269967079, + 0.032005131244659424, + 0.0308002308011055, + 0.009394447319209576, + -0.022278081625699997, + -0.0007467863615602255, + 0.03408860042691231, + -0.0018355883657932281, + 0.030875537544488907, + -0.019466649740934372, + -0.04166942462325096, + -0.013881441205739975, + -0.02411053143441677, + 0.02640737034380436, + 0.026357166469097137, + -0.012412969954311848, + -0.015513074584305286, + -0.017332974821329117, + -0.008967711590230465, + 0.01038597896695137, + -0.030373496934771538, + 0.036824725568294525, + 0.037125952541828156, + -0.02577981911599636, + -0.004907453432679176, + -0.0052149537950754166, + -0.010994703508913517, + -0.020069099962711334, + -0.00868531409651041, + 0.017332974821329117, + 0.013153481297194958, + -0.04907453432679176, + -0.014257972128689289, + 0.02305624447762966, + -0.015161645598709583, + 0.022290632128715515, + -0.007900874130427837, + -0.0497271865606308, + -0.01026046834886074, + -0.020633894950151443, + -0.005654239561408758, + -0.015588381327688694, + -0.029017984867095947, + -0.020571140572428703, + 0.020997876301407814, + -0.019253281876444817, + 0.010787611827254295, + 0.038305748254060745, + -0.0388328917324543, + -0.02826492302119732, + -0.0218262430280447, + 0.00855980347841978, + -0.03418900817632675, + 0.014245420694351196, + -0.05256371945142746, + -0.026884309947490692, + -0.025691961869597435, + -0.021537570282816887, + -0.051609840244054794, + 0.022855428978800774, + 0.00028004488558508456, + -0.008346435613930225, + 0.01354256272315979, + 0.029695739969611168, + 0.0030765715055167675, + -0.02269226498901844, + -0.029294107109308243, + -0.034967172890901566, + -0.007668680045753717, + -0.04116738215088844, + 0.0158896055072546, + 0.004628192633390427, + -0.07179190218448639, + -0.02554134838283062, + 0.019993793219327927, + 0.02967063896358013, + -0.01381868589669466, + 0.05090698227286339, + -0.022717367857694626, + 0.042146362364292145, + 0.011289652436971664, + 0.007787914946675301, + 0.009143426083028316, + 0.004123013932257891, + 0.016492055729031563, + -0.007405108772218227, + 0.029645536094903946, + 0.016994096338748932, + 0.026557981967926025, + -0.04171963036060333, + 0.03810493275523186, + 0.02350808121263981, + 0.06908087432384491, + -0.010825264267623425, + -0.018726138398051262, + -0.022215325385332108, + -0.045484937727451324, + 0.04234718158841133, + 0.026231655851006508, + -0.01590215601027012, + -0.004954519681632519, + -0.05366821214556694, + 0.03481656312942505, + 0.003410742850974202, + -0.013442154973745346, + -0.030398597940802574, + -0.030373496934771538, + 0.03941023722290993, + -0.004675259348005056, + -0.034465134143829346, + -0.046714939177036285, + 0.06581760942935944, + -0.010994703508913517, + -0.006037046201527119, + 0.0324067622423172, + 0.039234522730112076, + -0.0012935406994074583, + -0.1007094755768776, + 0.060445766896009445, + 0.02343277633190155, + -0.020558590069413185, + 0.002914977027103305, + 0.028039004653692245, + -0.010273018851876259, + 0.0029714566189795732, + -0.028064105659723282, + 0.005632275249809027, + 0.03029819019138813, + -0.035167988389730453, + -0.013417053036391735, + -0.036649011075496674, + -0.0011766592506319284, + 0.007191740907728672, + -0.05171024799346924, + -0.002991852117702365, + 0.007668680045753717, + 0.005453423131257296, + -0.02788839116692543, + 0.023821856826543808, + 0.008697864599525928, + 0.044179629534482956, + -0.008729242719709873, + 0.010367152281105518, + 0.05301555618643761, + 0.011521846987307072, + -0.05893964320421219, + -0.04081595316529274, + -0.008327608928084373, + 0.03765309602022171, + 0.0012441209983080626, + -0.005403219256550074, + 0.06401026248931885, + -0.0780172124505043, + 0.011728938668966293, + -0.01984318159520626, + -0.022729918360710144, + 0.03210553899407387, + -0.0168309323489666, + -0.029394514858722687, + -0.04217146709561348, + -0.0029887142591178417, + 0.032431866973638535, + 0.033611662685871124, + -0.0468655526638031, + -0.06948251277208328, + -0.03536880761384964, + 0.010561692528426647, + 0.03529350087046623, + 0.002334491815418005, + -0.004929417744278908, + -0.011873275972902775, + -0.03697533905506134, + 0.05652984604239464, + 0.07912170141935349, + -0.013040522113442421, + 0.016228483989834785, + -0.021688181906938553, + 0.012293735519051552, + 0.041694525629282, + -0.014521543867886066, + -0.0020426802802830935, + 0.025641757994890213, + 0.01563858613371849, + 0.0063131689094007015, + 0.06918128579854965, + 0.023332366719841957, + 0.0018497082637622952, + -0.03248206898570061, + 0.005616586655378342, + -0.01878889463841915, + 0.014634503051638603, + 0.0340132936835289, + -0.012657715007662773, + 0.0583873987197876, + -0.017220014706254005, + -0.022830326110124588, + 0.007813016884028912, + -0.04184513911604881, + 0.021424610167741776, + -0.006695975083857775, + 0.019077567383646965, + -0.010028273798525333, + 0.035343702882528305, + -0.02078450843691826, + 0.03782881051301956, + -0.014634503051638603, + 0.05442127212882042, + 0.021976856514811516, + -0.03956085070967674, + -0.03677452355623245, + -0.03351125493645668, + -0.032733090221881866, + 0.05301555618643761, + -0.06089760363101959, + -0.008704140782356262, + -0.01965491473674774, + -0.007561996579170227, + -0.005996255204081535, + -0.02237848937511444, + -0.0006455936818383634, + -0.03654860332608223, + 0.016416748985648155, + -0.01044873334467411, + 0.005186713766306639, + -0.057784948498010635, + 0.006250413600355387, + 0.009940416552126408, + 0.0558771938085556, + 0.008653935976326466, + 0.02023226208984852, + -0.037376970052719116, + 0.005105132237076759, + -0.00420773308724165, + 0.011728938668966293, + 0.013479807414114475, + -0.03506758064031601, + -0.011402611620724201, + -0.014985931105911732, + -0.0031973752193152905, + 0.018826548010110855, + 0.026884309947490692, + 0.011829347349703312, + -0.02034522220492363, + 0.015011033974587917, + -0.008679037913680077, + 0.01276439893990755, + 0.00982745736837387, + 0.013429603539407253, + -0.00871669128537178, + -0.023395122960209846, + -0.043677590787410736, + 0.0574837252497673, + -0.04551003873348236, + 0.0008730811532586813, + -0.03612186759710312, + 0.06526536494493484, + -0.04051472991704941, + 0.042196568101644516, + 0.003875131020322442, + 0.06265474855899811, + 0.03313472121953964, + 0.07811761647462845, + 0.030750026926398277, + 0.023457877337932587, + -0.021788591518998146, + 0.031252067536115646, + -0.010624447837471962, + 0.03004716895520687, + -0.016705423593521118, + 0.05037983879446983, + 0.01929093524813652, + -0.006564189679920673, + 0.008892405778169632, + -0.004957657307386398, + -0.014107359573245049, + 0.015437768772244453, + 0.014257972128689289, + 0.009727049618959427, + -0.026633288711309433, + -0.027486758306622505, + 0.0510575957596302, + -0.051609840244054794, + 0.0372263602912426, + -0.005145922768861055, + 0.014835319481790066, + 0.055124130100011826, + 0.04161921888589859, + 0.016090422868728638, + 0.020734304562211037, + 0.010837815701961517, + -0.009049293585121632, + 0.0025462904013693333, + -0.0001567898434586823, + -0.024097980931401253, + 0.021236345171928406, + 0.0044587538577616215, + -0.013304092921316624, + -0.004772529937326908, + 0.0067838323302567005, + 0.014885523356497288, + 0.07575802505016327, + 0.03622227534651756, + 0.0343647226691246, + -0.013906543143093586, + 0.01626613736152649, + -0.049752287566661835, + 0.023859510198235512, + -0.007336077746003866, + -0.01054286677390337, + 0.020671548321843147, + -0.030900638550519943, + -0.04111718013882637, + 0.005572658032178879, + -0.02146226353943348, + -0.014082257635891438, + 0.018839098513126373, + 0.02721063606441021, + -0.03368696942925453, + 0.02603083848953247, + -0.02721063606441021, + 0.0008236614521592855, + -0.004926279652863741, + -0.0008887699223123491, + 0.039661258459091187, + 0.03351125493645668, + -0.01085036713629961, + 0.016479505226016045, + -0.04849718511104584, + 0.004527784418314695, + -0.001251181005500257, + 0.004759978502988815, + -0.027411453425884247, + 0.05186086148023605, + 0.007091332692652941, + -0.04342656955122948, + -0.012067817151546478, + -0.023106448352336884, + -0.020633894950151443, + -0.04606228694319725, + -0.017722057178616524, + 0.02313155122101307, + 0.007568271830677986, + -0.0038939574733376503, + 0.012143122963607311, + -0.019065016880631447, + 0.003881406504660845, + 0.056931477040052414, + -0.01966746710240841, + -0.010097304359078407, + -0.0121180210262537, + 0.003092260332778096, + 0.014722360298037529, + -0.01400695089250803, + -0.009877662174403667, + -0.025830022990703583, + 0.01258240919560194, + 0.02015695720911026, + 0.018638281151652336, + -0.003947299439460039, + -0.0017194913234561682, + 0.0067085265181958675, + -0.03556962311267853, + -0.024349000304937363, + -0.012406694702804089, + 0.006422990467399359, + -0.01135240774601698, + 0.007499241270124912, + 0.03958595171570778, + -0.0028208442963659763, + -0.04234718158841133, + 0.004543473478406668, + 0.00825230311602354, + -0.04598698019981384, + 0.00807031337171793, + 0.009193630889058113, + 0.07485435158014297, + 0.02144971303641796, + -0.02783818729221821, + -0.06240372732281685, + -0.001575938891619444, + -0.04018840193748474, + -0.001473961747251451, + 0.04279901832342148, + -0.013253889046609402, + 0.010348325595259666, + -0.03612186759710312, + -0.03609676659107208, + -0.04817085713148117, + 0.014232869260013103, + 0.016730524599552155, + 0.02380930632352829, + -0.035393908619880676, + -0.016805831342935562, + 0.01292756199836731, + -0.010793887078762054, + -0.05090698227286339, + 0.02721063606441021, + 0.019027363508939743, + 0.007279598154127598, + -0.005936637986451387, + -0.025202471762895584, + -0.0232570618391037, + -0.00029298814479261637, + 0.026633288711309433, + -0.024750633165240288, + 0.02144971303641796, + -0.011910928413271904, + 0.03105125203728676, + 0.020884916186332703, + 0.015927258878946304, + -0.022152571007609367, + -0.004405411891639233, + 0.006620669271796942, + 0.040113095194101334, + 0.013429603539407253, + -0.038305748254060745, + -0.01966746710240841, + 0.002078764606267214, + -0.02023226208984852, + -0.02058369107544422, + 0.004091636277735233, + 0.0009452495723962784, + -0.011327305808663368, + -0.011917204596102238, + -0.05954209342598915, + -0.031879618763923645, + -0.04212126135826111, + -0.016165727749466896, + 0.010153784416615963, + 0.01898971013724804, + -0.028515944257378578, + 0.036272481083869934, + -0.018198994919657707, + 0.016843484714627266, + -0.014396033249795437, + 0.012161949649453163, + 0.012256082147359848, + -0.002299976535141468, + 0.02127399854362011, + 0.01911522075533867, + 0.019190527498722076, + -0.04985269531607628, + -0.03574533760547638, + -0.02300604060292244, + -0.029043087735772133, + 0.006921893917024136, + -0.007135261315852404, + -0.014847869984805584, + 0.008641385473310947, + -0.008189547806978226, + 0.02330726571381092, + 0.014421135187149048, + 0.026758799329400063, + -0.004775667563080788, + 0.0002165052865166217, + 0.0753563940525055, + 0.03802962601184845, + 0.007329802494496107, + 0.011233173310756683, + 0.009545059874653816, + -0.013919093646109104, + -0.010084753856062889, + 0.034414928406476974, + -0.031201863661408424, + 0.02992165833711624, + 0.009695671498775482, + 0.049752287566661835, + 0.005356152541935444, + 0.0042359731160104275, + -0.017295321449637413, + -0.012977766804397106, + -0.05683106929063797, + 0.012199603021144867, + 0.009005364961922169, + -0.03406349942088127, + -0.016743075102567673, + -0.021600324660539627, + 0.019366241991519928, + 0.020872365683317184, + -0.015324809588491917, + -0.020357772707939148, + -0.004421100951731205, + -0.012833429500460625, + 0.012525929138064384, + -0.0007722806767560542, + -0.009281488135457039, + -0.005428321193903685, + 0.01288990955799818, + -0.05037983879446983, + -0.013994400389492512, + -0.006978373508900404, + -0.019391342997550964, + -0.02936941385269165, + 0.05206167697906494, + -0.004985897336155176, + -0.027863290160894394, + -0.0031973752193152905, + 0.012111745774745941, + -0.02751186117529869, + 0.03679962456226349, + -0.045911673456430435, + -0.014722360298037529, + -0.0031738420948386192, + -0.0016896825982257724, + -0.003373089712113142, + -0.019127771258354187, + 0.0020552314817905426, + 0.03833084926009178, + 0.007656129077076912, + -0.033912885934114456, + -0.042196568101644516, + 0.012406694702804089, + -0.027135329321026802, + -0.0023705761414021254, + 0.0016849759267643094, + -0.016780728474259377, + 0.00868531409651041, + 0.022780122235417366, + 0.007869496941566467, + 0.015312258154153824, + 0.02869165875017643, + 0.009915314614772797, + 0.009996896609663963, + -0.002271736739203334, + -0.0026263033505529165, + 0.008089140057563782, + 0.02176348865032196, + 0.023658694699406624, + 0.04001268744468689, + -0.014082257635891438, + -0.014584298245608807, + 0.005547556094825268, + 0.05045514553785324, + -0.006043321453034878, + -0.03155329450964928, + 0.07364945113658905, + -0.04081595316529274, + 0.05668045952916145, + 0.02844063751399517, + -0.03810493275523186, + 0.004537197761237621, + 0.03584574535489082, + 0.046539224684238434, + 0.011283377185463905, + 0.01916542463004589, + -0.011082560755312443, + -0.008089140057563782, + -0.04779432713985443, + -0.06702250987291336, + -0.004289315082132816, + -0.05176045373082161, + 0.01379358395934105, + -0.03642309457063675, + -0.007725159637629986, + 0.011540673673152924, + 0.020320119336247444, + 0.007882047444581985, + 0.013429603539407253, + 0.010831540450453758, + 0.009871385991573334, + -0.03858187049627304, + 0.014295624569058418, + -0.008647660724818707, + 0.015387564897537231, + -0.01350491028279066, + 0.005164749454706907, + -0.029695739969611168, + -0.04440554976463318, + 0.004998448304831982, + 0.0022827188950031996, + -0.026934513822197914, + 0.015738993883132935, + -0.025152267888188362, + 0.01379358395934105, + 0.04877330735325813, + -0.019931038841605186, + -0.025629205629229546, + 0.007718884386122227, + -0.01842491328716278, + 0.026557981967926025, + -0.016605013981461525, + 0.01954195648431778, + -0.016843484714627266, + -0.0019156011985614896, + 0.0179856289178133, + -0.019127771258354187, + -0.00744903739541769, + 0.009909039363265038, + -0.027687575668096542, + -0.07400088012218475, + 0.0003218163037672639, + 0.0004702714504674077, + 0.03165370225906372, + -0.016805831342935562, + -0.03582064434885979, + -0.0023407672997564077, + -0.01379358395934105, + 0.018073486164212227, + 0.0158896055072546, + 0.0074113840237259865, + -0.038933299481868744, + -0.0014770994894206524, + -0.025215022265911102, + 0.04781942814588547, + -0.0020709200762212276, + 0.016667770221829414, + -0.012174500152468681, + -0.015111441724002361, + 0.02653288096189499, + -0.010486386716365814, + 0.03549431636929512, + 0.0030514695681631565, + -0.0168309323489666, + -0.010442458093166351, + -0.027235738933086395, + 0.005801714491099119, + -0.003533115377649665, + 0.036950238049030304, + 9.854520612861961e-05, + -0.005378116853535175, + 0.0030797093641012907, + -0.007267047185450792, + 0.037376970052719116, + -0.0018826547311618924, + -0.016843484714627266, + -0.002102297730743885, + -0.026884309947490692, + 0.015663687139749527, + -0.006102939136326313, + 0.017107056453824043, + -0.013479807414114475, + -0.009902764111757278, + 0.024386653676629066, + -0.03504247963428497, + 0.012042714282870293, + 0.0021273999009281397, + 0.002532170619815588, + 0.05853801220655441, + 0.0012245100224390626, + -0.0030169542878866196, + -0.011088836006820202, + 0.008710416033864021, + 0.001382182352244854, + 0.012438071891665459, + 0.016416748985648155, + 0.002023853827267885, + 0.029645536094903946, + 0.025152267888188362, + -0.011986235156655312, + 0.005258881952613592, + -0.01694389246404171, + 0.01072485651820898, + -0.019705118611454964, + -0.01023536641150713, + -0.004232835490256548, + -0.00914970226585865, + 0.0052149537950754166, + 0.006972097791731358, + 0.006303755566477776, + -0.00605901051312685, + 0.010662101209163666, + 0.007631027139723301, + 0.0182994045317173, + -0.0020615069661289454, + 0.003912784159183502, + -0.04397881403565407, + 0.009130875580012798, + -0.0016316340770572424, + -0.01632889173924923, + -0.0301726795732975, + 0.005221229046583176, + 0.0003086769429501146, + -0.03647329658269882, + 0.019065016880631447, + 0.03863207623362541, + 0.0005185144837014377, + -0.001546130166389048, + 0.02670859545469284, + 0.00838408898562193, + -0.06812699884176254, + -0.026809003204107285, + -0.03042370080947876, + 0.024323899298906326, + 0.028340229764580727, + 0.027536962181329727, + -0.0142830740660429, + 0.009432099759578705, + -0.10864172875881195, + -0.032005131244659424, + 0.026357166469097137, + -0.029545128345489502, + 0.014923176728188992, + 0.04166942462325096, + 0.03617207333445549, + 0.026306962594389915, + 0.020420528948307037, + -0.06330740451812744, + -0.013216235674917698, + -0.013492358848452568, + -0.036021459847688675, + 0.026256758719682693, + 0.012199603021144867, + -0.0061405920423567295, + 0.018073486164212227, + -0.002754951361566782, + 0.026733696460723877, + -0.01793542318046093, + 0.011829347349703312, + -0.044254936277866364, + -0.009915314614772797, + -0.022717367857694626, + -0.022955836728215218, + 0.028917577117681503, + -0.00606214813888073, + -0.01029184553772211, + 0.016466952860355377, + 0.03938513621687889, + 0.018023280426859856, + 0.027863290160894394, + 0.019428996369242668, + 0.016479505226016045, + -0.03752758353948593, + -0.011477918364107609, + 0.0027125917840749025, + 0.008973987773060799, + 0.021161038428544998, + 0.011666183359920979, + 0.002103866543620825, + 0.0261563491076231, + -0.016102973371744156, + 0.005155336111783981, + 0.01978042535483837, + 0.019316038116812706, + -0.026482677087187767, + 0.034163907170295715, + -0.005280846264213324, + 0.03295901045203209, + 0.028892474249005318, + -0.05276453495025635, + 0.027160432189702988, + 0.0052149537950754166, + 0.009381895884871483, + 0.03130227327346802, + -0.04114228114485741, + -0.020696651190519333, + -0.01044873334467411, + -0.01041735615581274, + 0.03870737925171852, + 0.02269226498901844, + -0.008729242719709873, + -0.05401964113116264, + 0.004298728425055742, + 0.015475422143936157, + 0.0008864165865816176, + -0.014822768047451973, + 0.0007071722066029906, + -0.024712981656193733, + 0.02225297875702381, + -0.016102973371744156, + 0.00019709041225723922, + -0.002180741634219885, + -0.024637674912810326, + -0.008465670980513096, + 0.012682816945016384, + -0.025403287261724472, + 0.020458180457353592, + -0.06310658901929855, + 0.030072271823883057, + 0.01903991401195526, + -0.002880461746826768, + 0.013630419969558716, + -0.004417962860316038, + -0.0142830740660429, + -0.014270522631704807, + 0.01985573209822178, + 0.02535308338701725, + 0.019366241991519928, + 0.011101387441158295, + -0.0279385969042778, + -0.02368379570543766, + -0.03198002651333809, + 3.885426849592477e-05, + 0.03072492592036724, + -0.01910267025232315, + -0.008396640419960022, + 0.03823044151067734, + -0.0034327071625739336, + 0.005644826218485832, + 0.0301726795732975, + -0.024888696148991585, + 0.008277405053377151, + 0.013655521906912327, + 0.042020853608846664, + -0.005654239561408758, + -0.013065624050796032, + -0.0033856406807899475, + -0.03710084781050682, + 0.015801748260855675, + -0.017270218580961227, + 0.02448706328868866, + 0.032180845737457275, + -0.044982895255088806, + 0.008120517246425152, + 0.024085428565740585, + -0.023834409192204475, + -0.026432471349835396, + 0.007486690301448107, + -0.0035864573437720537, + 0.04234718158841133, + -0.025403287261724472, + -0.006790108047425747, + 0.0029165458399802446, + 0.0007385497447103262, + 0.028490841388702393, + 0.009369345381855965, + -0.023031143471598625, + -0.03353635594248772, + 0.04146860912442207, + 0.0308002308011055, + -0.04089125990867615, + -0.02763737179338932, + -0.023633591830730438, + -0.026005737483501434, + 0.018098587170243263, + -0.008277405053377151, + -0.030624516308307648, + 0.0006954055861569941, + -0.03085043467581272, + -0.05668045952916145, + -0.009243834763765335, + 0.005651101935654879, + 0.02726083993911743, + -0.004697223659604788, + 0.02237848937511444, + -0.0002731810382101685, + -0.013467256911098957, + -0.02436155267059803, + 0.043501876294612885, + -0.0063633727841079235, + 0.00961409043520689, + 0.028164515271782875, + -0.058839235454797745, + 0.013831236399710178, + -0.0028930127155035734, + -0.030222883448004723, + 0.012155674397945404, + -0.0028584974352270365, + 0.0043991366401314735, + 0.018562976270914078, + -0.014910625293850899, + -0.0019689430482685566, + -0.0073862820863723755, + -0.04433024302124977, + -0.00903046689927578, + 0.004813320469111204, + 0.022127468138933182, + -0.049250248819589615, + -0.019692568108439445, + 0.0027518137358129025, + -0.004697223659604788, + 0.02096022292971611, + 0.046589430421590805, + -0.020809609442949295, + 0.027988800778985023, + -0.0446314662694931, + -0.05311596393585205, + 0.006256689317524433, + -0.0020364047959446907, + 0.002725142752751708, + -0.00405084528028965, + -0.004154391586780548, + 0.03315982595086098, + -0.00019669819448608905, + 0.0024866731837391853, + 0.028666555881500244, + -0.021161038428544998, + -0.004267350770533085, + 0.0122749088332057, + 0.01657991297543049, + -0.020746855065226555, + 0.00852842628955841, + -0.002188586164265871, + 0.0010480111232027411, + 0.02577981911599636, + 0.02844063751399517, + -0.007223118562251329, + 0.005541280377656221, + 0.006049597170203924, + -0.009268936701118946, + 0.025302879512310028, + 0.00482587143778801, + -0.037125952541828156, + 0.03305941820144653, + -0.004380309954285622, + -0.010825264267623425, + -0.042447589337825775, + 0.019680017605423927, + 0.01162853091955185, + -0.029394514858722687, + 0.03715105354785919, + 0.044982895255088806, + -0.04171963036060333, + 0.005500489380210638, + -0.026809003204107285, + -0.0013500202912837267, + -0.026332063600420952, + -0.03343594819307327, + 0.004019467625766993, + -0.054822906851768494, + -0.022353386506438255, + -0.030348394066095352, + -0.012952664867043495, + 0.06852862983942032, + 0.011747765354812145, + 0.011289652436971664, + -0.00737373111769557, + 0.010831540450453758, + -0.020169507712125778, + 0.006877965293824673, + -0.025240125134587288, + 0.007223118562251329, + 0.011101387441158295, + -0.004110462963581085, + 0.028892474249005318, + 0.020169507712125778, + -0.006426128093153238, + -0.03702554106712341, + 0.005095718894153833, + -0.01212429627776146, + 0.021173590794205666, + 0.0007365886704064906, + 0.009821182116866112, + 0.01563858613371849, + 0.047392696142196655, + 0.005048652179539204, + 0.05015392228960991, + 0.01199251040816307, + -0.02338257245719433, + 0.0008981832070276141, + -0.009381895884871483, + -0.020533487200737, + 0.035268399864435196, + 0.0018104863120242953, + 0.0010032980935648084, + -0.016165727749466896, + -8.481751865474507e-05, + -0.025127165019512177, + 0.008572354912757874, + 0.02577981911599636, + 0.009532508440315723, + -0.0004628192982636392, + -0.01273929700255394, + 0.009701947681605816, + -0.032180845737457275, + 0.0038908198475837708, + 0.040439423173666, + -0.005346739199012518, + 0.02237848937511444, + -0.014245420694351196, + -0.009413274005055428, + 0.01607787050306797, + 0.010166335850954056, + 0.005036101210862398, + -0.006093525793403387, + -0.01632889173924923, + -0.013341746293008327, + -0.025804920122027397, + -0.015387564897537231, + -0.009199906140565872, + 0.02237848937511444, + 0.04274881258606911, + 0.007110159378498793, + -0.027988800778985023, + -0.0020944534335285425, + -0.0174961369484663, + -0.004894902464002371, + -0.0026749386452138424, + 0.014948278665542603, + 0.005989979952573776, + 0.00505806552246213, + -0.039234522730112076, + -0.014044604264199734, + 0.006065285764634609, + -0.02783818729221821, + -0.006564189679920673, + -0.011452816426753998, + -0.051183104515075684, + -0.010818989016115665, + -0.00013168777513783425, + -0.0016081009525805712, + 0.022353386506438255, + 0.0007460019551217556, + -0.0020819022320210934, + 0.010003171861171722, + -0.012168224900960922, + 0.019127771258354187, + -0.006040183827280998, + -0.020922569558024406, + 0.00962036568671465, + 0.01755889318883419, + 0.007825568318367004, + -0.02171328477561474, + 0.022340836003422737, + 0.05492331460118294, + 0.022027060389518738, + 0.0001724786270642653, + 0.008145619183778763, + -0.007561996579170227, + -0.02114848792552948, + 0.017797362059354782, + 0.02257930487394333, + 0.011747765354812145, + -0.03288370370864868, + 0.007982456125319004, + 0.004452478606253862, + 0.0056605152785778046, + 0.023081347346305847, + 0.006501434370875359, + -0.024210939183831215, + -0.007185465656220913, + -0.020370323210954666, + -0.042824119329452515, + -0.0011468505254015326, + -0.011182969436049461, + 0.01775970868766308, + -0.007718884386122227, + -0.020420528948307037, + 0.017772261053323746, + -0.0038531667087227106, + -0.030323291197419167, + -0.0005769552080892026, + -0.01379358395934105, + 0.0020568002946674824, + -0.01602766662836075, + -0.02270481549203396, + 0.05688127502799034, + 0.03363676369190216, + 0.08479476720094681, + -0.007988731376826763, + -0.033787377178668976, + 0.001000160351395607, + 0.06812699884176254, + 0.016466952860355377, + 0.014722360298037529, + -0.036573704332113266, + -0.01432072650641203, + -0.04252289608120918, + -0.012143122963607311, + -0.023909714072942734, + 0.05959229916334152, + -0.004860386718064547, + -0.0005263588973321021, + -0.017797362059354782, + -0.007198016624897718, + -0.007988731376826763, + -0.012193326838314533, + 0.0221400186419487, + 0.024223491549491882, + 0.0003292684559710324, + -0.016153177246451378, + 0.003111087018623948, + 0.030222883448004723, + -0.004584264010190964, + 0.017784811556339264, + -0.005503627471625805, + 0.012155674397945404, + 0.026608185842633247, + 0.0006146083469502628, + -0.0314277820289135, + 0.05497351661324501, + 0.02108573354780674, + -0.024662775918841362, + 0.03190472349524498, + 0.028089208528399467, + -0.024901246652007103, + 0.0010464421939104795, + 0.0400879941880703, + 0.0014104221481829882, + 0.012011337094008923, + 0.014647053554654121, + -0.017483586445450783, + 0.01196740847080946, + 0.03519309312105179, + 0.03790411353111267, + -0.021788591518998146, + -0.02023226208984852, + -0.002494517480954528, + 0.004920004401355982, + 0.020734304562211037, + -0.011245723813772202, + -0.007743986323475838, + 0.009281488135457039, + -0.05627882480621338, + -0.02585512399673462, + 0.03253227472305298, + -0.005776612088084221, + 0.031628597527742386, + -0.028666555881500244, + 0.014534094370901585, + -0.011741490103304386, + 0.006077837198972702, + -0.007894598878920078, + 0.006626944523304701, + -0.0026608186308294535, + 0.003300921292975545, + 0.017207464203238487, + 0.016554810106754303, + -0.029520025476813316, + 0.016893688589334488, + 0.026306962594389915, + 0.017596546560525894, + -0.010065927170217037, + -0.010693478398025036, + -0.008233476430177689, + -0.015023584477603436, + -0.02350808121263981, + 0.001193132484331727, + -0.02585512399673462, + -0.022491447627544403, + -0.06004413589835167, + 0.04438044875860214, + -0.01656736060976982, + 0.01354256272315979, + 0.03085043467581272, + 0.009237559512257576, + 0.012080367654561996, + 0.003038918599486351, + 0.016090422868728638, + 0.007003475446254015, + 0.0356198288500309, + 0.013341746293008327, + 0.012011337094008923, + 0.011829347349703312, + -0.02473808266222477, + 0.014634503051638603, + -0.03315982595086098, + -0.004326967988163233, + 0.018650833517313004, + -0.0019171700114384294, + 0.029545128345489502, + 0.02566685900092125, + -0.016605013981461525, + -0.008773171342909336, + 0.010492661967873573, + -0.02442430704832077, + 0.012475725263357162, + 0.038130033761262894, + -0.011490468867123127, + -0.027436554431915283, + 0.019931038841605186, + -0.003674314357340336, + -0.011835622601211071, + -0.002947923494502902, + -0.013705726712942123, + -0.011490468867123127, + -0.00035456664045341313, + 0.0003320139949209988, + -0.006463780999183655, + 0.0011044907150790095, + 0.007292149122804403, + 0.0012362765846773982, + -0.00031691353069618344, + -0.006037046201527119, + 0.005578933283686638, + -0.014697257429361343, + -0.011139040812849998, + 0.022679714486002922, + 0.02078450843691826, + 0.04551003873348236, + -0.011019805446267128, + 0.0007279598503373563, + -0.005996255204081535, + -0.007103883661329746, + -0.03300921246409416, + 0.010749958455562592, + 0.014119910076260567, + 0.023081347346305847, + -0.003451533615589142, + -0.01307817455381155, + -0.001212743460200727, + -0.0018340194365009665, + 0.02560410462319851, + 0.004540335852652788, + -0.005971153266727924, + -0.02700982056558132, + -0.02004399709403515, + 0.013090725988149643, + 0.01757144369184971, + -0.003950437065213919, + 0.008082863874733448, + -0.0008958298712968826, + -0.023909714072942734, + -0.017358075827360153, + -0.042999833822250366, + -0.017784811556339264, + 0.013103276491165161, + -0.030624516308307648, + -0.008610007353127003, + -0.009375620633363724, + 0.011245723813772202, + -0.021236345171928406, + -0.0009554472635500133, + 0.01339195016771555, + 0.010567968711256981, + -0.005108269862830639, + -0.0069909244775772095, + 0.005582071375101805, + 0.001918738940730691, + -0.01103863213211298, + -0.018575526773929596, + 0.0054973517544567585, + -0.013705726712942123, + -0.04914984107017517, + 0.040339015424251556, + 0.02165052853524685, + -0.038431257009506226, + 0.014797666110098362, + -0.01595236174762249, + 0.03245696797966957, + -0.012055265717208385, + -0.002450588857755065, + -0.008540976792573929, + 0.02318175509572029, + -0.007336077746003866, + 0.0015186747768893838, + 0.03165370225906372, + -0.018701037392020226, + -0.04116738215088844, + -0.013994400389492512, + 0.0037433451507240534, + -0.0030279364436864853, + 0.03305941820144653, + -0.02962043508887291, + -0.009043018333613873, + -0.009017916396260262, + 0.0033981918822973967, + 0.017546342685818672, + -0.003344849916175008, + -0.009601539000868797, + -0.015626033768057823, + -0.011145316064357758, + -0.04827126860618591, + -0.0022419278975576162, + 0.015412666834890842, + 0.016052769497036934, + 0.001295109512284398, + -0.031754110008478165, + -0.0481206551194191, + -0.052413105964660645, + 0.002803586656227708, + -0.004910591058433056, + -0.0035895949695259333, + 0.006695975083857775, + -0.014396033249795437, + -0.0009052431560121477, + 0.01496082916855812, + 0.007492965552955866, + -0.011095112189650536, + 0.01119551993906498, + 0.026332063600420952, + 0.0324067622423172, + -0.012262357398867607, + 0.016655217856168747, + 0.014571747742593288, + -0.014546645805239677, + 0.017332974821329117, + 0.020182058215141296, + 0.013730828650295734, + 0.014232869260013103, + -0.01885164901614189, + 0.045786160975694656, + 0.0021995683200657368, + -0.009545059874653816, + 0.012808327563107014, + -0.009852559305727482, + -0.02270481549203396, + -0.014421135187149048, + -0.008183272555470467, + 0.015588381327688694, + -0.013605318032205105, + 0.0050768922083079815, + -0.003649212419986725, + -0.025240125134587288, + 0.01750868931412697, + -0.015626033768057823, + -0.013919093646109104, + -0.006539087276905775, + 0.015500524081289768, + 0.025691961869597435, + -0.002392540453001857, + -0.008773171342909336, + -0.010216539725661278, + 0.0037966871168464422, + 0.0031659977976232767, + -0.020859815180301666, + -0.037929218262434006, + -0.01354256272315979, + 0.003310334635898471, + 0.010762509889900684, + -0.0032601305283606052, + -0.01850022003054619, + -0.004044570028781891, + -0.009582712315022945, + -0.01014123298227787, + 0.02473808266222477, + 0.0039880904369056225, + 0.001725766807794571, + 0.011277101933956146, + -0.030900638550519943, + -0.0030624517239630222, + 0.009137150831520557, + -0.03258247673511505, + 0.009256385266780853, + 0.009363069199025631, + -0.01555072795599699, + -0.017709504812955856, + -0.026984717696905136, + -0.008867303840816021, + -0.024461960420012474, + -0.010593070648610592, + 0.004060258623212576, + 0.027988800778985023, + -0.02478828653693199, + -0.027813086286187172, + 0.02546604350209236, + 0.02034522220492363, + 0.008208374492824078, + 0.031026149168610573, + -0.010097304359078407, + -0.029168596491217613, + 0.0006648124544881284, + 0.016843484714627266, + -0.005682479590177536, + 0.018600627779960632, + 0.021424610167741776, + -0.005993117578327656, + -0.022604407742619514, + 0.01713215745985508, + -0.02040797658264637, + -0.007047404069453478, + 0.004810182843357325, + 0.02126144804060459, + 0.016291238367557526, + 0.014245420694351196, + 0.02355828694999218, + -0.02818961627781391, + -0.013454705476760864, + -0.01288990955799818, + -0.01818644441664219, + -0.0018402950372546911, + -0.01793542318046093, + 0.022403590381145477, + 0.004386585671454668, + 0.00567306624725461, + -0.03122696653008461, + -0.01555072795599699, + -0.00853470154106617, + 0.027311043813824654, + -0.022227875888347626, + 0.019642364233732224, + -0.002412935718894005, + 0.002092884387820959, + -0.0020568002946674824, + -0.021914100274443626, + -0.032431866973638535, + -0.012758123688399792, + -0.02170073427259922, + 0.04648901894688606, + 0.03431452065706253, + 0.058337192982435226, + -0.018349608406424522, + 0.02058369107544422, + -0.020458180457353592, + -0.001212743460200727, + 0.0015382857527583838, + 0.006146867759525776, + -0.014207767322659492, + 0.010693478398025036, + 0.00017845997354015708, + 0.0009829025948420167, + -0.0006581447087228298, + 0.008729242719709873, + 0.013341746293008327, + 0.026809003204107285, + -0.0019736497197300196, + -0.001168814837001264, + 0.02033267170190811, + 0.0433010570704937, + 0.0025462904013693333, + -0.02047073282301426, + 0.01866338402032852, + -0.031126558780670166, + -0.0336618646979332, + -0.0016426162328571081, + 0.029946761205792427, + 0.014483890496194363, + 0.0032318904995918274, + 0.0019438409944996238, + 0.017659300938248634, + 0.027612268924713135, + -0.009450926445424557, + -0.015801748260855675, + 0.0057295458391308784, + 0.0030028342735022306, + -0.049802493304014206, + 0.021499916911125183, + 0.0003628032573033124, + -0.012325112707912922, + 0.006495158653706312, + 0.03308451920747757, + -0.021123385056853294, + -0.00394416181370616, + -0.026758799329400063, + -0.022679714486002922, + 0.006030770484358072, + -0.005647964309900999, + 0.026633288711309433, + 0.005610310938209295, + -0.022340836003422737, + -0.007969904690980911, + -0.011289652436971664, + 0.0015382857527583838, + 0.005845643114298582, + -0.05186086148023605, + -0.01335429772734642, + 0.03554452210664749 + ], + "how_to_create_reserach_setups": [ + -0.014088370837271214, + 0.023309091106057167, + 0.014220492914319038, + -0.0015359175158664584, + 0.0010561062954366207, + 0.017940768972039223, + -0.01496454793959856, + -0.00021132991241756827, + 0.023907117545604706, + -0.032654982060194016, + 0.015117531642317772, + -0.03382321819663048, + 0.01823282800614834, + -0.05354415625333786, + 0.035353049635887146, + -0.004019288346171379, + 0.005097125191241503, + 0.03490800783038139, + -0.0068320948630571365, + 0.03916372358798981, + 0.012593306601047516, + -0.019985182210803032, + 0.003723752684891224, + -0.03507489711046219, + -0.02775951474905014, + -0.03504708409309387, + 0.039052464067935944, + 0.030235063284635544, + -0.02211304008960724, + -0.03223775327205658, + 0.04695196449756622, + -0.025965437293052673, + -0.051346756517887115, + 0.020305056124925613, + -0.014519506134092808, + 0.0009248536080121994, + -0.059301890432834625, + 0.0032908793073147535, + 0.006508743856102228, + 0.001285581267438829, + 0.01717585138976574, + -0.046812888234853745, + -0.040554482489824295, + 0.0051040793769061565, + -0.023044848814606667, + -0.015673834830522537, + -0.06369668245315552, + -0.00049111113185063, + 0.03646565601229668, + -0.0049997721798717976, + 0.00029075518250465393, + 0.007419690024107695, + 0.007280614227056503, + -0.10502998530864716, + -0.012085680849850178, + -0.032209936529397964, + -0.023448167368769646, + -0.029845651239156723, + 0.020430224016308784, + 0.0451439805328846, + 0.054573316127061844, + 0.04870431870222092, + 0.025756824761629105, + 0.018316272646188736, + 0.01052107848227024, + -0.022266024723649025, + -0.05045667290687561, + 0.04172271862626076, + 0.012690659612417221, + 0.023503797128796577, + -0.02920590341091156, + 0.0054169995710253716, + -0.007975992746651173, + -0.013963202945888042, + 0.011960512027144432, + 0.0027484840247780085, + -0.012482046149671078, + 0.05493491142988205, + -0.04297440126538277, + 0.011724083684384823, + -0.024964092299342155, + -0.04105515405535698, + 0.02730056457221508, + -0.029372792690992355, + -0.03131985291838646, + -0.007294521667063236, + -0.03093044087290764, + 5.682547271135263e-05, + -0.06191651523113251, + -0.07782677561044693, + -0.018663963302969933, + -0.02276669628918171, + -0.030485399067401886, + 0.02368459664285183, + 0.07192996889352798, + -0.023712411522865295, + -0.008441896177828312, + -0.02026333287358284, + 0.0008740040357224643, + 0.07966257631778717, + 0.0243382528424263, + -0.042863138020038605, + -0.01775996945798397, + -0.018524887040257454, + 0.025228336453437805, + -0.014422153122723103, + -0.016619550064206123, + 0.022669343277812004, + -0.04458767920732498, + -0.009088599123060703, + -0.08489182591438293, + -0.023698503151535988, + 0.008831308223307133, + -0.003737660124897957, + -0.01032637245953083, + -0.03749481588602066, + 0.0034143091179430485, + -0.01561820413917303, + -0.0043426393531262875, + -0.01664736494421959, + -0.00485374266281724, + 0.03446296602487564, + 0.04455986246466637, + 0.0060324096120893955, + 0.051012977957725525, + -0.015187069773674011, + 0.031876157969236374, + -0.051346756517887115, + 0.007523996755480766, + -0.001653262646868825, + 0.005371800158172846, + -0.02506144531071186, + 0.04314129054546356, + -0.02165408991277218, + -0.012356878258287907, + 0.011133012361824512, + -0.02934497781097889, + -0.015590389259159565, + -0.02724493481218815, + -0.03123640827834606, + 0.04386448487639427, + 0.00399842718616128, + -0.0005341377109289169, + 0.0352696031332016, + 0.016494380310177803, + 0.053182557225227356, + -0.003967135213315487, + -0.016550011932849884, + 0.03373977169394493, + 0.016202321276068687, + 0.009304165840148926, + -0.029762204736471176, + -0.04798112437129021, + -0.04992818459868431, + 0.0300681721419096, + -0.019234172999858856, + 0.007503135595470667, + 0.05151364952325821, + -0.008685278706252575, + -0.02243291400372982, + 0.04414263740181923, + 0.02440778911113739, + -0.032265570014715195, + 0.02481110952794552, + -0.03543649613857269, + 0.023990562185645103, + -0.020875265821814537, + -0.034963637590408325, + -0.06914845108985901, + 0.020360685884952545, + 0.023364722728729248, + -0.014672488905489445, + 0.014867194928228855, + 0.028510523959994316, + 0.016341397538781166, + -0.0023138723336160183, + -0.04795331135392189, + 0.024240899831056595, + -0.02979002147912979, + 0.0073084295727312565, + 0.0014507336309179664, + -0.0100968973711133, + -0.04481019824743271, + -0.015409590676426888, + -0.02315610833466053, + -0.015437405556440353, + -0.00506235659122467, + -0.009220720268785954, + 0.0004928496200591326, + -0.020305056124925613, + 0.06158273294568062, + 0.015743372961878777, + 0.009603179059922695, + 0.023309091106057167, + 0.038913387805223465, + 0.021028250455856323, + -0.017996398732066154, + -0.017718248069286346, + 0.04750826954841614, + -0.03966439887881279, + 0.007433597464114428, + 0.03084699623286724, + 0.03282187134027481, + -0.007329290732741356, + 0.013469483703374863, + -0.0631403774023056, + -0.02348989062011242, + -0.003010989399626851, + 0.004353070165961981, + -0.0016602164832875133, + 0.009637948125600815, + -0.030819181352853775, + 0.006300130393356085, + 0.03170926496386528, + -0.02492237091064453, + -0.023309091106057167, + -0.011571100912988186, + 0.07109551131725311, + -0.01344862300902605, + -0.03835708647966385, + -0.02387930266559124, + 0.016689086332917213, + 0.0326271653175354, + 0.002835406456142664, + 0.00954059511423111, + 0.04152801260352135, + 0.05098516121506691, + -0.039052464067935944, + 0.03908028081059456, + -0.01565992645919323, + 0.02211304008960724, + 0.03084699623286724, + 0.02157064527273178, + 0.018705684691667557, + -0.034629855304956436, + 0.0044087003916502, + 0.004464330617338419, + -0.01522879209369421, + 0.005601274780929089, + -0.027620438486337662, + 0.01036114152520895, + -0.01125122606754303, + -0.004791158717125654, + -0.023072663694620132, + 0.01433870755136013, + 0.011063474230468273, + -0.009832654148340225, + -0.06731265038251877, + 0.035158343613147736, + -0.01933152601122856, + 0.03638220950961113, + 0.002758914837613702, + 0.07365450263023376, + -0.003177880309522152, + 0.0026424387469887733, + -0.039247170090675354, + -0.02625749632716179, + 0.0009318073862232268, + 4.631330375559628e-05, + -0.010089944116771221, + -0.023587243631482124, + 0.02269715815782547, + 0.0022008733358234167, + 0.019957367330789566, + -0.0128297358751297, + -0.028649600222706795, + 0.0003159626794513315, + -0.006122808903455734, + -0.04472675547003746, + -0.08355669677257538, + -0.013163517229259014, + 0.030207248404622078, + 0.01638312079012394, + -0.032738424837589264, + -0.07665853947401047, + -0.005038018338382244, + 0.017120221629738808, + 0.043447256088256836, + 0.00351861584931612, + 0.019109005108475685, + -0.08122022449970245, + -0.0025433474220335484, + 0.03162581846117973, + 0.03290531784296036, + -0.00308400415815413, + 0.04856524243950844, + 0.02005472034215927, + -0.002296488033607602, + 0.0414445661008358, + 0.0011838821228593588, + 0.024588588625192642, + 0.03282187134027481, + 0.015506943687796593, + -0.025367412716150284, + 0.021403754130005836, + -0.023378629237413406, + 0.012843643315136433, + -0.015965893864631653, + 0.03229338303208351, + 0.005410045851022005, + 0.02197396568953991, + 0.0026580847334116697, + 0.07115114480257034, + 0.01148070115596056, + -0.02775951474905014, + -0.009422380477190018, + 0.01966530829668045, + -0.04111078381538391, + 0.01710631512105465, + 0.016355305910110474, + 0.027203211560845375, + -0.005872472655028105, + 0.06364104896783829, + -0.03757826238870621, + -0.006894679274410009, + 0.01862224005162716, + 0.032599348574876785, + 0.0009422380244359374, + -0.031069517135620117, + -0.015868540853261948, + -0.0663113072514534, + -0.021431569010019302, + 0.06247281655669212, + -0.0705392062664032, + -0.004561683628708124, + -0.039302799850702286, + -0.01127904187887907, + -0.0150340860709548, + -0.0035012313164770603, + -0.012356878258287907, + 0.008309775032103062, + -0.02347598224878311, + 0.018385810777544975, + 0.013851942494511604, + 0.010674062184989452, + -0.04177834838628769, + 0.018330181017518044, + 0.08984292298555374, + 0.009874376468360424, + -0.006620004773139954, + -0.016925515606999397, + -0.03410136699676514, + -0.0331556536257267, + 0.012398600578308105, + -0.03031850792467594, + 0.009637948125600815, + 0.00028206294518895447, + -0.01901165209710598, + 0.004012334626168013, + 0.023712411522865295, + 0.03960876539349556, + 0.003866305109113455, + -0.038523975759744644, + -0.008295866660773754, + -0.04322473704814911, + -0.013754589483141899, + 0.00506583321839571, + -0.024519050493836403, + -0.013580745086073875, + -0.017982492223381996, + -0.012043957598507404, + 0.08494745194911957, + 0.054768022149801254, + 0.037522632628679276, + -0.060025084763765335, + 0.02024942636489868, + -0.009721393696963787, + 0.028232373297214508, + -0.023072663694620132, + 0.010382003150880337, + 0.07298693805932999, + -0.0012664583045989275, + 0.012002235278487206, + -0.007169353775680065, + -0.008483619429171085, + -0.01597980037331581, + 0.04984474182128906, + 0.03215430676937103, + -0.01848316378891468, + 0.055880628526210785, + 0.04895465448498726, + -0.0065887123346328735, + 0.0011995281092822552, + 0.013469483703374863, + 0.02546476572751999, + -0.006526128388941288, + 0.01240555476397276, + 0.03999817743897438, + -0.05757734924554825, + -0.021807074546813965, + 0.0001643918512854725, + -0.033851031213998795, + 0.045283056795597076, + -0.018650054931640625, + -0.02024942636489868, + -0.006522651761770248, + 0.021612368524074554, + 0.04044322296977043, + 0.011932697147130966, + 0.02329518459737301, + 0.024574680253863335, + -0.040749188512563705, + -0.04414263740181923, + 0.015479128807783127, + 0.025033630430698395, + 0.0014124878216534853, + 0.02329518459737301, + 0.025868084281682968, + 0.04703541100025177, + -0.02401837706565857, + 0.056742895394563675, + -0.04675725847482681, + 0.050818271934986115, + 0.01020120456814766, + -0.030179433524608612, + -0.029845651239156723, + 0.012259525246918201, + 0.012043957598507404, + -0.025172706693410873, + -0.0022582421079277992, + 0.015771187841892242, + -0.0347411148250103, + 0.028315817937254906, + -0.032988760620355606, + 0.01842753402888775, + 0.031152963638305664, + 0.016842070966959, + -0.03112514689564705, + 0.0005862911348231137, + -0.0231004785746336, + -0.007802148349583149, + -0.005830749869346619, + 0.05841180682182312, + 0.06892593204975128, + 0.01055584754794836, + 0.018538793548941612, + -0.038051117211580276, + -0.03807893395423889, + -0.03410136699676514, + 0.03974784165620804, + 0.05165272578597069, + 0.012551584281027317, + 0.024421697482466698, + 0.052403733134269714, + -0.025283966213464737, + -0.03972002863883972, + -0.034240443259477615, + -0.007092861924320459, + -0.008073345758020878, + -0.027801238000392914, + 0.016007615253329277, + -0.03412918373942375, + -0.0194010641425848, + 0.03501926735043526, + -0.012384693138301373, + 0.005024110432714224, + 0.03507489711046219, + 0.004106211010366678, + 0.024032285436987877, + 0.03323910012841225, + 0.04951095953583717, + 0.04080481827259064, + 0.010792276822030544, + 0.01345557626336813, + -0.0016437012236565351, + 0.011007843539118767, + -0.04138893634080887, + 0.016842070966959, + -0.015812909230589867, + 0.0011169519275426865, + 0.02419917657971382, + -0.06831399351358414, + -0.004412177484482527, + 0.005743827670812607, + -0.0027519608847796917, + 0.010861814022064209, + -0.06441987305879593, + 0.06503181159496307, + -0.0061610545963048935, + -0.027912497520446777, + 0.0015011485666036606, + 0.020179888233542442, + 0.009561455808579922, + 0.008789585903286934, + -0.027536993846297264, + 0.05702104791998863, + -0.007273660507053137, + -0.019720938056707382, + -0.031013887375593185, + -0.026354849338531494, + 0.00977007020264864, + -0.009818746708333492, + 0.047007594257593155, + -0.01716194488108158, + 0.049038100987672806, + -0.03546430915594101, + -0.009484964422881603, + -0.000794470077380538, + -0.010437632910907269, + 0.02816283516585827, + 0.02394884079694748, + -0.003633353393524885, + -0.06486491858959198, + 0.01814938150346279, + -0.015590389259159565, + -0.010973074473440647, + -0.011564146727323532, + 0.027717791497707367, + 0.015965893864631653, + 0.006154100876301527, + 0.016369212418794632, + -0.017092406749725342, + 0.006887725554406643, + 0.03663254529237747, + 0.005437860731035471, + 0.007683933712542057, + -0.005743827670812607, + -2.2545478714164346e-05, + 0.012050911784172058, + -0.007176307495683432, + -0.010569754987955093, + -0.015896355733275414, + -0.03268279507756233, + 0.010875721462070942, + 0.0028023759368807077, + -0.05359978601336479, + -0.037995487451553345, + -0.04061011224985123, + 0.0066130505874753, + -0.0007909932173788548, + -0.016160599887371063, + -0.015882447361946106, + -0.013406899757683277, + -0.0022234732750803232, + -0.04842616617679596, + -0.012704567983746529, + -0.043196920305490494, + -0.011459839530289173, + -0.026813799515366554, + -0.02158455364406109, + -0.017189759761095047, + 0.021167324855923653, + -0.016939423978328705, + -0.011035659350454807, + -0.015562573447823524, + 0.008678325451910496, + -0.026869431138038635, + 0.02111169509589672, + 0.02329518459737301, + -0.0002746745594777167, + 0.04984474182128906, + -0.06486491858959198, + 0.008142883889377117, + -0.04169490188360214, + -0.00819156039506197, + 0.0056638591922819614, + 0.010020405985414982, + -0.026215774938464165, + 0.028329726308584213, + 0.0023434259928762913, + 0.008907800540328026, + 0.016035431995987892, + -0.011765806935727596, + -0.0073084295727312565, + 0.006560897454619408, + 0.0347411148250103, + 0.011786667630076408, + -0.0149923637509346, + -0.01756526343524456, + -0.02137593924999237, + -0.009095552377402782, + -0.03131985291838646, + 0.046534739434719086, + 0.02992909587919712, + -0.007579626981168985, + 0.020096441730856895, + -8.393437747145072e-05, + -0.018914299085736275, + -0.001161282300017774, + -0.0315701887011528, + -0.002225211588665843, + -0.062139034271240234, + 0.03243245929479599, + 0.02599325403571129, + -0.0305966604501009, + 0.02862178534269333, + -0.030040357261896133, + 0.01618841476738453, + 0.004467807710170746, + -0.029122456908226013, + 0.005799457896500826, + 0.04191742464900017, + 0.028440985828638077, + -0.011988327838480473, + -0.0022043501958251, + 0.0034403856843709946, + -0.029817836359143257, + -0.006581758614629507, + 0.023128293454647064, + 0.015673834830522537, + -0.017801692709326744, + 0.01735665090382099, + -0.022669343277812004, + 0.026424387469887733, + -0.01994345895946026, + -0.016355305910110474, + -0.011696268804371357, + 0.015868540853261948, + -0.03585372120141983, + 0.016341397538781166, + -0.0030353276524692774, + 0.028121111914515495, + -0.026619093492627144, + -0.016397027298808098, + -0.006953786127269268, + -0.007565719541162252, + -0.005027587525546551, + 0.0186917781829834, + 0.010076036676764488, + -0.021807074546813965, + -0.017926860600709915, + 0.013775451108813286, + -0.05359978601336479, + 0.0038071980234235525, + 0.030485399067401886, + -0.007315383292734623, + -0.00862269476056099, + 0.018650054931640625, + -0.012516815215349197, + 0.017148036509752274, + 0.02657737210392952, + -0.00028075912268832326, + 0.007843870669603348, + -0.018246734514832497, + -0.03393447771668434, + 0.005771642550826073, + 0.05835617333650589, + -0.00467294454574585, + 0.028538338840007782, + 0.016216229647397995, + 0.05735483020544052, + -0.005556075368076563, + 0.028315817937254906, + -0.05212558060884476, + -0.009366749785840511, + 0.0414445661008358, + 0.00799685437232256, + 0.017523542046546936, + 0.014436060562729836, + -0.025937622413039207, + -0.02104215696454048, + 0.01453341357409954, + 0.04422608017921448, + -0.002040936378762126, + -0.0028858212754130363, + 0.012927088886499405, + -0.02571510151028633, + -0.048787765204906464, + -0.01127904187887907, + -0.013545976020395756, + -0.047063227742910385, + 0.014011879451572895, + 0.020374594256281853, + -0.002604193054139614, + 0.00989523809403181, + 0.021890519186854362, + 0.012551584281027317, + 0.019901735708117485, + 0.014171816408634186, + 0.05919063091278076, + -0.03524179011583328, + 0.012078726664185524, + 0.013761542737483978, + 0.013066164217889309, + -0.03532523289322853, + 0.013525114394724369, + -0.007440551184117794, + -0.023781949654221535, + 0.013052256777882576, + 0.028065482154488564, + 0.03755044564604759, + -0.002383410232141614, + -0.049705665558576584, + 0.0532660037279129, + 0.06475365906953812, + -0.007040708791464567, + -0.003181357169523835, + 0.01947060227394104, + -0.00266503868624568, + -0.004401746671646833, + 0.04013725370168686, + -0.0002154587273253128, + 0.001366419019177556, + -0.011960512027144432, + 0.028037667274475098, + -0.013698958791792393, + 0.022460730746388435, + -0.015187069773674011, + -0.02303094044327736, + -0.057521719485521317, + -0.024574680253863335, + -0.0052431547082960606, + 0.042668431997299194, + -0.019428879022598267, + -0.020541485399007797, + -0.032321199774742126, + -0.020805729553103447, + 0.0022930109407752752, + 0.019234172999858856, + 0.005514352582395077, + -0.018914299085736275, + 0.01906728185713291, + -0.013643329031765461, + 0.038579605519771576, + -0.0033725863322615623, + 0.0019835676066577435, + 0.00966576300561428, + -0.021542830392718315, + 0.019109005108475685, + -0.022989217191934586, + -0.025562118738889694, + 0.026619093492627144, + 0.0029953434132039547, + -0.028329726308584213, + -0.03040195442736149, + -0.018858669325709343, + -0.010548894293606281, + 0.033044394105672836, + -0.049705665558576584, + 0.007280614227056503, + 0.007238891441375017, + 0.028385356068611145, + 0.008469711989164352, + 0.02652174048125744, + 0.011800575070083141, + 0.008052484132349491, + -0.03148674592375755, + 0.03243245929479599, + 0.010757507756352425, + -0.0025016246363520622, + -0.04066574200987816, + 0.010548894293606281, + -0.003706368152052164, + 0.027536993846297264, + 0.013344315811991692, + -0.010924397967755795, + 0.0075518121011555195, + 0.05070700868964195, + -0.001788861583918333, + -0.01789904572069645, + -0.034963637590408325, + 0.012419462203979492, + -0.005111033096909523, + -0.028204556554555893, + 0.04631221666932106, + -0.02348989062011242, + 0.02454686537384987, + -0.0048711271956563, + -0.012996627017855644, + 0.030179433524608612, + -0.018205013126134872, + 0.03310002386569977, + -0.009352842345833778, + -0.01585463248193264, + -0.03468548506498337, + -0.006974647752940655, + 0.00839321967214346, + -0.012676752172410488, + -0.0039045510347932577, + 0.01233601663261652, + 0.04998381435871124, + -0.012391647323966026, + 0.03118077851831913, + 0.0013333884999155998, + 0.03913591057062149, + -0.005413522478193045, + 0.018705684691667557, + -0.0449770912528038, + -0.01085486076772213, + -0.017787786200642586, + 0.015812909230589867, + -0.006355760619044304, + 0.002348641399294138, + 0.010861814022064209, + 0.01032637245953083, + 0.0004967611166648567, + 0.0269806906580925, + 0.029233718290925026, + -0.004137502983212471, + -0.04800894111394882, + -0.03521397337317467, + -0.036604732275009155, + 0.017078498378396034, + 0.0027728222776204348, + 0.02158455364406109, + 0.021987872198224068, + -0.00996477622538805, + -0.08088644593954086, + 0.00785777810961008, + 0.012655891478061676, + -0.020708376541733742, + 0.016021523624658585, + 0.019456693902611732, + 0.07665853947401047, + 0.040943894535303116, + -0.008567065000534058, + -0.0398591049015522, + 0.008427988737821579, + -0.03145892918109894, + -0.01954014040529728, + 0.03671599179506302, + -0.004311347380280495, + 0.004923280794173479, + 0.020096441730856895, + -0.010861814022064209, + 0.01611887663602829, + -0.014950640499591827, + -0.030012542381882668, + 0.0023781948257237673, + -0.036549102514982224, + -0.006074132397770882, + -0.02243291400372982, + -0.017926860600709915, + -0.015353959985077381, + 0.02033287100493908, + -0.008740909397602081, + 0.04283532500267029, + 0.02901119738817215, + 0.01986001431941986, + -0.025895901024341583, + 0.04183397814631462, + -0.04244591295719147, + -0.005656905006617308, + 0.015632111579179764, + 0.026827707886695862, + 0.027397917583584785, + 0.02237728424370289, + 0.012662844732403755, + 0.024435605853796005, + 0.006797326263040304, + 0.014825472608208656, + 0.04817583039402962, + 0.007082431577146053, + -0.029261533170938492, + 0.03357287868857384, + -0.05270969867706299, + 0.003967135213315487, + 0.05952440947294235, + -0.03788422793149948, + 0.029261533170938492, + -0.004092303104698658, + 0.029094642028212547, + 0.01549303624778986, + -0.011571100912988186, + -0.022279931232333183, + -0.014123139902949333, + -0.022266024723649025, + 0.014700304716825485, + 0.03730010986328125, + 0.03677162155508995, + -0.026758169755339622, + -0.018010307103395462, + 0.006039363332092762, + -0.0163135826587677, + -0.00374113698489964, + -0.0097005320712924, + 0.009610132314264774, + 0.002369502792134881, + 0.00442260829731822, + 0.010208158753812313, + 0.013233055360615253, + -0.0225719902664423, + -0.003057927591726184, + 0.03387884795665741, + -0.00845580454915762, + 0.036270949989557266, + -0.06703449785709381, + 0.02237728424370289, + -0.0007640472613275051, + -0.014686396345496178, + -0.025840269401669502, + -0.019762661308050156, + -0.0034490779507905245, + -0.00950582604855299, + 0.01391452644020319, + 0.008295866660773754, + 0.02486673928797245, + 0.019693123176693916, + 0.0034264782443642616, + 0.004599929787218571, + -0.017092406749725342, + -0.007030277978628874, + 0.021473292261362076, + -0.008803493343293667, + -0.010507171042263508, + 0.01730102114379406, + -0.024366067722439766, + 0.007586580701172352, + 0.020944803953170776, + -0.001383803435601294, + 0.00016558704373892397, + 0.015743372961878777, + 0.07309820502996445, + -0.009380658157169819, + 0.011598915793001652, + 0.008664418011903763, + -0.013956248760223389, + 0.011807529255747795, + 0.01994345895946026, + -0.03012380190193653, + 0.00957536417990923, + -0.026007160544395447, + 0.01571555621922016, + 0.032654982060194016, + 0.01078532263636589, + -0.006376622244715691, + 0.020040811970829964, + -0.003433431964367628, + 0.005343984812498093, + -0.027801238000392914, + -0.0022930109407752752, + 0.024491235613822937, + -0.022126948460936546, + 0.017982492223381996, + 0.03179271146655083, + -0.0027171920519322157, + -0.0033117407001554966, + 0.03540867939591408, + 0.009630993939936161, + -0.054823651909828186, + 0.01691160909831524, + -0.02590980753302574, + -0.04439297318458557, + 0.02506144531071186, + 0.005090171471238136, + -0.032070863991975784, + -0.008490572683513165, + -0.007530950475484133, + -0.0035985843278467655, + -0.019373249262571335, + -0.008427988737821579, + -0.02282232604920864, + 0.0038245825562626123, + -0.02499190717935562, + 0.015840725973248482, + -0.03972002863883972, + -0.0363265797495842, + 0.005257062613964081, + 0.004001903813332319, + 0.028510523959994316, + 0.0299847275018692, + -0.021167324855923653, + 0.01479765772819519, + 0.0019122912781313062, + -0.003664645366370678, + 0.0013081810902804136, + -0.0073779672384262085, + -0.009756161831319332, + 0.04044322296977043, + 0.028760859742760658, + -0.010931352153420448, + 0.03379540145397186, + -0.02347598224878311, + -0.014164863154292107, + -0.008594879880547523, + 0.050623565912246704, + -0.022015687078237534, + -0.01973484642803669, + -0.009658808819949627, + 0.01101479772478342, + 0.03913591057062149, + 9.242287887900602e-06, + 0.010924397967755795, + 0.033517248928546906, + -0.015270514413714409, + -0.057076677680015564, + 0.019832199439406395, + -0.02421308308839798, + -0.005145801696926355, + -0.011438978835940361, + 0.045422133058309555, + 0.040220700204372406, + 0.017606986686587334, + 0.00143421848770231, + 0.023309091106057167, + 0.047063227742910385, + 0.020708376541733742, + 0.00021361162362154573, + -0.00010360054875491187, + 0.000568037445191294, + 0.022724973037838936, + -0.007656118832528591, + -0.019039466977119446, + -0.010312465019524097, + 0.03835708647966385, + 0.011925743892788887, + -0.020082535222172737, + -0.011209503747522831, + 0.021946148946881294, + 0.03613187372684479, + -0.001794076873920858, + 0.010778368450701237, + 0.03755044564604759, + 0.020611023530364037, + 0.04467112198472023, + -0.05387793481349945, + 0.012732382863759995, + 0.029122456908226013, + -0.011098243296146393, + 0.0016124092508107424, + 0.03323910012841225, + -0.0023938410449773073, + 0.007565719541162252, + -0.05418390408158302, + 0.030958257615566254, + -0.021153418347239494, + 0.0031292038038372993, + -0.027926405891776085, + -0.042195577174425125, + -0.023072663694620132, + 0.010187297128140926, + 0.0009291996830143034, + 0.033183466643095016, + -0.018274551257491112, + -0.005086694844067097, + -0.048064570873975754, + 0.014742027036845684, + -0.01888648420572281, + 0.03499145433306694, + 0.02867741510272026, + -0.016410935670137405, + -0.006310561206191778, + -0.015590389259159565, + 0.030624475330114365, + 0.007579626981168985, + -0.025506488978862762, + -0.011230365373194218, + -0.0038176286034286022, + 0.00954059511423111, + 0.0033239098265767097, + 0.0016089322743937373, + -0.004565160721540451, + 0.014053601771593094, + 0.038774311542510986, + -0.0077951946295797825, + 0.006314037833362818, + 0.02236337773501873, + -0.024449512362480164, + 0.003310002386569977, + 0.03031850792467594, + -0.018900390714406967, + 0.0132261011749506, + 0.0024825017899274826, + 0.02230774611234665, + 0.009554502554237843, + -0.01433870755136013, + -0.04341944307088852, + -0.018663963302969933, + 0.022405099123716354, + 0.02663300186395645, + 0.001187358982861042, + -0.0017332312418147922, + 0.0037133218720555305, + 0.014296984300017357, + -0.00421051774173975, + 0.016661271452903748, + -0.02901119738817215, + -0.02211304008960724, + -0.008149837143719196, + -0.006122808903455734, + -0.009130321443080902, + -0.022335560992360115, + 0.00034051822149194777, + 0.005142325069755316, + -0.0352696031332016, + -0.04817583039402962, + 0.0003770256007555872, + -0.0243382528424263, + 0.013803265988826752, + -0.005830749869346619, + 0.021946148946881294, + -0.01617450639605522, + -0.044087003916502, + -0.023865394294261932, + -0.010771415196359158, + 0.011362486518919468, + 0.001699331565760076, + 0.014004925265908241, + -0.00973530113697052, + 0.03488019108772278, + -0.043641962110996246, + -0.04369759187102318, + 0.0053474619053304195, + -0.025631656870245934, + -0.007593534886837006, + 0.005107556004077196, + -0.0022356424015015364, + 0.01565992645919323, + -0.011529377661645412, + 0.002618100494146347, + -0.0029866511467844248, + 0.009686624631285667, + 0.002233903855085373, + 0.012294294312596321, + -0.03546430915594101, + -0.009651855565607548, + -0.009331981651484966, + -0.026493925601243973, + 0.018789131194353104, + 0.010541940107941628, + -0.01216912642121315, + -0.021403754130005836, + 0.005194478202611208, + 0.012210848741233349, + 0.014658581465482712, + -0.013017487712204456, + 0.012718475423753262, + 0.009053830057382584, + -0.01901165209710598, + 0.006724311504513025, + -0.022850142791867256, + -0.00041831372072920203, + 0.008045530878007412, + -0.009491918608546257, + -0.002993605099618435, + 0.000760135764721781, + -0.021097788587212563, + -0.019637493416666985, + -0.020346779376268387, + -0.0010256834793835878, + 0.010409818030893803, + -0.023907117545604706, + 0.02735619619488716, + -0.003588153747841716, + -0.018205013126134872, + 0.007329290732741356, + 0.02150110714137554, + -0.018636146560311317, + 0.0008979076519608498, + -0.0076213497668504715, + -0.0005002379766665399, + 0.014296984300017357, + -0.007725656498223543, + -0.005166663322597742, + -0.030902625992894173, + 0.03666036203503609, + 0.0455055795609951, + 0.07276441901922226, + -0.001255158451385796, + -0.0033673709258437157, + 0.00728756794705987, + 0.02414354681968689, + 0.031737081706523895, + 0.013698958791792393, + 0.014241354539990425, + 0.015868540853261948, + -0.032015230506658554, + -0.0028319295961409807, + 0.0014724642969667912, + 0.05001163110136986, + 0.014700304716825485, + 0.017078498378396034, + 0.018316272646188736, + -0.027008505538105965, + -0.02940060943365097, + 0.007760425563901663, + -0.02539522759616375, + 0.050373226404190063, + 0.02691115252673626, + 0.0027015460655093193, + -0.01973484642803669, + 0.02590980753302574, + -0.019122911617159843, + 0.025019723922014236, + -0.013100933283567429, + 0.0013977111084386706, + -0.001366419019177556, + 0.026201866567134857, + -0.025562118738889694, + 0.01841362565755844, + 0.030235063284635544, + -0.01479765772819519, + -0.006546990014612675, + 0.006383575964719057, + -0.016953330487012863, + 0.009130321443080902, + 0.021431569010019302, + 0.004154887516051531, + 0.01677253283560276, + -0.0011169519275426865, + -0.001858399366028607, + 0.00728756794705987, + 0.022780604660511017, + -0.013066164217889309, + 0.002190442755818367, + -0.03730010986328125, + -0.00815679132938385, + 0.026215774938464165, + -0.022474637255072594, + -0.003908027894794941, + -0.021431569010019302, + 0.01476984191685915, + -0.026396572589874268, + 0.026674725115299225, + 0.027022413909435272, + 0.024769386276602745, + 0.03104170225560665, + -0.04124986007809639, + -0.003480370156466961, + -0.01128599513322115, + 0.0050727869383990765, + -0.0057299197651445866, + -0.0014620336005464196, + -0.014185723848640919, + 0.006491359323263168, + 0.0018862145952880383, + -0.010514125227928162, + -0.03343380615115166, + -0.000815331470221281, + 0.0037133218720555305, + 0.011432024650275707, + -0.0014455183409154415, + 0.022975310683250427, + 0.01698114536702633, + -0.029428424313664436, + -0.023893209174275398, + 0.008219375275075436, + -0.01717585138976574, + -0.013497299514710903, + -0.01750963367521763, + -0.02184879593551159, + -0.0015298329526558518, + -0.03190397098660469, + 0.013935388065874577, + 0.0038489208091050386, + -0.01309398002922535, + 0.022474637255072594, + -0.0039706118404865265, + 0.016327491030097008, + 0.0019835676066577435, + 0.04386448487639427, + 0.02059711515903473, + 0.011313810013234615, + 0.004074918571859598, + 0.00575773511081934, + -0.010952213779091835, + -0.027119766920804977, + -0.009304165840148926, + 0.001772346324287355, + 0.026591278612613678, + 0.02920590341091156, + -0.03415699675679207, + -0.01670299470424652, + -0.002233903855085373, + -0.023698503151535988, + -0.007023324258625507, + 0.018566610291600227, + 0.019526232033967972, + 0.00013407769438344985, + 0.011578054167330265, + -0.010973074473440647, + 0.0029605745803564787, + 0.013552929274737835, + -0.03131985291838646, + -0.0009170305565930903, + 0.005337031092494726, + -0.01874740794301033, + 0.007047662511467934, + 0.007224984001368284, + -0.014700304716825485, + -0.01967921480536461, + -0.02354552038013935, + -0.0005615182453766465, + 0.04341944307088852, + -0.024185268208384514, + -0.001260373741388321, + 0.02967876009643078, + 0.012468138709664345, + 0.037522632628679276, + -0.00263026962056756, + 0.017078498378396034, + 0.0232812762260437, + -0.0052431547082960606, + -0.008275005966424942, + -0.002301703207194805, + -0.010952213779091835, + -0.008142883889377117, + -0.025868084281682968, + -0.004780727904289961, + 0.006734741851687431, + -0.010319419205188751, + 0.02742573246359825, + 0.023976655676960945, + 0.010027360171079636, + -0.024491235613822937, + -0.015771187841892242, + -0.00199052132666111, + 0.033684141933918, + -0.028788674622774124, + 0.008963430300354958, + -0.002571162534877658, + -0.006133239716291428, + -0.015576481819152832, + -0.010722738690674305, + -0.00529530830681324, + 0.02407400868833065, + 0.002040936378762126, + 0.0003146588278468698, + -0.005218816455453634, + -0.002925805514678359, + -0.01075055357068777, + 0.022321654483675957, + 0.004293962847441435, + -0.0039706118404865265, + 0.009624040685594082, + 0.007767379283905029, + 0.025089260190725327, + 0.008935615420341492, + -0.006873817648738623, + -0.0039462735876441, + -0.010479356162250042, + 0.02051367051899433, + -0.05176398530602455, + 0.032460276037454605, + 0.010493263602256775, + -0.011466793715953827, + -0.00242687133140862, + -0.015562573447823524, + 0.023587243631482124, + -0.027773423120379448, + -0.021556736901402473, + -0.013156563974916935, + 0.022585898637771606, + -0.01342080719769001, + -0.0071206772699952126, + 0.042584989219903946, + -0.03257153555750847, + -0.027203211560845375, + -0.009478011168539524, + 0.0050588794983923435, + -0.0015011485666036606, + 0.016494380310177803, + 0.02743964083492756, + -0.020875265821814537, + -0.009318073280155659, + -0.012593306601047516, + 0.024560773745179176, + 0.008532295934855938, + -0.0059315795078873634, + -0.0006545251235365868, + -0.0097005320712924, + -0.031737081706523895, + -0.017328836023807526, + -0.01585463248193264, + 0.01828845776617527, + -0.007426643744111061, + -0.009554502554237843, + -0.017857322469353676, + -0.041277676820755005, + -0.010945259593427181, + -0.02546476572751999, + -0.022905772551894188, + -0.010089944116771221, + -0.024519050493836403, + 0.020026905462145805, + -0.020305056124925613, + -0.0030596659053117037, + 0.010368095710873604, + -0.015103624202311039, + -0.0026076699141412973, + 0.003887166501954198, + -0.012899274006485939, + 0.0005254455027170479, + 0.03412918373942375, + -0.0027693454176187515, + 0.011751898564398289, + 0.008747863583266735, + -0.021334215998649597, + 0.019053375348448753, + -0.002605931367725134, + 0.03735573962330818, + -0.025311782956123352, + -0.006063701584935188, + -0.012892319820821285, + 0.0026719924062490463, + -0.026410480961203575, + 0.002190442755818367, + 0.0009231151198036969, + 0.03412918373942375, + 0.01479765772819519, + 0.005496968049556017, + -0.0003724621783476323, + -0.003148326650261879, + 0.015506943687796593, + -0.02283623442053795, + -0.018274551257491112, + 0.0074961818754673, + -0.033461619168519974, + 0.0132261011749506, + 0.007989900186657906, + -0.027342287823557854, + 0.03165363520383835, + -0.042279019951820374, + 0.009450195357203484, + 0.003369109472259879, + -0.028051573783159256, + 0.010006498545408249, + 0.01737055741250515, + -0.023865394294261932, + -0.01127904187887907, + 0.000571948941797018, + 0.02624358981847763, + -0.006981601472944021, + -0.03257153555750847, + 0.018928205594420433, + -0.01698114536702633, + -0.007899501360952854, + 0.009512779302895069, + -0.022794511169195175, + -0.011000890284776688, + 0.00038897740887477994, + -0.019192449748516083, + 0.0010569755686447024, + 0.010465448722243309, + -0.02664690837264061, + 0.005875949282199144, + -0.03590935096144676, + -0.006772988010197878, + -0.008511434309184551, + -0.002984912833198905, + 0.0068320948630571365, + 0.011209503747522831, + 0.015187069773674011, + -0.0409160777926445, + 0.05791113153100014, + 0.04061011224985123, + 0.038051117211580276, + -0.002110474044457078, + 0.02671644650399685, + 0.025047538802027702, + -0.027787329629063606, + 0.017746062949299812, + -0.01913681998848915, + 0.012892319820821285, + -0.006571328267455101, + 0.012071773409843445, + 0.00815679132938385, + 0.021417662501335144, + 0.009290258400142193, + 0.03538086637854576, + 0.018246734514832497, + -0.0015220099594444036, + -0.01036114152520895, + 0.023809764534235, + 0.0212507713586092, + -0.005041494965553284, + 0.007593534886837006, + -0.001640224363654852, + -0.01841362565755844, + 0.01770433969795704, + -0.007398828864097595, + -0.0017923384439200163, + -0.008073345758020878, + 0.03565901517868042, + -0.017328836023807526, + -0.0027606531511992216, + 0.013831080868840218, + 0.024964092299342155, + 0.0070546162314713, + 0.02170972153544426, + -0.03813456371426582, + 0.02906682714819908, + -0.007982946932315826, + 0.006001117639243603, + -0.004798112437129021, + 0.02848270907998085, + -0.02881649136543274, + 0.016271859407424927, + 0.02347598224878311, + 0.030680105090141296, + 0.03310002386569977, + 0.0035429541021585464, + 0.012913181446492672, + 0.00726670678704977, + -0.017022868618369102, + 0.018956022337079048, + 0.014477782882750034, + 0.009199859574437141, + 0.0019070758717134595, + -0.00506235659122467, + -0.0019487986573949456, + -0.010986982844769955, + 0.027856867760419846, + -0.006901632994413376, + -0.03916372358798981, + 0.02716149017214775, + 0.027745608240365982, + 0.04887121170759201, + 0.015242699533700943, + -0.032738424837589264, + 0.010847906582057476, + -0.02013816498219967, + 0.008608787320554256, + -0.012614168226718903, + 0.01735665090382099, + -0.0006719095981679857, + 0.018330181017518044, + 0.00017916865181177855, + 0.032988760620355606, + 0.01994345895946026, + -0.01933152601122856, + 0.012468138709664345, + -0.0028545293025672436, + -0.00027402263367548585, + -0.054573316127061844, + 0.012023096904158592, + -0.0020722283516079187, + -0.003348248079419136, + 0.02394884079694748, + 0.034045737236738205, + -0.03079136647284031, + 0.0010986982379108667, + -0.03577027842402458, + -0.012704567983746529, + 0.010771415196359158, + -0.020277241244912148, + -0.012287340126931667, + 0.0023329954128712416, + -0.05421171709895134, + 0.021236862987279892, + -0.002445994410663843, + -0.00028162833768874407, + -0.013991017825901508, + -0.02197396568953991, + -0.028051573783159256, + 0.01762089505791664 + ], + "how_to_create_self_fueling_mining_system": [ + -0.027902094647288322, + -0.010697975754737854, + 0.04547780752182007, + -0.00978529080748558, + -0.028449706733226776, + -0.022165216505527496, + 0.011956177651882172, + 0.02195660211145878, + -0.003696375759318471, + -0.033169593662023544, + 0.022047869861125946, + -0.0072754062712192535, + 0.025868110358715057, + -0.015802495181560516, + 0.03994954004883766, + 0.025907225906848907, + -0.03979308158159256, + 0.011793198995292187, + -0.02150025963783264, + 0.010306824930012226, + 0.023573359474539757, + -0.04169668257236481, + 0.009446293115615845, + -0.02288232557475567, + 0.01299272757023573, + 2.463792043272406e-05, + 0.025059731677174568, + 0.03392581641674042, + -0.05176229774951935, + -0.0005231642862781882, + 0.0112977409735322, + -0.024264391511678696, + -0.019505389034748077, + -0.01635010540485382, + -0.0018905624747276306, + -0.02432958409190178, + 0.004472158383578062, + 0.02315613068640232, + 0.030979149043560028, + 0.010482843033969402, + -0.00274294544942677, + -0.017914708703756332, + -0.041983526200056076, + -0.006897293496876955, + -0.010019981302320957, + 0.0363248772919178, + -0.042948365211486816, + 0.03533396124839783, + 0.020796187222003937, + 0.01431612204760313, + -0.009817887097597122, + 0.018592704087495804, + -0.027980325743556023, + -0.043756742030382156, + -0.0061638858169317245, + -0.04435650631785393, + 0.004847011063247919, + -0.02062668837606907, + -0.010202518664300442, + 0.0036344435065984726, + 0.008012073114514351, + -0.0009501706226728857, + 0.03822847828269005, + 0.020809225738048553, + -0.0024104672484099865, + 0.010202518664300442, + -0.04232252389192581, + 0.03536003828048706, + 0.00578903267160058, + 0.0059226760640740395, + -0.01228213682770729, + 0.041227299720048904, + -0.020209461450576782, + -0.0019410861423239112, + 0.039532314985990524, + -0.08287183195352554, + -0.0004571575846057385, + 0.03611626476049423, + -0.05762955918908119, + -0.016767334192991257, + -0.03389974310994148, + -0.06461812555789948, + 0.005890080239623785, + -0.029492774978280067, + -0.0070602730847895145, + -0.04339166730642319, + -0.027849940583109856, + 0.004853530321270227, + -0.011030454188585281, + -0.10008246451616287, + -0.03371720388531685, + -0.024212239310145378, + 0.032048292458057404, + 0.029179854318499565, + 0.04341774433851242, + 0.0014016239438205957, + 0.03439519926905632, + 0.006046540569514036, + 0.015411344356834888, + 0.015541727654635906, + -0.0022980112116783857, + -0.0181624386459589, + -0.00795340072363615, + -0.042348600924015045, + 0.04777256026864052, + 0.016011109575629234, + -0.029023393988609314, + 0.02315613068640232, + -0.034212663769721985, + -0.013103554025292397, + -0.06028938665986061, + 0.018618781119585037, + 0.01623276062309742, + 0.02118733897805214, + -0.0033801954705268145, + 0.016324030235409737, + 0.04586895927786827, + -0.005352247506380081, + 0.0060106851160526276, + -0.020209461450576782, + -0.031631067395210266, + -0.010411132127046585, + -0.0041364203207194805, + -0.0089834313839674, + -0.0180450938642025, + 0.013390397652983665, + 0.013097034767270088, + -0.01771913468837738, + -0.04143591597676277, + 0.031031301245093346, + -0.03987131267786026, + 0.03483850508928299, + 0.013233937323093414, + 0.02352120541036129, + -0.0015760120004415512, + -0.03575119003653526, + -0.060758765786886215, + -0.0016159419901669025, + 0.004540609661489725, + 0.04349597543478012, + -0.0201442688703537, + -0.01638922095298767, + -0.03363897278904915, + -0.022725865244865417, + -0.03603803366422653, + 0.0078034596517682076, + -0.06279275566339493, + -0.002596263773739338, + 0.018657896667718887, + -0.013123111799359322, + -0.014889809302985668, + -0.016324030235409737, + -0.004097305238246918, + -0.035985879600048065, + -0.031187761574983597, + -0.036507412791252136, + -0.036090187728405, + 0.05940277874469757, + 0.006910332012921572, + -0.041461993008852005, + -0.03468204289674759, + -0.014237891882658005, + -0.023260438814759254, + 0.023821087554097176, + -0.05783817544579506, + -0.023312591016292572, + -0.030118616297841072, + -0.014250929467380047, + -0.0451127327978611, + 0.030587997287511826, + 0.013807625509798527, + -0.012047446332871914, + -0.01691075600683689, + 0.01889258623123169, + -0.006812544073909521, + 0.003226994536817074, + -0.037028949707746506, + -0.022647634148597717, + -0.004759002011269331, + -0.010997858829796314, + 0.003559472970664501, + -0.012158272787928581, + 0.02195660211145878, + -0.008618357591331005, + 0.013390397652983665, + 0.02641572244465351, + -0.03387366607785225, + 0.0405232310295105, + 0.010202518664300442, + 0.019075123593211174, + -0.013481666333973408, + 0.008285879157483578, + 0.008103341795504093, + 0.03004038706421852, + -0.0021725171245634556, + -0.013136149384081364, + 0.02315613068640232, + -0.005140374414622784, + 0.07609187811613083, + 0.000849938252940774, + 0.01760178804397583, + 0.03137030079960823, + 0.030744457617402077, + -0.013338244520127773, + -0.018097246065735817, + -0.013083996251225471, + -0.03885431960225105, + 0.06576550006866455, + 0.04373066499829292, + -0.011186914518475533, + -0.009152930229902267, + -0.029258085414767265, + 0.011239068582654, + 0.003751788754016161, + 0.006995081435889006, + 0.013964085839688778, + -0.03934977576136589, + 0.03374328091740608, + -0.014798540621995926, + 0.006154106929898262, + -0.0203398447483778, + 0.05051061511039734, + 0.028814779594540596, + -0.010300305671989918, + -0.017940785735845566, + 0.04422612488269806, + 0.030144693329930305, + -0.032126523554325104, + 0.09090346097946167, + 0.031552836298942566, + -0.021030878648161888, + -0.005886820610612631, + 0.04858093708753586, + -0.003160173073410988, + -0.005723841022700071, + -0.0016803189646452665, + -0.03322174772620201, + 0.005687985569238663, + -0.0032970758620649576, + 0.0004767151258420199, + -0.0582554005086422, + -0.0006555851432494819, + -0.045529961585998535, + -0.03207436949014664, + 0.02782386541366577, + 0.019244622439146042, + -0.00032453297171741724, + -0.006695198826491833, + 0.006910332012921572, + 0.033769357949495316, + 0.03069230355322361, + -0.03476027399301529, + -0.00815549585968256, + 0.03674210608005524, + -0.01226257998496294, + -0.043235208839178085, + -0.04349597543478012, + 0.002061690902337432, + 0.004847011063247919, + -0.027797788381576538, + -0.00573036028072238, + 0.059194162487983704, + -0.06639134138822556, + 0.032048292458057404, + 0.012034407816827297, + -0.005260979291051626, + 0.0451127327978611, + -0.012614615261554718, + -0.01504626963287592, + -0.03225690871477127, + 0.019505389034748077, + 0.030718380585312843, + 0.04065361246466637, + -0.07129376381635666, + -0.031631067395210266, + -0.02537265233695507, + 0.03048369102180004, + 0.05051061511039734, + 0.011323817074298859, + -0.011382490396499634, + -0.05251852422952652, + 0.020039962604641914, + 0.041227299720048904, + 0.0724932923913002, + -0.04435650631785393, + -0.010717533528804779, + -0.01675429567694664, + 0.01916639320552349, + 0.007425347343087196, + 0.0003104759962297976, + 0.010124288499355316, + 0.008898681960999966, + 0.041748836636543274, + 4.609264578903094e-05, + 0.017380136996507645, + -0.03293490409851074, + 0.013651165179908276, + -0.03736794739961624, + 0.03726363927125931, + -0.010261191055178642, + 0.00014994115917943418, + 0.0717109888792038, + 0.03742009773850441, + 0.04513880982995033, + -0.03374328091740608, + -0.05019769445061684, + 0.022491173818707466, + -0.05663864687085152, + -0.007092868909239769, + 0.007588326930999756, + -0.0036865968722850084, + 0.013755472376942635, + 0.05622141808271408, + -0.01904904656112194, + 0.028084632009267807, + 0.015932878479361534, + 0.011128242127597332, + 0.016441375017166138, + -0.030196847394108772, + -0.004628618713468313, + -0.03053584322333336, + -0.00876177940517664, + 0.031996142119169235, + -0.02980569563806057, + 0.023182207718491554, + -0.007757825311273336, + 0.021852295845746994, + -0.010952224023640156, + -0.027641328051686287, + -0.01619364507496357, + -0.009478889405727386, + -0.019479313865303993, + -0.007014638744294643, + -0.00882045179605484, + -0.035985879600048065, + 0.0034356084652245045, + 0.02340386062860489, + 0.02151329815387726, + 0.028423629701137543, + 0.06399228423833847, + -0.011304260231554508, + 0.012471193447709084, + 0.032439444214105606, + 0.019140316173434258, + 0.006753871683031321, + 0.033404283225536346, + 0.01174104493111372, + 0.013599012047052383, + -0.003996258135885, + 0.05830755457282066, + 0.02030072920024395, + -0.001413847436197102, + -0.011369451880455017, + 0.02315613068640232, + -0.019361967220902443, + -0.003621404990553856, + -0.003820240031927824, + 0.002694051479920745, + -0.015320075675845146, + 0.0042896210215985775, + -0.03556865081191063, + 0.06044584512710571, + 0.006995081435889006, + -0.0004506383847910911, + -0.02118733897805214, + 0.023182207718491554, + 0.003412791294977069, + -0.0015882354928180575, + -0.021930525079369545, + 0.04268759861588478, + 0.05317044258117676, + 0.058464016765356064, + -0.016454413533210754, + -0.003918027970939875, + -0.07624834030866623, + 0.006708237342536449, + 0.025229230523109436, + 0.030718380585312843, + 0.024512121453881264, + 0.00762092275545001, + 0.015606919303536415, + -0.042635444551706314, + 0.00930287130177021, + 0.0038267592899501324, + -0.023495128378272057, + -0.02606368623673916, + 0.05924631655216217, + 0.04187921807169914, + -0.07113730162382126, + -0.038880396634340286, + 0.07473589479923248, + -0.03496888652443886, + 0.04965008422732353, + 0.017367098480463028, + -0.022582443431019783, + -0.008514050394296646, + 0.06352289766073227, + 0.0157894566655159, + -0.00891823973506689, + 0.046494800597429276, + 0.02380804903805256, + 0.004716627299785614, + -8.979153062682599e-05, + 0.0058379266411066055, + 0.020887456834316254, + 0.012960132211446762, + 0.04743356257677078, + 0.0010072134900838137, + -0.031839679926633835, + -0.036194492131471634, + 0.07061576843261719, + -0.037993788719177246, + 0.03504711762070656, + -0.030066462233662605, + 0.003204177599400282, + -0.016063261777162552, + 0.013599012047052383, + -0.04539957642555237, + -0.020026924088597298, + 0.032804518938064575, + -0.0318136028945446, + -0.00843582022935152, + 0.0006543627823702991, + -0.0036344435065984726, + -0.02678079530596733, + 0.025424806401133537, + 0.04273975268006325, + -0.024068815633654594, + 0.024029701948165894, + -0.00859879981726408, + 0.0026516770012676716, + -0.0027054601814597845, + 0.03966269642114639, + 0.0588812418282032, + 0.015919839963316917, + -0.0317353717982769, + -0.021278606727719307, + -0.029910001903772354, + -0.014329159632325172, + 0.04659910500049591, + -0.002514773979783058, + 0.00691685127094388, + 0.04772040620446205, + 0.009928712621331215, + -0.063314288854599, + 0.005371805280447006, + -0.021969640627503395, + -0.006072617135941982, + -0.01357293501496315, + 0.002723387908190489, + 0.005642351228743792, + -0.06550472974777222, + 0.011023934930562973, + 0.03483850508928299, + 0.0049643563106656075, + 0.014172699302434921, + 0.039975617080926895, + -0.0076926336623728275, + 0.03241336718201637, + 0.01631099171936512, + 0.05575203523039818, + 0.046494800597429276, + -0.02070491947233677, + -0.008585761301219463, + -0.03379543498158455, + 0.03859355300664902, + -0.02114822342991829, + 0.050484538078308105, + 0.023664627224206924, + -0.014681195840239525, + -0.02090049535036087, + -0.03689856454730034, + -0.03431696817278862, + 0.0034453871194273233, + -0.01526792161166668, + -0.01401623897254467, + -0.0807335376739502, + 0.028084632009267807, + -0.058776937425136566, + -0.06420089304447174, + -0.007073311600834131, + -0.014146623201668262, + -0.01286886353045702, + 0.0055738999508321285, + 0.03483850508928299, + 0.0948149710893631, + -0.021043917164206505, + -0.028580090031027794, + -0.03462988883256912, + -0.030718380585312843, + 0.007542692590504885, + 0.006235596723854542, + 0.021930525079369545, + -0.015215768478810787, + 0.015541727654635906, + -0.043313439935445786, + -0.06107168644666672, + -0.0403667688369751, + 0.01619364507496357, + 0.0317353717982769, + 0.01824066787958145, + 0.03194398805499077, + -0.017210638150572777, + 0.006740833166986704, + -0.03314351662993431, + -0.02988392673432827, + -0.027980325743556023, + 0.015320075675845146, + -0.012510308064520359, + 0.0025245528668165207, + -0.03476027399301529, + -0.009857001714408398, + -0.01178016047924757, + 0.014902847819030285, + 0.005440256558358669, + 0.03807201609015465, + 0.015254884026944637, + 0.008455378003418446, + 0.028527935966849327, + -0.0006258413777686656, + -0.02876262739300728, + -0.0006132104899734259, + -0.011232549324631691, + 0.00443956209346652, + 0.011441162787377834, + -0.012190868146717548, + -0.04000169411301613, + -0.013403436169028282, + -0.008064227178692818, + -0.009941751137375832, + -0.026937255635857582, + -0.01646745204925537, + 0.010202518664300442, + 0.0033899741247296333, + -0.04425220191478729, + 0.020678842440247536, + -0.04555603861808777, + -0.004749223589897156, + 0.00616062618792057, + 0.0028293246868997812, + -0.013585973531007767, + 0.0628449022769928, + -0.017210638150572777, + 0.016975946724414825, + -0.027902094647288322, + 0.0074514239095151424, + -0.0024365438148379326, + -0.004579724743962288, + 0.03752440586686134, + -0.005384843330830336, + 0.014955000951886177, + -0.02444692887365818, + -0.0402885377407074, + -0.05301398038864136, + 2.9794695365126245e-05, + 0.010958743281662464, + -0.0005985423340462148, + -0.04910247027873993, + 0.018944740295410156, + 0.003875653026625514, + -0.004266804084181786, + 0.007679595146328211, + -0.010182960890233517, + -0.008996469900012016, + 0.013612049631774426, + 0.05538696050643921, + 0.01663695089519024, + -0.029258085414767265, + -0.007321040146052837, + -0.024785926565527916, + -0.02907554805278778, + -0.0411490723490715, + 0.03742009773850441, + -0.006806024815887213, + 0.008109861053526402, + 0.002306160284206271, + 0.0033101141452789307, + 0.037680868059396744, + 0.011610661633312702, + -0.05006730929017067, + -0.02315613068640232, + -0.06133245676755905, + -0.01655871979892254, + -0.011017415672540665, + -0.03186575695872307, + 0.004745963960886002, + -0.004345034249126911, + 0.010300305671989918, + 0.03210044652223587, + -0.012256060726940632, + -0.027537019923329353, + 0.0010919627966359258, + 0.02610280178487301, + -0.012334290891885757, + -0.02517707645893097, + -0.03256982937455177, + -0.027797788381576538, + 0.01299272757023573, + -0.002967857290059328, + 0.007999035529792309, + 0.013103554025292397, + -0.008246763609349728, + -0.004755742382258177, + 0.041175149381160736, + -0.02030072920024395, + -0.0494675450026989, + -0.015293998643755913, + -0.019753118976950645, + -0.07729141414165497, + 0.0147203104570508, + -0.0493893139064312, + -0.017301905900239944, + -0.0072558484971523285, + -0.01917942985892296, + 0.021317722275853157, + -0.01744532771408558, + 0.016324030235409737, + 0.032204754650592804, + -0.0028749587945640087, + -0.019401082769036293, + -0.005238161887973547, + -0.020274652168154716, + -0.0001650167687330395, + 0.013990162871778011, + -0.0022800834849476814, + 0.019022969529032707, + -6.391853094100952e-05, + 0.010417651385068893, + -0.031083455309271812, + 0.019401082769036293, + 0.001413847436197102, + 0.0022295599337667227, + -0.004475418012589216, + -0.01752355881035328, + -0.014589927159249783, + -0.013638126663863659, + 0.03932369872927666, + 0.006969004403799772, + 0.026559144258499146, + 0.010091692209243774, + -0.011415085755288601, + 0.007849094457924366, + 0.022491173818707466, + -0.042270369827747345, + -0.015007155016064644, + 0.06659995019435883, + 0.01526792161166668, + 0.043600283563137054, + 0.0037387502379715443, + -0.035829417407512665, + 0.0058183688670396805, + -0.017262792214751244, + 0.02891908772289753, + -0.021291645243763924, + 0.007738268002867699, + -0.007575288414955139, + -0.00012824451550841331, + -0.06060230731964111, + -0.03971485048532486, + -0.0013266532914713025, + -0.030014310032129288, + -0.014185737818479538, + -0.024707695469260216, + 0.01941412128508091, + -0.01663695089519024, + -0.0037159333005547523, + 0.0019867203664034605, + 0.04357420653104782, + 0.027928171679377556, + 0.007542692590504885, + -0.003709414042532444, + -0.003709414042532444, + -0.02722409926354885, + 0.022973593324422836, + -0.0044623794965445995, + 0.014355236664414406, + -0.020105155184864998, + -0.051136456429958344, + 0.014303083531558514, + 0.03718540817499161, + -0.01142160501331091, + -0.022934479638934135, + -0.04120122268795967, + 0.052622828632593155, + 0.04688594862818718, + 0.014081431552767754, + -0.0317353717982769, + -0.014889809302985668, + 0.012790633365511894, + -0.0012590168043971062, + -0.012027889490127563, + 0.012047446332871914, + 0.018149400129914284, + -0.010150364600121975, + -0.0055967168882489204, + -0.006336643826216459, + 0.04297444224357605, + 0.005710802506655455, + -0.024838080629706383, + -0.045008424669504166, + 0.009016027674078941, + 0.005655389744788408, + 0.021656719967722893, + -0.017288867384195328, + -0.04521704092621803, + -0.011930101551115513, + -0.010606708005070686, + 0.004263544455170631, + 0.014459543861448765, + 0.02928416058421135, + -0.016206683591008186, + -0.007184137590229511, + -0.051527608186006546, + 0.020757071673870087, + -0.03408227860927582, + 0.02774563431739807, + -0.004759002011269331, + -0.030822688713669777, + 0.024394774809479713, + 0.01081532146781683, + 0.005593457259237766, + -0.005912897177040577, + -0.003950623795390129, + -0.027771711349487305, + -0.014146623201668262, + 0.04357420653104782, + 0.0049415393732488155, + 0.014902847819030285, + 0.009733137674629688, + -0.026611296460032463, + 0.011675853282213211, + 0.027015486732125282, + 0.01957058161497116, + 0.040053848177194595, + -0.004152718465775251, + 0.014994116500020027, + -0.030666228383779526, + 0.03210044652223587, + 0.008911720477044582, + 0.02795424871146679, + -0.0091790072619915, + -0.02517707645893097, + 0.03890647366642952, + -0.00817505270242691, + -0.011082608252763748, + 0.019440198317170143, + 0.004045151639729738, + 0.038802165538072586, + -0.0037974228616803885, + 0.027354484423995018, + -0.03992346301674843, + 0.009817887097597122, + -0.018110284581780434, + 0.015346151776611805, + 0.010404612869024277, + -0.014107507653534412, + 0.015580842271447182, + -0.0054695927537977695, + -0.016128454357385635, + -0.00013323576422408223, + 0.0002124845632351935, + -4.079581412952393e-05, + 0.007907766848802567, + 0.0157112255692482, + -0.003455166006460786, + 0.01103697344660759, + -0.025033654645085335, + 0.005296834744513035, + -0.011017415672540665, + 0.01638922095298767, + 0.04805940389633179, + -0.004133160691708326, + 0.03890647366642952, + -0.0405232310295105, + 0.03468204289674759, + -0.03105737827718258, + -0.00950496643781662, + 0.0015898653073236346, + -0.01916639320552349, + -0.07989908009767532, + -0.011858390644192696, + -0.006023723166435957, + -0.00651592155918479, + 0.05971569940447807, + 0.009459331631660461, + 0.012529865838587284, + -0.01659783534705639, + 0.03851532191038132, + 0.02236079052090645, + -0.023834126070141792, + -0.06107168644666672, + -0.02774563431739807, + -0.01254942361265421, + -0.005655389744788408, + 0.023273475468158722, + -0.01872308738529682, + 0.002376241609454155, + -0.10279444605112076, + -0.054708968847990036, + 0.01779736392199993, + -0.009661426767706871, + -0.0318918339908123, + 0.03825455531477928, + 0.03801986575126648, + 0.023247400298714638, + -0.028658319264650345, + -0.028162863105535507, + -0.009635349735617638, + 0.0038267592899501324, + -0.018188515678048134, + 0.014589927159249783, + -0.009811367839574814, + 0.03833278641104698, + -0.006792986765503883, + 0.02388628013432026, + 0.032282985746860504, + -0.006532219238579273, + 0.003865874372422695, + -0.008416262455284595, + -0.006036761682480574, + 0.03710717707872391, + -0.024029701948165894, + 0.0078556127846241, + 0.0028619205113500357, + 0.003755048383027315, + 0.0028146563563495874, + 0.04245290532708168, + 0.008201129734516144, + 0.02049630507826805, + 0.004993692506104708, + 0.04281798005104065, + -0.010580630972981453, + -0.01081532146781683, + 0.0016672805650159717, + 0.02419920079410076, + -0.0002041318512056023, + 0.02328651398420334, + 0.024759849533438683, + 0.014616004191339016, + -0.011160838417708874, + 0.023977547883987427, + 0.018358014523983, + 0.03483850508928299, + -0.01113476138561964, + 0.0017487703589722514, + 0.006307307630777359, + 0.035907648503780365, + 0.013559896498918533, + -0.021982679143548012, + -0.005599976517260075, + -0.006548517383635044, + 0.0012712402967736125, + 0.025724688544869423, + -0.02150025963783264, + -0.007457943167537451, + 0.002275194274261594, + -0.008207648992538452, + 0.030561920255422592, + 0.037993788719177246, + -0.019101200625300407, + 0.010730572044849396, + -0.00468403147533536, + 0.0015923100290820003, + -0.010104730725288391, + 0.0007167024887166917, + 0.008787856437265873, + 0.0043939282186329365, + 0.01787559501826763, + -0.01623276062309742, + -0.016102377325296402, + 0.010378535836935043, + 0.001397549407556653, + -0.007862132042646408, + -0.029414545744657516, + -0.01281019113957882, + 0.026194069534540176, + -0.04380889609456062, + 0.014707272872328758, + 0.05731663852930069, + -0.010893551632761955, + 0.019361967220902443, + -0.003911508712917566, + -0.03113560937345028, + -0.0050262887962162495, + 0.015072346664965153, + 0.016415297985076904, + 0.011369451880455017, + 0.010808802209794521, + 0.018019016832113266, + 0.012080042622983456, + -0.027980325743556023, + -0.0090421037748456, + 0.024264391511678696, + 0.009902635589241982, + -0.031109532341361046, + 0.01675429567694664, + 0.008468416519463062, + -0.0072754062712192535, + 0.010847916826605797, + 0.001609422848559916, + -0.007405789569020271, + 0.01977919600903988, + 0.044643353670835495, + 0.011389009654521942, + -0.005502189043909311, + -0.0022556367330253124, + -0.02288232557475567, + 0.023990586400032043, + 9.671816223999485e-05, + 0.00013374506670515984, + 0.01731494441628456, + -0.03559472784399986, + -0.014629042707383633, + -0.03319567069411278, + -0.015228806994855404, + 0.0021594788413494825, + -0.0011620440054684877, + -0.004358072765171528, + 0.04832017049193382, + -0.011004378087818623, + -0.0043091787956655025, + -0.011701930314302444, + -0.025711650028824806, + 0.04949362203478813, + -0.004286361392587423, + -0.04451296851038933, + -0.023208284750580788, + 0.03264806047081947, + 0.05030200257897377, + -0.02392539381980896, + 0.005446775816380978, + -0.012438597157597542, + -0.010287268087267876, + 0.026559144258499146, + 0.01415966171771288, + -0.032439444214105606, + -0.00015921062731649727, + -0.014237891882658005, + -0.023834126070141792, + -0.0407579205930233, + -0.014459543861448765, + 0.004459119867533445, + 0.038802165538072586, + 0.009609272703528404, + -0.0146029656752944, + -0.014329159632325172, + -0.02307790145277977, + 0.021096069365739822, + -0.03160499036312103, + 0.0032514415215700865, + 0.00968750286847353, + -0.05118861049413681, + 0.01820155419409275, + -0.01603718474507332, + -0.03861963003873825, + -0.010033019818365574, + 0.016297953203320503, + -0.01524184551090002, + 0.024707695469260216, + 0.000702441786415875, + -0.02234775200486183, + -0.021487221121788025, + -0.012040927074849606, + 0.01679341122508049, + -0.0058183688670396805, + 0.0451909638941288, + -0.025151001289486885, + -0.016897717490792274, + 0.04010600224137306, + -0.00107484997715801, + 0.015215768478810787, + 0.027484867721796036, + 0.007268887013196945, + -0.017249753698706627, + -0.055804189294576645, + -0.024616427719593048, + 0.03395189344882965, + -0.010026500560343266, + -0.02396450936794281, + 0.00869658775627613, + 0.004667733795940876, + 0.04047107696533203, + -0.014746387489140034, + -0.016219722107052803, + 0.03455166146159172, + 0.02988392673432827, + 0.021813180297613144, + 0.038045939058065414, + 0.01281019113957882, + 0.013781548477709293, + -0.008898681960999966, + 0.0019443457713350654, + 0.0021236231550574303, + 0.023912355303764343, + 0.02440781332552433, + -0.0005472037591971457, + -0.002403947990387678, + 0.020561497658491135, + -0.02203483134508133, + 0.004361331928521395, + 0.010000423528254032, + 0.0021757767535746098, + 0.007086349651217461, + 0.013012285344302654, + -0.009452812373638153, + -0.04313090071082115, + 0.017406214028596878, + -0.018501436337828636, + -0.01739317551255226, + -0.017327982932329178, + -0.013951047323644161, + -0.0019573841709643602, + 0.02400362491607666, + -0.008677029982209206, + 0.04779863730072975, + -0.01048936229199171, + -0.03256982937455177, + 0.010424170643091202, + -0.04725102335214615, + 0.03528180718421936, + 0.02280409447848797, + -0.008898681960999966, + 0.028527935966849327, + 0.0022817132994532585, + 0.013110073283314705, + -0.01945323683321476, + 0.028006400913000107, + -0.002444692887365818, + 0.01482461765408516, + -0.00356925162486732, + -0.009400659240782261, + 0.03387366607785225, + -0.0073014828376472, + 0.014511696994304657, + -0.007021158002316952, + -0.0052283830009400845, + -0.005423958413302898, + 0.0008882384281605482, + 0.002343645552173257, + 0.01087399385869503, + -0.01190402451902628, + 0.0011628589127212763, + 0.024473005905747414, + 0.012979689054191113, + 0.01405535452067852, + 0.010854436084628105, + -0.0022866027429699898, + -0.0034616850316524506, + -0.010984820313751698, + -0.029988233000040054, + -0.008853048086166382, + 0.04007992520928383, + -0.02299967035651207, + 0.03713325411081314, + -0.013585973531007767, + 0.010945704765617847, + -0.013612049631774426, + -0.00950496643781662, + 0.042791903018951416, + 0.024720733985304832, + -0.012093081139028072, + -0.003891951171681285, + -0.014146623201668262, + -0.015124499797821045, + 0.009094257839024067, + 0.022086985409259796, + -0.0065126619301736355, + 0.007588326930999756, + -0.017771286889910698, + -0.00616062618792057, + 0.007308002095669508, + 0.012412521056830883, + 0.012940574437379837, + 0.022217368707060814, + -0.017067216336727142, + -0.0029743763152509928, + -0.0364813357591629, + -0.007868651300668716, + -0.030822688713669777, + 0.0364813357591629, + 0.018840434029698372, + 0.0018009237246587873, + 0.00924419891089201, + 0.01646745204925537, + -0.02473377250134945, + 0.0013706578174605966, + 0.009074700064957142, + 0.007457943167537451, + 0.01520272996276617, + 0.03303920850157738, + -0.018710048869252205, + 0.017327982932329178, + -0.009518004022538662, + -0.019753118976950645, + 0.0009966198122128844, + -0.005968310404568911, + -0.018501436337828636, + 0.01607630029320717, + -0.013338244520127773, + -0.014185737818479538, + -0.001609422848559916, + 0.004579724743962288, + -0.017627865076065063, + 0.03447343036532402, + -0.021161261945962906, + -0.010704495012760162, + 0.002601153217256069, + -0.031709298491477966, + 0.015776418149471283, + 0.026194069534540176, + 0.014837656170129776, + -0.01877524144947529, + 0.02105695568025112, + 0.04409573972225189, + 0.0030118615832179785, + -0.02151329815387726, + 0.024981502443552017, + -0.010345940478146076, + 0.017497481778264046, + 0.006955966353416443, + -0.0014260708121582866, + 0.0020339845214039087, + -0.027771711349487305, + -0.020717957988381386, + -0.014994116500020027, + 0.026676489040255547, + 0.007607884239405394, + -0.0028863674961030483, + 0.011930101551115513, + -0.011812755838036537, + -0.0180450938642025, + -0.03512534871697426, + -0.03434304520487785, + -0.059872157871723175, + 0.030900917947292328, + -0.027797788381576538, + 0.004257025197148323, + 0.0501716174185276, + 0.018266744911670685, + -0.03755048289895058, + -0.029675312340259552, + -0.01876220293343067, + 0.016480490565299988, + 0.0019916098099201918, + 0.02388628013432026, + 0.042270369827747345, + 0.008461897261440754, + 0.0731191337108612, + 0.010274229571223259, + -0.06524396687746048, + -0.013083996251225471, + 0.036272723227739334, + -0.0011970846680924296, + 0.015254884026944637, + -0.029492774978280067, + 0.007888209074735641, + -0.003911508712917566, + -0.0181624386459589, + -0.031318146735429764, + 0.05030200257897377, + 0.006747352425009012, + 0.02018338441848755, + -0.036090187728405, + 0.016324030235409737, + -0.037993788719177246, + 0.0182797834277153, + 0.02174798771739006, + 0.03329997509717941, + 0.012718922458589077, + 0.007066792342811823, + 0.00751009676605463, + 0.009029066190123558, + 0.0023403859231621027, + -0.009537561796605587, + -0.040940456092357635, + -0.004723146557807922, + 0.04837232455611229, + -0.021852295845746994, + -0.007118945941329002, + 0.036272723227739334, + 0.01502019353210926, + -0.002193704480305314, + 0.001994869438931346, + -0.020196422934532166, + -0.02243902161717415, + -0.006988562177866697, + 0.010104730725288391, + -0.03588157147169113, + 0.02758917398750782, + -0.0013356172712519765, + -0.007203694898635149, + -0.0010495882015675306, + 0.0031243176199495792, + 0.02722409926354885, + -0.0223999060690403, + -0.04310482367873192, + 0.004948058631271124, + 0.05095392093062401, + -0.024068815633654594, + 0.021200377494096756, + -0.013207861222326756, + -0.011819275096058846, + -0.06795594096183777, + -0.006669122260063887, + 0.020887456834316254, + 0.0037289715837687254, + 0.018540550023317337, + -0.032595906406641006, + -0.031083455309271812, + 0.024759849533438683, + 0.0027559837326407433, + 0.005124076269567013, + -0.01502019353210926, + -0.029910001903772354, + 0.0008458637166768312, + 0.0010552924359217286, + 0.015189691446721554, + -0.03478635102510452, + 0.0012337550288066268, + 0.002739685820415616, + -0.005371805280447006, + 0.0032547011505812407, + -0.027641328051686287, + -0.005544563289731741, + -0.01989654079079628, + 0.011773641221225262, + -0.013442551717162132, + -0.0011905654100701213, + -0.01837105304002762, + -0.0359337255358696, + 0.03246552124619484, + -0.0023534244392067194, + 0.003412791294977069, + 0.037315793335437775, + 0.004592763260006905, + -0.010906590148806572, + 0.011877947486937046, + -0.02637660689651966, + 0.04018423333764076, + 0.020887456834316254, + -0.011023934930562973, + -0.009811367839574814, + 0.012523346580564976, + -0.026011532172560692, + 0.006199741270393133, + -0.031396377831697464, + -0.040575381368398666, + 0.021213416010141373, + -0.005583678372204304, + 0.04414789378643036, + -0.00589985866099596, + -0.035021040588617325, + 0.020770110189914703, + 0.023090939968824387, + -0.028580090031027794, + 0.021030878648161888, + 0.04451296851038933, + 0.01405535452067852, + -0.027537019923329353, + 0.02500757947564125, + -0.031005224213004112, + 0.0006726980209350586, + 0.00376156740821898, + -0.0057694753631949425, + 0.006183443125337362, + -0.010684938170015812, + -0.0002868439769372344, + 0.020000847056508064, + -0.0027755412738770247, + 0.00815549585968256, + -0.009165968745946884, + 0.0089834313839674, + -0.004736185073852539, + 0.005498929414898157, + -0.026885103434324265, + 0.015059308148920536, + 0.013064438477158546, + 0.03032723069190979, + 0.013898894190788269, + 0.02996215596795082, + 0.0014863732503727078, + -0.028162863105535507, + -0.0007533728494308889, + -0.005319651681929827, + -0.0034877618309110403, + 0.014785503037273884, + 0.022047869861125946, + -0.057890329509973526, + -0.003852836089208722, + -0.013716356828808784, + 0.020248576998710632, + 0.04401751235127449, + 0.019831348210573196, + 0.009211602620780468, + -0.019987808540463448, + -0.012888421304523945, + -0.0008955724770203233, + 0.017067216336727142, + -0.016623912379145622, + -0.0022523771040141582, + -0.036064110696315765, + -0.017341021448373795, + 0.0034356084652245045, + -0.020066039636731148, + -0.05244029313325882, + 0.00011235401325393468, + -0.02057453617453575, + 0.008044669404625893, + -0.011630219407379627, + 0.023130053654313087, + -0.0227910578250885, + 0.009596234187483788, + -0.016089338809251785, + 0.01760178804397583, + -0.011415085755288601, + 0.00032982981065288186, + 0.0056488704867661, + -0.009824405424296856, + -0.0022963816300034523, + -0.04070576652884483, + -0.008168533444404602, + -0.023651588708162308, + -0.0204180758446455, + 0.007334078662097454, + 0.010358978994190693, + -0.012158272787928581, + -0.013990162871778011, + -0.01848839782178402, + 0.019909579306840897, + 0.01103697344660759, + -0.0018367792945355177, + -0.03084876388311386, + 0.03755048289895058, + 0.009609272703528404, + -0.013246975839138031, + 0.027928171679377556, + -0.013097034767270088, + -0.022126100957393646, + 0.011382490396499634, + -0.005551082547754049, + -0.021565450355410576, + 0.023064862936735153, + -0.020730996504426003, + -0.03749832883477211, + -0.02328651398420334, + -0.02602457068860531, + 0.007751306053251028, + 0.012875382788479328, + -0.013546857982873917, + 0.019805271178483963, + -0.00872266385704279, + -0.01216479204595089, + 0.025633420795202255, + 0.004403706640005112, + 0.011128242127597332, + 0.0019476052839308977, + -0.014407389797270298, + -0.06279275566339493, + -0.03327390179038048, + 0.0019573841709643602, + -0.027119792997837067, + 0.015854649245738983, + 0.006216038949787617, + -0.01020903792232275, + 0.008937797509133816, + 0.027041563764214516, + 0.03275236487388611, + 0.017823440954089165, + -0.005300094373524189, + 0.015333114191889763, + 0.026520028710365295, + -0.011219510808587074, + 0.026806872338056564, + 0.0036051070783287287, + 0.0014733349671587348, + 0.024590350687503815, + -0.02367766574025154, + -0.009915674105286598, + -0.004273323342204094, + -0.019948694854974747, + 0.04253113642334938, + -0.016532642766833305, + -0.0032253647223114967, + 0.007901247590780258, + -0.0052903154864907265, + 0.005834667012095451, + -0.007151541765779257, + -0.01020903792232275, + 0.025685572996735573, + -0.016819486394524574, + -0.01760178804397583, + 0.008311956189572811, + 0.0026109321042895317, + -0.012881902046501637, + -0.018618781119585037, + 0.0007607069564983249, + -0.008201129734516144, + 0.0038397975731641054, + 0.01619364507496357, + 0.004426524043083191, + -0.025111885741353035, + 0.021565450355410576, + 0.0181624386459589, + -0.008950836025178432, + -0.013924970291554928, + -0.03343036025762558, + -0.00724932923913002, + -0.02468162029981613, + -0.008963873609900475, + 0.0036931161303073168, + -0.005583678372204304, + 0.0006079136510379612, + -0.018957778811454773, + -0.015724264085292816, + 0.04894601181149483, + 0.019870463758707047, + -0.0010903329821303487, + -0.007053753826767206, + -0.02980569563806057, + 0.01482461765408516, + -0.010293787345290184, + -0.02186533249914646, + 0.021004801616072655, + -0.030509768053889275, + -0.029101625084877014, + -0.0004180424730293453, + -0.032882750034332275, + 0.01933589018881321, + -0.03032723069190979, + -0.026598257943987846, + -0.002640268299728632, + 0.00863791536539793, + -0.016454413533210754, + -0.05163191258907318, + 0.04704241082072258, + 0.02774563431739807, + 0.00022470802650786936, + 0.03666387498378754, + -0.009863520972430706, + 0.013136149384081364, + 0.005629312712699175, + 0.017145445570349693, + -0.018149400129914284, + 0.025281384587287903, + -0.008064227178692818, + -0.014459543861448765, + -0.0007350376690737903, + 0.004654695279896259, + -0.0061638858169317245, + -0.026728643104434013, + 0.019870463758707047, + 0.00015696966147515923, + 0.00752313481643796, + 0.011408566497266293, + 0.023247400298714638, + 0.005580419208854437, + -0.0054435161873698235, + -0.04474765807390213, + -0.0062127793207764626, + -0.009941751137375832, + -0.014642080292105675, + 0.00891823973506689, + -0.037915557622909546, + 0.004224429372698069, + -0.013820664025843143, + -0.0006543627823702991, + 0.0052903154864907265, + -0.003412791294977069, + -0.01151939295232296, + 0.0205354206264019, + -0.020026924088597298, + -0.002796728629618883, + -0.03940192982554436, + -0.019075123593211174, + -0.021565450355410576, + -0.006040021311491728, + -0.0003444979665800929, + 0.028527935966849327, + 0.030509768053889275, + 0.0407579205930233, + -0.003976700361818075, + 0.013233937323093414, + -1.88190424523782e-05, + -0.016297953203320503, + -0.010241633281111717, + 0.008298917673528194, + -0.0030689043924212456, + -0.009576677344739437, + -0.001371472724713385, + -0.020352883264422417, + 0.007308002095669508, + 0.026037609204649925, + 0.022412944585084915, + -0.012249541468918324, + 0.0020437631756067276, + 0.03533396124839783, + 0.022543327882885933, + 0.027380559593439102, + 0.002544110408052802, + -0.02155241183936596, + -0.01872308738529682, + -0.03588157147169113, + -0.013057919219136238, + 0.014955000951886177, + 0.0318918339908123, + -0.01303184311836958, + 0.04187921807169914, + -0.0135338194668293, + -0.0017080254619941115, + -0.010606708005070686, + -0.015372228808701038, + 0.006300788372755051, + 0.02573772706091404, + -0.00353991542942822, + -0.02359943464398384, + -0.007288444321602583, + -0.022608520463109016, + -0.03329997509717941, + -0.0058183688670396805, + 0.028058554977178574, + -0.011362932622432709, + 0.041461993008852005, + -0.021161261945962906, + -0.020952647551894188, + 0.0017080254619941115, + 0.018983855843544006, + -0.005733619909733534, + 0.05377020686864853, + -0.010847916826605797, + 0.01872308738529682, + -0.006480066105723381, + 0.007927324622869492, + 0.011493315920233727, + -0.04532134532928467, + -0.02691117860376835, + 0.013123111799359322 + ], + "how_to_launch_a_rocket": [ + -0.01556536927819252, + -0.015353435650467873, + 0.013234095647931099, + -0.05147639662027359, + -0.004721416626125574, + -0.008589210920035839, + 0.051994454115629196, + -0.01012573204934597, + 0.0011435601627454162, + 0.04297548905014992, + 0.002042807638645172, + -0.03767714276909828, + -0.01876792684197426, + -0.04292839393019676, + -0.04803835600614548, + 0.01650729775428772, + -0.036170054227113724, + 0.01921534165740013, + 0.006664144340902567, + -0.024678528308868408, + 0.07464783638715744, + -0.023089023306965828, + -0.03138976916670799, + 0.013010388240218163, + 0.003349733306095004, + -0.04325806722044945, + 0.033815234899520874, + 0.06000084802508354, + -0.03873681277036667, + 0.004792061634361744, + 0.05076994746923447, + -0.013716834597289562, + -0.021334681659936905, + -0.014988438226282597, + -0.03423910215497017, + -0.025950131937861443, + 0.0072822850197553635, + 0.015577143058180809, + 0.0009617973701097071, + -0.012975065968930721, + -0.010320005007088184, + 0.019945336505770683, + -0.037559401243925095, + -0.03541651368141174, + -0.04193936660885811, + 0.02635045163333416, + -0.053878311067819595, + -0.016919391229748726, + -0.007405912969261408, + 0.0005636853748001158, + -0.016672134399414062, + 0.03817165270447731, + -2.7043652153224684e-05, + -0.013987638987600803, + 0.016189396381378174, + -0.05477314442396164, + -0.01438795868307352, + -0.0038030364084988832, + -0.018132124096155167, + -0.009825492277741432, + -0.018061479553580284, + -0.0060989875346422195, + -0.0010523108066990972, + 0.02167613059282303, + 0.04789706692099571, + -0.010584921576082706, + -0.04742610082030296, + 0.009001304395496845, + 0.022947734221816063, + 0.050864141434431076, + 0.005492620635777712, + 0.03518103063106537, + -7.906129030743614e-05, + -0.0328497588634491, + 0.031460411846637726, + -0.04457676783204079, + -0.03301459550857544, + 0.06791304796934128, + 0.013186999596655369, + -0.02354821376502514, + -0.05025188624858856, + -0.06018923223018646, + 0.014764729887247086, + -0.028752367943525314, + -0.03247298672795296, + -0.011827089823782444, + -0.019203567877411842, + 0.019921788945794106, + -0.03711198270320892, + -0.06800723820924759, + -0.03442748636007309, + 0.012692486867308617, + -0.009554687887430191, + 0.03367394581437111, + 0.08350196480751038, + -0.025432070717215538, + 0.053313154727220535, + 0.04321097210049629, + 0.03645263612270355, + 0.029882682487368584, + 0.05656280741095543, + -0.0454009547829628, + -0.03993777185678482, + -0.046554818749427795, + 0.056233134120702744, + 0.00407678447663784, + -0.01989823952317238, + 0.0343097485601902, + -0.009395737200975418, + -0.053689926862716675, + -0.07516589760780334, + 0.0007660528062842786, + 0.012774906121194363, + 0.05053446441888809, + 0.019674532115459442, + -0.006246163509786129, + 0.028681723400950432, + 0.02653883583843708, + -0.023194991052150726, + -0.022488543763756752, + -0.035110387951135635, + -0.04288129508495331, + -0.02569110132753849, + 0.006934948731213808, + 0.01614230126142502, + -0.017037132754921913, + 0.0710214152932167, + -0.023689502850174904, + 0.03153105825185776, + 0.06932593882083893, + 0.0008447921718470752, + -0.03414490818977356, + 0.01097935438156128, + -0.03814810514450073, + 0.010861613787710667, + 0.025573359802365303, + -0.03894874453544617, + -0.042528074234724045, + -0.018426477909088135, + 0.02335982769727707, + 0.004544805269688368, + -0.04542450234293938, + 0.011220723390579224, + 0.010896936058998108, + -0.016471974551677704, + -0.002872881945222616, + -0.04344645515084267, + 0.006781885400414467, + -0.037182629108428955, + -0.028940754011273384, + -0.005001051817089319, + -0.015883270651102066, + -0.022618059068918228, + -0.02905849553644657, + 0.04883899539709091, + -0.034380391240119934, + -0.03715908154845238, + 0.029835587367415428, + 0.008871789090335369, + -0.020769523456692696, + 0.03421555459499359, + 0.005972415674477816, + 0.01857954077422619, + -0.01575375534594059, + -0.039042938500642776, + -0.02418401464819908, + 0.012150878086686134, + 0.0010832177940756083, + -0.0572221577167511, + -0.009766621515154839, + 0.020180819556117058, + 0.004689037799835205, + -0.015188598074018955, + 0.02101678028702736, + 0.03442748636007309, + 0.005769312381744385, + -0.041962917894124985, + -0.030589129775762558, + 0.025149492546916008, + 0.020816620439291, + 0.01670745760202408, + -0.026209162548184395, + -0.04558934271335602, + -0.023136120289564133, + 0.022676929831504822, + 0.028469789773225784, + -0.02484336495399475, + 0.009725412353873253, + -0.011291367933154106, + -0.024984654039144516, + -0.03153105825185776, + -0.00030999016598798335, + -0.025620456784963608, + 0.012774906121194363, + 0.013916994445025921, + 0.013210548087954521, + 0.012315715663135052, + -0.012810228392481804, + 0.06033052131533623, + -0.01933308318257332, + -0.010749759152531624, + 0.03480425849556923, + 0.04452967271208763, + -0.03715908154845238, + 0.048791900277137756, + -0.018885666504502296, + -0.051146719604730606, + 0.04528321325778961, + 0.015353435650467873, + 0.01792019046843052, + -0.009295657277107239, + -0.00857743714004755, + 0.01680164970457554, + 0.016012785956263542, + -0.06066019833087921, + -0.01101467665284872, + -0.03730037063360214, + 0.04949834570288658, + -0.05279509350657463, + -0.015365209430456161, + -0.03866616636514664, + 0.027268830686807632, + 0.003493966069072485, + -0.04191581904888153, + 0.03449813276529312, + 0.05783441290259361, + 0.05877634137868881, + -0.06899626553058624, + 0.05806989595293999, + -0.007417687214910984, + -0.02165258303284645, + 0.025714648887515068, + -0.004044405650347471, + 0.007747362367808819, + -0.00863630697131157, + 0.008383164182305336, + -0.00017743946227710694, + -0.009348641149699688, + 0.011356125585734844, + -0.010938145220279694, + -0.016636813059449196, + -0.04836802929639816, + -0.004385854583233595, + -0.053030576556921005, + 0.046649012714624405, + -0.023277409374713898, + -0.024984654039144516, + -0.05872924625873566, + 0.006434549577534199, + -0.02474917285144329, + 0.060518909245729446, + -0.018697282299399376, + 0.04045582935214043, + 0.021593712270259857, + 0.005781086627393961, + -0.05632732808589935, + -0.019486146047711372, + 0.00024118521832861006, + 0.00778268463909626, + -0.00867162924259901, + -0.02345401979982853, + 0.0199806597083807, + -0.0984315350651741, + 0.024078048765659332, + -0.016448426991701126, + -0.0018338171066716313, + -0.007894538342952728, + -0.0050452048890292645, + -0.019074052572250366, + -0.023983854800462723, + -0.015800850465893745, + -0.0005302027566358447, + 0.0015674280002713203, + -0.01959211379289627, + -0.033909428864717484, + 0.017366807907819748, + 0.015000212006270885, + -0.0077885715290904045, + -0.02061646059155464, + -0.013516674749553204, + -0.024254659190773964, + 0.008459695614874363, + -0.016825199127197266, + 0.027716247364878654, + 0.006917287595570087, + 0.008659855462610722, + 0.02111097425222397, + 0.008241875097155571, + 0.01172112300992012, + -0.024395950138568878, + 0.05632732808589935, + -0.0015468233032152057, + 0.0016321855364367366, + 0.006970271002501249, + 0.01922711543738842, + -0.004188638646155596, + 0.020015981048345566, + -0.031272027641534805, + -0.019180020317435265, + 0.03800681605935097, + 0.0029508855659514666, + 0.03647618368268013, + 0.05288928747177124, + -0.007152769714593887, + 0.015871495008468628, + -0.016389556229114532, + 0.019521469250321388, + -0.05496152862906456, + -0.03602876514196396, + 0.00359698967076838, + 0.06282663345336914, + 0.04062066972255707, + 0.007040916010737419, + -0.05821118503808975, + 0.03979647904634476, + 0.036334894597530365, + -0.02073420211672783, + 0.04716707020998001, + 0.019015181809663773, + 0.024513689801096916, + 0.014576343819499016, + -0.030047520995140076, + 0.03421555459499359, + -0.016177622601389885, + -0.013822801411151886, + -0.035204578191041946, + 0.010637905448675156, + 0.008759935386478901, + 0.007553089410066605, + 0.005383710376918316, + 0.023418698459863663, + -0.03374458849430084, + 0.013563770800828934, + 0.011038225144147873, + 0.017107777297496796, + -0.020310334861278534, + 0.04014970362186432, + -0.006664144340902567, + 0.0314839631319046, + 0.02268870361149311, + -0.006416887976229191, + 0.008430260233581066, + -0.014105379581451416, + 0.023760147392749786, + -0.03518103063106537, + 0.028540434315800667, + 0.010337665677070618, + -0.020204367116093636, + -0.006093100178986788, + 0.0041121067479252815, + 0.011632817797362804, + 0.015400531701743603, + -0.048156097531318665, + 0.022676929831504822, + -0.00670535396784544, + 0.013022162020206451, + 0.008306632749736309, + -0.02071065455675125, + -0.020592913031578064, + -0.020180819556117058, + 0.005945923738181591, + 0.07681427150964737, + 0.016483750194311142, + 0.023100797086954117, + -0.035039741545915604, + 0.050958335399627686, + 0.024866914376616478, + -0.016931165009737015, + -0.0433051660656929, + 0.005304235033690929, + 0.03772423788905144, + 0.032308150082826614, + 0.038972292095422745, + 0.02814011462032795, + -0.06315630674362183, + 0.027033349499106407, + 0.02569110132753849, + 0.00288171274587512, + -0.0298120379447937, + -0.01699003577232361, + 0.04052647575736046, + -0.012916195206344128, + -0.007352929562330246, + -0.005419032648205757, + -0.013234095647931099, + -0.0015468233032152057, + 0.017484549432992935, + -0.005460241809487343, + -0.031460411846637726, + -0.021122748032212257, + 0.0012399606639519334, + -0.07168076187372208, + 0.045989662408828735, + 0.015459402464330196, + 0.03927842155098915, + 0.014446829445660114, + 0.006416887976229191, + 0.0199806597083807, + 0.038689713925123215, + 0.016106978058815002, + 0.05759892985224724, + -0.026279807090759277, + -0.008082924410700798, + -0.025267232209444046, + 0.012174426577985287, + -0.015365209430456161, + 0.0482267402112484, + -0.004415289964526892, + -0.02062823437154293, + 0.0007303625461645424, + 0.0770968496799469, + 0.0012988311937078834, + 0.03282621130347252, + -0.0395374521613121, + 0.01969808153808117, + -0.007541315164417028, + 0.01270426157861948, + 0.0015218033222481608, + -0.027975277975201607, + 0.026091421023011208, + -0.02877591736614704, + -0.04109163209795952, + 0.03346201032400131, + -0.008759935386478901, + -0.021617259830236435, + 0.03711198270320892, + 0.04408225417137146, + -0.009825492277741432, + 0.027339475229382515, + -0.027056897059082985, + -0.027363024652004242, + -0.03720617666840553, + 0.04071485996246338, + 0.040550023317337036, + 0.023277409374713898, + -0.028281403705477715, + -0.06442791223526001, + 0.005778142716735601, + -0.023112570866942406, + 0.02587948739528656, + 0.016636813059449196, + -0.02974139340221882, + 0.03084816038608551, + 0.045612890273332596, + -0.039160680025815964, + -0.039419710636138916, + -0.02503175102174282, + -0.040550023317337036, + -0.02974139340221882, + 0.00938396342098713, + -0.013422481715679169, + -0.009854927659034729, + 0.011038225144147873, + 0.014234894886612892, + 0.021169843152165413, + -0.0392313227057457, + 0.0006144611979834735, + -0.017037132754921913, + 0.04259871691465378, + 0.037276823073625565, + 0.005683950148522854, + 0.037653595209121704, + -0.036523278802633286, + -0.012810228392481804, + 0.004965729545801878, + 0.015259242616593838, + 0.006081325933337212, + 0.02259451150894165, + -0.042151302099227905, + 0.0007351458189077675, + -0.011697575449943542, + -0.05194735899567604, + -0.02127581089735031, + -0.013434255495667458, + -0.0040797279216349125, + 0.000807998061645776, + -0.055573783814907074, + 0.03638198971748352, + -0.0010052144061774015, + 0.006917287595570087, + -0.03186073154211044, + 0.03485135734081268, + -0.00370590016245842, + 0.003467474365606904, + 0.010425971820950508, + 0.0543963722884655, + -0.006269712001085281, + -0.014034735038876534, + -0.043564196676015854, + 0.027998825535178185, + -0.015153275802731514, + 0.030424291267991066, + 0.005095244850963354, + -0.010867500677704811, + 0.04097389057278633, + -0.06843110918998718, + -0.02449014224112034, + -0.015011985786259174, + 0.0250552985817194, + 0.014340861700475216, + 0.012080233544111252, + -0.010337665677070618, + 0.004485934507101774, + 0.047214169055223465, + -0.02927042916417122, + -0.054537661373615265, + -0.04452967271208763, + 0.03890164941549301, + 0.02625625766813755, + 0.045824822038412094, + -0.009784283116459846, + 0.0032261053565889597, + 0.01642487943172455, + -0.020816620439291, + 0.015624240040779114, + 0.001641016104258597, + -0.0008580380235798657, + 0.009849040769040585, + 0.018155673518776894, + -0.002569698728621006, + -0.017390355467796326, + 0.035675544291734695, + -0.006522855255752802, + 0.02401917800307274, + -0.03383878245949745, + 0.009896136820316315, + -0.0418451763689518, + -0.03788907453417778, + -0.00597830256447196, + 0.004759682808071375, + -0.016248267143964767, + -0.015918591991066933, + 0.004459443036466837, + 0.015247467905282974, + -0.018603088334202766, + 0.02224128693342209, + -0.03209621459245682, + -0.015117953531444073, + -0.04292839393019676, + -0.037841979414224625, + -0.02896430343389511, + 0.030801063403487206, + 0.0062167285941541195, + -0.0020766581874340773, + -0.011915395967662334, + 0.015223920345306396, + 0.006581725552678108, + 0.03388587757945061, + 0.03551070764660835, + -0.0013282664585858583, + 0.00754720252007246, + -0.014752956107258797, + 0.015518272295594215, + -0.016566168516874313, + -0.00043049079249612987, + 0.0022105886600911617, + -0.03993777185678482, + -0.03414490818977356, + 0.02625625766813755, + -0.03426264971494675, + 0.010685001499950886, + 0.007841555401682854, + 0.0022326649632304907, + 0.0019294817466288805, + -0.017873093485832214, + 0.007435348350554705, + 0.015624240040779114, + -0.025761745870113373, + -0.013092806562781334, + -0.009119045920670033, + -0.030871707946062088, + -0.033532656729221344, + 0.001860308926552534, + 0.01623649336397648, + 0.0018588370876386762, + -0.010060974396765232, + 0.01727261394262314, + 0.011962492018938065, + 0.001074387226253748, + -0.019368406385183334, + -0.006923174951225519, + -0.0487448014318943, + -0.01177410688251257, + 0.008530340157449245, + -0.07483622431755066, + 0.006169632077217102, + -0.019474372267723083, + 0.02325385995209217, + -0.004115050192922354, + 0.020098399370908737, + -0.008177117444574833, + -0.011226611211895943, + 0.06103697046637535, + 0.041209373623132706, + -0.014599892310798168, + -0.0037853752728551626, + 0.020310334861278534, + 0.007017367519438267, + 0.0005511753843165934, + 0.014364410191774368, + 0.004945124965161085, + 0.006793659646064043, + -0.029505912214517593, + 0.017967287451028824, + 0.0005585341714322567, + -0.011002902872860432, + 0.004382911138236523, + -0.002481393050402403, + -0.029223332181572914, + 0.017861319705843925, + -0.033509109169244766, + 0.008742274716496468, + -0.039725836366415024, + -0.02757495827972889, + 0.00796518288552761, + 0.0031083642970770597, + -0.0007355137495324016, + 0.08929482847452164, + -0.013716834597289562, + -0.05524411052465439, + 0.0298120379447937, + 0.03367394581437111, + -0.0022547414992004633, + 0.01932130940258503, + 0.02127581089735031, + -0.04511837661266327, + -0.009172028861939907, + -0.00012601973139680922, + -0.013481352478265762, + 0.02167613059282303, + 0.03471006825566292, + 0.008783483877778053, + 0.008553888648748398, + -0.004006139934062958, + -0.013481352478265762, + 0.03383878245949745, + 0.02334805391728878, + -0.007341155782341957, + 0.012339264154434204, + 0.02372482605278492, + -0.01054371241480112, + -0.016295364126563072, + 0.00835372880101204, + -0.024160467088222504, + -0.013493126258254051, + 0.05373702198266983, + 0.007847442291676998, + 0.05698667839169502, + 0.03162525221705437, + -0.03927842155098915, + -0.013599093072116375, + -0.005257138516753912, + 0.03405071794986725, + -0.040856149047613144, + 0.03682940453290939, + 0.0166839100420475, + -0.04888609051704407, + 0.01510617882013321, + -0.0401732511818409, + -0.008883563801646233, + -0.02418401464819908, + 4.783230906468816e-05, + -0.02757495827972889, + 0.04455322027206421, + -0.0069055138155817986, + 0.04817964509129524, + -0.011185401119291782, + -0.012810228392481804, + -0.003985535353422165, + -0.015541820786893368, + -0.05660990625619888, + 0.0036970695946365595, + -0.04172743484377861, + 0.006711240857839584, + -0.012115555815398693, + 0.004256339743733406, + 0.011008789762854576, + -0.04893318936228752, + 0.026138516142964363, + 0.038030363619327545, + -0.033626850694417953, + -0.02006307803094387, + -0.01922711543738842, + 0.021817419677972794, + 0.029482362791895866, + -0.054349277168512344, + -0.015035534277558327, + 0.004574240650981665, + 0.006781885400414467, + -0.0060342298820614815, + -0.009866701439023018, + -0.008477357216179371, + 0.0024122202303260565, + 0.007935747504234314, + -0.0020442793611437082, + 0.008453808724880219, + 0.02298305556178093, + -0.02748076431453228, + -0.02138177864253521, + -0.09287415444850922, + -0.01388167217373848, + 0.00990202371031046, + 0.005180607084184885, + -0.007199866231530905, + -0.023030152544379234, + -0.01228039339184761, + -0.014223121106624603, + 0.0025535093154758215, + -0.0027669151313602924, + -0.009772508405148983, + -0.008730500005185604, + 0.017578741535544395, + -0.01959211379289627, + -0.02587948739528656, + -0.033344268798828125, + 0.011815316043794155, + -0.030071068555116653, + -0.042787104845047, + 0.00834195502102375, + -0.011933057568967342, + -0.0033055804669857025, + -0.00023327449162025005, + -0.005657458212226629, + 0.02503175102174282, + -0.0487448014318943, + -0.006387453060597181, + 0.027268830686807632, + 0.025997227057814598, + 0.01093225833028555, + -0.0189327634871006, + 0.017366807907819748, + 0.02026323787868023, + -0.020793072879314423, + 0.012657164596021175, + 0.003564610844478011, + -0.02326563559472561, + -0.0425751693546772, + 0.02118161879479885, + 0.02325385995209217, + 0.007900425232946873, + -0.03800681605935097, + 0.0029759055469185114, + -0.01724906638264656, + 0.02148774452507496, + 0.014788278378546238, + -0.03421555459499359, + 0.020687105134129524, + 0.013104581274092197, + -0.004909802693873644, + 0.01003742590546608, + -0.0250552985817194, + 0.0074235741049051285, + -0.006487532984465361, + -0.010337665677070618, + 0.02738657221198082, + -0.010072748176753521, + 0.012457004748284817, + 0.015047308057546616, + -0.006363904569298029, + 0.00796518288552761, + -0.03275556489825249, + -0.017566967755556107, + -0.01933308318257332, + -0.019545016810297966, + -0.022370802238583565, + -0.02964720129966736, + 0.034286197274923325, + -0.00719397934153676, + 0.021911611780524254, + 0.018497122451663017, + 0.015977462753653526, + -0.017001809552311897, + -0.008653968572616577, + -0.0026432869490236044, + -0.008453808724880219, + -0.020286785438656807, + -0.014599892310798168, + 0.031083641573786736, + -0.004989277571439743, + -0.03697069361805916, + -0.0012502629542723298, + -0.015447627753019333, + -0.007841555401682854, + -0.0015438797418028116, + 0.01961566135287285, + 0.031272027641534805, + -0.02138177864253521, + 0.04226904362440109, + 0.018355833366513252, + -0.03233169764280319, + -0.026279807090759277, + -0.022853542119264603, + -0.008665742352604866, + -0.028069470077753067, + 0.011285481043159962, + 0.027739794924855232, + 0.010320005007088184, + -0.07964006066322327, + -0.04125646874308586, + 0.01744922623038292, + -0.02814011462032795, + 0.0057251593098044395, + -0.0027433668728917837, + 0.011609269306063652, + 0.010773307643830776, + -0.0004948804271407425, + -0.02802237495779991, + 0.028352048248052597, + -0.02016904577612877, + -0.03461587429046631, + 0.0066818054765462875, + 0.005772255826741457, + 0.009531139396131039, + 0.00626382464542985, + 0.0076060728169977665, + 0.011785880662500858, + -0.02738657221198082, + -0.014258443377912045, + -0.038124557584524155, + 0.006511081010103226, + -0.009060175158083439, + -0.005745763890445232, + -0.02729238010942936, + 0.015153275802731514, + -0.004856818821281195, + 0.02015727013349533, + 0.005869392305612564, + 0.0314839631319046, + 0.02165258303284645, + -0.003255540505051613, + 0.007982844486832619, + 0.0033968298230320215, + 0.002521130722016096, + 0.01121483650058508, + 0.011532737873494625, + 0.01894453726708889, + 0.028823012486100197, + 0.02992977946996689, + -0.005828182678669691, + 0.02157016284763813, + -0.01790841668844223, + 0.06546403467655182, + 0.007229301612824202, + -0.04530676454305649, + 0.018920989707112312, + 0.015306338667869568, + 0.02898785099387169, + 0.013340063393115997, + -0.017778901383280754, + -0.012975065968930721, + -0.010537825524806976, + 0.0373474657535553, + 0.04820319265127182, + -0.05204155296087265, + -0.01388167217373848, + -0.01670745760202408, + -0.011632817797362804, + 0.01054371241480112, + 0.03817165270447731, + 0.01753164455294609, + -0.03339136764407158, + -0.01510617882013321, + 0.012716035358607769, + -0.012174426577985287, + 0.010178714990615845, + -0.022994831204414368, + 0.01022581197321415, + 0.03129557520151138, + 0.01514150109142065, + -0.01298683974891901, + 0.013292966410517693, + 0.017107777297496796, + 0.008942433632910252, + -0.008842354640364647, + -0.016825199127197266, + -0.013799252919852734, + -0.013622641563415527, + -0.03704134002327919, + 0.01537698321044445, + 0.011403222568333149, + 0.027221735566854477, + -0.042433880269527435, + 0.009743073023855686, + -0.0060342298820614815, + 0.013351837173104286, + -0.0029243938624858856, + 0.02569110132753849, + 0.008483244106173515, + -0.023489343002438545, + 0.004388798493891954, + -0.02943526767194271, + -0.001346663455478847, + 0.008683403953909874, + -0.0040797279216349125, + -0.02550271525979042, + 0.027810439467430115, + -0.028563983738422394, + 0.010296456515789032, + 0.030730418860912323, + -0.014599892310798168, + -0.008047602139413357, + -0.05745764076709747, + 0.03920777514576912, + 0.014505699276924133, + 0.0011796182952821255, + -0.011656365357339382, + 0.0037765447050333023, + 0.01435263641178608, + 0.0022311932407319546, + -0.003046550089493394, + 0.061743415892124176, + 0.017331484705209732, + 0.03854842483997345, + -0.004067953675985336, + -0.010143392719328403, + 0.01883857138454914, + 0.0040031964890658855, + -0.03209621459245682, + 0.04241033270955086, + -0.028540434315800667, + 0.02109919860959053, + -0.029953327029943466, + 0.007040916010737419, + -0.001707245479337871, + 0.03181363642215729, + -0.035392966121435165, + -0.019168246537446976, + 0.0373474657535553, + 0.03047138825058937, + -0.03252008184790611, + 0.006151970941573381, + -0.03751230239868164, + 0.002632984658703208, + 0.03301459550857544, + -0.012268619611859322, + -0.026562385261058807, + -0.0032467099372297525, + -0.012786679901182652, + 0.014458603225648403, + -0.0487448014318943, + -0.013210548087954521, + 0.007341155782341957, + 0.03920777514576912, + 0.025855937972664833, + -0.007800345774739981, + -0.028823012486100197, + -0.017684709280729294, + 0.01223329734057188, + 0.004032631404697895, + 0.02109919860959053, + 0.023030152544379234, + -0.03744165971875191, + -0.008471469394862652, + -0.013763930648565292, + -0.01630713790655136, + -0.041774529963731766, + 0.01772003062069416, + -0.008830579929053783, + 0.05138220265507698, + 0.009042513556778431, + 0.01256297156214714, + 0.03885455057024956, + 0.017979061231017113, + -0.002990623004734516, + 0.002603549277409911, + -0.01190950907766819, + -0.034922000020742416, + -0.0122921671718359, + -0.00017127646424341947, + 0.004447668790817261, + 0.003738278988748789, + -0.011279594153165817, + 0.009878475219011307, + -0.045636437833309174, + -0.030612677335739136, + -0.0709272176027298, + 0.03685295581817627, + -0.011026451364159584, + 0.0045212567783892155, + -0.0022370803635567427, + 0.03569909185171127, + 0.02755141071975231, + -0.010143392719328403, + -0.009054288268089294, + 0.025290781632065773, + 0.03131912276148796, + 0.017955513671040535, + 0.0010493672452867031, + -0.011032338254153728, + -0.007688491605222225, + -0.004591901786625385, + -0.04615449905395508, + 0.019639210775494576, + -0.008683403953909874, + 0.001319435890763998, + -0.018532443791627884, + -0.016271814703941345, + 0.022582735866308212, + 0.017672933638095856, + -0.014458603225648403, + 0.014140701852738857, + 0.023889662697911263, + -0.0073058330453932285, + -0.01556536927819252, + 0.011903622187674046, + -0.05279509350657463, + -0.019921788945794106, + 0.004335814621299505, + -0.05538539960980415, + 0.007258736994117498, + 0.042339686304330826, + -0.016931165009737015, + 0.00436230655759573, + -0.04846222326159477, + -0.005442580673843622, + -0.013752156868577003, + -0.031012997031211853, + -0.04259871691465378, + -0.06536984443664551, + -0.015047308057546616, + 0.03572263941168785, + 0.005786973517388105, + 0.02305370196700096, + -0.054914433509111404, + -0.010908709838986397, + 0.011891847476363182, + 0.01865018531680107, + -0.013540223240852356, + 0.008330180309712887, + 0.003897229442372918, + -0.011785880662500858, + 0.0033379592932760715, + -0.017508096992969513, + 0.0011229554656893015, + 0.011597495526075363, + 0.018603088334202766, + -0.009819605387747288, + 0.009631219319999218, + -0.0017101890407502651, + -0.008218326605856419, + -0.020275011658668518, + 0.0018146842485293746, + 0.03536941856145859, + 0.041020989418029785, + 0.020463397726416588, + -0.014929567463696003, + 0.024607883766293526, + 0.006764224264770746, + -0.017884867265820503, + -0.012339264154434204, + -0.040008414536714554, + 0.03433329612016678, + -0.013528448529541492, + 0.013151677325367928, + 0.01050839014351368, + -0.02936462312936783, + -0.030447840690612793, + -0.011297255754470825, + 0.00215613329783082, + 0.011362013407051563, + -0.00597830256447196, + 0.018061479553580284, + -0.026279807090759277, + -0.037841979414224625, + 0.009931459091603756, + 0.02625625766813755, + -0.0027742739766836166, + -0.0006843699375167489, + -0.0227004773914814, + 0.005065809469670057, + 0.015341660939157009, + -0.013787479139864445, + -0.005633910186588764, + 0.005807578098028898, + -0.045895468443632126, + -0.005633910186588764, + -0.015400531701743603, + -0.013434255495667458, + 0.023783694952726364, + -0.014034735038876534, + 0.011232498101890087, + -0.011138305068016052, + -0.021817419677972794, + 0.020192593336105347, + -0.026091421023011208, + -0.006781885400414467, + 0.042339686304330826, + 0.028752367943525314, + -0.0003088863450102508, + 0.01724906638264656, + -0.025667551904916763, + 0.0008102057036012411, + 0.009489930234849453, + 0.0038501329254359007, + 0.02167613059282303, + -0.007235188502818346, + -0.025149492546916008, + -0.040008414536714554, + -0.032496534287929535, + 0.0006497835274785757, + -0.004588958341628313, + 0.0075295413844287395, + -0.032402340322732925, + 0.022653382271528244, + -0.03536941856145859, + -0.009160255081951618, + -0.022559188306331635, + 0.01392876822501421, + -0.024819817394018173, + 0.019262438639998436, + 0.006363904569298029, + 0.013081032782793045, + 0.00705857714638114, + 0.03482780605554581, + 0.003349733306095004, + 0.013234095647931099, + -0.003829528111964464, + -0.010214037261903286, + 0.02738657221198082, + -0.010714436881244183, + -0.012598293833434582, + -0.006004794500768185, + -0.006128422450274229, + -0.024348853155970573, + 0.016165848821401596, + 0.02373659983277321, + 0.0026123798452317715, + 0.005572095979005098, + -0.006269712001085281, + -0.009813717566430569, + -0.021122748032212257, + -0.023583535104990005, + -0.012197975069284439, + -0.013493126258254051, + -0.009024852886795998, + -0.05076994746923447, + 0.03591102734208107, + -0.008748161606490612, + -0.022476769983768463, + -0.025761745870113373, + -0.0045948452316224575, + 0.02917623706161976, + 0.00389134231954813, + -0.011750558391213417, + -0.013198773376643658, + 0.010661453939974308, + 0.03346201032400131, + 0.07356461882591248, + -0.021252263337373734, + -0.017661159858107567, + -0.01837938092648983, + 0.021346455439925194, + 0.0030347760766744614, + 0.01633068546652794, + 0.014493925496935844, + 0.009154368191957474, + -0.010255247354507446, + -0.03247298672795296, + -0.022464996203780174, + 0.020769523456692696, + -0.00035727056092582643, + 0.048791900277137756, + -0.026680126786231995, + 0.028728820383548737, + -0.014705859124660492, + 0.03056558035314083, + -0.02373659983277321, + 0.03682940453290939, + 0.015730205923318863, + 0.010443632490932941, + -0.0328497588634491, + -0.02635045163333416, + -0.014423280954360962, + 0.02449014224112034, + 9.088138904189691e-05, + -0.003944325726479292, + 0.02776334434747696, + 0.020557589828968048, + 0.024443045258522034, + -0.0010648207971826196, + 0.014482151716947556, + 0.007152769714593887, + -0.008112359791994095, + 0.015117953531444073, + -0.027786891907453537, + 0.005157058592885733, + 0.004686094354838133, + -0.018897442147135735, + 0.02512594312429428, + 0.005681006703525782, + -0.017884867265820503, + -0.0030097560957074165, + -0.004138598684221506, + -0.020687105134129524, + -0.026138516142964363, + -0.0009632690926082432, + -0.008112359791994095, + 0.030141713097691536, + 0.016460200771689415, + -0.02165258303284645, + -0.013128128834068775, + 0.006069552153348923, + -0.008424373343586922, + 0.008889450691640377, + 0.008330180309712887, + 0.015282790176570415, + 0.01696648821234703, + -0.02644464373588562, + -0.055573783814907074, + -0.007982844486832619, + 0.02597367949783802, + -0.03383878245949745, + -0.011603382416069508, + -0.023171441629529, + 0.012457004748284817, + -0.001822042977437377, + 0.000254615064477548, + -0.04921576753258705, + 0.015282790176570415, + -0.010608470067381859, + 0.03393297642469406, + -0.03186073154211044, + 0.02710399404168129, + 0.014976663514971733, + -0.010184602811932564, + -0.01199781522154808, + 0.04097389057278633, + -0.018155673518776894, + 0.014281991869211197, + 0.014964889734983444, + -0.0022047015372663736, + -0.0009743073605932295, + 0.022288383916020393, + 0.047308359295129776, + 0.03002397157251835, + -0.0028669950552284718, + 0.01485892292112112, + -0.019957110285758972, + 0.0003719881933648139, + 0.008424373343586922, + -0.007458896841853857, + 0.0053601618856191635, + 0.023512890562415123, + -0.017508096992969513, + -0.0010339136933907866, + 9.78722600848414e-05, + -0.031931377947330475, + 0.016283590346574783, + 0.013787479139864445, + 0.021063877269625664, + 0.0002599502040538937, + -0.039160680025815964, + -0.03927842155098915, + -0.025361426174640656, + -0.026609480381011963, + 0.009695976972579956, + -0.0029140913393348455, + -0.005975359119474888, + -0.010997015982866287, + 0.025432070717215538, + -0.028823012486100197, + 0.006899626459926367, + 0.015506498515605927, + -0.024984654039144516, + -6.995475268922746e-05, + 0.028210759162902832, + -0.025078848004341125, + 0.04344645515084267, + -0.0071409959346055984, + 0.006187293212860823, + -0.027315927669405937, + -0.00501871295273304, + 0.02804592251777649, + -0.004268113523721695, + -0.011362013407051563, + 0.021735001355409622, + -0.017684709280729294, + 0.0019206511788070202, + 0.03376813977956772, + -0.02823430858552456, + -0.03461587429046631, + 0.028352048248052597, + 0.0009169085533358157, + -0.010072748176753521, + 0.026279807090759277, + 0.003617594251409173, + 0.010667340829968452, + -0.023948533460497856, + 0.0026712503749877214, + -0.00886001531034708, + -0.018508896231651306, + 0.012256844900548458, + -0.000868340372107923, + 0.005898827686905861, + -0.023877888917922974, + -0.01933308318257332, + -0.003994365688413382, + 0.007588411681354046, + -0.001345191732980311, + 0.02333628013730049, + 0.012951517477631569, + 0.006575838662683964, + -0.01874437741935253, + -0.03770069032907486, + -0.028540434315800667, + 0.011626929976046085, + -0.03423910215497017, + 0.030353646725416183, + -0.012480553239583969, + -0.008077037520706654, + 0.006393339950591326, + 0.009548800997436047, + 0.023854339495301247, + 0.005919432267546654, + -0.004683150909841061, + 0.008159455843269825, + -0.01106766052544117, + 0.0195096954703331, + -0.025008203461766243, + -0.013092806562781334, + 0.007093899417668581, + 0.021534841507673264, + -0.01458811853080988, + 0.0010258191032335162, + 0.033226530998945236, + -0.02729238010942936, + -0.0010339136933907866, + -0.004179807845503092, + -0.01660148985683918, + -0.05044027417898178, + -0.010072748176753521, + 0.02157016284763813, + 0.031083641573786736, + -0.014800052158534527, + -0.014270217157900333, + -0.002453429391607642, + -0.0068407561630010605, + -0.008259535767138004, + 0.0179908350110054, + -0.006411001086235046, + -0.01817922107875347, + 0.010637905448675156, + 0.01303393580019474, + -0.013940542005002499, + -0.01176233310252428, + 0.02420756407082081, + -0.021440647542476654, + 0.0045860144309699535, + -0.007770910393446684, + 0.032779112458229065, + -0.02005130425095558, + 0.006917287595570087, + 0.012445230968296528, + 0.010861613787710667, + 0.013245870359241962, + 0.006552290637046099, + 0.0245843343436718, + -0.0018367606680840254, + -0.0015747867291793227, + -0.03499264642596245, + -0.026868510991334915, + 0.01345780398696661, + -7.036868191789836e-05, + -0.010896936058998108, + 0.023501116782426834, + 0.0316958948969841, + 0.02185274288058281, + -0.021040329709649086, + -0.013775705359876156, + 0.023512890562415123, + -0.011020563542842865, + -0.020757749676704407, + 0.02971784584224224, + 0.01595391519367695, + 0.003935495391488075, + -0.00896009523421526, + -0.004006139934062958, + -0.003985535353422165, + 0.010096296668052673, + -0.0007016632007434964, + 0.01886211894452572, + 0.009407510980963707, + -0.030518485233187675, + 0.005012826062738895, + 0.011885960586369038, + 0.002537319902330637, + -0.012315715663135052, + 0.00383247178979218, + 0.005472016055136919, + -0.03626424819231033, + 0.026468191295862198, + 0.014646988362073898, + 0.016165848821401596, + 0.016848746687173843, + -0.009966781362891197, + -0.045165471732616425, + -0.008053489029407501, + 0.02578529343008995, + -0.026750771328806877, + 0.00894832145422697, + -0.053124770522117615, + 0.023100797086954117, + -0.012068459764122963, + 0.016895843669772148, + -0.025290781632065773, + -0.00811824668198824, + 0.050204791128635406, + -0.01912114955484867, + -0.00033041086862795055, + 0.0069584972225129604, + -0.011650478467345238, + -0.008365502581000328, + -0.018402928486466408, + 0.001582145574502647, + -0.006169632077217102, + 0.025549812242388725, + 0.030047520995140076, + -0.018544217571616173, + -0.05076994746923447, + 0.016660360619425774, + -0.009454607963562012, + -0.03857197239995003, + 0.013245870359241962, + 0.014070057310163975, + -0.02023969031870365, + 0.002839031396433711, + -0.00412682443857193, + -0.006670031696557999, + -0.009548800997436047, + -0.011491527780890465, + -0.013116355054080486, + -0.004012026824057102, + 0.0066818054765462875, + -0.02371305041015148, + 0.020428074523806572, + 0.011032338254153728, + 0.03292040154337883, + 0.027268830686807632, + 0.028634628280997276, + 0.012421682476997375, + -0.01482360064983368, + 0.0042946054600179195, + -0.011815316043794155, + 0.016530845314264297, + 0.0011472395854070783, + -0.001792607712559402, + 0.051523491740226746, + 0.005901771131902933, + 0.034474585205316544, + -0.000748023740015924, + 0.02559690736234188, + 0.01397586427628994, + 0.02297128178179264, + 0.0008801145013421774, + -0.010031539015471935, + 0.00670535396784544, + 0.02054581604897976, + -0.019391953945159912, + -0.005937093403190374, + -0.027151091024279594, + -0.0011406166013330221, + 0.005878222640603781, + -0.017861319705843925, + -0.028069470077753067, + -0.042716458439826965, + -0.01968630589544773, + 0.028940754011273384, + -0.00039884785655885935, + 0.01810857653617859, + 0.03555780276656151, + -0.01770825684070587, + -0.007299946155399084, + 0.025832390412688255, + 0.03000042401254177, + -0.03273201733827591, + 0.003920777700841427, + -0.038077462464571, + 0.02185274288058281, + 0.04137421026825905, + 0.016448426991701126, + -0.004038518760353327, + -0.0125276492908597, + 0.012916195206344128, + 0.01345780398696661, + -0.007700265850871801, + 0.02540852315723896, + -0.008288971148431301, + 0.018143897876143456, + 0.0063344696536660194, + -0.010102183558046818, + 0.007623733952641487, + -0.0010375931160524487, + 0.013022162020206451, + 0.03113073855638504, + -0.018085027113556862, + -0.03235524520277977, + 0.02352466620504856, + 0.009725412353873253, + -0.0011921282857656479, + 0.009578235447406769, + -0.0036381990648806095, + -0.043093230575323105, + 0.00788276456296444, + -0.012256844900548458, + 0.010549599304795265, + -0.027221735566854477, + -0.004839157685637474, + -0.009719525463879108, + 0.00896009523421526, + -0.01763761229813099, + 0.036240700632333755, + 0.032779112458229065, + 0.008571549318730831, + 0.013775705359876156, + -0.03256718069314957, + 0.005430806893855333, + -0.033509109169244766, + 0.013245870359241962, + -0.010614356957376003, + 0.053595732897520065, + -0.024537239223718643, + -0.020498719066381454, + -0.03918422758579254, + 0.004371137358248234, + -0.022382577881217003, + -0.023948533460497856, + 0.012351037934422493, + 0.01487069670110941, + -0.021452423185110092, + 0.017390355467796326, + -0.020392753183841705, + 0.01228039339184761, + -0.0010250831255689263, + -0.004347588866949081, + -0.0470728799700737, + -0.0044123465195298195 + ], + "how_to_setup_chemical_plants": [ + -0.018428655341267586, + 0.005811972077935934, + 0.024206819012761116, + -0.012029645033180714, + 0.0006873095408082008, + 0.027169663459062576, + 0.003230239497497678, + -0.012392316944897175, + -0.03963574394583702, + -0.02069074474275112, + 0.030759502202272415, + -0.01164238527417183, + 0.014949462376534939, + -0.01904335245490074, + 0.015379751101136208, + -0.0344231054186821, + -0.0022129137068986893, + 0.06299427896738052, + 0.015084696002304554, + 0.011925146915018559, + 0.040668439120054245, + -0.004579502157866955, + 0.005037452559918165, + -0.0025494610890746117, + -0.003955583553761244, + -0.027636835351586342, + 0.05256899818778038, + 0.04103725776076317, + -0.01308077946305275, + -0.024501873180270195, + 0.048782456666231155, + -0.021059563383460045, + -0.05074949190020561, + 0.0092819444835186, + 0.010351519100368023, + -0.0199654009193182, + 0.02332165278494358, + 0.004216830246150494, + 0.013117661699652672, + 0.010621986351907253, + -0.012945545837283134, + 0.017506606876850128, + -0.014506879262626171, + 0.024526461958885193, + -0.011439534835517406, + -0.0033562525641173124, + -0.028817055746912956, + 0.04460250586271286, + 0.049913499504327774, + -0.028694115579128265, + 0.02011292800307274, + 0.003116520354524255, + -0.01200505718588829, + -0.08989347517490387, + 0.0013077706098556519, + -0.03602131828665733, + -0.03909480944275856, + 0.016867320984601974, + -0.026628728955984116, + -0.03909480944275856, + 0.0343739278614521, + 0.014838816598057747, + 0.03577544167637825, + 0.040275029838085175, + -0.039586570113897324, + -0.009380295872688293, + -0.04002915322780609, + 0.020703038200736046, + 0.021993905305862427, + -0.013793829828500748, + 0.015674805268645287, + 0.022608602419495583, + -0.019289232790470123, + 0.007941901683807373, + 0.012490669265389442, + -0.041233960539102554, + -0.008224663324654102, + 0.0564538910984993, + -0.05625718832015991, + -0.04565978795289993, + -0.05119207128882408, + -0.04371734336018562, + 0.01852700673043728, + -0.03675895556807518, + -0.009023770689964294, + -0.0475284717977047, + -0.02370276488363743, + -0.006706358399242163, + -0.06756763160228729, + -0.04910209774971008, + -0.018428655341267586, + 0.011789913289248943, + -0.0006350601906888187, + 0.008876243606209755, + 0.05468355864286423, + 0.013117661699652672, + 0.029898924753069878, + 0.021366912871599197, + -0.007093618158251047, + 0.020678449422121048, + 0.030071040615439415, + -0.04843822494149208, + -0.04091431573033333, + -0.01131659559905529, + 0.04312723129987717, + 0.017445137724280357, + 0.016068212687969208, + 0.02487069182097912, + -0.020703038200736046, + -0.03732448071241379, + -0.028571175411343575, + -0.01942446641623974, + 0.03223477676510811, + 0.0038357172161340714, + 0.006583418697118759, + -0.010290049016475677, + -0.003041219664737582, + -0.0062883635982871056, + 0.01952281780540943, + 0.005944132339209318, + -0.05271652340888977, + 0.0019040278857573867, + 0.008593481965363026, + -0.00878403801470995, + 0.027415543794631958, + 0.005587607156485319, + 0.018539300188422203, + -0.0295792818069458, + -0.002111488487571478, + 0.014469997957348824, + -0.0261369701474905, + 0.0020008429419249296, + 0.00452725263312459, + -0.047848112881183624, + 0.009761408902704716, + -0.013793829828500748, + -0.0067247990518808365, + 0.004219903610646725, + 0.010947776027023792, + 0.012773429974913597, + 0.04922503978013992, + -0.024182230234146118, + -0.013388128951191902, + 0.038750581443309784, + -0.03587379306554794, + 0.009447912685573101, + -0.011593209579586983, + -0.06968219578266144, + -0.0007875821902416646, + 0.009275796823203564, + -0.014728170819580555, + 0.025989443063735962, + -0.008304573595523834, + -0.04624990001320839, + 0.05040526017546654, + -0.028964582830667496, + -0.011248978786170483, + 0.03493944928050041, + 0.018822060897946358, + -0.027489306405186653, + 0.01086786575615406, + -0.001922468887642026, + -0.03808670490980148, + -0.019264644011855125, + -0.017641840502619743, + -0.01735907979309559, + -0.05615883320569992, + -0.00829228013753891, + -0.0619615875184536, + 0.011525592766702175, + -0.028571175411343575, + 0.00048176979180425406, + -0.000236850930377841, + 0.03769329935312271, + -0.008716421201825142, + -0.012195614166557789, + -0.016965672373771667, + -0.021121032536029816, + 0.011150626465678215, + 0.044676270335912704, + 0.03319370746612549, + 0.0075362008064985275, + -0.05984702333807945, + -0.04293052852153778, + 0.04155360534787178, + 0.0048929983749985695, + -0.03427557647228241, + 0.02311265468597412, + -0.00845824833959341, + 0.019719520583748817, + -0.024563344195485115, + 0.022645484656095505, + 0.015465809032320976, + 0.0009005329920910299, + -0.0007276490796357393, + -0.0010772587265819311, + 0.04565978795289993, + -0.0015859216218814254, + 0.0605354867875576, + -0.05148712918162346, + 0.02657955326139927, + 0.024796929210424423, + 0.022915951907634735, + -0.024120761081576347, + -0.027022136375308037, + -0.01735907979309559, + -0.031029969453811646, + 0.013990532606840134, + 0.013658596202731133, + 0.011199803091585636, + -0.007788227405399084, + -0.02265777811408043, + 0.009029917418956757, + 0.045905668288469315, + -0.038332585245370865, + -0.003675895743072033, + -0.0729769766330719, + 0.052372295409440994, + -0.017641840502619743, + -0.043028879910707474, + -0.05414262413978577, + 0.0016304871533066034, + 0.050995368510484695, + -0.023124950006604195, + -0.001750353374518454, + 0.058027517050504684, + -0.00968149770051241, + -0.04787270352244377, + 0.0716492310166359, + -0.0006915355916135013, + -0.014162648469209671, + 0.0020269674714654684, + -0.00623304070904851, + -0.026628728955984116, + 0.017309904098510742, + -0.03761953487992287, + -0.013203718699514866, + -0.0021622010972350836, + -0.012281672097742558, + -0.007800521329045296, + -0.02236272394657135, + -0.011470270343124866, + -0.03221018984913826, + -0.03493944928050041, + 0.04774976149201393, + 0.00898074172437191, + -0.01230625994503498, + -0.07243604212999344, + 0.048856221139431, + 0.012687372975051403, + 0.006193085107952356, + 0.0033562525641173124, + 0.026923784986138344, + -0.022313548251986504, + 0.0033009296748787165, + -0.07622258365154266, + -0.051683831959962845, + -0.02223978377878666, + 0.015392044559121132, + 0.016215739771723747, + 0.008206222206354141, + 0.020371101796627045, + -0.06358438730239868, + 0.016203446313738823, + 0.01176532544195652, + 0.002700062235817313, + 0.007702169474214315, + 0.05606048181653023, + -0.052814874798059464, + -0.055273670703172684, + 0.01221405528485775, + 0.01040069479495287, + 0.01679355651140213, + -0.026874609291553497, + -0.048782456666231155, + -0.02697296068072319, + 0.008046400733292103, + 0.018305715173482895, + -0.011126038618385792, + 0.029087522998452187, + -0.07056736201047897, + -0.04312723129987717, + 0.029554693028330803, + 0.032529834657907486, + -0.03865222632884979, + 0.00878403801470995, + 0.0033132238313555717, + -0.010185550898313522, + 0.02916128560900688, + -0.013289776630699635, + 0.02401011437177658, + 0.025091983377933502, + 0.03127584978938103, + -0.010683456435799599, + 0.0165230892598629, + 0.03179219365119934, + -0.008040253072977066, + 0.009386442601680756, + 0.020875154063105583, + -0.04283217713236809, + 0.00729646859690547, + 0.032161012291908264, + 0.04502050206065178, + 0.03137420117855072, + -0.025497684255242348, + -0.02849741280078888, + 0.035013213753700256, + -0.053601689636707306, + 0.018686827272176743, + 0.014642112888395786, + 0.046323660761117935, + -0.03277571126818657, + 0.07814044505357742, + -0.054831087589263916, + 0.009472500532865524, + 0.020604686811566353, + 0.04445498064160347, + 0.03786541521549225, + -0.03919316083192825, + -0.019510524347424507, + -0.005821192637085915, + -0.027169663459062576, + 0.0756324753165245, + -0.035849202424287796, + -0.003343958640471101, + -0.02532556839287281, + -0.02933340147137642, + -0.020100634545087814, + -0.014334764331579208, + 0.027194252237677574, + -0.005071260966360569, + -0.008654952049255371, + -0.0016566119156777859, + -0.008034106343984604, + -0.015502690337598324, + 0.004597943276166916, + 0.03454604372382164, + 0.011826794594526291, + 0.06623988598585129, + 0.03068573772907257, + -0.013412716798484325, + 0.008070988580584526, + -0.01877288520336151, + 0.026382850483059883, + 0.01029619574546814, + -0.006423597224056721, + 0.013535656034946442, + 0.035849202424287796, + 0.034619808197021484, + 0.028571175411343575, + -0.007314909715205431, + 0.030784089118242264, + -0.07622258365154266, + 0.003961730282753706, + 0.0035775438882410526, + 0.004302888177335262, + -0.02903834730386734, + 0.01439623348414898, + -0.06176488474011421, + -0.01948593556880951, + -0.007234998978674412, + 0.041627366095781326, + -0.01167312078177929, + -0.003875672584399581, + -0.011507151648402214, + 0.024895280599594116, + -0.03110373392701149, + 0.01844094879925251, + 0.018281126394867897, + 0.04556143656373024, + 0.04856116324663162, + 0.025571448728442192, + 0.029702220112085342, + 0.03872599080204964, + -0.03715236485004425, + 0.002567901974543929, + 7.698135596001521e-05, + 0.017248433083295822, + -0.020518628880381584, + 0.0316200777888298, + 0.01562562957406044, + 0.0268500205129385, + 0.017555782571434975, + 0.0003667059354484081, + -0.002761532086879015, + -0.0251165721565485, + -0.011298154480755329, + 0.026751669123768806, + -0.050159379839897156, + 0.005083554890006781, + 0.05055278539657593, + -0.05669976770877838, + 0.03609508275985718, + 0.021932434290647507, + 0.01225708331912756, + 0.0254485085606575, + 0.060486309230327606, + 0.0009174371953122318, + 0.023960938677191734, + 0.025128865614533424, + 0.02221519500017166, + -0.029259638860821724, + -0.017986072227358818, + 0.00577816367149353, + 0.013166837394237518, + -0.0005032842163927853, + -0.008341455832123756, + -0.004130772314965725, + -0.004087743349373341, + -0.011802206747233868, + 0.05074949190020561, + -0.02805482968688011, + 0.02906293421983719, + -0.007099765352904797, + 0.007874284870922565, + -0.030734913423657417, + 0.02244878187775612, + 0.02726801484823227, + -0.02628449909389019, + 0.003571396926417947, + 0.018551593646407127, + 0.0021176356822252274, + 0.03486568480730057, + -0.009693792089819908, + -0.03820964694023132, + 0.023899469524621964, + 0.03744741901755333, + -0.021207090467214584, + -0.017863132059574127, + -0.04895457252860069, + -0.0213423240929842, + 0.036685194820165634, + -0.0038080557715147734, + 0.014211824163794518, + 0.050946194678545, + -0.02290365844964981, + -0.005357095506042242, + -0.03525909408926964, + -0.030193978920578957, + -0.011414946988224983, + -0.014826522208750248, + -0.016510795801877975, + 0.07312450557947159, + 0.004874557256698608, + -0.07194428890943527, + -0.01252755057066679, + -0.005652150604873896, + -0.019977694377303123, + -0.010486752726137638, + 0.01810901053249836, + 0.001099541550502181, + 0.022104550153017044, + -0.010603545233607292, + 0.05478191003203392, + -0.013105367310345173, + 0.031325023621320724, + 0.04585649073123932, + -0.01898188330233097, + 0.027317192405462265, + -0.00615312997251749, + 0.024747753515839577, + 0.06791186332702637, + 0.025792740285396576, + 0.01273654866963625, + -0.023063478991389275, + 0.026407437399029732, + 0.003927921876311302, + -0.000781050999648869, + 0.007769786287099123, + -0.04639742523431778, + -0.005811972077935934, + -0.056208010762929916, + -0.00435513723641634, + -0.01595756784081459, + -0.01729760877788067, + -0.022166019305586815, + 0.004115405026823282, + 0.05079866573214531, + -0.028571175411343575, + -0.03911940008401871, + -0.01396594475954771, + 0.020002281293272972, + -0.025005925446748734, + 0.009079094044864178, + 0.010609691962599754, + 0.08886078000068665, + 0.03176760673522949, + -0.046323660761117935, + -0.07258357107639313, + 0.002146833809092641, + -0.01248452253639698, + -0.005037452559918165, + 0.01739596202969551, + -0.012785724364221096, + 0.009214327670633793, + -0.048659514635801315, + -0.04723341763019562, + -0.04290594160556793, + -0.00016577643691562116, + -0.00186714599840343, + 0.028866231441497803, + -0.004591796081513166, + -0.014900286681950092, + 0.04497132450342178, + -0.023075774312019348, + -0.05409345030784607, + 0.027587659657001495, + 0.02056780457496643, + 0.014052002690732479, + 0.013056191615760326, + 0.004601016640663147, + -0.00155672337859869, + -0.00711820600554347, + 0.021723438054323196, + -0.011144479736685753, + 0.011851382441818714, + 0.006700211204588413, + 0.005191126838326454, + 0.010824836790561676, + 0.03663601726293564, + 0.009656909853219986, + -0.0026739374734461308, + -0.020543215796351433, + 0.050036441534757614, + -0.006254555191844702, + -0.007413261104375124, + -0.006663329433649778, + -0.029898924753069878, + 0.0020730700343847275, + -0.03552956134080887, + 0.03235771879553795, + -0.0043827989138662815, + -0.002733870642259717, + 0.04767599701881409, + -0.05679812282323837, + 0.011248978786170483, + -0.06486295908689499, + -0.026481201872229576, + -0.006964531727135181, + -0.00853201188147068, + -0.025669800117611885, + 0.022338135167956352, + -0.023309359326958656, + 0.03867681697010994, + -0.01349877379834652, + 0.004392019007354975, + 0.005209567956626415, + 0.00872871559113264, + 0.03373464196920395, + 0.020063752308487892, + 0.0018271906301379204, + -0.05133960023522377, + -0.02709590084850788, + -0.0413077250123024, + -0.022829893976449966, + -0.002955161966383457, + -0.019805578514933586, + -0.029357990249991417, + 0.027636835351586342, + -0.032136425375938416, + -0.0006788574391975999, + -0.019203174859285355, + 0.023026596754789352, + -0.001548271276988089, + 0.005563019309192896, + 0.05901103466749191, + 0.06673164665699005, + -0.010259314440190792, + 0.005369389429688454, + -0.0017165449680760503, + -0.019977694377303123, + -0.040545497089624405, + 0.02820235677063465, + -0.07081323862075806, + -0.003725071670487523, + 0.012244789861142635, + -0.0016335606342181563, + -0.013720065355300903, + 0.009687645360827446, + -0.020223572850227356, + -0.01658456027507782, + -0.06319098174571991, + 0.021993905305862427, + 0.010062610730528831, + -0.0419715978205204, + -0.02520263008773327, + 0.00043144135270267725, + 0.016596853733062744, + 0.01248452253639698, + -0.040963493287563324, + -0.03705401346087456, + -0.0026524229906499386, + -0.010081051848828793, + -0.006070145405828953, + -0.008144752122461796, + 0.006466625723987818, + 0.001376924104988575, + 0.023776529356837273, + -0.014015120454132557, + 0.002237501787021756, + -0.02726801484823227, + 0.023629002273082733, + -0.015392044559121132, + 0.044381216168403625, + -0.03260359540581703, + -0.008925419300794601, + -0.006140836048871279, + -0.013584831729531288, + -0.04229124262928963, + 0.02413305453956127, + -0.034742746502161026, + 0.012207907624542713, + -0.020666155964136124, + -0.02401011437177658, + -0.012171026319265366, + 0.013523362576961517, + -0.004960615187883377, + 0.022350428625941277, + -0.0061746444553136826, + -0.034619808197021484, + -0.021649673581123352, + 0.028399061411619186, + -0.023002009838819504, + -0.017137788236141205, + 0.002149907173588872, + -0.01149485819041729, + -0.006632594391703606, + 0.0009489404619671404, + -0.03329205885529518, + 0.007622258737683296, + 0.03053821064531803, + 0.00632524536922574, + -0.017248433083295822, + 0.009472500532865524, + -0.020752213895320892, + -0.0034423102624714375, + 0.02999727614223957, + 0.024710871279239655, + 0.005141951143741608, + 0.01802295446395874, + 0.0027415542863309383, + -0.012896370142698288, + 0.05601130798459053, + -0.012250936590135098, + 0.0018010659841820598, + 0.03484109789133072, + -0.01981787197291851, + 0.040815964341163635, + 0.031079145148396492, + -0.019387584179639816, + -0.030661150813102722, + 0.028964582830667496, + 0.026948371902108192, + 0.004994423594325781, + -0.000606630346737802, + -0.0154903968796134, + -0.013142249546945095, + -0.03742283210158348, + -0.056503064930438995, + 0.0012947082286700606, + -0.05173300579190254, + 0.003102689515799284, + -0.005544578656554222, + 0.017801662907004356, + -0.0061592767015099525, + 0.0053079198114573956, + 0.026899196207523346, + 0.00419224239885807, + 0.00888853706419468, + 0.01796148344874382, + -0.04241418093442917, + 0.014015120454132557, + 0.022141432389616966, + 0.0004010906268376857, + -0.018367184326052666, + 0.0008452101610600948, + -0.002712356159463525, + -0.03410346060991287, + 0.0024972117971628904, + 0.022805307060480118, + -0.01451917365193367, + 0.0076652877032756805, + -0.03498862683773041, + 0.013683184050023556, + 0.02490757405757904, + -0.04084055498242378, + -0.03744741901755333, + 0.023186419159173965, + -0.02257172018289566, + 0.011322742328047752, + 0.00021476020629052073, + -0.0025694388896226883, + -0.026087794452905655, + -0.007560788653790951, + 0.02328477054834366, + -0.014347057789564133, + 0.01486340444535017, + 0.0206538625061512, + -0.01804754137992859, + -0.07509154081344604, + 0.010917041450738907, + -0.04005374014377594, + 0.0024311316665261984, + -0.03314452990889549, + -0.030464446172118187, + -0.0037711740005761385, + -0.011009246110916138, + 0.0026278351433575153, + 0.02864493988454342, + 0.0010104102548211813, + -0.009644616395235062, + 0.012564432807266712, + -0.03754577040672302, + 0.025645213201642036, + -0.02298971638083458, + 0.00773905124515295, + -0.0024080805014818907, + -0.03329205885529518, + 0.016596853733062744, + -0.017998365685343742, + -0.005639856681227684, + 0.0037435125559568405, + -0.026407437399029732, + 0.028448237106204033, + -0.01858847588300705, + 0.016203446313738823, + 0.014359352178871632, + 0.009042211808264256, + 0.0022421120665967464, + 0.0110153928399086, + -0.008341455832123756, + -7.722146983724087e-05, + 0.018121305853128433, + -0.0031072997953742743, + -0.018895825371146202, + 0.011789913289248943, + -0.04221747815608978, + 0.0005735903396271169, + 0.024194523692131042, + -0.007228851784020662, + -0.023542944341897964, + -0.012318553403019905, + 0.0055322847329080105, + -0.0026432026643306017, + 0.0036328667774796486, + -0.018305715173482895, + -0.02879246696829796, + 0.062404170632362366, + -0.04275841265916824, + -0.018072130158543587, + -0.03321829438209534, + 0.008409072645008564, + -0.013597126118838787, + -0.0014307101955637336, + 0.007960342802107334, + 0.002958235563710332, + 0.011507151648402214, + 0.0038910401053726673, + -0.014605231583118439, + 0.009718379937112331, + -0.030218567699193954, + 0.04017667844891548, + -0.01990392990410328, + -0.004130772314965725, + 0.00306427082978189, + -0.0017472798936069012, + 0.015453514643013477, + -0.027587659657001495, + -0.02305118553340435, + -0.013707771897315979, + 0.013535656034946442, + -0.04005374014377594, + 0.01679355651140213, + 0.014187236316502094, + -0.008956153877079487, + -0.03693107143044472, + -0.0161911528557539, + -0.021440675482153893, + -0.003964804112911224, + -0.01939987763762474, + 0.018699122592806816, + -0.02916128560900688, + -0.003983244765549898, + 0.048143170773983, + 0.04499591514468193, + -0.0017349858535453677, + -0.009072946384549141, + 0.028128594160079956, + -0.005427785683423281, + -0.07607506215572357, + -0.048143170773983, + -0.018699122592806816, + 0.022264372557401657, + 0.011205949820578098, + 0.013203718699514866, + 0.00033750777947716415, + -0.014469997957348824, + -0.10680997371673584, + -0.013375834561884403, + 0.012908663600683212, + -0.0405946746468544, + -0.019768696278333664, + -0.011789913289248943, + 0.010886306874454021, + 0.010369960218667984, + 0.023960938677191734, + -0.05601130798459053, + 0.025153454393148422, + -0.01571168750524521, + -0.010591251775622368, + 0.016510795801877975, + -0.0030980792362242937, + 0.016596853733062744, + 0.046741656959056854, + -0.008765597827732563, + 0.03169384226202965, + -0.006060924846678972, + -0.006392862182110548, + -0.02227666601538658, + 0.01362171396613121, + -0.012539844959974289, + -0.03316912055015564, + 0.009570851922035217, + -0.004419680684804916, + 0.007800521329045296, + 0.014924874529242516, + 0.01685502752661705, + 0.01969493366777897, + 0.05674894526600838, + -0.014125766232609749, + 0.015601042658090591, + -0.020198985934257507, + -0.024182230234146118, + 0.021121032536029816, + 0.040397971868515015, + 0.0003786157176364213, + 0.029751397669315338, + 0.03410346060991287, + 0.018748298287391663, + 0.029013758525252342, + 0.01451917365193367, + 0.030907029286026955, + 0.004136919509619474, + -0.04101267084479332, + -0.008034106343984604, + -0.010812542401254177, + 0.019793285056948662, + 0.02628449909389019, + -0.015379751101136208, + 0.05330663546919823, + 0.01227552443742752, + 0.028817055746912956, + 0.03936527669429779, + -0.04447956755757332, + -0.018760591745376587, + -0.029382577165961266, + -0.014125766232609749, + 0.013302071020007133, + 0.012423052452504635, + -0.002002379624173045, + -0.0209857989102602, + -0.0049483212642371655, + -0.002140686847269535, + -0.033365823328495026, + -0.016117388382554054, + -0.021748024970293045, + -0.009447912685573101, + -0.0007445532828569412, + 0.00883321464061737, + -0.021428382024168968, + 0.022756129503250122, + -0.0030980792362242937, + 0.025067396461963654, + 0.00888853706419468, + -0.020580098032951355, + 0.02248566225171089, + -0.036119669675827026, + 0.030734913423657417, + 0.0392177514731884, + -0.007431702222675085, + 0.012761136516928673, + -0.021182503551244736, + 0.005888809449970722, + -0.016781263053417206, + 0.050700314342975616, + 0.029898924753069878, + 0.040693026036024094, + 0.02987433597445488, + 0.012638196349143982, + -0.021502146497368813, + -0.021366912871599197, + -0.010105639696121216, + 0.020825978368520737, + -0.018723709508776665, + -0.03292324021458626, + 0.011488710530102253, + -0.0015090842498466372, + 0.0012263230746611953, + 0.03154631704092026, + -0.008144752122461796, + 0.007837402634322643, + 0.0316200777888298, + 0.052323117852211, + 0.035972144454717636, + -0.0022083036601543427, + -0.030095627531409264, + -0.031570903956890106, + -0.01173458993434906, + -0.03688189759850502, + 0.010369960218667984, + 0.04861034080386162, + -0.034201811999082565, + -0.008077135309576988, + -0.011863676831126213, + -0.013203718699514866, + -0.0024634033907204866, + -0.0015905317850410938, + -0.0027953404933214188, + 0.015932979062199593, + -0.032529834657907486, + 0.015342868864536285, + 0.0028445161879062653, + -0.013129955157637596, + -0.002229817910119891, + 0.0096261752769351, + -0.03348876163363457, + -0.011968175880610943, + -0.0036666751839220524, + 0.011703855358064175, + -0.035455796867609024, + 0.02053092233836651, + -0.025546859949827194, + -0.020457157865166664, + 0.026923784986138344, + 0.001273962203413248, + -0.008169339969754219, + 0.006896914914250374, + -0.021625084802508354, + -0.033513348549604416, + -0.014814228750765324, + -2.083010804199148e-05, + 0.013142249546945095, + 0.01790001429617405, + -0.009411030448973179, + 0.008808626793324947, + -0.024354346096515656, + -0.05315910652279854, + 0.0016427811933681369, + 0.001959350658580661, + 0.005304845981299877, + 0.040373384952545166, + -0.08045171201229095, + 0.018883531913161278, + -0.001570554100908339, + -0.05325745791196823, + 0.008335309103131294, + 0.013302071020007133, + -0.04900374636054039, + 0.028448237106204033, + 0.026210734620690346, + -0.0018471683142706752, + -0.020973505452275276, + -0.026210734620690346, + -0.017678722739219666, + 0.005141951143741608, + 0.034619808197021484, + -0.03262818604707718, + -0.021932434290647507, + -0.009742967784404755, + 0.002924427157267928, + 0.01047445833683014, + -0.0021867891773581505, + 0.0110153928399086, + 0.05271652340888977, + -0.0351361520588398, + -0.028939995914697647, + 0.027046725153923035, + -0.017506606876850128, + 0.0033193707931786776, + -0.03975868597626686, + 0.013031603768467903, + 0.02795647829771042, + -0.029505517333745956, + 0.017715604975819588, + 0.025042807683348656, + 0.026948371902108192, + 0.006890767719596624, + 0.02778436243534088, + 0.022805307060480118, + -0.004628677852451801, + -0.0016412443947046995, + -0.002886008471250534, + 0.024046996608376503, + 0.00960773415863514, + 0.00640515610575676, + 0.01228781882673502, + 0.008993036113679409, + 0.041209373623132706, + -0.006823150906711817, + 0.03525909408926964, + -0.007966489531099796, + 0.004702441859990358, + -0.006589565426111221, + -0.019768696278333664, + -0.02397323213517666, + -0.020813683047890663, + 0.046446602791547775, + 0.04349604994058609, + -0.0199408121407032, + -0.01210955623537302, + 0.042315829545259476, + -0.025964856147766113, + 0.008599628694355488, + -0.004431974608451128, + -0.01210955623537302, + -0.018895825371146202, + -0.009472500532865524, + 0.01439623348414898, + -0.05035608261823654, + -0.04189783334732056, + 0.0047239563427865505, + -0.0154781024903059, + 0.03294782713055611, + 0.009509382769465446, + -0.00543393287807703, + 0.015232223086059093, + 0.010800248943269253, + -0.01694108545780182, + 0.013314364477992058, + 0.006927649490535259, + -0.0015628703404217958, + 0.008857802487909794, + -0.028817055746912956, + 0.04738094285130501, + 0.01086786575615406, + -0.0034330899361521006, + -0.020039163529872894, + 0.0016074359882622957, + -0.02059239149093628, + 0.03112832084298134, + 0.005009790882468224, + -0.0072534396313130856, + 0.02699754759669304, + 0.008279985748231411, + 0.002116098767146468, + 0.0213423240929842, + 0.0040262737311422825, + -0.02053092233836651, + 0.0017380593344569206, + -0.0004030115669593215, + -0.01667061820626259, + 0.039979975670576096, + -0.009779850021004677, + 0.02353065088391304, + 0.017973776906728745, + -0.013646301813423634, + -0.012011204846203327, + 0.0011725369840860367, + 0.036414727568626404, + 0.04145525023341179, + 0.023223301395773888, + -0.01660914719104767, + 0.0037435125559568405, + -0.040275029838085175, + -0.007487025111913681, + 0.03961115702986717, + -0.028866231441497803, + -0.013449598103761673, + 0.004856116604059935, + 0.017322197556495667, + -0.0028122446965426207, + 0.01804754137992859, + -0.0026416657492518425, + 0.006528095807880163, + -0.032161012291908264, + -0.00799107737839222, + -0.03248065710067749, + -0.03951280564069748, + 0.016977965831756592, + -0.011083009652793407, + 0.02559603564441204, + 0.011918999254703522, + 0.0003632482548709959, + -0.009558558464050293, + -0.012115702964365482, + -0.001451456337235868, + 0.007683728355914354, + 0.028325296938419342, + 0.0350869782269001, + 0.027046725153923035, + -0.04981514811515808, + -0.0033285911194980145, + -0.008255397900938988, + -0.020076045766472816, + -0.01622803509235382, + -0.023223301395773888, + -0.01466670073568821, + 0.032554421573877335, + -0.020604686811566353, + 0.016387855634093285, + 0.011599356308579445, + 0.005781237501651049, + -0.03690648451447487, + 0.005855001043528318, + -0.03892269358038902, + 0.015969861298799515, + -0.020580098032951355, + -0.010290049016475677, + 0.008716421201825142, + 0.02532556839287281, + 0.02697296068072319, + -0.04187324643135071, + 0.03248065710067749, + 0.01595756784081459, + 0.01568710058927536, + -0.009656909853219986, + 0.004416607320308685, + 0.004699368495494127, + -0.004865336697548628, + 0.03471815958619118, + -0.003565249964594841, + -0.035431209951639175, + 0.0046071638353168964, + 0.008347602561116219, + -0.020789096131920815, + 0.005830413196235895, + 0.0151461660861969, + 0.009810584597289562, + 0.008230810053646564, + -0.037644121795892715, + -0.01342501025646925, + -0.05202806368470192, + 0.03673436865210533, + -0.010050317272543907, + -0.04777435213327408, + -0.0025971003342419863, + 0.0060271164402365685, + 0.01670749858021736, + 0.0003838022530544549, + -0.02257172018289566, + -0.00995196495205164, + -0.01121209654957056, + -0.003047366626560688, + -0.008704127743840218, + 0.016424737870693207, + 0.02409617230296135, + 0.01967034488916397, + 0.06540389358997345, + 0.0003446152259130031, + -0.038627639412879944, + -0.0038295702543109655, + 0.02795647829771042, + 0.0034330899361521006, + 0.016363268718123436, + -0.0012562896590679884, + -0.03326747193932533, + -0.05217558890581131, + -0.018699122592806816, + 0.01883435621857643, + 0.04661871865391731, + -0.0111936554312706, + 0.00969993881881237, + 0.003897187067195773, + -0.03658684343099594, + -0.009816731326282024, + 0.00883321464061737, + -0.007450143340975046, + 0.015072401612997055, + -0.00017874273180495948, + -0.015072401612997055, + 0.014150354079902172, + 0.0330461785197258, + 0.004336696583777666, + 0.031202085316181183, + -0.00854430627077818, + 0.014138060621917248, + 0.011507151648402214, + -0.0005221093306317925, + -0.045241791754961014, + 0.05822421982884407, + 0.01754348911345005, + -0.013228306546807289, + -0.008986888453364372, + 0.006116247735917568, + -0.021243972703814507, + -0.017285315319895744, + 0.02313724346458912, + -0.02215372584760189, + 0.0343739278614521, + 0.0027307970449328423, + 0.01873600296676159, + 0.026456613093614578, + 0.030464446172118187, + 0.03289865329861641, + -0.002523336559534073, + -0.022743836045265198, + -0.005470814649015665, + 0.02589109167456627, + -0.009915083646774292, + 0.02562062442302704, + -0.032849475741386414, + 0.006644888315349817, + -0.031718432903289795, + -0.018367184326052666, + -0.023395417258143425, + 0.01781395636498928, + 0.01521992962807417, + -0.025792740285396576, + -0.003279415424913168, + -0.005166538991034031, + 0.0019024912035092711, + 0.00047485443064942956, + 0.007585376966744661, + 0.010708044283092022, + 0.006380568258464336, + -0.025091983377933502, + -0.0041983891278505325, + -0.005894956644624472, + -0.006982972379773855, + -0.004468856379389763, + 0.0357508510351181, + 0.0032394600566476583, + 0.009515529498457909, + -0.0010349982185289264, + -0.023813411593437195, + -0.02023586817085743, + -0.005068187136203051, + -0.026628728955984116, + -0.03326747193932533, + -0.03761953487992287, + 0.006067072041332722, + 0.0007011402049101889, + 0.01694108545780182, + 0.027882713824510574, + 0.004628677852451801, + -0.013314364477992058, + -0.000966613064520061, + -0.027710597962141037, + -0.0022789938375353813, + 0.03316912055015564, + 0.008341455832123756, + 0.014998638071119785, + 0.010369960218667984, + -0.021452970802783966, + 0.02338312193751335, + -0.030489034950733185, + -0.005713620688766241, + 0.026259910315275192, + -0.03894728422164917, + 0.021711142733693123, + 0.0063867149874567986, + -0.02751389518380165, + 0.0151338716968894, + -0.0378900021314621, + -0.006236114073544741, + -0.004926806781440973, + 0.006921502761542797, + 0.0025771225336939096, + -0.02173573151230812, + 0.050183966755867004, + 0.009767555631697178, + -0.020137514919042587, + 0.014297882094979286, + -0.02008833922445774, + -0.0010019581532105803, + 0.0066141532734036446, + -0.021637380123138428, + -0.005181906279176474, + 0.0047208829782903194, + 0.015010932460427284, + -0.005885736085474491, + -0.003949436359107494, + 0.010124080814421177, + -0.005126583855599165, + -0.0009712232858873904, + -0.024501873180270195, + -0.020125221461057663, + 0.030931618064641953, + 0.016178859397768974, + -0.01601903699338436, + -0.011710002087056637, + 0.008900831453502178, + -0.02876788005232811, + -0.013720065355300903, + 0.010830983519554138, + -0.014162648469209671, + 0.012220202013850212, + 0.0005766638205386698, + 0.011267419904470444, + 1.3674635738425422e-05, + -0.00953397061675787, + 0.04101267084479332, + 0.003728145034983754, + -0.009435618296265602, + -0.028399061411619186, + -0.014469997957348824, + -0.00020880531519651413, + 0.010081051848828793, + -0.013609419576823711, + -0.00042183668119832873, + 0.01625262200832367, + 0.012576727196574211, + -0.0196088757365942, + -0.011230537667870522, + -0.009742967784404755, + 0.010560516268014908, + -0.03265277296304703, + 0.01156862173229456, + -0.008212368935346603, + 0.007234998978674412, + -0.012177173048257828, + -0.008058694191277027, + 0.026063207536935806, + -0.011371918022632599, + -0.015859216451644897, + 0.0048346021212637424, + -0.004997496958822012, + -0.001839484553784132, + -0.014088884927332401, + -0.007880431599915028, + 0.0029321108013391495, + 0.009042211808264256, + -0.008255397900938988, + 0.003506853710860014, + 0.045340146869421005, + -0.048143170773983, + -0.013929063454270363, + -0.0020761433988809586, + 0.022067667916417122, + 0.005458520725369453, + -0.002716966439038515, + -0.03565249964594841, + 0.010105639696121216, + -0.013326658867299557, + 0.0021099518053233624, + 0.014076590538024902, + -0.0158100388944149, + -0.02603861875832081, + 0.007782080210745335, + 0.0010680382838472724, + -0.024563344195485115, + 0.04229124262928963, + 0.015846921131014824, + -0.01308077946305275, + 0.008925419300794601, + -0.00968149770051241, + -0.0018932707607746124, + 0.010996952652931213, + -0.017949189990758896, + -0.0302923321723938, + -0.03961115702986717, + -0.0031810635700821877, + -0.007204263936728239, + -0.001124897855333984, + 0.021981609985232353, + 0.012084968388080597, + 0.0006911513628438115, + -0.02140379324555397, + -0.019055645912885666, + -0.002374272095039487, + -0.0015628703404217958, + -0.020899740979075432, + 0.012189466506242752, + -0.042463358491659164, + 0.006595712620764971, + 0.01279801782220602, + 0.011630091816186905, + 0.0007349486113525927, + 0.004788499791175127, + 0.056650593876838684, + 0.0364639014005661, + -0.008193927817046642, + 0.016006743535399437, + 0.009447912685573101, + -0.02793188951909542, + 0.0015590285183861852, + -0.008575040847063065, + 0.009146710857748985, + 0.020039163529872894, + -0.030316919088363647, + 0.036537665873765945, + 0.003937142435461283, + -0.010210138745605946, + 0.016117388382554054, + -0.023960938677191734, + -0.022817600518465042, + 0.009872054681181908, + -0.009245062246918678, + 0.008034106343984604, + -0.021157914772629738, + 0.0011256661964580417, + 0.00035191475762985647, + -0.030611975118517876, + 0.014900286681950092, + -0.01265049073845148, + 0.007825109176337719, + -0.02200619876384735, + -0.004398166202008724, + 0.005996381863951683, + -0.0018056761473417282, + -0.019326113164424896, + -0.0034945597872138023, + -0.0018348743906244636, + 0.006989119574427605, + -0.026923784986138344, + -0.00027411701739765704, + -0.017469724640250206, + -0.0026862313970923424, + 0.00872871559113264, + -0.04322558268904686, + -0.02107185684144497, + 0.0008959227707237005, + 0.013756947591900826, + -0.004379725083708763, + 0.018342597410082817, + -0.0019762548618018627, + 0.003844937775284052, + 0.013265188783407211, + 0.0023281697649508715, + -0.007351791486144066, + 0.011353476904332638, + -0.034226398915052414, + 0.005879588890820742, + 0.021170208230614662, + -0.021354617550969124, + 0.021305441856384277, + -0.034767333418130875, + 0.023665884509682655, + -0.04715965315699577, + 0.008525865152478218, + -0.009214327670633793, + 0.024194523692131042, + -0.008931566029787064, + -0.016412444412708282, + 0.033955931663513184, + 0.007511612959206104, + 0.02820235677063465, + 0.02879246696829796, + -0.011580915190279484, + -0.0018702194793149829, + -0.01493716798722744, + 0.022608602419495583, + 0.009908935986459255, + 0.023014303296804428, + -0.023493768647313118, + 0.010197844356298447, + -0.004315182100981474, + 0.015527278184890747, + 0.008138605393469334, + 0.02697296068072319, + 0.018145892769098282, + 0.008255397900938988, + 0.02236272394657135, + 0.019018765538930893, + 0.014052002690732479, + -0.02415764331817627, + 0.011156774125993252, + -0.0001316799025516957, + 0.002484917873516679, + -0.025350157171487808, + -0.01598215475678444, + -0.016326386481523514, + -0.0096261752769351, + -0.015256810933351517, + -0.011968175880610943, + -0.011169067583978176, + 0.02834988385438919, + 0.029800573363900185, + -0.013929063454270363, + 0.028571175411343575, + -0.03068573772907257, + 0.017260728403925896, + -0.0041000377386808395, + -0.0050804815255105495, + -0.009835172444581985, + -0.0016443178756162524, + -0.020321926102042198, + 0.030857853591442108, + 0.019498229026794434, + 0.02251025103032589, + -0.0025310202036052942, + -0.0013984385877847672, + -0.03811129182577133, + -0.0028276119846850634, + -0.02461251989006996, + 0.008402925916016102, + -0.00883321464061737, + -0.011648532003164291, + -0.005166538991034031, + -0.040668439120054245, + 0.0244281105697155, + 0.010554369539022446, + 0.010019581764936447, + 0.04278299957513809, + -0.0017273022094741464, + 0.006202305667102337, + 0.02388717606663704, + 0.032972414046525955, + 0.010124080814421177, + -0.013056191615760326, + 0.006989119574427605, + -0.0358000285923481, + -0.006060924846678972, + -0.02137920632958412, + 0.012761136516928673, + -0.00013648222375195473, + 0.02876788005232811, + 0.033783815801143646, + 0.03112832084298134, + 0.01424870640039444, + -0.0036236464511603117, + 0.02469857782125473, + -0.0003363552095834166, + 0.02353065088391304, + -0.0770585760474205, + 0.00409389054402709, + -0.015232223086059093, + 0.002019283827394247, + 0.02559603564441204, + 0.05763411149382591, + -0.02903834730386734, + 0.005679812282323837, + -0.019854754209518433, + -0.05143795162439346, + -0.017727898433804512, + -0.004318255465477705, + 0.01766642928123474, + 0.03314452990889549, + -0.02338312193751335, + -0.01272425428032875, + -0.010412989184260368, + 0.030857853591442108, + -0.009048358537256718, + -0.04848739877343178, + -0.02724342793226242, + 0.017285315319895744 + ], + "how_to_setup_crude_oil_production": [ + -0.05060022696852684, + 0.01827920787036419, + 0.028108475729823112, + 0.0020736525766551495, + 0.025399524718523026, + 0.0014313638675957918, + -0.009425411000847816, + -0.020366840064525604, + 0.01624128222465515, + -0.0026514793280512094, + 0.06869304180145264, + 0.0021047184709459543, + -0.03668268024921417, + 0.005480034742504358, + 0.03849693015217781, + 0.006008155643939972, + -0.03233344480395317, + 0.04612673074007034, + 0.014451882801949978, + 0.01871413178741932, + 0.028928617015480995, + -0.03056889958679676, + -0.010065369307994843, + -0.024778205901384354, + 0.02000647597014904, + -0.028754647821187973, + 0.03407314047217369, + 0.05880163982510567, + -0.00019076438911724836, + -0.010257978923618793, + 0.047617897391319275, + -0.01629098691046238, + -0.054029908031225204, + 0.046101879328489304, + 0.014687983319163322, + -0.031165366992354393, + 0.005473821423947811, + 0.014116370119154453, + 0.003117468673735857, + 0.013569609262049198, + -0.006530063692480326, + -0.02290182188153267, + -0.048512596637010574, + 0.010910363867878914, + -0.018614720553159714, + 0.021833153441548347, + -0.015955474227666855, + 0.011121612042188644, + 0.050475966185331345, + 0.051842864602804184, + -0.00859284307807684, + 0.011214809492230415, + -0.05900046229362488, + -0.04202602431178093, + 0.004759304225444794, + -0.04205087572336197, + -0.026940396055579185, + 0.006188338156789541, + -0.010636983439326286, + -0.034445930272340775, + 0.026965249329805374, + 0.024455120787024498, + 0.011003561317920685, + 0.01978280022740364, + -0.021261539310216904, + 0.010972495190799236, + -0.043691158294677734, + 0.04393968731164932, + -0.024256298318505287, + 0.025548642501235008, + -0.0021621903870254755, + 0.018813543021678925, + -0.016750764101743698, + 0.024144461378455162, + 0.02444269321858883, + -0.0417526438832283, + -0.035290926694869995, + 0.03583768755197525, + -0.027238629758358, + -0.03317844122648239, + -0.0338246114552021, + -0.04684746265411377, + -0.045405998826026917, + -0.03454534336924553, + 0.006617048289626837, + -0.044362183660268784, + -0.050898462533950806, + -0.013482624664902687, + -0.03034522570669651, + -0.051842864602804184, + -0.003342696698382497, + 0.038173846900463104, + 0.006349881179630756, + 0.05517313629388809, + 0.04046029970049858, + -0.01954669877886772, + 0.015334155410528183, + -0.020093459635972977, + 0.0006535500288009644, + 0.03886972367763519, + 0.02877950109541416, + -0.043641455471515656, + -0.030196107923984528, + -0.02616996131837368, + 0.05522284284234047, + 0.005029578227549791, + -0.013544756919145584, + 0.04515747353434563, + -0.019273318350315094, + -0.04525688290596008, + -0.06531306356191635, + -0.014700409956276417, + 0.035514600574970245, + 0.02927655726671219, + 0.006318815518170595, + 0.04252307862043381, + -0.00835674162954092, + 0.018179796636104584, + 0.0324825644493103, + -0.013693872839212418, + -0.0794791430234909, + -0.013892695307731628, + 0.015135333873331547, + -0.024952175095677376, + 0.04925817996263504, + -0.0120846563950181, + 0.014551293104887009, + 0.016005180776119232, + -0.01888810098171234, + 0.02572261169552803, + -0.0598454549908638, + 0.0241693127900362, + 0.04612673074007034, + -0.031115660443902016, + 0.008394021540880203, + -0.05164404585957527, + -0.013246523216366768, + 0.007598732598125935, + 0.013992106541991234, + 0.01496136374771595, + 0.02726348303258419, + -0.07083037495613098, + -0.032432857900857925, + 0.021944990381598473, + -0.03280564770102501, + 0.009661512449383736, + -0.038820017129182816, + -0.060143690556287766, + -0.00604232819750905, + -0.006505210883915424, + -0.020304707810282707, + -0.00826354417949915, + -0.030022138729691505, + -0.0333772636950016, + -0.01693715900182724, + -0.04137985408306122, + -0.015209891833364964, + 0.05651518702507019, + -0.024790631607174873, + -0.015185038559138775, + -0.038571491837501526, + -0.00015901886217761785, + -0.013072554022073746, + 0.00467853294685483, + -0.027014954015612602, + -0.016875026747584343, + -0.028058771044015884, + -0.015980327501893044, + -0.04647466912865639, + 0.0685439258813858, + -0.015619962476193905, + -0.00044812640408053994, + -0.0005875348579138517, + 0.029798464849591255, + -0.01917390711605549, + -0.01916148141026497, + -0.06635688245296478, + -0.001285353908315301, + 0.004746878053992987, + 0.003265031846240163, + 0.03501754626631737, + 0.013954827561974525, + -0.05661459639668465, + -0.04515747353434563, + 0.022616015747189522, + 0.01586849056184292, + -0.009133391082286835, + 0.044561006128787994, + 0.005921171046793461, + 0.01713598147034645, + 0.019310597330331802, + -0.006697820033878088, + -0.0032060067169368267, + -0.004989192355424166, + 0.017695168033242226, + 0.000948288303334266, + 0.022553883492946625, + 0.030071845278143883, + 0.072122722864151, + -0.01784428395330906, + 0.02443026751279831, + 0.04376571625471115, + 0.028332151472568512, + -0.020068606361746788, + -0.00924522802233696, + 0.018415898084640503, + 0.0022942207287997007, + 0.013159538619220257, + 0.03725429251790047, + -0.03494298830628395, + -0.00571302929893136, + -0.039913538843393326, + 0.028058771044015884, + 0.016117017716169357, + 0.01824192889034748, + -0.03253226727247238, + -0.011500616557896137, + 0.06501483172178268, + -0.0676492229104042, + -0.038571491837501526, + -0.0283570047467947, + 0.02858067862689495, + 0.0010438160970807076, + 0.009220375679433346, + 0.02532496675848961, + 0.03183639049530029, + 0.022081680595874786, + -0.03973957151174545, + 0.10597218573093414, + -0.007033332251012325, + -0.0021062716841697693, + 0.03556430712342262, + 0.01297314278781414, + -0.01718568615615368, + 0.03101624920964241, + -0.01365659385919571, + 0.007076824549585581, + 0.008070935495197773, + -0.02972390688955784, + -0.04560482129454613, + -0.003951589576900005, + -0.027014954015612602, + -0.047195401042699814, + -0.024306003004312515, + 0.012482301332056522, + 0.0035912245512008667, + -0.007573879789561033, + -0.04461071267724037, + 0.03434652090072632, + -3.3371631502632226e-07, + 0.035961948335170746, + -0.02507643960416317, + -0.01438975054770708, + 0.0038086860440671444, + 0.0035632650833576918, + -0.03409799188375473, + -0.012861305847764015, + 0.020130738615989685, + -0.026269372552633286, + 0.017906416207551956, + 0.04182720184326172, + 0.0471208430826664, + -0.07575122267007828, + 0.017906416207551956, + -0.025424377992749214, + -0.01693715900182724, + 0.04416336119174957, + -0.013606888242065907, + -0.01670105755329132, + -0.01374357845634222, + -0.009754709899425507, + 0.04314439743757248, + 0.035986803472042084, + -0.015346582047641277, + -0.037279147654771805, + 0.0006958774174563587, + 0.03583768755197525, + -0.0421999953687191, + -0.028655236586928368, + -0.0137311527505517, + -0.020578088238835335, + -0.029748758301138878, + 0.043492335826158524, + 0.0824117660522461, + -0.02922685071825981, + -0.012848879210650921, + -0.013842989690601826, + 0.0414295569062233, + 0.008872437290847301, + -0.012134362012147903, + 0.017968548461794853, + 0.007648438215255737, + 0.01539628766477108, + -0.009599380195140839, + 0.03978927433490753, + -0.0011494403006508946, + -0.017086274921894073, + -0.013507477007806301, + 0.017048995941877365, + -0.04247337579727173, + -0.011848554946482182, + 0.01778215356171131, + 0.012718401849269867, + 0.0017723127966746688, + -0.06600894033908844, + -0.03307902812957764, + 0.0480155423283577, + -0.08280941098928452, + 0.006598408799618483, + -0.030966544523835182, + 0.024243870750069618, + -0.012059804052114487, + 0.051146987825632095, + -0.04575394093990326, + 0.0015898002311587334, + 0.019024791195988655, + 0.01583121158182621, + 0.01673833653330803, + -0.041479263454675674, + -0.022367488592863083, + -0.04371601343154907, + -5.873407189938007e-06, + 0.041678085923194885, + -0.021609477698802948, + -0.0018328913720324636, + -0.04393968731164932, + -0.022491751238703728, + -0.01891295425593853, + -0.030419783666729927, + 0.032681386917829514, + -0.0001105753835872747, + 0.04137985408306122, + -0.009872760623693466, + 0.005613618064671755, + -0.030270667746663094, + -0.007263220380991697, + 0.013072554022073746, + 0.01365659385919571, + 0.027661126106977463, + -0.024939749389886856, + -0.057956647127866745, + 0.0009110091486945748, + 0.03012154996395111, + -0.0035477320197969675, + 0.011115399189293385, + -0.0028316618409007788, + 0.02681613340973854, + 0.025548642501235008, + -0.010469227097928524, + 0.020528383553028107, + 0.021671609953045845, + 0.04406395182013512, + -0.05571989715099335, + 0.027412598952651024, + -0.004051000811159611, + 0.02265329472720623, + -0.014215781353414059, + 0.005017151590436697, + -0.03986383229494095, + -0.003802472958341241, + -0.026915544643998146, + 0.044585857540369034, + -0.017670314759016037, + -0.011960392817854881, + -0.016402823850512505, + 0.014986217021942139, + -0.021186981350183487, + -0.02684098482131958, + 0.002548961667343974, + 0.02636878378689289, + 0.05696253478527069, + 0.05880163982510567, + 0.023709537461400032, + 0.005539059638977051, + -0.0439893938601017, + -0.006853149738162756, + -0.008039869368076324, + 0.02748715691268444, + 0.003386189229786396, + 0.05298609286546707, + 0.027586568146944046, + 0.006536277011036873, + 0.008338102139532566, + 0.008636335842311382, + -0.023013660684227943, + 0.005194227676838636, + 0.03735370561480522, + -0.018291635438799858, + -0.022479325532913208, + 0.013619314879179, + 0.018353765830397606, + -0.06098868325352669, + 0.016551941633224487, + 0.010251765139400959, + 0.010873083956539631, + -0.021671609953045845, + 0.04538114741444588, + 0.008157920092344284, + 0.017471494153141975, + 0.05388079211115837, + -0.005318491719663143, + -0.0002807585697155446, + -0.02421901933848858, + -0.010170993395149708, + 0.0378507599234581, + 0.03302932530641556, + -5.9365098422858864e-05, + -0.027188925072550774, + -0.026468193158507347, + -0.015570256859064102, + 0.017496345564723015, + -0.027362894266843796, + 0.027984213083982468, + -0.014203354716300964, + 0.03581283241510391, + -0.0008783898665569723, + 0.04239881783723831, + -0.022479325532913208, + -0.02203197591006756, + 0.01955912634730339, + -0.01846560463309288, + 0.008108214475214481, + 0.013880268670618534, + -0.0082324780523777, + 0.0006982073537074029, + 0.052489038556814194, + 0.05017773061990738, + -0.035763129591941833, + -0.015011069364845753, + -0.04687231406569481, + 0.01297314278781414, + 0.002830108627676964, + -0.039913538843393326, + 0.021261539310216904, + 0.05601813271641731, + -0.02179587446153164, + 0.017297523096203804, + 0.011457124724984169, + -0.04421306774020195, + 0.00622251071035862, + -0.005414796061813831, + -0.006834510248154402, + 0.01244502142071724, + 0.006691606715321541, + -0.07719268649816513, + 0.024542104452848434, + 0.017732447013258934, + -0.028207886964082718, + -0.05303579941391945, + 0.05517313629388809, + 0.006940134335309267, + -0.006946347653865814, + -0.008126853965222836, + 0.03123992495238781, + -0.00527189252898097, + -0.0015043688472360373, + 0.03196065500378609, + 0.002072099130600691, + 0.004091386217623949, + -0.01507320161908865, + 0.014687983319163322, + 0.03163756802678108, + -0.001266714301891625, + 0.03690635412931442, + 0.009984598495066166, + 0.03173698112368584, + -0.013470198027789593, + 0.02768597938120365, + -0.012556859292089939, + -0.0035756914876401424, + 0.0009366385638713837, + -0.038795165717601776, + 0.0025738144759088755, + 0.0005661770119331777, + 0.0017956122756004333, + -0.03322814777493477, + 0.021820727735757828, + 0.0339488759636879, + -0.03894428163766861, + -0.05676371231675148, + -0.016875026747584343, + -0.008437513373792171, + -0.05164404585957527, + 0.013594462536275387, + 0.024306003004312515, + 0.04997890815138817, + 0.022131387144327164, + -0.011587601155042648, + -0.0665557011961937, + -0.015943048521876335, + -0.01762061007320881, + 0.006029902026057243, + 0.05010317265987396, + -0.012811600230634212, + 0.03300447016954422, + -0.02354799397289753, + -0.034868426620960236, + -0.039515893906354904, + 0.030196107923984528, + 0.04046029970049858, + 0.005607404746115208, + -0.009344639256596565, + -0.01419092807918787, + 0.010363603010773659, + 0.0035694781690835953, + -0.033327557146549225, + 0.02131124585866928, + 0.038397520780563354, + 0.018552588298916817, + 0.006135526113212109, + -0.0022880076430737972, + 0.009170670062303543, + 0.0117802107706666, + 0.012935863807797432, + 0.007145169656723738, + 0.03690635412931442, + -0.0015043688472360373, + 0.000996440532617271, + 0.050227437168359756, + 0.024517251178622246, + 0.009158243425190449, + -0.01340806670486927, + 0.007542814128100872, + 0.03342696651816368, + -0.021696463227272034, + -0.018776264041662216, + -0.05194227769970894, + -0.005753415171056986, + 0.02400777116417885, + -0.02703980728983879, + 0.018428325653076172, + -0.012345611117780209, + 0.03849693015217781, + 0.033750053495168686, + -0.04316925257444382, + 0.002753996988758445, + -0.04749363288283348, + -0.05219080671668053, + -0.012923437170684338, + -0.00527189252898097, + -0.019273318350315094, + 0.020130738615989685, + -0.05964663624763489, + 0.0009529481758363545, + -0.019273318350315094, + 0.0338246114552021, + 0.017098702490329742, + -0.007232154253870249, + 0.005765841342508793, + 0.024765780195593834, + 0.029301408678293228, + -0.006623261608183384, + -0.04272190108895302, + -0.007803767919540405, + -0.006778591312468052, + 0.0035663717426359653, + -0.01297314278781414, + -0.03235829994082451, + 0.021646758541464806, + -0.019062070176005363, + 0.01962125673890114, + 0.021870432421565056, + 0.036434151232242584, + -0.008126853965222836, + 0.01253200601786375, + 0.08867466449737549, + 0.03432166576385498, + 0.006933921482414007, + 0.023684684187173843, + -0.039292220026254654, + 0.017980974167585373, + -0.018999937921762466, + 0.0043585533276200294, + -0.03365064412355423, + 0.03079257532954216, + 0.013184391893446445, + 0.017682742327451706, + -0.00018260956858284771, + 0.031538158655166626, + 0.010444373823702335, + -0.027014954015612602, + -0.051097285002470016, + 0.004162838216871023, + -0.003954696003347635, + -0.02328704111278057, + -0.01564481481909752, + -0.0005743318470194936, + 0.006054754834622145, + 0.005082390271127224, + -0.03782590851187706, + -0.0430946946144104, + -0.005933597683906555, + -0.031090809032320976, + -0.004162838216871023, + -0.04197631776332855, + 0.04391483590006828, + -0.009220375679433346, + 0.002155977301299572, + -0.027139218524098396, + -0.011575175449252129, + -0.04987949877977371, + -0.008425086736679077, + -0.01624128222465515, + 0.030867133289575577, + -0.006523850839585066, + -0.024243870750069618, + -0.013669020496308804, + -0.0041255587711930275, + -0.031314484775066376, + 0.009263867512345314, + 0.0019757947884500027, + -0.030693164095282555, + -0.005470714531838894, + 0.0008543137810193002, + 0.004162838216871023, + 0.011450910940766335, + -0.006092033814638853, + 0.03588739037513733, + 0.004743771627545357, + -0.05062508210539818, + -0.03148845210671425, + -0.008294610306620598, + -0.025548642501235008, + 0.03360093757510185, + 0.00017930881585925817, + 0.020279856398701668, + -0.013867842964828014, + 0.013954827561974525, + -0.0024883830919861794, + 0.01494893804192543, + 0.01779457926750183, + 0.02577231638133526, + -0.01673833653330803, + 0.013147111982107162, + -0.019869785755872726, + -0.013333507813513279, + 0.020081033930182457, + -0.00666054105386138, + 0.022839689627289772, + -0.020578088238835335, + -0.03459504619240761, + 0.0065114242024719715, + 0.03342696651816368, + -0.0048928880132734776, + 0.01057485118508339, + 0.04751848429441452, + -0.026269372552633286, + 0.046946872025728226, + 0.03725429251790047, + -0.02793450653553009, + -0.010257978923618793, + 0.0351666621863842, + 0.029823318123817444, + -0.013333507813513279, + 0.025548642501235008, + -0.01519746519625187, + -0.025921432301402092, + -0.022603590041399002, + -0.06412012875080109, + 0.009941105730831623, + -0.040609415620565414, + 0.03648385778069496, + -0.024977028369903564, + -0.014874379150569439, + -0.013880268670618534, + 0.009854121133685112, + 0.001905896351672709, + 0.003609864041209221, + 0.015657242387533188, + 0.006561129819601774, + -0.0062038712203502655, + 0.0009708111174404621, + -0.006337455008178949, + 0.006213190965354443, + 0.0195964053273201, + 0.011898260563611984, + -0.013060127384960651, + -0.0549246110022068, + 0.003136108163744211, + 0.035315778106451035, + -0.02460423670709133, + 0.005750308278948069, + -0.03034522570669651, + 0.026294223964214325, + 0.022143812850117683, + -0.013669020496308804, + -0.020515957847237587, + 0.01827920787036419, + -0.02489004284143448, + -0.000326386681990698, + -0.017198113724589348, + 0.009823055006563663, + 0.006492784712463617, + -0.007368844468146563, + 0.025188276544213295, + 0.028978323563933372, + 0.0006842276779934764, + 0.012128149159252644, + -0.03715488314628601, + -0.07590034604072571, + 0.0026840984355658293, + -0.022156238555908203, + -0.0019897744059562683, + -0.01851530931890011, + -0.049804940819740295, + 0.010835804976522923, + 0.016452530398964882, + 0.02269057370722294, + 0.03586253896355629, + -0.007828621193766594, + -0.02111242339015007, + 0.003021164098754525, + -0.0414295569062233, + 0.029574789106845856, + -0.008773026056587696, + 0.03678208962082863, + -0.029997287318110466, + -0.03780105337500572, + 0.016191575676202774, + -0.008555564098060131, + 0.02285211719572544, + -0.002994758076965809, + -0.03670753166079521, + 0.01673833653330803, + -0.03616077080368996, + -0.006641901098191738, + 0.012184067629277706, + -0.011513043195009232, + -0.0078161945566535, + 0.02526283450424671, + -0.0003568701504264027, + -0.003501133294776082, + 0.020988158881664276, + -0.005703709553927183, + 0.0020379265770316124, + -0.00041667211917228997, + -0.035116955637931824, + 0.010487866587936878, + 0.015570256859064102, + -0.006306388881057501, + -0.003010291140526533, + -0.010717754252254963, + 0.02639363519847393, + -0.00936327874660492, + 0.03297961875796318, + -0.010295257903635502, + 0.018341340124607086, + 0.030966544523835182, + -0.006722672842442989, + -0.0018235716270282865, + -0.020764485001564026, + 0.008785451762378216, + -0.007101677358150482, + 0.010183420032262802, + 0.01001566369086504, + -0.0026701188180595636, + 0.01057485118508339, + 0.0038086860440671444, + -0.02245447225868702, + -0.01297314278781414, + -0.019509419798851013, + 0.027536863461136818, + -0.03012154996395111, + 0.0006399586563929915, + 0.007915605790913105, + -0.00903397984802723, + 0.0031407680362462997, + 0.002752443542703986, + 0.018825968727469444, + -0.032855354249477386, + 0.02223079837858677, + 0.0083443159237504, + 0.023920785635709763, + 0.0013389426749199629, + -0.008164132945239544, + -0.02306336537003517, + 0.022094108164310455, + -0.009512395597994328, + -0.010686689056456089, + -0.038596343249082565, + -0.003367549506947398, + -0.024355709552764893, + -0.016638925299048424, + 0.03725429251790047, + 0.025150997564196587, + -0.0083443159237504, + -0.019907064735889435, + 0.026294223964214325, + -0.018117664381861687, + -0.026940396055579185, + 0.007797554600983858, + -0.044088803231716156, + 0.02179587446153164, + 0.022379914298653603, + 0.04538114741444588, + -0.00654870318248868, + 0.0055111004039645195, + -0.09856606274843216, + -0.019198760390281677, + 0.0106618357822299, + -0.02748715691268444, + -0.013457772321999073, + 0.02352314069867134, + -0.010394669137895107, + 0.024330856278538704, + 0.027213776484131813, + -0.03867090120911598, + -0.0048959944397211075, + -0.022367488592863083, + -0.03849693015217781, + 0.02641848847270012, + 0.009487543255090714, + -0.0025054693687707186, + 0.023697109892964363, + 0.009344639256596565, + 0.007213514763861895, + -0.011115399189293385, + -0.0016713483491912484, + -0.029525084421038628, + 0.024529678747057915, + 0.005691282916814089, + -0.01892537996172905, + 0.032035212963819504, + 0.036583270877599716, + -0.01580635830760002, + -0.0042001171968877316, + 0.024914896115660667, + 0.0204911045730114, + 0.024542104452848434, + 0.012786746956408024, + 0.00616348534822464, + -0.011767784133553505, + 0.002079865662381053, + -0.007076824549585581, + 0.02795935980975628, + 0.010823379270732403, + -0.006266003008931875, + -0.013867842964828014, + 0.005371303763240576, + 0.016353119164705276, + 0.03360093757510185, + 0.05263815447688103, + 0.046101879328489304, + -0.011693225242197514, + -0.012786746956408024, + -0.03320329263806343, + 0.036409299820661545, + 0.04955641180276871, + -0.039491042494773865, + 0.023361599072813988, + 0.009922466240823269, + 0.012010098434984684, + 0.02815818227827549, + -0.013482624664902687, + -0.016166722401976585, + -0.012401529587805271, + -0.03389916941523552, + 0.019086923450231552, + 0.019745521247386932, + -0.0021202515345066786, + -0.016551941633224487, + -0.006554916501045227, + 0.011320434510707855, + 0.0022755812387913465, + -0.0213236715644598, + -0.002388971857726574, + -0.022578736767172813, + 0.0013397192815318704, + -0.0117802107706666, + 0.013283802196383476, + 0.020093459635972977, + 0.00545207504183054, + -0.012177854776382446, + 0.01625370793044567, + -0.02503916062414646, + 0.020366840064525604, + -0.03258197382092476, + 0.0037496609147638083, + 0.018627146258950233, + 0.0016775615513324738, + 0.015582683496177197, + 0.0029667988419532776, + -0.006996053270995617, + -0.013283802196383476, + 0.007188661955296993, + 0.02532496675848961, + 0.028307298198342323, + 0.01671348325908184, + 0.008971847593784332, + -0.015309303067624569, + -0.04304498806595802, + -0.0054986742325127125, + -0.010021877475082874, + -0.0006721896352246404, + -0.009605593048036098, + 0.00036735492176376283, + 0.0016573687316849828, + -0.011283154599368572, + 0.013830563053488731, + 0.003976442385464907, + 0.024479972198605537, + -0.015955474227666855, + 0.049158766865730286, + 0.03916795551776886, + 0.001394861377775669, + 0.0023610126227140427, + -0.04155382141470909, + 0.007002266589552164, + -0.005141415633261204, + -0.0032308592926710844, + 0.021013012155890465, + -0.0164649561047554, + -0.008928355760872364, + -0.020068606361746788, + -0.0031236817594617605, + -0.028878912329673767, + 0.013470198027789593, + 0.002493042964488268, + 0.026045696809887886, + -0.013258949853479862, + 0.01583121158182621, + -0.00346385408192873, + -0.01978280022740364, + 0.022069254890084267, + 0.04252307862043381, + -0.024343281984329224, + 0.0184780303388834, + 0.023461010307073593, + 0.004218756686896086, + -0.05830458551645279, + 0.021075144410133362, + -0.03939163312315941, + -0.008157920092344284, + 0.05263815447688103, + 0.024293577298521996, + 0.0008403341053053737, + -0.030022138729691505, + -0.022504178807139397, + -0.03514180704951286, + -0.01580635830760002, + 0.04110647365450859, + -0.014315192587673664, + 0.01916148141026497, + -0.0005075400695204735, + 0.031563010066747665, + -0.02684098482131958, + -0.041230734437704086, + -0.004137985408306122, + -0.0052035474218428135, + -0.01133907400071621, + 0.007449616212397814, + -0.06819598376750946, + -0.004765517544001341, + -0.02726348303258419, + -0.02113727666437626, + 0.004656786564737558, + 0.020727206021547318, + -0.007629798725247383, + 0.013606888242065907, + 0.003948483150452375, + 9.552781557431445e-05, + 0.01888810098171234, + -0.024529678747057915, + 0.014526440761983395, + 0.012451235204935074, + 0.014799821190536022, + -0.04466041922569275, + -0.022367488592863083, + 0.028207886964082718, + -0.005703709553927183, + 0.010369815863668919, + 0.0016729016788303852, + -0.006033008452504873, + 0.042995281517505646, + -0.024939749389886856, + -0.040137212723493576, + 0.0015230084536597133, + -0.0019183227559551597, + 0.016663778573274612, + -0.01340806670486927, + 0.008940782397985458, + 0.03675723820924759, + -0.012066016905009747, + 0.011531682685017586, + 0.023274613544344902, + -0.0018173584248870611, + 0.015122907236218452, + 0.03325299918651581, + 0.04597761482000351, + 0.02310064435005188, + -0.014215781353414059, + -0.008630122058093548, + 0.0369560606777668, + -0.009655298665165901, + 0.009537247940897942, + -0.016837747767567635, + 0.028033917769789696, + 0.0326068252325058, + 0.0022880076430737972, + 0.03315358608961105, + -0.0007191768963821232, + 0.010226912796497345, + -0.022702999413013458, + -0.012097083032131195, + 0.005914957728236914, + -0.032905060797929764, + 0.030270667746663094, + 0.003743447596207261, + 0.0017195006366819143, + -0.020590515807271004, + 0.0027213776484131813, + -0.03186124563217163, + -0.00719487527385354, + -0.0036999552976340055, + -0.021435508504509926, + -0.012861305847764015, + -0.047642748802900314, + -0.00488667469471693, + -0.05062508210539818, + -0.025138571858406067, + -0.020739631727337837, + -0.0014888359000906348, + 0.044734977185726166, + 0.018602294847369194, + -0.009462689980864525, + 0.02352314069867134, + -0.0058932118117809296, + -0.010313897393643856, + 0.014464308507740498, + -0.011140251532196999, + 0.028282444924116135, + 0.022268077358603477, + -0.017856711521744728, + 0.021174555644392967, + 0.007331565488129854, + 0.007542814128100872, + -0.036831796169281006, + 0.010668049566447735, + -0.013470198027789593, + 0.026667015627026558, + -0.023237334564328194, + 0.008394021540880203, + 0.022578736767172813, + 0.038198698312044144, + -0.004849395714700222, + 0.04418821632862091, + -0.016589220613241196, + -0.044983502477407455, + 0.016104592010378838, + 0.015706947073340416, + -0.03986383229494095, + 0.04155382141470909, + -0.023585272952914238, + 0.013234096579253674, + -0.023274613544344902, + -0.044585857540369034, + -0.015060774981975555, + -0.001867063925601542, + 0.03054404817521572, + 0.027785390615463257, + 0.009593167342245579, + 0.007797554600983858, + 0.00272603752091527, + -0.02246689982712269, + -0.010226912796497345, + 0.017471494153141975, + -0.03941648453474045, + 0.025871727615594864, + -0.026120254769921303, + -0.011966605670750141, + 0.024368135258555412, + 0.010096435435116291, + -0.019869785755872726, + -0.0019757947884500027, + -0.02269057370722294, + -0.012208920903503895, + -0.04200117290019989, + -0.004405152518302202, + -0.015135333873331547, + -0.006474145222455263, + 0.004858715459704399, + -0.020540809258818626, + -0.01849045604467392, + 0.010394669137895107, + -0.009388132020831108, + 0.008443726226687431, + 0.018316486850380898, + 0.024542104452848434, + 0.04381542280316353, + 0.024939749389886856, + -0.03601165488362312, + -0.03161271661520004, + -0.011258302256464958, + -0.01519746519625187, + -0.004955019801855087, + -0.02659245766699314, + -0.024293577298521996, + 0.013457772321999073, + -0.023672258481383324, + -0.010394669137895107, + 0.006996053270995617, + -0.0006057861028239131, + 0.009928679093718529, + 0.0016729016788303852, + -0.00789696630090475, + 0.0003788104804698378, + -0.022777559235692024, + -0.017048995941877365, + 0.009170670062303543, + 0.037080325186252594, + 0.031985506415367126, + 0.012003885582089424, + 0.02112484909594059, + -0.04229940474033356, + -0.0002784286334645003, + -0.04242366924881935, + -0.0073564182966947556, + -0.004392725881189108, + 0.00577205466106534, + 0.062380436807870865, + -0.013693872839212418, + 0.002300434047356248, + -0.03670753166079521, + -0.009108537808060646, + 0.006530063692480326, + 0.012494727037847042, + 0.030618606135249138, + 0.009847908280789852, + 0.0016014500288292766, + -0.03280564770102501, + -0.003061549970880151, + -0.047841571271419525, + 0.018316486850380898, + -0.0024775099009275436, + -0.0053868368268013, + -0.012786746956408024, + 0.0030071844812482595, + 0.018627146258950233, + 0.01716083288192749, + -0.00923280231654644, + -0.018577441573143005, + -0.034843575209379196, + -0.006592195946723223, + -0.0035570519976317883, + -0.026766426861286163, + 0.055769603699445724, + 0.01528444979339838, + 0.07311683148145676, + -0.020739631727337837, + -0.03389916941523552, + -0.0064368657767772675, + -0.0013847649097442627, + -0.02114970237016678, + 0.028878912329673767, + -0.013308655470609665, + 0.0025940071791410446, + -0.04973038285970688, + -0.015185038559138775, + 0.012488514184951782, + 0.050699640065431595, + 0.005290532018989325, + 0.008114427328109741, + -0.03790046647191048, + -0.04033603519201279, + -0.0014166075270622969, + 0.017956122756004333, + -0.011680799536406994, + 0.014464308507740498, + 0.008816517889499664, + 0.00789696630090475, + -0.013544756919145584, + -0.004923954140394926, + -0.0012441915459930897, + 0.004725131671875715, + -0.02290182188153267, + 0.007977737113833427, + 0.003320950549095869, + 0.011233449913561344, + -0.01650223508477211, + 0.059248991310596466, + 0.005933597683906555, + 0.009419198147952557, + 0.009226588532328606, + 0.018105238676071167, + -0.02994758076965809, + -0.022578736767172813, + 0.027760537341237068, + -0.018540162593126297, + 0.036806944757699966, + 0.0242314450442791, + -0.02287697046995163, + 0.030022138729691505, + 0.00981062836945057, + 0.04287101700901985, + -0.01738450862467289, + -0.011239662766456604, + 0.010059156455099583, + 0.027238629758358, + 0.02114970237016678, + -0.0025241088587790728, + -0.027387745678424835, + 0.001963368384167552, + -0.04861200600862503, + -0.02288939617574215, + 0.0027058448176831007, + -0.011084333062171936, + 0.01805553399026394, + -0.0339488759636879, + 0.01199145894497633, + -0.004709599073976278, + 0.0215473473072052, + 0.005101029761135578, + -0.02329946681857109, + -0.012382890097796917, + 0.005243933293968439, + 0.007219728082418442, + 0.01585606299340725, + 0.007772702258080244, + 0.02198226936161518, + 0.009835481643676758, + 0.03347667306661606, + 0.014464308507740498, + -0.024504825472831726, + 0.0018561908509582281, + -0.025896580889821053, + -0.009096112102270126, + -0.00815170630812645, + -0.03481872379779816, + -0.033501528203487396, + -0.039913538843393326, + 0.008064721710979939, + 0.00048812382738105953, + 0.018552588298916817, + 0.03869575262069702, + 0.01671348325908184, + 0.02265329472720623, + -0.016638925299048424, + 0.0009607146494090557, + -0.0012783640995621681, + 0.0301464032381773, + 0.005722349043935537, + 0.007536600809544325, + 0.012544432654976845, + -0.009046406485140324, + 0.027586568146944046, + -0.04928303137421608, + -0.00692770816385746, + 0.03235829994082451, + -0.014476735144853592, + 0.027810243889689445, + 0.01713598147034645, + -0.004799690097570419, + 0.003818006021901965, + 0.0007036438910290599, + 0.005427222233265638, + 0.021708888933062553, + 0.037726495414972305, + 0.01507320161908865, + -0.0019897744059562683, + 0.034396227449178696, + -0.0310411024838686, + -0.0015121353790163994, + -0.0018204649677500129, + -0.03633474186062813, + 0.0193727295845747, + -0.003072422929108143, + -0.02641848847270012, + -0.004492137115448713, + 0.029748758301138878, + 0.0173596553504467, + -0.0029217530973255634, + -0.016564367339015007, + -0.012401529587805271, + 0.03613591939210892, + -0.009823055006563663, + -0.004169051069766283, + 0.005958450026810169, + 0.055073726922273636, + 0.04140470549464226, + -0.019459715113043785, + -0.02177102118730545, + 0.003895670874044299, + -0.00015882469597272575, + -0.04200117290019989, + 0.015893341973423958, + 0.00429642153903842, + -0.0001335836132057011, + -0.018776264041662216, + 0.010444373823702335, + 0.00461640115827322, + -0.011239662766456604, + 0.052936386317014694, + -0.00846857950091362, + 0.01867685280740261, + -0.030295519158244133, + -0.022504178807139397, + 0.020205296576023102, + 0.02880435436964035, + -0.005734775215387344, + 0.006182125303894281, + 0.01650223508477211, + 0.005287425592541695, + -0.025474082678556442, + -0.025237983092665672, + -0.010289044119417667, + 0.044536154717206955, + -0.045629676431417465, + 0.009630446322262287, + -0.013929974287748337, + 0.013818137347698212, + 0.00790939200669527, + -0.012563072144985199, + 0.0023516928777098656, + 0.03360093757510185, + 0.026791280135512352, + -0.00793424528092146, + -0.019857358187437057, + -0.010624556802213192, + -0.005188014358282089, + -0.01244502142071724, + 0.0028704942669719458, + 0.025250408798456192, + -0.018863247707486153, + 0.020988158881664276, + 0.015259597450494766, + -0.047170545905828476, + -0.008033656515181065, + -0.01916148141026497, + 0.01232697069644928, + 0.02444269321858883, + -0.016340693458914757, + -0.020515957847237587, + 0.04644981771707535, + 0.017744874581694603, + 0.001472526346333325, + 0.03613591939210892, + -0.003069316502660513, + -0.041678085923194885, + -0.012457448057830334, + 0.01783185824751854, + -0.015669668093323708, + 0.013780857436358929, + -0.0016791148809716105, + -0.003435894614085555, + -0.021895285695791245, + -0.003126788418740034, + 0.017558477818965912, + 0.00022911142150405794, + -0.0233367457985878, + -0.02950023114681244, + -0.00835052877664566, + -0.0006189891719259322, + -0.019049644470214844, + 0.004905314184725285, + 0.002803702373057604, + -0.0023314999416470528, + -0.006405800115317106, + -0.04550541192293167, + -0.002561388071626425, + -0.008176559582352638, + 0.013184391893446445, + -0.01507320161908865, + -0.01340806670486927, + -0.02616996131837368, + 0.008735747076570988, + 4.744839316117577e-05, + 0.017682742327451706, + -0.011301795020699501, + -0.006964987143874168, + 0.03347667306661606, + 0.021708888933062553, + -0.000560352171305567, + 0.021286392584443092, + 0.052489038556814194, + -0.00015668891137465835, + 0.000474144151667133, + -0.018316486850380898, + -0.011655946262180805, + 0.0078099812380969524, + -0.02728833444416523, + 0.038596343249082565, + 0.003998188301920891, + -0.016228854656219482, + -0.0024138246662914753, + 0.008810305036604404, + -0.0004419132019393146, + 0.007505534682422876, + 0.003541518934071064, + 0.009661512449383736, + 0.016800468787550926, + 0.007884539663791656, + 0.018130091950297356, + -0.008785451762378216, + 0.03054404817521572, + -0.02067749947309494, + 0.0011913793860003352, + -0.02397049032151699, + 0.022939100861549377, + 0.022814838215708733, + 0.0093508530408144, + -0.028456415981054306, + 0.004094493109732866, + 0.0013940847711637616, + 0.030196107923984528, + -0.021013012155890465, + -0.016812894493341446, + -0.018415898084640503, + -0.017707593739032745, + 0.021634330973029137, + 0.007598732598125935, + 0.003473173826932907, + -0.01716083288192749, + -0.0030056312680244446, + 0.0064989980310201645, + 0.03755252808332443, + -0.01099113468080759, + 0.0063436683267354965, + -0.0014771862188354135, + -0.03255712240934372, + -0.0010562425013631582, + 0.018540162593126297, + -0.015098053961992264, + 0.040385741740465164, + 0.0250640120357275, + -0.01850288361310959, + 0.014899232424795628, + -0.029997287318110466, + -0.006517637521028519, + -0.04195146635174751, + 0.008033656515181065, + 0.0009172223508358002, + 0.035514600574970245, + -0.011152678169310093, + -0.045654527842998505, + 0.04376571625471115, + 0.029649347066879272, + 0.010680475272238255, + 0.04110647365450859, + -0.0028596213087439537, + -0.012295905500650406, + -0.025474082678556442, + 0.02329946681857109, + -0.005486247595399618, + 0.01887567527592182, + -0.006244257092475891, + 0.002635946264490485, + -0.007306712679564953, + 0.023038512095808983, + -0.010879297740757465, + 0.0027772963512688875, + 0.018304061144590378, + 0.01609216444194317, + -0.00013096242037136108, + 0.011575175449252129, + 0.013271376490592957, + -0.011593814939260483, + 0.0069712004624307156, + 0.007188661955296993, + -0.0409822091460228, + 0.017459066584706306, + 0.011134038679301739, + 0.00044463149970397353, + -0.01012128870934248, + -0.0004096822813153267, + -0.025138571858406067, + -0.030071845278143883, + 0.0028316618409007788, + 0.03849693015217781, + -0.011742930859327316, + 0.03894428163766861, + -0.006722672842442989, + 0.012370463460683823, + -0.03688150271773338, + -0.011469550430774689, + -0.029375966638326645, + -0.014998643659055233, + -0.03954074904322624, + 0.041653234511613846, + 0.012047377415001392, + 0.009468902833759785, + -0.003087955992668867, + 0.017061423510313034, + -0.02152249403297901, + -0.0008403341053053737, + -0.008300823159515858, + 0.011276941746473312, + -0.003417255124077201, + -0.003991975449025631, + -0.004336807411164045, + 0.020515957847237587, + -0.008717106655240059, + 0.031115660443902016, + -0.007455829530954361, + 0.03188609704375267, + 0.009369492530822754, + 0.024803059175610542, + -0.004880461376160383, + 0.021746167913079262, + -0.007791341748088598, + -0.020528383553028107, + 0.03141389414668083, + -0.010997348465025425, + -0.012718401849269867, + -0.001261277822777629, + 0.008984274230897427, + 0.011631093919277191, + 0.008884862996637821, + -0.012693549506366253, + 0.036384448409080505, + -0.01808038540184498, + -0.0006201541400514543, + 0.03889457508921623, + 0.017670314759016037, + 0.017968548461794853, + -0.032656531780958176, + -0.002510129241272807, + -0.0382981114089489, + -0.0215473473072052, + 0.002713611116632819, + 0.06948833167552948, + -0.006828296929597855, + 0.024989454075694084, + -0.018825968727469444, + -0.015943048521876335, + 0.011152678169310093, + 0.0072073014453053474, + -0.012612777762115002, + 0.018154945224523544, + -0.03648385778069496, + -0.006909068673849106, + -0.007573879789561033, + 0.028307298198342323, + 0.009816842153668404, + -0.05169374868273735, + -0.016390398144721985, + 0.019646110013127327 + ], + "how_to_setup_oil_refineries": [ + -0.04332489147782326, + 0.009703230112791061, + 0.021400701254606247, + -0.016277994960546494, + -0.013984616845846176, + 0.02911592274904251, + -0.014096792787313461, + -0.005290971137583256, + -0.014719992876052856, + 0.0013367647770792246, + 0.052298977971076965, + -0.02064039744436741, + 0.0017979331314563751, + 0.005459235515445471, + 0.024180175736546516, + -0.013249239884316921, + -0.00468023493885994, + 0.07822411507368088, + 0.02629905566573143, + 0.024678735062479973, + 0.045842621475458145, + -0.044022876769304276, + -0.02639876864850521, + 0.004533782601356506, + -0.002416459610685706, + -0.0214131660759449, + 0.04659046232700348, + 0.04988095909357071, + -0.028592433780431747, + -0.03150901198387146, + 0.024491775780916214, + -0.026099631562829018, + -0.038588568568229675, + 0.007515796460211277, + -0.01337388064712286, + -0.03479950875043869, + 0.023943359032273293, + -0.011173983104526997, + 0.01840933971107006, + 0.02831822633743286, + -0.008861909620463848, + 0.011242534965276718, + -0.014695065096020699, + 0.02515236847102642, + -0.011423262767493725, + 0.029614482074975967, + -0.027744881808757782, + 0.027719954028725624, + 0.058331556618213654, + -0.0053844512440264225, + 0.00518502714112401, + -0.008718573488295078, + -0.022734349593520164, + -0.10419910401105881, + -0.012650967575609684, + -0.05155113711953163, + -0.03425109386444092, + 0.020378652960062027, + -0.008089140988886356, + -0.02255985327064991, + 0.021039245650172234, + 0.021974045783281326, + 0.04073237627744675, + 0.04182920977473259, + -0.04452143609523773, + -0.006861436180770397, + -0.02441699057817459, + 0.04594233259558678, + 0.016888730227947235, + 0.010793830268085003, + 0.0029321578331291676, + 0.026249200105667114, + -0.007166804280132055, + 0.013286632485687733, + 0.02709675207734108, + -0.04010917618870735, + -0.017761211842298508, + 0.056038178503513336, + -0.03968540206551552, + -0.048235710710287094, + -0.05972752347588539, + -0.05065372586250305, + 0.011759791523218155, + -0.03966047242283821, + 0.013685480691492558, + -0.0370679572224617, + -0.03487429395318031, + -0.006780420430004597, + -0.04671509936451912, + -0.045842621475458145, + -0.024716127663850784, + 0.006085551809519529, + 0.005864315666258335, + 0.019630812108516693, + 0.060226086527109146, + -0.02237289398908615, + 0.018608763813972473, + 0.008637557737529278, + 0.009628445841372013, + 0.028592433780431747, + 0.011354710906744003, + -0.04292604327201843, + -0.0460171177983284, + 6.942841719137505e-05, + 0.05135171115398407, + 0.017025833949446678, + 0.017998026683926582, + 0.029539698734879494, + -0.01673916168510914, + -0.042327769100666046, + -0.04260198026895523, + -0.01681394688785076, + 0.05249840021133423, + 0.0009028615895658731, + 0.008232477121055126, + 0.017599178478121758, + -0.012520095333456993, + -0.01792324334383011, + 0.010694118216633797, + -0.0220488291233778, + -0.06336701661348343, + -0.02233550138771534, + 0.008681181818246841, + -0.0035335461143404245, + 0.037915512919425964, + 0.005213071126490831, + 0.013810120522975922, + -0.006291207857429981, + -0.011903127655386925, + 0.018770795315504074, + -0.0357966311275959, + 0.023245373740792274, + 0.01744960993528366, + -0.04930761456489563, + -0.014208968728780746, + -0.02560107223689556, + -0.01806034706532955, + 0.0010929376585409045, + 0.030187826603651047, + 0.005213071126490831, + 0.03285512328147888, + -0.051301855593919754, + -0.04576783627271652, + 0.020789964124560356, + -0.029489843174815178, + 0.008170156739652157, + -0.029764050617814064, + -0.07647915184497833, + 0.001514376956038177, + -0.011516743339598179, + -0.01163515169173479, + 0.006942452397197485, + -0.027719954028725624, + -0.05090300738811493, + 0.043025754392147064, + -0.010775134898722172, + -0.01196544710546732, + 0.028816785663366318, + -0.012052695266902447, + 0.010806295089423656, + -0.007758844643831253, + 0.013673016801476479, + -0.05170070379972458, + 0.003120675915852189, + -0.014233896508812904, + -0.008905533701181412, + -0.048011358827352524, + -0.017624106258153915, + -0.07024715095758438, + 0.03709288686513901, + -0.010488462634384632, + -0.00011879757221322507, + 0.005817575845867395, + 0.03013797104358673, + 0.0011825227411463857, + -0.020254012197256088, + -0.008999013341963291, + 0.002117323223501444, + 0.006493748165667057, + 0.0159788578748703, + 0.026598192751407623, + -0.00792710855603218, + -0.047537725418806076, + -0.06491255015134811, + 0.015368121676146984, + 0.005378219299018383, + -0.028268368914723396, + 0.03093566745519638, + 0.0005686703370884061, + 0.031010450795292854, + 0.011940519325435162, + 0.011865735054016113, + -0.011865735054016113, + 0.011198910884559155, + -0.0025987455155700445, + 0.021774621680378914, + 0.02153780497610569, + 0.010743974708020687, + 0.03754159063100815, + -0.037566520273685455, + 0.030088115483522415, + 0.017885850742459297, + 0.038239575922489166, + -0.006425195839256048, + -0.009672069922089577, + -0.0039510903880000114, + -0.015031592920422554, + -0.004907703027129173, + 0.018097739666700363, + -0.005437423475086689, + 0.0005636068526655436, + -0.05404393747448921, + 0.032356563955545425, + 0.05658659338951111, + 0.004409142769873142, + -0.037217527627944946, + -0.032705556601285934, + 0.03958568722009659, + -0.03300469368696213, + -0.054791778326034546, + -0.05658659338951111, + 0.04678988456726074, + 0.03003825806081295, + -0.021076636388897896, + 0.012975032441318035, + 0.044720858335494995, + 0.017773674800992012, + -0.04205356165766716, + 0.07099498808383942, + 0.008020589128136635, + -0.014371001161634922, + 0.017823530361056328, + 0.01843426749110222, + -0.023320158943533897, + 0.054692067205905914, + -0.017075691372156143, + 0.012407919391989708, + -0.010519622825086117, + -0.02413031831383705, + -0.01467013731598854, + -0.03512357547879219, + -0.019406460225582123, + -0.026997040957212448, + -0.036768823862075806, + 0.0033590500243008137, + -0.010874846950173378, + -0.006668244022876024, + -0.060226086527109146, + 0.03198264539241791, + -0.01182211097329855, + 0.0029524117708206177, + 0.01665191352367401, + 0.01639017090201378, + -0.002145367441698909, + 0.008220013231039047, + -0.0687016099691391, + -0.05643702670931816, + -0.0028916497249156237, + -0.007328836712986231, + 0.02272188663482666, + 0.01604117825627327, + 0.03215714171528816, + -0.0680534839630127, + 0.02243521437048912, + -0.005646195728331804, + -0.013186920434236526, + 0.014096792787313461, + 0.05813213065266609, + -0.03946105018258095, + -0.03686853498220444, + 0.0014302448835223913, + 0.026024848222732544, + 0.02186186984181404, + -0.015455369837582111, + -0.0568857304751873, + -0.006394036114215851, + 0.012875320389866829, + 0.005484163295477629, + -0.011890663765370846, + -0.003842030419036746, + -0.03958568722009659, + -0.04307560995221138, + 0.03499893471598625, + 0.06341686844825745, + -0.026697903871536255, + -0.005643079522997141, + -0.010494694113731384, + -0.004452766850590706, + 0.019157180562615395, + -0.010887310840189457, + 0.020852284505963326, + 0.0038357984740287066, + 0.052298977971076965, + -0.01359823253005743, + 0.0332290455698967, + 0.013049815781414509, + 0.01331156026571989, + -0.01943138800561428, + 0.024055534973740578, + -0.031459156423807144, + 0.03661925345659256, + 0.03223192319273949, + 0.005228651221841574, + 0.027844592928886414, + -0.04843513295054436, + -0.0367438942193985, + 0.030462034046649933, + -0.08216273784637451, + 0.019929949194192886, + -0.006624619942158461, + 0.03843899816274643, + -0.02543903887271881, + 0.059577956795692444, + -0.08345899730920792, + 0.003648838261142373, + 0.011485583148896694, + 0.05052908882498741, + 0.018546443432569504, + -0.04798642918467522, + -0.017399754375219345, + -0.026922257617115974, + -0.020079515874385834, + 0.06526154279708862, + -0.014258825220167637, + 0.0019225731957703829, + -0.040857017040252686, + -0.02480337582528591, + -0.011984143406152725, + -0.03664418309926987, + 0.04197877645492554, + 0.0007458929903805256, + 0.03003825806081295, + -0.0215751975774765, + 0.01818498782813549, + -0.03297976404428482, + 0.016477419063448906, + 0.012457775883376598, + 0.019693132489919662, + 0.060226086527109146, + 0.030013330280780792, + -0.03868827968835831, + -0.0003698304935824126, + -0.011242534965276718, + 0.00856277346611023, + 0.027246320620179176, + -0.011367174796760082, + 0.002938389778137207, + 0.03529806807637215, + 0.019954876974225044, + 0.02722139284014702, + -0.01238299161195755, + 0.03876306489109993, + -0.0664580911397934, + 0.008974085561931133, + 0.002899439772590995, + 0.01955602876842022, + -0.02744574472308159, + 0.017586715519428253, + -0.04915804788470268, + -0.006225771736353636, + -0.048111069947481155, + 0.049706462770700455, + -0.006923756096512079, + -0.007652900647372007, + -0.03891263157129288, + 0.024367135018110275, + -0.029539698734879494, + -0.010114542208611965, + 0.00010808631486725062, + 0.0523986890912056, + 0.062070757150650024, + 0.05394422635436058, + 0.0171006191521883, + 0.04339967668056488, + -0.04292604327201843, + -0.004786178935319185, + 0.00668694032356143, + 0.01006468664854765, + -0.013348951935768127, + 0.02968926727771759, + 0.018870508298277855, + 0.010257878340780735, + -0.001432581921108067, + -0.006923756096512079, + -0.021101566031575203, + -0.0158168263733387, + -0.01892036385834217, + 0.009834102354943752, + -0.023120734840631485, + -0.0009161045891232789, + 0.03966047242283821, + -0.05902954190969467, + 0.0308359544724226, + 0.005057271104305983, + 0.03422616422176361, + -0.001523724989965558, + 0.053445667028427124, + 0.0063192518427968025, + 0.028816785663366318, + 0.042552120983600616, + 0.012439079582691193, + -0.016789019107818604, + -0.011940519325435162, + -0.01410925667732954, + 0.012314439751207829, + 0.02000473253428936, + -0.0006668244022876024, + -0.006228887941688299, + 0.0020051472820341587, + 0.0006387804169207811, + 0.04581769183278084, + -0.040857017040252686, + 0.024878159165382385, + -0.007864789105951786, + 0.03150901198387146, + -0.01732497103512287, + 0.035173431038856506, + -0.016477419063448906, + -0.032580915838479996, + 0.0031876699067652225, + 0.009254525415599346, + 0.018459195271134377, + 0.00315183587372303, + -0.012426615692675114, + -0.014557961374521255, + 0.029066065326333046, + 0.046066973358392715, + -0.03265570104122162, + -0.01812266744673252, + -0.04880905523896217, + -0.017312506213784218, + 0.027944305911660194, + -0.025750640779733658, + 0.026772689074277878, + 0.0495319664478302, + -0.025974992662668228, + -0.0005156983388587832, + -0.020540684461593628, + -0.03816479071974754, + 0.003689346369355917, + -0.018845580518245697, + -0.005590107291936874, + 0.030536819249391556, + -0.013386344537138939, + -0.06496240943670273, + 0.012975032441318035, + 0.002447619568556547, + -0.015779433771967888, + -0.012937639839947224, + 0.03275541216135025, + 0.007615508511662483, + 0.012545024044811726, + 0.017649034038186073, + 0.032481204718351364, + -0.00560880359262228, + -0.004783063195645809, + 0.043923161923885345, + -0.008967853151261806, + 0.007740148808807135, + 0.004094426520168781, + 0.009734390303492546, + 0.043599098920822144, + 0.013573304750025272, + 0.024554096162319183, + 0.0005153088131919503, + 0.018097739666700363, + -0.017935706302523613, + -0.0003600929630920291, + 0.00976555049419403, + -0.04397301748394966, + -0.019668204709887505, + -0.054143648594617844, + 0.0034930382389575243, + 0.0033465861342847347, + -0.033154260367155075, + -0.02697211317718029, + 0.008631325326859951, + 0.028193585574626923, + -0.037217527627944946, + -0.04905833303928375, + -0.03255598992109299, + 0.007983196526765823, + -0.026772689074277878, + 0.022996094077825546, + -0.0010952746961265802, + 0.07762584090232849, + 0.020976925268769264, + -0.032132212072610855, + -0.10748960077762604, + -0.011410798877477646, + -0.009827869944274426, + 0.014196504838764668, + 0.013012424111366272, + -0.013174456544220448, + 0.01636524125933647, + -0.045493628829717636, + -0.06546096503734589, + -0.05294710397720337, + -0.00020662987662944943, + 0.016277994960546494, + 0.011915591545403004, + 0.00835711695253849, + -0.008712341077625751, + 0.038613494485616684, + -0.007684060838073492, + -0.02956462651491165, + 0.02176215685904026, + 0.023943359032273293, + 1.6565933037782088e-05, + 0.028019089251756668, + -0.022185934707522392, + 0.0021282292436808348, + 0.007241588551551104, + 0.029315346851944923, + -0.0025893975980579853, + 0.026697903871536255, + 0.015729578211903572, + 0.002136019291356206, + 0.04118108004331589, + 0.021076636388897896, + 0.01594146527349949, + -0.017723819240927696, + -0.005546483676880598, + 0.051750559359788895, + -0.0054467711597681046, + -0.0027374078053981066, + -0.03300469368696213, + -0.013112136162817478, + 0.016190746799111366, + -0.0393114797770977, + 0.030636530369520187, + 0.0013048257678747177, + 0.019481243565678596, + 0.03464994207024574, + -0.053046815097332, + -0.0015439789276570082, + -0.04908326268196106, + -0.04659046232700348, + 0.012407919391989708, + -0.03038725070655346, + -0.019020074978470802, + 0.017599178478121758, + -0.033278901129961014, + 0.027121681720018387, + -0.016253065317869186, + 0.020029660314321518, + -0.006450124084949493, + -0.009890190325677395, + 0.02092706970870495, + 0.04988095909357071, + 0.016888730227947235, + -0.03492414951324463, + -0.027570385485887527, + -0.021300990134477615, + -0.016340313479304314, + -0.004795527085661888, + -0.0025551216676831245, + -0.028293296694755554, + 0.028293296694755554, + -0.019580956548452377, + 0.02956462651491165, + 0.004991834983229637, + 0.023257838562130928, + 0.00021052488591521978, + 0.005294087342917919, + 0.07114455848932266, + 0.06331715732812881, + -0.013124600052833557, + 0.007684060838073492, + -0.014794777147471905, + 0.001668618991971016, + -0.04963167756795883, + 0.036195479333400726, + -0.06052521988749504, + 0.025650927796959877, + 0.012632272206246853, + 0.0032811500132083893, + 0.003904350334778428, + 0.021450556814670563, + -0.01908239535987377, + -0.018297163769602776, + -0.05032966285943985, + 0.00992135051637888, + -0.014358537271618843, + -0.019381532445549965, + -0.026348913088440895, + -0.005770835559815168, + 0.01722525805234909, + 0.028068944811820984, + -0.01620320975780487, + -0.04693945497274399, + 0.0013281957944855094, + -0.01468260120600462, + -0.02086474932730198, + -0.024903086945414543, + 0.023145662620663643, + -0.01444578543305397, + 0.024840766564011574, + -0.015542617999017239, + 0.011547903530299664, + -0.03026260994374752, + 0.015318265184760094, + -0.03153393790125847, + 0.04828556627035141, + -0.03933640941977501, + -0.027071824297308922, + -0.009385397657752037, + -0.003221946069970727, + -0.03138437122106552, + 0.0017558670369908214, + -0.029041137546300888, + -0.01462028082460165, + -0.020827356725931168, + -0.00987149402499199, + -0.008163925260305405, + 0.011722398921847343, + -0.002368161454796791, + 0.028866641223430634, + 0.002245079493150115, + -0.03559720516204834, + -0.029439985752105713, + 0.0231705904006958, + -0.019132252782583237, + -0.0005729548283852637, + 0.0032437581103295088, + -0.0008156134863384068, + 0.006506212055683136, + 0.016003785654902458, + -0.019182108342647552, + 0.016415098682045937, + 0.040981657803058624, + 0.02991361916065216, + -0.004742554854601622, + -0.00798942893743515, + -0.00898031797260046, + 0.014844633638858795, + 0.03380239009857178, + 0.030511891469359398, + 0.014769849367439747, + 0.0033497021067887545, + -0.02687240019440651, + -0.00808290857821703, + 0.04900847747921944, + -0.006618387997150421, + -0.004480810835957527, + 0.04639103636145592, + -0.025463968515396118, + 0.044022876769304276, + 0.027919378131628036, + -0.03173336386680603, + -0.023606831207871437, + 0.030088115483522415, + 0.03412645310163498, + 0.0010391866089776158, + 0.02000473253428936, + 0.0020705831702798605, + -0.005574527662247419, + -0.02533932775259018, + -0.05449264124035835, + -0.011697471141815186, + -0.04467100277543068, + 0.03332875669002533, + -0.020017197355628014, + -0.007752612698823214, + -0.008344653062522411, + 0.01933167688548565, + 0.012058927677571774, + 0.007110716309398413, + 0.01661452278494835, + 0.016190746799111366, + -0.01281300000846386, + -0.002732733730226755, + 0.009746854193508625, + 0.00201293732970953, + -0.015580009669065475, + -0.0018836231902241707, + -0.005995187908411026, + -0.06401514261960983, + -0.012775608338415623, + 0.016377706080675125, + -0.008251173421740532, + 0.006278743967413902, + -0.037915512919425964, + 0.00654360419139266, + 0.03330382704734802, + -0.042552120983600616, + -0.034525301307439804, + 0.00977801438421011, + -0.023382479324936867, + 0.017848460003733635, + -0.007428548764437437, + 0.01716293953359127, + -0.0002860879176296294, + -0.003832682268694043, + 0.027021968737244606, + 0.02515236847102642, + 0.01281300000846386, + 0.013585768640041351, + -0.01904500462114811, + -0.07483389973640442, + 0.018172523006796837, + -0.013423736207187176, + 0.009734390303492546, + -0.0367438942193985, + -0.03928655385971069, + -0.010937166400253773, + 0.014545497484505177, + -0.004296966828405857, + 0.04048309847712517, + -0.010694118216633797, + -0.01718786731362343, + 0.005773951765149832, + -0.026373840868473053, + 0.019256891682744026, + -0.022933773696422577, + 0.02521468698978424, + -0.005356407258659601, + -0.025700783357024193, + 0.021076636388897896, + -0.001057882676832378, + 0.01215863972902298, + -0.003941742237657309, + -0.030013330280780792, + 0.019256891682744026, + -0.017013370990753174, + -0.0015003549633547664, + 0.006736796349287033, + -0.0024990334641188383, + -0.007684060838073492, + 0.016402633860707283, + -0.0008584585157223046, + 0.014308680780231953, + 0.007004772312939167, + -0.007017236202955246, + -0.031907860189676285, + 0.010762671008706093, + -0.03766623139381409, + 0.00013544870307669044, + 0.02307087741792202, + -0.000997899565845728, + -0.0242923516780138, + -0.021425629034638405, + 0.02572571113705635, + -0.02846779301762581, + 0.0013406598009169102, + -0.022310573607683182, + -0.010108310729265213, + 0.058331556618213654, + -0.029988402500748634, + -0.0018649271223694086, + -0.018546443432569504, + 0.008569004945456982, + -0.006724331993609667, + 0.014134184457361698, + 0.01738729141652584, + -0.013797656632959843, + 0.0067430282942950726, + -0.007110716309398413, + -0.03534792736172676, + 0.011049343273043633, + -0.012987496331334114, + 0.02958955429494381, + -0.03617054969072342, + -0.006749260239303112, + 0.002439829520881176, + 0.00776507705450058, + 0.010675422847270966, + -0.0035553581546992064, + 0.0001011726853903383, + -0.011124126613140106, + 0.030736243352293968, + -0.014296216890215874, + 0.014046936295926571, + -0.015368121676146984, + -0.007316372357308865, + -0.03744187951087952, + -0.012482703663408756, + -0.006855204235762358, + -0.015293337404727936, + -0.01796063594520092, + -0.004259574692696333, + -0.03135944530367851, + -0.011878198944032192, + 0.03492414951324463, + 0.045044925063848495, + -0.012887784279882908, + -0.015006665140390396, + 0.020939532667398453, + -0.004028990399092436, + -0.04656553268432617, + -0.027844592928886414, + -0.037117816507816315, + 0.03544763848185539, + 0.012825463898479939, + 0.024392062798142433, + -0.007216660305857658, + -0.024790911003947258, + -0.10330169647932053, + -0.011716167442500591, + 0.01706322655081749, + -0.02664804831147194, + -0.010201790370047092, + 0.0067679560743272305, + 0.010606870986521244, + 0.008494221605360508, + 0.00807044468820095, + -0.03455023095011711, + 0.009622214362025261, + -0.01796063594520092, + -0.023095807060599327, + 0.02192419022321701, + 0.015168697573244572, + 0.012065159156918526, + 0.04055787995457649, + 0.012152407318353653, + 0.019381532445549965, + 0.011018183082342148, + 0.0016748510533943772, + -0.01738729141652584, + 0.029888691380620003, + -0.010170630179345608, + -0.03427601978182793, + 0.038139864802360535, + 0.022609710693359375, + -0.002276239451020956, + 0.003789058420807123, + 0.016602057963609695, + 0.033927030861377716, + 0.04850991815328598, + 0.017275115475058556, + 0.001036849687807262, + 0.005920403636991978, + -0.025264544412493706, + 0.009510037489235401, + 0.03522328659892082, + -0.007042164448648691, + 0.043000828474760056, + 0.005911055486649275, + 0.00510401139035821, + 0.009977438487112522, + 0.021276060491800308, + 0.043349817395210266, + 0.012825463898479939, + -0.01712554693222046, + -0.0010127006098628044, + -0.01789831556379795, + 0.028766930103302002, + 0.019468780606985092, + -0.027844592928886414, + 0.029963474720716476, + 0.0008896185318008065, + 0.02135084569454193, + 0.059677667915821075, + -0.015430441126227379, + -0.03671896830201149, + -0.014084328897297382, + -0.042452409863471985, + 0.00593598373234272, + 0.01223965547978878, + -0.013822584412992, + -0.03437573462724686, + -0.003017847891896963, + 0.0066308518871665, + -0.02070271596312523, + -0.02684747241437435, + -0.014944345690310001, + -0.015168697573244572, + 0.004153630696237087, + -0.008855677209794521, + -0.01201530359685421, + 0.018546443432569504, + -0.011485583148896694, + 0.02115142159163952, + 0.009865262545645237, + -0.018808187916874886, + 0.022634638473391533, + -0.04260198026895523, + 0.009927581995725632, + -0.00124016881454736, + -0.005057271104305983, + 0.015991322696208954, + -0.021998973563313484, + -0.0029524117708206177, + -0.01923196390271187, + 0.020091980695724487, + 0.04639103636145592, + 0.03210728242993355, + 0.028193585574626923, + 0.013747800141572952, + -0.0242923516780138, + -0.04599218815565109, + -0.011971679516136646, + 0.02572571113705635, + -0.026348913088440895, + -0.03106030821800232, + 0.014184040948748589, + -0.008307261392474174, + -0.006045043934136629, + 0.020976925268769264, + -0.029614482074975967, + 0.006475051864981651, + 0.01949370838701725, + 0.05339580774307251, + 0.040183961391448975, + -0.004792410880327225, + -0.014582889154553413, + -0.045393917709589005, + -0.011080502532422543, + -0.03649461641907692, + 0.012975032441318035, + 0.035971127450466156, + -0.017474539577960968, + 0.007272748742252588, + -0.013573304750025272, + -0.02697211317718029, + -0.024205103516578674, + 0.019057467579841614, + -0.011959215626120567, + -0.0006586448871530592, + -0.022709421813488007, + 0.030885811895132065, + 0.005643079522997141, + -0.02709675207734108, + -7.093773456290364e-05, + 0.02051575668156147, + -0.0110244145616889, + 0.013673016801476479, + 0.010245414450764656, + 0.013747800141572952, + -0.07154340296983719, + 0.01904500462114811, + -0.03150901198387146, + 0.007939573377370834, + 0.03826450556516647, + 0.019344139844179153, + -0.008431901223957539, + -0.016539737582206726, + -0.038015224039554596, + -0.041206009685993195, + 0.0005016762879677117, + 0.01266966387629509, + 0.006811580155044794, + 0.025127438828349113, + -0.010606870986521244, + -0.007883484475314617, + -0.02552628703415394, + -0.049482110887765884, + 0.0037952903658151627, + 0.002073699375614524, + 0.002112649381160736, + 0.014022008515894413, + -0.07682814449071884, + 0.0018213031580671668, + -0.011753559112548828, + -0.05115228891372681, + 0.004022758454084396, + 0.012538791634142399, + -0.014283753000199795, + 0.03534792736172676, + 0.021487949416041374, + -0.009927581995725632, + 0.0109433988109231, + -0.026448624208569527, + 0.00036457221722230315, + -0.004296966828405857, + 0.03651954233646393, + -0.051501281559467316, + -0.01824730820953846, + 0.0032873819582164288, + -0.016826409846544266, + 0.003153393976390362, + 0.002958643948659301, + -0.0006995424628257751, + 0.036669109016656876, + -0.02662312053143978, + -0.040059320628643036, + 0.032805267721414566, + 0.0032499900553375483, + -0.00784609280526638, + -0.01703829877078533, + 0.004318778868764639, + 0.026498479768633842, + -0.0236442219465971, + 0.011541671119630337, + 0.032032500952482224, + 0.0018119551241397858, + 0.018646156415343285, + 0.04172949865460396, + 0.038239575922489166, + 0.0042564584873616695, + 0.004331242758780718, + -0.008456829003989697, + 0.03589634224772453, + 0.022709421813488007, + 0.007727684918791056, + -0.009790478274226189, + 0.01728757843375206, + 0.043599098920822144, + -0.0014255709247663617, + 0.03230670839548111, + 0.008394509553909302, + 0.014271289110183716, + -0.02345726266503334, + -0.026348913088440895, + -0.02956462651491165, + -0.03831436112523079, + 0.02607470378279686, + 0.025463968515396118, + -0.019157180562615395, + -0.016701770946383476, + 0.020590540021657944, + -0.0188580434769392, + -0.010775134898722172, + -0.006431427784264088, + -0.017748747020959854, + -0.01196544710546732, + -0.01872093975543976, + 0.0041941385716199875, + -0.06496240943670273, + -0.03684360533952713, + 0.00264081172645092, + -0.004726974759250879, + 0.03437573462724686, + 0.008612629026174545, + -0.0015689069405198097, + 0.008799589239060879, + 0.009915118105709553, + -0.009703230112791061, + 0.028044017031788826, + -0.02041604556143284, + -0.00030049943597987294, + 0.028193585574626923, + -0.026697903871536255, + 0.02846779301762581, + 0.007634204812347889, + 0.0013461128110066056, + -0.04023381695151329, + 0.009198437444865704, + -0.020665325224399567, + 0.013623160310089588, + -0.005219303071498871, + -0.0068302764557302, + 0.022023901343345642, + 0.038389142602682114, + 0.01808527484536171, + 0.03307947516441345, + -0.010906007140874863, + -0.029215633869171143, + 0.010937166400253773, + -0.003913698252290487, + -0.02936520241200924, + 0.03776594251394272, + -0.021226204931735992, + 0.018970219418406487, + -0.0009721926180645823, + -0.023058414459228516, + -0.02489062398672104, + -0.009104957804083824, + 0.046291325241327286, + 0.037367094308137894, + 0.011909359134733677, + 0.0020690253004431725, + 0.0011061807163059711, + -0.03888770565390587, + -0.014046936295926571, + 0.029963474720716476, + -0.04870934411883354, + 0.01639017090201378, + -0.022472605109214783, + 0.013510984368622303, + -0.004103774670511484, + 0.019406460225582123, + -0.00392304640263319, + 0.010326430201530457, + -0.03071131557226181, + -0.010257878340780735, + -0.03923669457435608, + -0.02409292757511139, + 0.005412495229393244, + -0.009460181929171085, + 0.019381532445549965, + -0.0040726144798099995, + -0.0015689069405198097, + -0.003969786688685417, + -0.002492801519110799, + -0.0012666548136621714, + 0.015068985521793365, + 0.03135944530367851, + 0.03856363892555237, + 0.03447544574737549, + -0.062170471996068954, + -0.005178795196115971, + -0.004624146968126297, + -0.01926935650408268, + -0.00560880359262228, + -0.008251173421740532, + -0.02176215685904026, + 0.03863842412829399, + -0.016215674579143524, + 0.0034182542003691196, + 0.000279855914413929, + 0.007559420540928841, + -0.011030646972358227, + 0.015380585566163063, + -0.02441699057817459, + 0.01949370838701725, + -0.027171537280082703, + -0.012950103729963303, + -0.007067092228680849, + 0.02911592274904251, + 0.02441699057817459, + -0.024055534973740578, + 0.03786565735936165, + 0.005415611434727907, + 0.012675896286964417, + -0.030013330280780792, + 0.00654360419139266, + 0.008020589128136635, + -0.0048142229206860065, + 0.03410152345895767, + 0.002287145471200347, + -0.026274127885699272, + -0.013797656632959843, + 0.002762335818260908, + -0.005907939746975899, + 0.00813276506960392, + 0.02259724587202072, + 0.003080167807638645, + 0.001964639173820615, + -0.038015224039554596, + -0.014732456766068935, + -0.04955689609050751, + 0.035173431038856506, + -0.008967853151261806, + -0.025389183312654495, + -0.004306314513087273, + 0.007945804856717587, + 0.01681394688785076, + 0.018496587872505188, + -0.007796236779540777, + -0.013411272317171097, + -0.008762197569012642, + -0.0015611170092597604, + 0.011498047038912773, + 0.0013437758898362517, + 0.045717980712652206, + 0.018608763813972473, + 0.07657886296510696, + -0.004150514490902424, + -0.03716767206788063, + 0.01065672654658556, + 0.014782313257455826, + 0.0011240977328270674, + 0.02854257822036743, + 0.006344180088490248, + -0.010912238620221615, + -0.07264024019241333, + -0.014607816934585571, + 0.013585768640041351, + 0.04741308465600014, + 0.0025037075392901897, + 0.006718100048601627, + -0.00864378921687603, + -0.046091899275779724, + 0.013573304750025272, + 0.008294797502458096, + 0.0055184392258524895, + 0.028766930103302002, + -0.0028916497249156237, + -0.00472074281424284, + 0.011840807273983955, + 0.01974298804998398, + -0.006506212055683136, + 0.0031829960644245148, + -0.028592433780431747, + 0.015044057741761208, + 0.015068985521793365, + 0.0005881453398615122, + -0.040532954037189484, + 0.07099498808383942, + 0.025451503694057465, + -0.007148108445107937, + 0.013573304750025272, + 0.019755452871322632, + -0.009522502310574055, + -0.021712301298975945, + 0.02335754968225956, + -0.008101604878902435, + 0.030885811895132065, + 0.02968926727771759, + 0.0026797617319971323, + 0.027919378131628036, + 0.023095807060599327, + 0.04048309847712517, + -0.0071294126100838184, + -0.02233550138771534, + -0.012139943428337574, + 0.025925135239958763, + -0.004938863217830658, + 0.014582889154553413, + -0.025900207459926605, + 0.0159788578748703, + -0.033503253012895584, + -0.02074010856449604, + -0.012713287957012653, + -0.004502622876316309, + 0.022161005064845085, + -0.03846392780542374, + -0.0018618111498653889, + 0.017848460003733635, + 0.022360429167747498, + -0.008319725282490253, + -0.016801482066512108, + 0.00705462833866477, + 0.009242061525583267, + -0.0074472445994615555, + 0.025202224031090736, + 0.003427602117881179, + -0.0017044530250132084, + 0.0007599149830639362, + 0.03594619780778885, + 0.003567822277545929, + 0.00496067525818944, + 0.001230820780619979, + -0.019219499081373215, + -0.014695065096020699, + -0.007391156628727913, + -0.02217346988618374, + -0.01622813753783703, + -0.03821464627981186, + 0.010201790370047092, + 0.00481733912602067, + 0.01824730820953846, + 0.022933773696422577, + 0.01093093492090702, + 0.00018014386296272278, + 0.016464954242110252, + -0.01945631578564644, + 0.007640436757355928, + 0.031234802678227425, + 0.002805959666147828, + 0.023594366386532784, + 0.016701770946383476, + -0.010014830157160759, + 0.02294623851776123, + -0.04167964309453964, + -0.00017917010700330138, + 0.034849364310503006, + -0.030412178486585617, + 0.034300949424505234, + 0.02844286523759365, + -0.024230031296610832, + 0.0008927345625124872, + -0.023507118225097656, + -0.0024117855355143547, + 0.01246400736272335, + 0.028941426426172256, + -0.006016999948769808, + -0.0065747639164328575, + 0.03539778292179108, + -0.014433320611715317, + -0.01812266744673252, + 0.009036405943334103, + -0.01587914675474167, + -0.0037454343400895596, + 0.0069486843422055244, + -0.0082262447103858, + 0.004396678879857063, + 0.009291918016970158, + 0.03016289882361889, + -0.015505225397646427, + -0.014221432618796825, + 0.002823097864165902, + 0.0158168263733387, + -0.004683350678533316, + -0.01840933971107006, + -0.01043237466365099, + 0.06431428343057632, + 0.0345003716647625, + -0.023594366386532784, + -0.016639450564980507, + 0.007771308999508619, + -0.015081449411809444, + -0.0246039517223835, + 0.014533032663166523, + -0.004103774670511484, + 0.01209631934762001, + 0.003530430141836405, + 0.011697471141815186, + 0.007260284386575222, + -0.009528733789920807, + 0.04275154694914818, + -0.013336488045752048, + 0.003387094009667635, + -0.014308680780231953, + -0.010712814517319202, + 0.0006313798949122429, + 0.027046896517276764, + -0.0070110042579472065, + -0.0028324457816779613, + 0.007833628915250301, + 0.008731037378311157, + -0.035198356956243515, + -0.02869214490056038, + -0.014981737360358238, + 0.016602057963609695, + -0.042003706097602844, + 0.019281819462776184, + -0.016975978389382362, + 0.000588924391195178, + 0.007116948254406452, + -0.012196031399071217, + 0.024117855355143547, + 0.008375813253223896, + 0.004480810835957527, + -0.002580049680545926, + 0.006537372246384621, + 0.003617678303271532, + 0.0007065534591674805, + -0.012644736096262932, + 0.006711868103593588, + 0.01281300000846386, + -0.013959689065814018, + 0.014470713213086128, + 0.047089021652936935, + -0.036095768213272095, + -0.008755965158343315, + -0.011292391456663609, + 0.02010444365441799, + 0.0038389144465327263, + -0.004745671059936285, + -0.03400181233882904, + 0.021774621680378914, + -0.014433320611715317, + 0.006350412033498287, + 0.017437146976590157, + -0.01945631578564644, + -0.029963474720716476, + 0.0030443340074270964, + 0.002531751524657011, + -0.018683547154068947, + 0.02722139284014702, + 0.019256891682744026, + 0.00018072810780722648, + 0.002614325610920787, + -0.009622214362025261, + -0.005733443424105644, + 0.0029726659413427114, + -0.015330729074776173, + -0.026997040957212448, + -0.03158379718661308, + -0.02552628703415394, + -0.011055574752390385, + -0.006418963894248009, + 0.01789831556379795, + -0.00855030957609415, + -0.0031970180571079254, + -0.038488857448101044, + -0.021300990134477615, + -0.008388277143239975, + -0.0004790852835867554, + -0.005658659618347883, + 0.01569218561053276, + -0.02323291078209877, + 0.0005312783177942038, + 0.017561787739396095, + 0.026049776002764702, + 0.0014271289110183716, + -0.004390446934849024, + 0.033054549247026443, + 0.020403580740094185, + 0.0029321578331291676, + 0.02572571113705635, + 0.014857097528874874, + -0.018783260136842728, + -0.009316845797002316, + -0.012245887890458107, + 0.010363822802901268, + 0.010993254370987415, + -0.030736243352293968, + 0.024591486901044846, + -0.003895002417266369, + -0.007441012654453516, + 0.01108673494309187, + 0.0005912613705731928, + -0.009080030024051666, + 0.008793357759714127, + -0.0006804569275118411, + 0.009048869833350182, + -0.008375813253223896, + 0.013872440904378891, + -0.010457302443683147, + -0.03300469368696213, + 0.015953930094838142, + -0.0062101916410028934, + 0.007154340390115976, + -0.015542617999017239, + 0.01228951197117567, + 0.02351958304643631, + 0.007235356606543064, + -0.019194571301341057, + -0.018558908253908157, + -0.0012206938117742538, + 0.02425495907664299, + -0.031209874898195267, + -0.01648988202214241, + -0.014258825220167637, + -0.0016031829873099923, + 0.016602057963609695, + -0.0322817787528038, + -0.009709461592137814, + -0.004954442847520113, + 0.004636610858142376, + 0.016789019107818604, + 0.023045949637889862, + -0.01490695308893919, + -0.0017324971267953515, + 0.011273695155978203, + -0.022123614326119423, + -0.019805308431386948, + 0.019481243565678596, + -0.020765036344528198, + 0.021512877196073532, + 0.017399754375219345, + -0.018172523006796837, + 0.007640436757355928, + -0.029415057972073555, + 0.019007612019777298, + -0.025202224031090736, + 0.021899262443184853, + -0.00044091427116654813, + 0.023507118225097656, + -0.00044364077621139586, + -0.014582889154553413, + 0.04429708421230316, + 0.017748747020959854, + 0.015567545779049397, + 0.03809000924229622, + -0.005689819343388081, + -0.014794777147471905, + -0.024753520265221596, + 0.03719259798526764, + 0.012277048081159592, + 0.005269159097224474, + -0.013249239884316921, + 0.007067092228680849, + -0.001271328772418201, + 0.028642289340496063, + 0.012040231376886368, + 0.02709675207734108, + 0.014470713213086128, + 0.009198437444865704, + 0.013810120522975922, + 0.0007891274872235954, + 0.005072851199656725, + -0.010581942275166512, + 0.007553188595920801, + 0.0009231155854649842, + -0.012912712059915066, + -0.015330729074776173, + -0.0072540524415671825, + -0.005783299449831247, + -0.015779433771967888, + -0.010644262656569481, + -0.02262217365205288, + -0.028143730014562607, + 0.014894489198923111, + 0.0308359544724226, + -0.007278980687260628, + 0.042801402509212494, + -0.015555081889033318, + 0.01865861937403679, + -0.01546783372759819, + -0.004050802439451218, + -0.017848460003733635, + 0.0016094150487333536, + -0.027794737368822098, + 0.03357803821563721, + 0.008319725282490253, + 0.04756265506148338, + -0.012495167553424835, + 0.006892596371471882, + -0.022123614326119423, + -0.01610349863767624, + -0.015293337404727936, + -0.005166331306099892, + -0.0018244191305711865, + -0.007416084408760071, + -0.006724331993609667, + -0.009435254149138927, + 0.006992308422923088, + 0.011516743339598179, + -0.005854967515915632, + 0.03288005292415619, + 0.00958482176065445, + 0.020951997488737106, + 0.012862855568528175, + 0.04093180224299431, + 0.01738729141652584, + -0.009821638464927673, + 0.015318265184760094, + -0.027744881808757782, + -0.0017418450443074107, + -0.025065120309591293, + -0.000269534153630957, + -0.004430954810231924, + 0.02351958304643631, + 0.02108910121023655, + 0.01636524125933647, + 0.009136117994785309, + -0.009946278296411037, + 0.025875279679894447, + 0.020789964124560356, + 0.014470713213086128, + -0.06411485373973846, + -0.002075257245451212, + -0.027844592928886414, + -0.01280053611844778, + 0.0036955783143639565, + 0.057633571326732635, + -0.02437959983944893, + 0.005823807790875435, + -0.02396828681230545, + -0.01936906762421131, + 0.0002786874247249216, + 0.007017236202955246, + 0.010251645930111408, + 0.039411190897226334, + -0.018484123051166534, + -0.020216621458530426, + -0.015293337404727936, + 0.044047802686691284, + -0.01468260120600462, + -0.05743414908647537, + -0.00898031797260046, + 0.016888730227947235 + ], + "how_to_setup_storage_tanks": [ + -0.022672390565276146, + -8.475728100165725e-05, + 0.02086423523724079, + 0.002015095204114914, + 0.02489149011671543, + 0.005186705384403467, + -0.023012885823845863, + 0.002518502064049244, + -0.039192356169223785, + -0.03900449350476265, + 0.027004918083548546, + -0.00602914160117507, + -0.003777753096073866, + -0.026276959106326103, + 0.007872520945966244, + -0.008136698976159096, + -0.041423194110393524, + 0.05790793523192406, + -0.013068032450973988, + 0.016155986115336418, + 0.05828365683555603, + -0.011154205538332462, + -0.011934999376535416, + -0.005603520665317774, + -0.009328437969088554, + -0.03766598924994469, + 0.03334520384669304, + 0.055653613060712814, + -0.02947058528661728, + -0.023435572162270546, + 0.04828009754419327, + -0.023682139813899994, + -0.002917705336585641, + 0.013173703104257584, + 0.023130299523472786, + 0.019560953602194786, + -0.011189429089426994, + 0.018011106178164482, + 0.007285457104444504, + 0.02065289206802845, + -0.017717573791742325, + 0.03151356428861618, + -0.028695659711956978, + 0.018433792516589165, + 0.015568922273814678, + 0.05297660455107689, + -0.017318371683359146, + 0.02401089482009411, + 0.016308622434735298, + 0.002025368856266141, + 0.026652680709958076, + -0.009968336671590805, + -0.012504450976848602, + -0.09115920960903168, + -0.003994966857135296, + -0.051990337669849396, + -0.04677721485495567, + 0.005902922712266445, + -0.01205828320235014, + -0.033838335424661636, + -0.01091350894421339, + 0.01216395478695631, + 0.020735081285238266, + 0.01277450006455183, + -0.014007333666086197, + 0.0028545958921313286, + -0.03482460230588913, + 0.047152936458587646, + -0.04813920333981514, + 0.019044337794184685, + -0.0007719884160906076, + 0.014054298400878906, + -0.018081553280353546, + 0.007872520945966244, + 0.013925144448876381, + -0.021486520767211914, + -0.02385825850069523, + 0.03712589293718338, + -0.027826806530356407, + -0.04992387443780899, + -0.04259732365608215, + -0.03712589293718338, + 0.00022326756152324378, + -0.013185444287955761, + -0.0016701954882591963, + -0.02141607366502285, + -0.014500467106699944, + 1.1253960110479966e-05, + -0.03156052902340889, + -0.04325483366847038, + -0.020770303905010223, + 0.033673956990242004, + 0.012833206914365292, + 0.02161567471921444, + 0.06279230117797852, + -0.024233978241682053, + 0.044640302658081055, + -0.03141963481903076, + -0.022508012130856514, + 0.01455917302519083, + -0.008588737808167934, + -0.02864869497716427, + -0.032969482243061066, + -0.0038100415840744972, + 0.04548567533493042, + -0.019056079909205437, + -0.004414717201143503, + 0.035928282886743546, + -0.02625347673892975, + -0.0270284004509449, + -0.01774105615913868, + -0.02156870998442173, + 0.04257383942604065, + 0.0038981011603027582, + 0.0009525103960186243, + -0.015510216355323792, + -0.0010978085920214653, + 0.02554900012910366, + -0.0063226730562746525, + 0.016461258754134178, + -0.028977451846003532, + -0.022402340546250343, + 0.025149798020720482, + -0.04405324161052704, + 0.029587997123599052, + -0.005263023544102907, + 0.014324347488582134, + -0.06711309403181076, + -0.012844948098063469, + 0.03700847923755646, + -0.02468014694750309, + 0.004247404169291258, + 0.01998363994061947, + -0.010713907890021801, + 0.001929971040226519, + -0.04360707104206085, + 0.009357791393995285, + 0.01142425462603569, + 0.025431588292121887, + -0.013291115872561932, + 0.04874974861741066, + -0.04445244371891022, + 0.02489149011671543, + 0.028014667332172394, + -0.03916887193918228, + 0.005312924273312092, + -0.03503594547510147, + -0.016449516639113426, + 0.011952611617743969, + -0.030574264004826546, + -0.015392803587019444, + 0.01596812531352043, + -0.019337870180606842, + -0.05358714982867241, + 0.008653314784169197, + -0.019960157573223114, + 0.0033315850887447596, + 0.04940725862979889, + 0.011482960544526577, + -0.013948626816272736, + -0.04057782515883446, + -0.010672813281416893, + -0.02846083603799343, + 0.006416603457182646, + -0.0038100415840744972, + -0.019772296771407127, + -0.028014667332172394, + -0.000687598017975688, + -0.05452645197510719, + 0.026018651202321053, + -0.01744752563536167, + -0.0022323087323457003, + -0.01606205478310585, + 0.009492815472185612, + 0.006175907328724861, + -0.0198897086083889, + -0.026394372805953026, + -0.018598169088363647, + 0.022566718980669975, + 0.008741374127566814, + 0.007989933714270592, + -0.0056827738881111145, + -0.06913258880376816, + -0.01938483491539955, + 0.035763904452323914, + 0.03942717984318733, + -0.03508291020989418, + 0.03738420084118843, + 0.0033668088726699352, + 0.03470718860626221, + -0.047458209097385406, + 0.03482460230588913, + 0.0413057841360569, + 0.05114496499300003, + 0.005671032704412937, + -0.03080908954143524, + 0.014124746434390545, + 0.004203374031931162, + 0.05945778638124466, + -0.03830001875758171, + 0.03538818284869194, + 0.019009113311767578, + 0.010543659329414368, + -0.028061632066965103, + -0.019443541765213013, + -0.01926742121577263, + -0.00971589982509613, + 0.028672177344560623, + -0.03137267008423805, + -0.02350601926445961, + -0.022731095552444458, + -0.021956171840429306, + -0.019243938848376274, + 0.018269414082169533, + -0.027051882818341255, + -0.021592192351818085, + -0.059269923716783524, + 0.044288065284490585, + -0.04414717108011246, + -0.025455070659518242, + -0.0362100712954998, + 0.04992387443780899, + 0.04400627315044403, + -0.03120829164981842, + -0.02120473049581051, + 0.02268413081765175, + 0.009481074288487434, + -0.06138335168361664, + 0.06025619059801102, + 0.0062874495051801205, + -0.020476773381233215, + 0.007790331728756428, + -0.017048321664333344, + -0.03397923335433006, + 0.014441760256886482, + -0.02156870998442173, + -0.010126844048500061, + -0.009328437969088554, + 0.021028611809015274, + -0.0034372564405202866, + -0.006580980960279703, + -0.011160075664520264, + -0.006269837263971567, + -0.04813920333981514, + 0.014394795522093773, + 0.014653103426098824, + -0.014465242624282837, + -0.06617379188537598, + 0.08143743872642517, + 0.01060823630541563, + -0.010713907890021801, + -0.006874512881040573, + 0.011617985554039478, + 0.010719778016209602, + -0.0069449604488909245, + -0.06744185090065002, + -0.02655874937772751, + -0.006164166145026684, + -0.0005771567230112851, + -0.014336088672280312, + 0.03660927712917328, + 0.01775279827415943, + -0.04496905952692032, + 0.0061700367368757725, + -0.0012027461780235171, + -0.032617244869470596, + 0.021791795268654823, + 0.032006699591875076, + -0.02728670835494995, + -0.01973707228899002, + 0.021850500255823135, + 0.031584013253450394, + -0.0050663575530052185, + -0.030409885570406914, + -0.06246354803442955, + -0.0053716301918029785, + 0.014981858432292938, + 0.011641467921435833, + 0.0006831950740888715, + 0.04245642572641373, + -0.06011529639363289, + -0.06617379188537598, + 0.00785490870475769, + 0.03869922086596489, + -0.02559596486389637, + 0.01836334355175495, + -0.031278740614652634, + 0.01575678214430809, + 0.01865687593817711, + 0.004628994967788458, + 0.06777060031890869, + 0.03726678714156151, + 0.007091726176440716, + -0.011952611617743969, + 0.044546373188495636, + 0.028179043903946877, + -0.015240166336297989, + -0.005483172368258238, + 0.031184809282422066, + -0.03203018009662628, + -0.020664632320404053, + 0.020969904959201813, + 0.025314174592494965, + 0.025783825665712357, + -0.01891518384218216, + -0.04677721485495567, + 0.027145812287926674, + -0.04017862305045128, + 0.0005676169530488551, + 0.018011106178164482, + 0.014242159202694893, + -0.02951755002140999, + 0.08289335668087006, + -0.05400983616709709, + 0.010708036832511425, + -0.01871558278799057, + 0.04508647322654724, + 0.05729738995432854, + -0.021380851045250893, + -0.01667260192334652, + -0.0066162049770355225, + -0.023365125060081482, + 0.05875330790877342, + -0.05593540519475937, + 0.03203018009662628, + -0.05053441971540451, + -0.04123533517122269, + -0.02615954726934433, + -0.02998720109462738, + 0.029494067654013634, + -0.008013416081666946, + 0.001888876548036933, + 0.0066279461607337, + -0.007297198288142681, + -0.0047933729365468025, + 0.005533072631806135, + 0.040977027267217636, + 0.00736764632165432, + 0.05067531391978264, + 0.009903759695589542, + -0.019725332036614418, + 0.03099694848060608, + -0.019091302528977394, + 0.05415073037147522, + 0.019971897825598717, + 0.03487156704068184, + 0.04245642572641373, + 0.04400627315044403, + 0.0014911411562934518, + 0.0068686422891914845, + -0.004300239495933056, + 0.05466734617948532, + -0.04874974861741066, + -0.02942361868917942, + -0.011694303713738918, + 0.029353171586990356, + -0.009416497312486172, + -0.026229994371533394, + -0.03996727988123894, + -0.0028164368122816086, + -0.022214479744434357, + 0.013490717858076096, + -0.008318688720464706, + 0.00602914160117507, + -0.0026476560160517693, + 0.014676585793495178, + -0.0021574581041932106, + -0.031701426953077316, + -0.012281366623938084, + 0.02263716608285904, + 0.06002136692404747, + 0.029141828417778015, + 0.034143608063459396, + 0.026652680709958076, + -0.01162385568022728, + 0.003642728552222252, + 0.00785490870475769, + 0.020523738116025925, + -0.03764250874519348, + 0.032969482243061066, + 0.020465031266212463, + 0.022190997377038002, + 0.03790081664919853, + 0.04177543520927429, + -0.009404756128787994, + 0.005641679745167494, + -0.023470796644687653, + 0.03895752876996994, + -0.030362920835614204, + 0.01662563718855381, + 0.013925144448876381, + -0.04534478113055229, + -0.0075261532329022884, + 0.03167794272303581, + -0.02507934905588627, + 0.016402551904320717, + 0.05884723737835884, + 0.009369532577693462, + 0.013889920897781849, + 0.017964141443371773, + 0.06316802650690079, + -0.0067101349122822285, + -0.04426458105444908, + -0.013772508129477501, + 0.04309045523405075, + 0.011524055153131485, + 0.03585783392190933, + 0.0059381467290222645, + -0.0012027461780235171, + -0.033415649086236954, + 0.03242938220500946, + -0.06762970983982086, + 0.029564514756202698, + -0.006510533392429352, + 0.013173703104257584, + -0.0033756147604435682, + -0.01667260192334652, + 0.015357579104602337, + -0.02916531078517437, + -0.0004575425700750202, + 0.020159758627414703, + 0.020523738116025925, + 0.01973707228899002, + -0.03440191596746445, + -0.01292713638395071, + 0.053775008767843246, + 0.030362920835614204, + -0.021040353924036026, + -0.0039421310648322105, + -0.09045473486185074, + -0.03395574912428856, + 0.016285140067338943, + -0.03846439719200134, + 0.028977451846003532, + 0.018093295395374298, + -0.02239059843122959, + 0.006234613712877035, + -0.022508012130856514, + -0.03705544397234917, + -0.03050381690263748, + -0.04226856678724289, + -0.030480332672595978, + 0.07143387943506241, + -0.018187224864959717, + -0.05537182465195656, + -0.015169719234108925, + 0.0020855427719652653, + -0.024797558784484863, + -0.02222622185945511, + 0.013267633505165577, + 0.01627339795231819, + 0.022472787648439407, + -0.07260800898075104, + 0.07180959731340408, + -0.020382842049002647, + 0.015474991872906685, + 0.018750805407762527, + -0.03055078163743019, + 0.02820252813398838, + 0.006269837263971567, + 0.03487156704068184, + 0.060913700610399246, + 0.010479082353413105, + 0.010702166706323624, + 0.001802284736186266, + -0.011606244370341301, + 0.029846305027604103, + 0.016449516639113426, + 0.010396893136203289, + -0.06875687092542648, + -0.012340073473751545, + -0.0474112443625927, + 0.021192990243434906, + -0.022144032642245293, + -0.017964141443371773, + -0.02498541958630085, + -0.019056079909205437, + 0.048420991748571396, + -0.007326551713049412, + -0.041329264640808105, + 0.03369744122028351, + 0.07082333415746689, + -0.05114496499300003, + 0.01340852864086628, + -0.009322566911578178, + 0.059880468994379044, + 0.042198117822408676, + -0.021592192351818085, + -0.08937453478574753, + -0.01851597987115383, + -0.01529887318611145, + -0.016296880319714546, + 0.03559952601790428, + -0.011336195282638073, + 0.007925356738269329, + -0.03961503878235817, + -0.03813564032316208, + -0.07157477736473083, + 0.03869922086596489, + 0.0011154204839840531, + 0.03583435341715813, + -0.0066749113611876965, + -0.0004923994420096278, + 0.04114140570163727, + -0.018222449347376823, + -0.031795356422662735, + 0.027263225987553596, + 0.0032523314002901316, + 0.027803324162960052, + 0.010549529455602169, + -0.004511582665145397, + -0.03491853177547455, + -0.003528251312673092, + 0.01320892758667469, + 0.022825026884675026, + -0.0041329264640808105, + 0.009598487056791782, + 0.0016437775921076536, + 0.006804065313190222, + 0.025924721732735634, + -0.01042624656111002, + -0.009956595487892628, + -0.0010787290520966053, + 0.03858180716633797, + -0.016543447971343994, + -0.010936991311609745, + -0.04353662580251694, + -0.026276959106326103, + 0.0377364382147789, + -0.027169296517968178, + 0.027662428095936775, + -0.022778062149882317, + 0.0063226730562746525, + 0.041329264640808105, + -0.037149373441934586, + 0.009968336671590805, + -0.041634537279605865, + -0.015204942785203457, + -0.027850288897752762, + -0.027451086789369583, + -0.018891701474785805, + 0.017200957983732224, + -0.02951755002140999, + 0.047552138566970825, + -0.016836978495121002, + 0.015392803587019444, + 0.003284619888290763, + -0.00017813706654123962, + 0.03146659955382347, + 0.04496905952692032, + 0.01927916333079338, + -0.04926636442542076, + -0.03334520384669304, + -0.036327484995126724, + 0.018739065155386925, + -0.005359889008104801, + -0.021545227617025375, + -0.032758139073848724, + -0.0046524778008461, + -0.011641467921435833, + -0.021756570786237717, + -0.001086067408323288, + 0.032617244869470596, + -0.0316309779882431, + 0.005867699161171913, + 0.06692523509263992, + 0.03848787769675255, + 0.0035253160167485476, + -0.017658868804574013, + -0.02463318221271038, + 0.008406748063862324, + 0.0050458102487027645, + 0.02106383629143238, + -0.020617667585611343, + -0.003680887632071972, + 0.004476358648389578, + 0.009874407202005386, + 0.0067688412964344025, + 0.007907744497060776, + -0.008805951103568077, + -0.010038784705102444, + -0.055606648325920105, + -0.010713907890021801, + 0.006745358929038048, + -0.019032595679163933, + -0.016613895073533058, + -0.01769409142434597, + 0.01662563718855381, + 0.018469015136361122, + -0.07617735117673874, + -0.037712953984737396, + -0.022871991619467735, + -0.023987412452697754, + -0.018128518015146255, + 0.01560414582490921, + 0.00016593714826740324, + 0.0058177984319627285, + 0.016437776386737823, + -0.024233978241682053, + 0.021592192351818085, + -0.022871991619467735, + 0.032617244869470596, + -0.020711597055196762, + 0.016508223488926888, + -0.03764250874519348, + -0.022261444479227066, + -0.004262080416083336, + -0.0037572060246020555, + -0.03390878438949585, + 0.0247271116822958, + -0.013138479553163052, + -0.018539464101195335, + -0.03522380441427231, + -0.023834776133298874, + 0.003264072583988309, + 0.010666942223906517, + -0.025877756997942924, + 0.032053664326667786, + -0.012304849922657013, + -0.041117921471595764, + -0.012657087296247482, + 0.023799551650881767, + -0.023388607427477837, + -0.011113110929727554, + 0.0012056814739480615, + 0.01856294646859169, + -0.009175801649689674, + -0.008477196097373962, + -0.025525517761707306, + 0.0055682966485619545, + 0.014723550528287888, + -0.015686335042119026, + 0.006522274576127529, + 0.016907427459955215, + -0.01744752563536167, + -0.00961022824048996, + 0.01886821910738945, + 0.0387696698307991, + -0.0016907426761463284, + 0.009281473234295845, + 0.013725543394684792, + -0.018175484612584114, + 0.04884367808699608, + -0.019196974113583565, + 0.021134283393621445, + 0.04931332916021347, + -0.03759554401040077, + 0.05945778638124466, + 0.02681705728173256, + -0.021603934466838837, + -0.004664218984544277, + 0.003974419552832842, + 0.0321241095662117, + 0.0040536727756261826, + -0.008923363871872425, + -0.0068275476805865765, + -0.021239954978227615, + -0.02550203539431095, + -0.034495849162340164, + -0.00517496420070529, + -0.023118557408452034, + 0.010696295648813248, + -0.020007122308015823, + 0.026488302275538445, + -0.032922517508268356, + 0.005964564625173807, + 0.0158037468791008, + -0.025572482496500015, + 0.023893481120467186, + -0.006528145167976618, + -0.024445321410894394, + 0.00383645948022604, + 0.010314704850316048, + -0.0020092246122658253, + -0.0036368579603731632, + -0.006081977393478155, + -0.0062287431210279465, + -0.022425822913646698, + -0.018339861184358597, + 0.021803535521030426, + -0.015334096737205982, + 0.016296880319714546, + -0.03639793395996094, + 0.005494913551956415, + 0.007109337951987982, + -0.03907494246959686, + -0.05480824038386345, + 0.03651534393429756, + -0.012633604928851128, + 0.028625212609767914, + -0.015052306465804577, + 0.002955864416435361, + -0.002239647088572383, + 0.008582867681980133, + 0.022871991619467735, + -0.0033844206482172012, + 0.04553264006972313, + -0.0064400858245790005, + 0.010297092609107494, + -0.05654595047235489, + -0.0066749113611876965, + -0.03820608928799629, + -0.03282858803868294, + -0.028366904705762863, + -0.029541032388806343, + 0.011811716482043266, + 0.0030556651763617992, + 0.007866649888455868, + 0.02519676275551319, + 0.005089839920401573, + -0.036891065537929535, + -0.013326340354979038, + -0.030926501378417015, + 0.016155986115336418, + -0.04323134943842888, + 0.01083719078451395, + -0.03677365183830261, + -0.029259242117404938, + 0.019513988867402077, + -0.009980078786611557, + 0.010637589730322361, + -0.009680676274001598, + -0.035059429705142975, + 0.05217819660902023, + -0.019314387813210487, + -0.012328332290053368, + 0.0025551936123520136, + -0.0033374556805938482, + 0.011095498688519001, + 0.004044867120683193, + 0.006099589169025421, + 0.005216058809310198, + -0.013795990496873856, + -0.01932612806558609, + 0.008418489247560501, + 0.0072737159207463264, + -0.04778696224093437, + -0.0076611777767539024, + 0.015510216355323792, + -0.00945759192109108, + -0.03799474611878395, + -0.03512987494468689, + 0.01586245372891426, + -0.015169719234108925, + 0.03639793395996094, + -0.012011317536234856, + -0.02864869497716427, + 0.06077280640602112, + -0.021556969732046127, + 0.0009488412761129439, + -0.02274283766746521, + 0.006939089857041836, + -0.0002467501035425812, + -0.008958588354289532, + 0.004526258911937475, + -0.01851597987115383, + 0.004012578632682562, + 0.01651996560394764, + -0.008635703474283218, + 0.005383371841162443, + -0.0033110377844423056, + 0.008970329537987709, + -0.038981013000011444, + 0.0038393947761505842, + -0.0016848720842972398, + 0.014629621058702469, + 0.003469544928520918, + -0.0010574479820206761, + -0.0229424387216568, + -0.018739065155386925, + 0.01440653670579195, + -0.03294600173830986, + -0.0020429808646440506, + 0.019361352548003197, + -0.016637377440929413, + -0.027568498626351357, + -0.027615463361144066, + -0.014042557217180729, + 0.003014570800587535, + -0.034495849162340164, + -0.006375508848577738, + -0.020476773381233215, + 0.010737390257418156, + 0.032405901700258255, + 0.03707892820239067, + 6.434765964513645e-05, + 0.004511582665145397, + 0.0063226730562746525, + -0.013338081538677216, + -0.06955527514219284, + -0.029400136321783066, + -0.014793998561799526, + 0.020218465477228165, + 0.01998363994061947, + 0.025384623557329178, + 0.020476773381233215, + 0.002336512552574277, + -0.08655663579702377, + -0.015181460417807102, + 0.009651322849094868, + -0.04687114432454109, + -0.010085749439895153, + 0.012844948098063469, + -0.0022352440282702446, + 0.005207252688705921, + 0.010414505377411842, + -0.0657980665564537, + 0.01030296366661787, + -0.033110376447439194, + -0.030926501378417015, + 0.020018862560391426, + -0.0054714311845600605, + 0.02554900012910366, + 0.02698143571615219, + -0.004511582665145397, + 0.022249704226851463, + 0.0057414802722632885, + -0.0033697441685944796, + -0.00938127376139164, + 0.03430798649787903, + 0.013572906143963337, + -0.025361141189932823, + 0.028437351807951927, + 0.01384295616298914, + 0.011629726737737656, + -0.0022455176804214716, + 0.021427815780043602, + 0.019513988867402077, + 0.05776704102754593, + 0.03642141446471214, + 0.022601941600441933, + -0.028719143941998482, + -0.0413057841360569, + 0.01845727488398552, + 0.02794422022998333, + 0.01775279827415943, + 0.04482816532254219, + 0.004972427152097225, + 0.004549741744995117, + 0.01953747123479843, + 0.0397794172167778, + 0.04710597172379494, + 0.0009627840481698513, + -0.03503594547510147, + -0.0025317110121250153, + -0.00032086684950627387, + 0.007185656577348709, + 0.010162067599594593, + -0.02135736681520939, + 0.056733809411525726, + 0.03369744122028351, + 0.04252687469124794, + 0.027709394693374634, + -0.01570981740951538, + -0.022660648450255394, + -0.03512987494468689, + -0.003419644432142377, + 0.008935105055570602, + 0.015275390818715096, + -0.015381062403321266, + -0.00014639894652646035, + 0.00859460886567831, + 0.011923258192837238, + -0.005864763632416725, + -0.016555188223719597, + 0.0040595438331365585, + -0.016613895073533058, + -0.00655162800103426, + 0.006716005504131317, + -0.01729488931596279, + 0.021239954978227615, + 0.016332104802131653, + 0.018175484612584114, + 0.003478350816294551, + -0.01841031014919281, + 0.006240484304726124, + -0.001570394728332758, + 0.003381485352292657, + 0.05170854553580284, + -0.01983100362122059, + 0.006269837263971567, + -0.005574167240411043, + -0.027216261252760887, + -0.026488302275538445, + 0.029353171586990356, + 0.016907427459955215, + 0.027239743620157242, + 0.04144667834043503, + -0.003448997624218464, + 0.010074008256196976, + -0.020030604675412178, + 0.011741268448531628, + 0.018739065155386925, + -0.033321719616651535, + -0.03646837919950485, + 0.025008901953697205, + -0.008060380816459656, + 0.00851829070597887, + 0.02259020134806633, + -0.019901450723409653, + 0.02197965420782566, + 0.014864446595311165, + 0.024492286145687103, + 0.01993667334318161, + -0.010115102864801884, + -0.011295100674033165, + -0.050863176584243774, + -0.0031525306403636932, + -0.02855476550757885, + 0.0024187013041228056, + 0.020265430212020874, + -0.01978403702378273, + -0.001298877876251936, + -0.01216395478695631, + -0.031043915078043938, + -0.032405901700258255, + -0.003419644432142377, + -0.021956171840429306, + -0.0020870105363428593, + -0.014124746434390545, + -0.009093612432479858, + 0.0009906695922836661, + 0.009058388881385326, + -0.01065520104020834, + 0.023893481120467186, + -0.032053664326667786, + -0.002566934796050191, + -0.008201275952160358, + 0.014793998561799526, + -0.051990337669849396, + 0.023905223235487938, + -0.016684342175722122, + 0.012856689281761646, + 0.013854697346687317, + 0.025361141189932823, + 0.024515768513083458, + 0.0028942227363586426, + -0.008923363871872425, + -0.02416353113949299, + -0.020359359681606293, + -0.0026021585799753666, + -0.0034049679525196552, + 0.02080552838742733, + -0.022296668961644173, + -0.0017259664600715041, + -0.01601509004831314, + -0.05189640820026398, + -0.021709606051445007, + 0.0027768099680542946, + 0.006956701632589102, + 0.021451298147439957, + -0.04931332916021347, + 0.016132503747940063, + 0.010520176962018013, + -0.02763894572854042, + -0.009739382192492485, + 0.0048696910962462425, + -0.015122754499316216, + 0.04100051149725914, + 0.019654883071780205, + -0.0018653940642252564, + -0.01042624656111002, + -0.014523949474096298, + 0.0007110805599950254, + 0.02773287706077099, + -0.003754270728677511, + -0.025008901953697205, + -0.02707536518573761, + -0.013983851298689842, + -0.012539674527943134, + 0.02386999875307083, + -0.02243756502866745, + -0.010185550898313522, + 0.044029757380485535, + -0.02315378189086914, + -0.018844736739993095, + 0.029705408960580826, + 0.01231659110635519, + -0.0110896285623312, + -0.00228807982057333, + 0.013608130626380444, + 0.03254679590463638, + -0.031490083783864975, + 0.0043882993049919605, + 0.0193730928003788, + 0.00715043256059289, + -0.00379830040037632, + 0.01647300086915493, + 0.021392591297626495, + 0.008753116242587566, + 0.008318688720464706, + 0.01886821910738945, + 0.02585427276790142, + 0.015874195843935013, + 0.0067688412964344025, + 0.018786029890179634, + 0.013432011008262634, + 0.04205722361803055, + -0.013009325601160526, + 0.04818616807460785, + -0.0021075578406453133, + 0.02391696348786354, + 0.002499422524124384, + -0.021756570786237717, + -0.02855476550757885, + -0.022813284769654274, + 0.03743116557598114, + 0.04243294522166252, + -0.0110896285623312, + 0.011124852113425732, + 0.010179679840803146, + -0.022883731871843338, + 0.0069038658402860165, + 0.009011424146592617, + 0.0005844950210303068, + -0.035153359174728394, + -0.021275179460644722, + -0.005923470016568899, + -0.06922651827335358, + -0.07514411956071854, + -0.010866544209420681, + -0.01336156390607357, + 0.04201025888323784, + 0.010778484866023064, + -0.0018331055762246251, + -0.0041740210726857185, + -0.0010185550199821591, + -0.02890700288116932, + 0.032053664326667786, + 0.0015131559921428561, + 0.02300114557147026, + 0.014723550528287888, + 0.0013553827302530408, + 0.03334520384669304, + 0.022003136575222015, + 0.003768947208300233, + -0.024093084037303925, + 0.010332316160202026, + -0.015510216355323792, + 0.033227790147066116, + -0.00859460886567831, + -0.03080908954143524, + 0.01943179965019226, + 0.02446880377829075, + 0.004611383192241192, + 0.002559596672654152, + 0.01738881878554821, + -0.023365125060081482, + 0.026840539649128914, + -0.01195848174393177, + -0.025408105924725533, + 0.06979010254144669, + -0.009575004689395428, + 0.011177687905728817, + -0.0002962835715152323, + -0.0494542233645916, + -0.035458631813526154, + -0.0010457067983224988, + 0.02876610867679119, + 0.0438653789460659, + 0.02937665395438671, + -0.008582867681980133, + 0.0025918851606547832, + -0.030268991366028786, + -0.03470718860626221, + 0.012997584417462349, + -0.006745358929038048, + -0.00897619966417551, + -0.010508435778319836, + 0.03738420084118843, + -0.0017773344879969954, + -0.0023379800841212273, + -0.018469015136361122, + 0.040507376194000244, + -0.020629409700632095, + -0.016296880319714546, + -0.03440191596746445, + -0.02641785517334938, + 0.012017188593745232, + -0.009809830226004124, + -0.0019417123403400183, + -0.020676374435424805, + -0.015064047649502754, + -0.009222766384482384, + 0.01440653670579195, + 0.014206934720277786, + 0.013091514818370342, + 0.02089945785701275, + 0.024187013506889343, + 0.03639793395996094, + -0.03447236493229866, + -0.017776280641555786, + 0.00025298763648606837, + -0.018985630944371223, + -0.018445532768964767, + -0.023776069283485413, + -0.035012464970350266, + 0.011946740560233593, + -0.008242370560765266, + 0.0018360408721491694, + 0.0051015811040997505, + 0.010755002498626709, + -0.015944642946124077, + 0.0017655933042988181, + -0.007027149200439453, + 0.019314387813210487, + -0.012762758880853653, + 0.005442078225314617, + 0.018445532768964767, + 0.023282935842871666, + 0.04017862305045128, + -0.04043693095445633, + 0.044640302658081055, + 0.0009194880840368569, + 0.007590730208903551, + -0.016555188223719597, + 0.005553619936108589, + -0.009070130065083504, + 0.003886359976604581, + 0.01993667334318161, + -0.021533487364649773, + -0.029447101056575775, + 0.008312818594276905, + 0.018598169088363647, + -0.002926511224359274, + 0.011101369746029377, + 0.026957953348755836, + 0.03797126188874245, + 0.024034377187490463, + -0.04635452851653099, + -0.004376558121293783, + -0.052647847682237625, + 0.00046891692909412086, + -0.019924933090806007, + -0.027498051524162292, + -0.005788445472717285, + 0.011841069906949997, + 0.026183029636740685, + -0.013009325601160526, + -0.02554900012910366, + 0.0023379800841212273, + -0.027521533891558647, + 0.013878179714083672, + -0.018985630944371223, + 0.0037601413205266, + 0.02468014694750309, + 0.04313741996884346, + 0.05898813530802727, + -0.0024187013041228056, + -0.05053441971540451, + -0.0015160912880674005, + 0.022050103172659874, + 0.021897466853260994, + 0.027662428095936775, + 0.0010435052681714296, + -0.019643142819404602, + -0.046683285385370255, + -0.0018580558244138956, + 0.02406960166990757, + 0.016743049025535583, + 0.0017817375482991338, + 0.019560953602194786, + -0.04461682215332985, + -0.01662563718855381, + 0.027310190722346306, + 0.019666625186800957, + -0.023059852421283722, + 0.04431154951453209, + -0.020124534144997597, + -0.03677365183830261, + -0.006504662800580263, + 0.002392283407971263, + 0.017705833539366722, + 0.02947058528661728, + -0.030175060033798218, + 0.012551416642963886, + 0.01590941846370697, + 0.01667260192334652, + -0.037454646080732346, + 0.03421405702829361, + 0.03252331539988518, + 0.0072561041451990604, + -0.011359677650034428, + 0.0004245202580932528, + -0.011371418833732605, + -0.00797819159924984, + 0.022601941600441933, + -0.02024194784462452, + 0.009428238496184349, + 0.031584013253450394, + 0.023282935842871666, + 0.04278518259525299, + 0.008494808338582516, + 0.02120473049581051, + -0.03257028013467789, + -0.0046994430013000965, + -0.008506549522280693, + 0.02529069222509861, + -0.016144244000315666, + 0.005524266976863146, + -0.030315956100821495, + -0.0019020854961127043, + -0.016355587169528008, + 0.025877756997942924, + -0.00818366464227438, + 0.0050047156400978565, + -0.008612220175564289, + -0.031184809282422066, + -0.03996727988123894, + 0.010772613808512688, + -0.00983918271958828, + -0.02089945785701275, + 0.006469439249485731, + -0.0020327072124928236, + 0.016496483236551285, + -0.02411656640470028, + -0.011940870434045792, + 0.006410732865333557, + -0.009498686529695988, + -0.011829327791929245, + 0.010743260383605957, + 0.018281156197190285, + 0.011101369746029377, + -0.009351920336484909, + -0.00948694534599781, + -0.020406324416399002, + -0.015780264511704445, + -0.0059352112002670765, + -0.04569701850414276, + -0.033110376447439194, + 0.011770621873438358, + -0.01425390038639307, + 0.004121185280382633, + 0.02820252813398838, + 0.002034174744039774, + 0.014911411330103874, + 0.010050525888800621, + -0.013584648258984089, + 0.01460613775998354, + 0.01815200224518776, + 0.0006942024920135736, + -0.0014294994762167335, + 0.02876610867679119, + 0.0015234296442940831, + 0.03660927712917328, + -0.017917176708579063, + -0.009222766384482384, + 0.005888246465474367, + -0.011952611617743969, + 0.010167938657104969, + 0.020641149953007698, + -0.018527721986174583, + 0.0070623732171952724, + -0.01106614526361227, + 0.003789494512602687, + -0.009416497312486172, + -0.00922863744199276, + 0.007162173744291067, + -0.021451298147439957, + 0.06330891698598862, + 0.0060350121930241585, + -0.007244362961500883, + 0.0247271116822958, + -0.0065398868173360825, + -0.012645346112549305, + -0.01549847424030304, + -0.01748274825513363, + 0.013784249313175678, + 0.02136910893023014, + 0.030268991366028786, + -0.0065751103684306145, + 0.0034167091362178326, + 0.016449516639113426, + 0.026300441473722458, + -0.01880951225757599, + -0.028883520513772964, + -0.030315956100821495, + 0.023365125060081482, + 0.005864763632416725, + -0.002094348892569542, + -0.012187437154352665, + 0.01876254752278328, + -0.0031231774482876062, + -0.020981647074222565, + 0.0029705408960580826, + 0.015439768321812153, + -0.001491874922066927, + 0.007608341984450817, + 0.024046117439866066, + 0.01310325600206852, + -0.009980078786611557, + 0.023494279012084007, + 0.009193412959575653, + 0.013032807968556881, + -0.028272975236177444, + 0.0037572060246020555, + 8.085881563602015e-05, + 0.00844197254627943, + -0.021146025508642197, + 0.0022044233046472073, + 0.013161961920559406, + 0.026323923841118813, + -0.011025051586329937, + -0.017153993248939514, + -0.0247271116822958, + 0.012786241248250008, + -0.018398568034172058, + 0.013091514818370342, + 0.0004641470150090754, + 0.004590835887938738, + 0.002916237572208047, + -0.006897995248436928, + 0.021791795268654823, + 0.024914972484111786, + -0.011295100674033165, + 0.0007008069660514593, + -0.0066749113611876965, + 0.005380436312407255, + -0.019103044643998146, + -0.006880383472889662, + 0.01295061968266964, + 0.027216261252760887, + -0.0037131761200726032, + 0.013749025762081146, + 0.03146659955382347, + -0.037196338176727295, + -0.028672177344560623, + -0.005641679745167494, + 0.015322355553507805, + 0.014195193536579609, + 0.0009260925580747426, + -0.015897678211331367, + 0.0014595864340662956, + -0.037548575550317764, + -0.020723339170217514, + 0.01897389069199562, + -0.015240166336297989, + -0.025619449093937874, + 0.005638744216412306, + 0.00042708864202722907, + -0.010332316160202026, + 0.03156052902340889, + 0.013702060095965862, + -0.0024187013041228056, + 0.011465349234640598, + 0.017400560900568962, + -0.007091726176440716, + 0.017212700098752975, + -0.013913403265178204, + -0.017459265887737274, + -0.04661283642053604, + 0.0012056814739480615, + -0.008471325039863586, + -0.008036898449063301, + 0.0068862540647387505, + 0.0068862540647387505, + -0.013948626816272736, + -0.0387696698307991, + -0.0155571810901165, + -0.0057238684967160225, + -0.01410126406699419, + -0.039497628808021545, + -0.01295061968266964, + -0.03447236493229866, + -0.002227905672043562, + 0.002442183904349804, + 0.014136487618088722, + 0.019795779138803482, + 0.008559385314583778, + 0.03442540019750595, + 0.01926742121577263, + -0.012105247937142849, + 0.016649119555950165, + 0.0026212381199002266, + -0.026934470981359482, + 0.023318160325288773, + -0.0055125257931649685, + -0.013725543394684792, + 0.0026285764761269093, + -0.008571126498281956, + 0.02274283766746521, + -0.010179679840803146, + -0.0033491968642920256, + 0.015428027138113976, + -0.0013245618902146816, + -0.0032288488000631332, + 0.0073148105293512344, + -0.02161567471921444, + 0.0029822823125869036, + 0.0027474567759782076, + 0.00800754502415657, + 0.03865225613117218, + -0.039943795651197433, + -0.004141732584685087, + -0.01922045648097992, + 0.013326340354979038, + 0.004449940752238035, + 0.009205155074596405, + 0.010514305904507637, + 0.013114997185766697, + -0.031137844547629356, + 0.0077374959364533424, + -0.03090301901102066, + -0.0045790947042405605, + -0.0008952717180363834, + -0.024257460609078407, + -0.016707824543118477, + 0.009598487056791782, + 0.016649119555950165, + -0.01953747123479843, + -0.011876293458044529, + 0.01534583792090416, + 0.004147603176534176, + -0.023729104548692703, + 0.006669040769338608, + -0.010032913647592068, + -0.017001356929540634, + 0.008753116242587566, + -0.019243938848376274, + -0.010015302337706089, + -0.0012614525621756911, + -0.039802901446819305, + 0.0055272020399570465, + 0.022014878690242767, + -0.015838971361517906, + 0.02207358554005623, + -0.031067397445440292, + 0.034683708101511, + -0.023365125060081482, + 0.004725860431790352, + -0.016379069536924362, + 0.03834698349237442, + -0.02254323661327362, + -0.025924721732735634, + 0.016332104802131653, + 0.02794422022998333, + 0.03548211231827736, + 0.04973601549863815, + -0.011858681216835976, + 0.0087942099198699, + -0.0042914338409900665, + 0.035106394439935684, + 0.018292896449565887, + 0.0132558923214674, + -0.02641785517334938, + -0.01445350144058466, + 0.009122965857386589, + 0.017412301152944565, + 0.0056857094168663025, + 0.010091620497405529, + 0.018163742497563362, + -0.002597755752503872, + 0.0039626783691346645, + 0.014218675903975964, + 0.02799118496477604, + -0.024398356676101685, + 0.016813496127724648, + -0.0077962023206055164, + -0.015216683968901634, + -0.01626165769994259, + -0.016085537150502205, + 0.010361669585108757, + -0.03830001875758171, + 0.00722675072029233, + -0.0056651621125638485, + -0.0006002723821438849, + 0.020112793892621994, + 0.05241302400827408, + 0.00024344786652363837, + 0.04412368685007095, + -0.02014801651239395, + 0.019866226240992546, + -0.0004083760140929371, + 0.017717573791742325, + -0.011160075664520264, + -0.021239954978227615, + -0.011054404079914093, + 0.03940369933843613, + 0.006451827008277178, + 0.005870634224265814, + 0.0070212786085903645, + -0.003014570800587535, + -0.021439556032419205, + 0.02860173024237156, + -0.011400772258639336, + 0.009845053777098656, + -0.007209138944745064, + -0.027545016258955002, + -0.009833312593400478, + -0.03407316282391548, + 0.014582655392587185, + 0.021510004997253418, + 0.02253149449825287, + 0.02890700288116932, + -0.0018066876800730824, + 0.009070130065083504, + 0.006451827008277178, + 0.033110376447439194, + 0.004822725895792246, + -0.016954392194747925, + 0.0073500340804457664, + -0.03639793395996094, + -0.017881952226161957, + 0.020465031266212463, + -0.0025551936123520136, + -0.01009749062359333, + 0.00536575959995389, + 0.02998720109462738, + 0.01942005753517151, + 0.01616772636771202, + -0.0076611777767539024, + 0.012751017697155476, + -0.0055682966485619545, + 0.013079773634672165, + -0.06401339918375015, + -0.004702378064393997, + -0.016296880319714546, + -0.0191265270113945, + -0.003566410392522812, + 0.03982638195157051, + -0.03055078163743019, + -0.02886003814637661, + -0.03651534393429756, + -0.05161461606621742, + -0.010960474610328674, + -0.005791381001472473, + 0.004438199568539858, + 0.04320786893367767, + -0.020112793892621994, + -0.0063226730562746525, + -0.016754791140556335, + 0.03346261754631996, + 0.014218675903975964, + -0.04186936467885971, + -0.00797819159924984, + 0.02738063782453537 + ], + "how_to_set_up_multiple_drill_plate_mine": [ + -0.03293808922171593, + -0.019337177276611328, + 0.04030957818031311, + -0.016923274844884872, + -0.008740663528442383, + -0.014171943999826908, + 0.04020575433969498, + 0.010064416565001011, + -0.014820843003690243, + -0.004146461840718985, + 0.04311281815171242, + -0.024229871109128, + 0.02805837243795395, + -0.034547358751297, + 0.029849333688616753, + 0.02478792332112789, + 0.009006711654365063, + -0.020634973421692848, + -0.00021352818293962628, + 0.02293207496404648, + 0.05240504443645477, + 0.0019353398820385337, + -0.0011809953721240163, + -0.01304286066442728, + -0.010901495814323425, + 0.0028973319567739964, + 0.035689420998096466, + 0.05959484353661537, + -0.04617562144994736, + 0.011271367780864239, + 0.03693530336022377, + -0.012290138751268387, + -0.023035898804664612, + 0.026059765368700027, + -0.021206004545092583, + -0.0005629194783978164, + 0.03052418678998947, + 0.03132881969213486, + 0.019921185448765755, + 0.03607875853776932, + 0.05030261352658272, + -0.008688751608133316, + 0.0032818042673170567, + -0.049601804465055466, + -0.004328153096139431, + 0.04121803492307663, + -0.06514941155910492, + 0.02393137849867344, + 0.0249306820333004, + 0.04916055500507355, + 0.0014843554235994816, + 0.014055142179131508, + -0.0257872287184, + -0.0423600971698761, + -0.03387250378727913, + -0.04425488039851189, + -0.014145988039672375, + -0.01311423908919096, + 0.002564771566540003, + -0.016014816239476204, + 0.0064662741497159, + -0.013432200066745281, + 0.06769309937953949, + 0.0437617190182209, + -0.0044481996446847916, + 0.015041467733681202, + -0.05014687776565552, + 0.015923969447612762, + 0.02907065488398075, + 0.04269752278923988, + -0.048304006457328796, + 0.0356375090777874, + -0.0033969839569181204, + 0.015288049355149269, + 0.05699924752116203, + -0.07470119744539261, + -0.03358699008822441, + 0.04947202652692795, + -0.0703406035900116, + 0.008896399289369583, + -0.03382059186697006, + -0.037895675748586655, + 0.006005555856972933, + -0.002717262599617243, + -0.001035804278217256, + -0.044851865619421005, + -0.034832872450351715, + -0.0017536482773721218, + -0.061827052384614944, + -0.07724488526582718, + -0.018000446259975433, + -0.01949291303753853, + 0.01475595310330391, + 0.031536467373371124, + 0.06078881397843361, + 0.013289442285895348, + 0.03397632762789726, + -0.01025259681046009, + 0.007715403567999601, + 0.019778426736593246, + 0.005901732016354799, + -0.03509243205189705, + -0.02263358049094677, + -0.03187389671802521, + 0.006200225558131933, + -0.018000446259975433, + -0.00994761474430561, + 0.02402222342789173, + -0.0420486256480217, + -0.02707204781472683, + -0.07241708040237427, + 0.016235440969467163, + 0.014120032079517841, + 0.0250864177942276, + -0.0015760123496875167, + -0.0006132090929895639, + 0.022594647482037544, + 0.034209929406642914, + 0.023736707866191864, + 0.010356420651078224, + -0.017792798578739166, + 0.007241707760840654, + -0.004840783309191465, + -0.012802768498659134, + -0.015781212598085403, + -0.043242599815130234, + -0.002822708571329713, + -0.032834265381097794, + -0.01889592595398426, + 0.0177408866584301, + -0.01487275492399931, + 0.02966764196753502, + 0.020855600014328957, + 0.031770072877407074, + -0.015651432797312737, + -0.025878073647618294, + -0.0362604521214962, + 0.020310524851083755, + -0.008876931853592396, + 0.028577491641044617, + -0.016339264810085297, + -0.039504941552877426, + -0.027201827615499496, + -5.731725650548469e-06, + 0.002589105162769556, + 0.03885604441165924, + -0.08544696122407913, + 0.010207174345850945, + 0.0428273044526577, + -0.004889450501650572, + -0.033223606646060944, + -0.023126743733882904, + -0.014068120159208775, + -0.030861614271998405, + 0.013107750564813614, + -0.028863007202744484, + -0.00940902903676033, + 0.04716194421052933, + 0.00990868080407381, + -0.03786971792578697, + -0.05102938041090965, + -0.0055253710597753525, + -0.010317486710846424, + 0.025047482922673225, + -0.037739939987659454, + -0.011472526006400585, + -0.0343916229903698, + -0.012556186877191067, + -0.057622190564870834, + 0.040802739560604095, + 0.018467651680111885, + -0.04028362035751343, + -0.05757027864456177, + 0.01645606756210327, + 0.02341225929558277, + -0.01950589008629322, + -0.06473411619663239, + -0.039037737995386124, + 0.021439608186483383, + -0.005466970149427652, + 0.021751079708337784, + 0.008299412205815315, + -0.02133578434586525, + -0.005622705910354853, + 0.014301723800599575, + 0.026124654337763786, + -0.037065085023641586, + 0.00298168882727623, + -0.024969615042209625, + 0.01249778550118208, + -0.005327457096427679, + 0.012095469050109386, + 0.0029849333222955465, + 0.05975057929754257, + 0.0010528379352763295, + -0.007118416950106621, + 0.040880609303712845, + 0.017325591295957565, + 0.09255889058113098, + -0.02730565145611763, + 0.008747152052819729, + 0.06535705924034119, + 0.0362604521214962, + -0.013049349188804626, + -0.015106357634067535, + -0.04108825698494911, + -0.034443534910678864, + 0.03366485610604286, + 0.050588130950927734, + 0.006761522963643074, + 0.005139276385307312, + -0.029719553887844086, + 0.010434288531541824, + 0.004490377847105265, + -0.005194433033466339, + -0.03267852962017059, + -0.05100342631340027, + 0.0244634747505188, + -0.022620603442192078, + -0.018792102113366127, + -0.0039388141594827175, + 0.035689420998096466, + 0.029849333688616753, + 0.001932095387019217, + 0.002181921387091279, + 0.0437617190182209, + 0.0018850502092391253, + -0.07200178503990173, + 0.07900988310575485, + 0.025878073647618294, + -0.002665350679308176, + -0.014807865023612976, + 0.02278931625187397, + -0.035377949476242065, + 0.009512852877378464, + 0.014133010059595108, + -0.026488037779927254, + -0.0244634747505188, + -0.019324198365211487, + 0.012867658399045467, + -0.040024060755968094, + -0.019402066245675087, + -0.027513297274708748, + -0.03683147951960564, + 0.024658145383000374, + -0.002551793586462736, + -0.01025259681046009, + -0.018999749794602394, + 0.00300115579739213, + 0.045241206884384155, + 0.051522545516490936, + -0.04503355920314789, + -0.014496393501758575, + 0.029927201569080353, + -0.019259309396147728, + -0.05637630447745323, + -0.04290517047047615, + -0.0023895688354969025, + 0.03335338458418846, + -0.012685966677963734, + -0.0012377739185467362, + 0.050198789685964584, + -0.04747341573238373, + 0.06063307821750641, + 0.012050045654177666, + -0.0020894533954560757, + 0.04184097796678543, + 0.01597588136792183, + 0.0019710292108356953, + -0.06110028550028801, + -0.0037473891861736774, + 0.01841573975980282, + 0.03478096053004265, + -0.06302102655172348, + -0.046694740653038025, + -0.0023425237741321325, + 0.013256996870040894, + 0.032393015921115875, + 0.005574038252234459, + -0.007475311402231455, + -0.038674354553222656, + -0.008565460331737995, + 0.051055338233709335, + 0.044618263840675354, + -0.016183529049158096, + -0.0018039379501715302, + -0.026020832359790802, + 0.020219678059220314, + -0.016313308849930763, + -0.02608572132885456, + 0.034755006432533264, + 0.010304508730769157, + 0.01630033180117607, + -0.008539504371583462, + 0.035300079733133316, + -0.0005426413845270872, + -0.01903868280351162, + -0.007592112757265568, + 0.01927228644490242, + 0.02025861293077469, + -0.02935617044568062, + 0.038207147270441055, + 0.03857053071260452, + 0.05653204023838043, + -0.039427075535058975, + -0.04573436826467514, + -0.00921435933560133, + -0.0720536932349205, + 0.015197203494608402, + -0.004227573983371258, + -0.002201388357207179, + -0.008299412205815315, + 0.017040075734257698, + -0.006070445757359266, + 0.038051411509513855, + -0.007377976551651955, + 0.020985377952456474, + 0.005181455053389072, + -0.04711003229022026, + -0.03348316624760628, + 0.01811724714934826, + -0.0127378785982728, + 0.048537611961364746, + -0.051496587693691254, + -0.010810649953782558, + -0.025605536997318268, + 0.03127691149711609, + -0.022062551230192184, + -0.02224424108862877, + -0.014574261382222176, + -0.004613668657839298, + -0.02164725586771965, + -0.01811724714934826, + -0.02211446315050125, + -0.03317169472575188, + 0.004016682039946318, + -0.008078786544501781, + 0.0498613640666008, + 0.050354525446891785, + 0.03576728701591492, + -0.002628039103001356, + 0.012666499242186546, + 0.010667892172932625, + 0.005097098182886839, + -0.010875539854168892, + 0.008422703482210636, + -0.016936251893639565, + 0.05087364464998245, + -0.010453755035996437, + 0.054507479071617126, + 0.035066477954387665, + -0.01681945100426674, + -0.006787478923797607, + 0.01265352126210928, + 0.00906511303037405, + 0.0010755492839962244, + 0.005492926109582186, + -0.02018074505031109, + -0.017766842618584633, + -0.010207174345850945, + -0.058245133608579636, + 0.05102938041090965, + 0.003731166711077094, + 0.014729997143149376, + -0.03280831128358841, + 0.055857185274362564, + 0.009694544598460197, + -0.003672765800729394, + -0.029174478724598885, + 0.04197075590491295, + 0.0586085170507431, + 0.04085465148091316, + -0.007663491647690535, + 0.012523741461336613, + -0.07060015946626663, + 0.026046788319945335, + 0.0030465787276625633, + 0.041036345064640045, + 0.022438911721110344, + 0.017481327056884766, + 0.01988225057721138, + -0.03052418678998947, + 0.028110284358263016, + -0.013406244106590748, + -0.02805837243795395, + 0.0058692870661616325, + 0.018247026950120926, + 0.03319764882326126, + -0.06011395901441574, + -0.0704963356256485, + 0.07304001599550247, + -0.039271339774131775, + 0.05128894001245499, + 0.026656752452254295, + 0.003805789863690734, + -0.012913080863654613, + 0.053728800266981125, + 0.01996011845767498, + 0.0022451889235526323, + 0.010628958232700825, + 0.009577742777764797, + -0.029252346605062485, + -0.010700336657464504, + -0.01866232231259346, + -0.015106357634067535, + 0.004568245727568865, + 0.007663491647690535, + -0.009428495541214943, + -0.0025371932424604893, + -0.009817834943532944, + 0.0558052733540535, + -0.004149706102907658, + 0.04643518105149269, + -0.004474155604839325, + 0.001337542082183063, + -0.02086857706308365, + -0.02325652353465557, + -0.014288745820522308, + 0.015638455748558044, + 0.008799063973128796, + -0.004915406461805105, + -0.02034945785999298, + -0.00347160710953176, + -0.010687358677387238, + -0.0028162195812910795, + 0.01989522948861122, + 0.02922639064490795, + -0.028110284358263016, + 0.027720944955945015, + -0.03924538195133209, + -0.02263358049094677, + 0.009882724843919277, + 0.028863007202744484, + 0.04529311880469322, + -0.004019926302134991, + -0.006544141564518213, + -0.03228919208049774, + -0.05819322168827057, + 0.008279945701360703, + 0.014301723800599575, + -0.010752248577773571, + 0.016715627163648605, + 0.03306787088513374, + 0.018792102113366127, + -0.05497468262910843, + -0.005940665956586599, + -0.0586085170507431, + 0.009772412478923798, + -0.007780293468385935, + -0.011440081521868706, + 0.007923050783574581, + -0.02683844417333603, + -0.006145069375634193, + 0.05245695635676384, + 0.041503552347421646, + -0.0016757805133238435, + 0.0737667828798294, + -0.014301723800599575, + 0.02638421393930912, + 0.004016682039946318, + 0.04108825698494911, + 0.022049572318792343, + -0.024294761940836906, + -0.029485950246453285, + -0.014639151282608509, + 0.020310524851083755, + -0.03592302277684212, + 0.00011710591206792742, + 0.010421310551464558, + 0.012556186877191067, + -0.008507059887051582, + -0.03779185190796852, + 0.018454674631357193, + 0.021063245832920074, + -0.012134402990341187, + 0.014807865023612976, + -0.037662070244550705, + 0.028629403561353683, + -0.017844710499048233, + -0.03265257552266121, + 0.007708914577960968, + 0.007403932511806488, + -0.03195176273584366, + 0.005703818053007126, + 0.02072582021355629, + 0.06395544111728668, + -0.002259789267554879, + -0.024229871109128, + -0.040050018578767776, + 0.020829644054174423, + -0.017727907747030258, + -0.0003960308968089521, + 0.04228222742676735, + -0.014366613700985909, + 0.02034945785999298, + -0.05297607555985451, + -0.05331350490450859, + -0.04010193049907684, + -0.0038479682989418507, + 0.03234110400080681, + 0.04082869738340378, + -0.014288745820522308, + -0.01752026006579399, + 0.04474804177880287, + -0.03592302277684212, + -0.03402823954820633, + -0.0030984904151409864, + -0.030679922550916672, + -0.008130698464810848, + 0.025190241634845734, + 0.013302420265972614, + -0.023464171215891838, + 0.0020537639502435923, + 0.037662070244550705, + 0.0061645363457500935, + 0.034235887229442596, + 0.023204611614346504, + 0.005742751993238926, + 0.009052135050296783, + -0.010421310551464558, + -0.03080970235168934, + 0.02119302563369274, + -0.015586542896926403, + 0.0128157464787364, + 0.01487275492399931, + -0.018169159069657326, + -0.012711922638118267, + 0.004782382398843765, + -0.0047694044187664986, + -0.0029330214019864798, + -0.0017666262574493885, + -0.008039852604269981, + 0.0025144817773252726, + 0.014535327441990376, + -0.03963472321629524, + -0.007462333422154188, + -0.032626617699861526, + -0.013406244106590748, + 0.0022127439733594656, + -0.011024786159396172, + -0.013419222086668015, + 0.054870858788490295, + -0.02400924637913704, + 0.0246970783919096, + -0.05069195479154587, + 0.002407413674518466, + 0.008468125946819782, + 0.004957584664225578, + 0.01188782136887312, + 0.029537862166762352, + -0.009850279428064823, + -0.02522917464375496, + -0.05466321483254433, + -0.037584204226732254, + 0.0032250257208943367, + 0.010661402717232704, + 0.010843094438314438, + -0.010116328485310078, + 0.007747848518192768, + 0.00921435933560133, + 0.01296499278396368, + -0.01467808522284031, + -0.0021251426078379154, + -0.0008281567716039717, + 0.022348064929246902, + 0.03631236404180527, + 0.017104964703321457, + -0.015119335614144802, + 0.01674158312380314, + -0.022153396159410477, + -0.02630634605884552, + -0.03940111771225929, + 0.06841985881328583, + 0.008812041953206062, + 0.009110535494983196, + -0.003015755908563733, + 0.008533015847206116, + -0.0059958226047456264, + -0.0031666248105466366, + -0.05559762567281723, + -0.026254434138536453, + -0.04415105655789375, + -0.020972400903701782, + -0.010622468777000904, + -0.030628010630607605, + -0.00940902903676033, + -0.021777035668492317, + 0.02499557100236416, + 0.008455147966742516, + 0.0039225914515554905, + -0.0175072830170393, + 0.022348064929246902, + -0.019077617675065994, + -0.016339264810085297, + 0.01388642843812704, + -0.036675743758678436, + -0.006414362229406834, + 0.03096543811261654, + -0.015015511773526669, + 0.02478792332112789, + 0.0024528363719582558, + -0.010959896259009838, + -0.008189099840819836, + 0.030576098710298538, + -0.015236137434840202, + -0.007961984723806381, + -0.023918399587273598, + -0.0025777495466172695, + -0.0418928898870945, + -0.014626173302531242, + -0.05331350490450859, + 0.005690840072929859, + -0.0020456525962799788, + -0.014937644824385643, + 0.007851672358810902, + -0.011258389800786972, + 0.004026415292173624, + 0.04062104970216751, + 0.01691029593348503, + -0.019012726843357086, + 0.00921435933560133, + 0.016404155641794205, + -0.004451443906873465, + 0.013704736717045307, + -0.00024090358056128025, + 0.03052418678998947, + -0.016352243721485138, + 0.01620948500931263, + -0.029096610844135284, + 0.030005067586898804, + 0.0050549195148050785, + -0.01033046469092369, + 0.00024070079962257296, + -0.026708664372563362, + -0.016936251893639565, + -0.002469058847054839, + 0.024411562830209732, + -0.0028275754302740097, + 0.020167766138911247, + 0.006203469820320606, + -0.03218536823987961, + 0.005278789438307285, + 0.011102654039859772, + -0.022088507190346718, + -0.0012742745457217097, + 0.04887503758072853, + 0.029485950246453285, + 0.029693597927689552, + -0.0007803004700690508, + -0.05523424223065376, + 0.01548271905630827, + 0.0022143663372844458, + 0.04903077334165573, + -0.02447645366191864, + 0.030783746391534805, + -0.0127768125385046, + 0.005476703867316246, + -0.059542931616306305, + -0.0359489805996418, + -0.018753167241811752, + -0.03164029121398926, + 0.013263486325740814, + -0.03065396659076214, + 0.025813184678554535, + 0.019090594723820686, + -0.01150497142225504, + -0.00628782669082284, + 0.0044319769367575645, + 0.017091987654566765, + 0.005645417142659426, + -0.02278931625187397, + 0.017987467348575592, + -0.018675299361348152, + 0.013205084949731827, + -0.008305901661515236, + -0.021361740306019783, + -0.02111515775322914, + -0.03267852962017059, + -0.0028778649866580963, + -0.01180995348840952, + -0.0022030104883015156, + 0.002306834328919649, + -0.010142284445464611, + 0.042879216372966766, + 0.02922639064490795, + 0.0017049809684976935, + -0.010246108286082745, + -0.009298715740442276, + 0.01029153075069189, + -0.0011753174476325512, + -0.01296499278396368, + -0.010641936212778091, + 0.04762915149331093, + 0.010933940298855305, + 0.03589706867933273, + -0.051652323454618454, + 0.043476201593875885, + -0.010161750949919224, + -0.029537862166762352, + -0.06255382299423218, + 0.007092460989952087, + 0.021089201793074608, + 0.010408332571387291, + 0.015262093394994736, + -0.024139026179909706, + -0.01674158312380314, + -0.0428273044526577, + 0.03265257552266121, + 0.01373069267719984, + 0.0064662741497159, + -0.00932467170059681, + -0.037584204226732254, + -0.014885732904076576, + 0.024671122431755066, + -0.02699417993426323, + 0.0073195756413042545, + -0.02805837243795395, + -0.04586414992809296, + 0.01659882441163063, + -0.006936725229024887, + 0.018636366352438927, + -0.004610423929989338, + 0.015846101567149162, + -0.0364161878824234, + -0.017260700464248657, + 0.01844169571995735, + -0.006518186070024967, + -0.004545534495264292, + 0.01146603748202324, + -0.033301472663879395, + 0.00014437992649618536, + 0.009344139136373997, + 0.028733227401971817, + 0.01311423908919096, + 0.001865583355538547, + 0.024048179388046265, + -0.03241897001862526, + 0.03745442256331444, + -0.015236137434840202, + 0.013133706524968147, + 0.003591653425246477, + -0.012634054757654667, + 0.025268109515309334, + -0.010505666956305504, + 0.0035494749899953604, + 0.013341354206204414, + 0.010875539854168892, + 0.0493941567838192, + -0.01188782136887312, + 0.03677956759929657, + -0.04843378812074661, + 0.010693848133087158, + -0.03379463776946068, + 0.01919441856443882, + 0.010395354591310024, + -0.02676057629287243, + 0.003361294511705637, + 0.0060347565449774265, + 0.001012281747534871, + -0.02025861293077469, + -0.014120032079517841, + -0.00343267316929996, + 0.00890288781374693, + -0.00600231159478426, + 0.0007713781669735909, + -0.008812041953206062, + -0.015703344717621803, + 0.0028162195812910795, + -0.009357117116451263, + 0.042489875108003616, + 0.02164725586771965, + -0.014470437541604042, + 0.028577491641044617, + -0.00955827534198761, + 0.02127089351415634, + -0.015547608956694603, + -0.004912161733955145, + 0.025436822324991226, + -0.0127378785982728, + -0.05897190049290657, + -0.01384749449789524, + 0.0013067193794995546, + -0.011842397972941399, + 0.04067296162247658, + 0.020245634019374847, + 0.03327551856637001, + -0.015807168558239937, + 0.023464171215891838, + -0.007189795840531588, + -0.04664282873272896, + -0.03260066360235214, + -0.029330214485526085, + 0.011959199793636799, + 0.007254685740917921, + 0.002561527071520686, + -0.03249683976173401, + -0.01388642843812704, + -0.11150672286748886, + -0.03156242519617081, + 0.019674602895975113, + -0.004587712697684765, + -0.03971258923411369, + 0.02630634605884552, + 0.0498613640666008, + 0.029563818126916885, + -0.006342983338981867, + -0.024671122431755066, + -0.014275767840445042, + -0.019947141408920288, + -0.02829197607934475, + 0.010700336657464504, + -0.006063956767320633, + 0.02325652353465557, + 0.005814130883663893, + 0.014626173302531242, + 0.010453755035996437, + -0.011874843388795853, + -0.01912952959537506, + -0.025955941528081894, + -0.002316567813977599, + 0.01544378511607647, + -0.0420486256480217, + -0.005145765375345945, + -0.012101957574486732, + -0.00944147352129221, + 0.01759812794625759, + 0.043398335576057434, + 0.0005158743588253856, + -0.008422703482210636, + 0.00047329036169685423, + 0.04412510246038437, + -0.019311221316456795, + -0.011939733289182186, + 0.02141365222632885, + 0.010830116458237171, + 0.017338568344712257, + 0.04503355920314789, + 0.0013359198346734047, + 0.0254757571965456, + 0.004999763332307339, + -0.003993970341980457, + 0.01323753036558628, + 0.017027096822857857, + 0.010823627933859825, + 0.008150165900588036, + 0.0021170314867049456, + 0.012861168943345547, + 0.02417795918881893, + -0.03013484738767147, + -0.005463725887238979, + 0.0008378902566619217, + 0.010927451774477959, + 0.03374272584915161, + -0.03755824640393257, + 0.014392569661140442, + -0.002911932300776243, + -0.005285278428345919, + 0.021076224744319916, + 0.015262093394994736, + -0.008130698464810848, + -0.010700336657464504, + -0.013821538537740707, + 0.004139972850680351, + -0.00932467170059681, + 0.009084579534828663, + -0.0009814590448513627, + 0.02224424108862877, + 0.021517476066946983, + 0.008578438311815262, + -0.004980296362191439, + 0.01835085079073906, + 0.009318183176219463, + -0.0073195756413042545, + -0.009960592724382877, + 0.00871470756828785, + 0.026552928611636162, + -0.05819322168827057, + 0.014068120159208775, + 0.04864143580198288, + -0.002976821968331933, + 0.03340529650449753, + -0.0028389310464262962, + -0.03221132233738899, + 0.004694780800491571, + 0.004159439820796251, + 0.01767599582672119, + 0.03945302963256836, + 0.014042164199054241, + 0.0005061408737674356, + -0.009629654698073864, + -0.013289442285895348, + -0.00042867858428508043, + 0.02660484053194523, + -0.03478096053004265, + -0.03413206338882446, + 0.011076698079705238, + 0.025436822324991226, + -0.0025972165167331696, + 0.029771465808153152, + 0.01605374924838543, + 0.005486437119543552, + 0.005041941534727812, + 0.04383958503603935, + 0.04682451859116554, + -0.01658584736287594, + 0.022075528278946877, + -0.026202522218227386, + 0.013016904704272747, + -0.025294065475463867, + 0.0125432088971138, + 0.01597588136792183, + -0.03166624903678894, + -0.018143203109502792, + -0.022581668570637703, + -0.04326855391263962, + -0.0035786754451692104, + -0.0006253759493120015, + 0.0042632631957530975, + 0.031069261953234673, + -0.021517476066946983, + -0.016559891402721405, + -0.00298168882727623, + -0.012990948744118214, + 0.019687581807374954, + 0.027720944955945015, + -0.05834895744919777, + -0.023386303335428238, + 0.01605374924838543, + 0.07760826498270035, + -0.019531846046447754, + 0.016157573089003563, + -0.009649121202528477, + -0.010512156412005424, + 0.014781909063458443, + -0.02141365222632885, + -0.030420362949371338, + 0.005194433033466339, + 0.002561527071520686, + -0.04171120002865791, + -0.017325591295957565, + -0.04132185876369476, + -0.0017601372674107552, + 0.02982337772846222, + 0.0070016151294112206, + 0.020557105541229248, + -0.043554071336984634, + -0.024645166471600533, + 0.026358257979154587, + -0.008020386099815369, + 0.024489430710673332, + 0.01936313323676586, + -0.04565650224685669, + 0.0024398586247116327, + -0.020751776173710823, + -0.035066477954387665, + -0.002386324340477586, + 0.010933940298855305, + 0.010765226557850838, + 0.05276842787861824, + 0.004529311787337065, + -0.02172512374818325, + -0.007105438970029354, + -0.012634054757654667, + 0.03478096053004265, + -0.001616568537428975, + 0.027513297274708748, + -0.02149152010679245, + -0.01622246392071247, + -0.002277633873745799, + -0.01483382098376751, + 0.00011528088361956179, + 0.03527412563562393, + 0.019298242405056953, + 0.011187010444700718, + -0.04786275699734688, + -0.029849333688616753, + 0.04075082764029503, + -0.0011680173920467496, + -0.02188085950911045, + 0.006459785159677267, + 0.011602305807173252, + 0.025203218683600426, + -0.02255571261048317, + -0.0124653410166502, + 0.03036845102906227, + 0.037817806005477905, + 0.016702648252248764, + 0.017844710499048233, + 0.008338346146047115, + -0.011868353933095932, + -0.010830116458237171, + 0.023347370326519012, + -0.002900576451793313, + 0.01583312451839447, + 0.014898710884153843, + 0.006897791288793087, + -0.015145291574299335, + 0.0008833131287246943, + -0.027876680716872215, + -0.011459548026323318, + 0.02914852276444435, + -0.022218285128474236, + 0.017987467348575592, + 0.02938212640583515, + 0.001169639639556408, + -0.05850469321012497, + 0.01583312451839447, + 0.010317486710846424, + -0.024424541741609573, + 0.023892443627119064, + -0.011569861322641373, + -0.00913649145513773, + 0.026020832359790802, + -0.03825905919075012, + 0.026656752452254295, + -0.0009814590448513627, + -0.02761712111532688, + -0.028888963162899017, + -0.03963472321629524, + -0.0032282702159136534, + -0.004831049591302872, + -0.02141365222632885, + 0.03446948900818825, + -0.004603934939950705, + -0.03366485610604286, + -0.027331607416272163, + 0.017494304105639458, + -0.01582014560699463, + 0.008377280086278915, + 0.025566602125763893, + 0.001073927036486566, + 0.01498955674469471, + 0.010979363694787025, + 0.012030579149723053, + -0.0074493554420769215, + -0.005379369016736746, + -0.019311221316456795, + -0.00326882628723979, + -0.007163839880377054, + 0.0077738044783473015, + -0.00686534633859992, + -0.0077543375082314014, + -0.004474155604839325, + 0.018636366352438927, + 0.023035898804664612, + 0.008734174072742462, + 0.01495062280446291, + -0.007819227874279022, + -0.007981452159583569, + -0.013834516517817974, + -0.011472526006400585, + 0.025878073647618294, + -0.022010639309883118, + 0.012076001614332199, + -0.027928592637181282, + 0.012647032737731934, + -0.009928147308528423, + 0.0033775169868022203, + 0.03363890200853348, + 0.03371676802635193, + 0.01630033180117607, + -0.015872057527303696, + -0.027487341314554214, + -0.020388392731547356, + 0.0063170273788273335, + 0.029485950246453285, + -0.007098949979990721, + -0.019765449687838554, + 0.005320968106389046, + 0.0029557328671216965, + -0.001975896069779992, + 0.0064078732393682, + 0.005973110906779766, + 0.011018297635018826, + -0.018247026950120926, + -0.004182151053100824, + -0.019830338656902313, + -0.010564068332314491, + -0.007845182903110981, + 0.027513297274708748, + 0.015223159454762936, + -0.0007186551229096949, + -0.02599487639963627, + 0.0036403208505362272, + -0.00990219134837389, + 0.017027096822857857, + 0.03029058314859867, + 0.023230567574501038, + -0.0032444926910102367, + 0.01683242805302143, + -0.025060461834073067, + 0.01803937926888466, + 0.002272767247632146, + -0.02333439141511917, + -0.014431503601372242, + -0.0001137600265792571, + -0.03148455545306206, + 0.00656036427244544, + -0.001357009052298963, + -0.0003583136713132262, + 0.0023473904002457857, + -0.00656036427244544, + -0.012627565301954746, + 0.0005146576440893114, + -0.005914709996432066, + -0.010181218385696411, + 0.009577742777764797, + -0.0016563135432079434, + 0.018311915919184685, + 0.04412510246038437, + -3.792001007241197e-05, + -0.01051864493638277, + 0.011005319654941559, + 0.01659882441163063, + 0.002368479734286666, + -0.014223855920135975, + 0.015781212598085403, + -0.007060016039758921, + 0.017169855535030365, + 0.018402762711048126, + 0.01548271905630827, + 0.0033872504718601704, + -0.034755006432533264, + -0.023308435454964638, + -0.020544128492474556, + 0.03080970235168934, + 0.013484111987054348, + -0.0031568913254886866, + -0.0043930429965257645, + -0.0073001086711883545, + -0.029849333688616753, + -0.053884536027908325, + -0.025761272758245468, + -0.03164029121398926, + 0.008163143880665302, + -0.02324354648590088, + 0.021608320996165276, + 0.039427075535058975, + -0.006774500943720341, + -0.01811724714934826, + -0.0008314012666232884, + -0.025449801236391068, + 0.015430807135999203, + -0.0062067145481705666, + 0.0174294151365757, + 0.036520007997751236, + 0.02652697265148163, + 0.06577235460281372, + -0.006800456903874874, + -0.061671316623687744, + 0.016495000571012497, + 0.05144467577338219, + 0.02316567860543728, + 0.01380856055766344, + -0.02019372209906578, + 0.010680870153009892, + -0.042489875108003616, + -0.03228919208049774, + -0.021076224744319916, + 0.049134597182273865, + 0.0053923469968140125, + 0.03916751593351364, + -0.036052804440259933, + -0.011381680145859718, + -0.020764753222465515, + 0.0173515472561121, + 0.014483415521681309, + 0.032990001142024994, + 0.005100342445075512, + -0.005165232345461845, + 0.02652697265148163, + 0.012874146923422813, + -0.01257565338164568, + 0.007429888471961021, + -0.031017350032925606, + -0.004947851411998272, + 0.04077678546309471, + -0.030031023547053337, + -0.019999053329229355, + 0.0554938018321991, + 0.016313308849930763, + -0.015275071375072002, + 0.032548751682043076, + 0.011232433840632439, + -0.031250953674316406, + 0.013977274298667908, + -0.019402066245675087, + -0.03252279385924339, + 0.012212270870804787, + 0.003216914599761367, + 0.0024187692906707525, + -0.0019256063969805837, + 0.007871138863265514, + 0.03327551856637001, + -0.0030822681728750467, + -0.01827298291027546, + 0.006780989933758974, + 0.01897379383444786, + -0.009396051056683064, + 0.016183529049158096, + -0.0013553868047893047, + -0.02951190620660782, + -0.06395544111728668, + -0.016624780371785164, + 0.012517252936959267, + 0.02361990697681904, + 0.018324894830584526, + -0.05183401703834534, + -0.003581919940188527, + 0.026968223974108696, + 0.01653393544256687, + -0.005424791947007179, + 0.004756426438689232, + -0.02194574847817421, + -0.018065335229039192, + 0.007339042611420155, + -0.0020294301211833954, + -0.012523741461336613, + -8.841242379276082e-05, + 0.008727685548365116, + 0.02088155411183834, + 0.005369635298848152, + -0.0017877154750749469, + 0.0035981424152851105, + -0.024593254551291466, + -0.009045645594596863, + -0.008747152052819729, + 0.005483192857354879, + -0.010765226557850838, + -0.03332743048667908, + 0.016417132690548897, + 0.0019612957257777452, + -0.020751776173710823, + 0.025216197595000267, + 0.010285042226314545, + -0.021141113713383675, + 0.0347030945122242, + -0.017792798578739166, + 0.04926437884569168, + 0.035974934697151184, + -0.017247723415493965, + -0.0011120499111711979, + -0.01471701916307211, + -0.020388392731547356, + -0.009454451501369476, + -0.030238671228289604, + -0.01388642843812704, + 0.008545993827283382, + 0.009532319381833076, + 0.02630634605884552, + 0.011180521920323372, + -0.009837301447987556, + 0.001520044868811965, + 0.0014389324933290482, + -0.0033645390067249537, + 0.010680870153009892, + 0.01304286066442728, + 0.012166847474873066, + -0.04290517047047615, + -0.00048342940863221884, + -0.011258389800786972, + 0.002655617194250226, + 0.016884339973330498, + -0.013127217069268227, + -0.006800456903874874, + 0.019389089196920395, + -0.017727907747030258, + 0.005369635298848152, + -0.005619461182504892, + 0.022698471322655678, + -0.005402080249041319, + -0.019934162497520447, + -0.004568245727568865, + -0.0181302260607481, + -0.05949101969599724, + 0.01659882441163063, + -1.837700983742252e-05, + -0.00609964644536376, + 0.03029058314859867, + 0.024891747161746025, + 0.008500570431351662, + 0.001797448960132897, + 0.0019434511195868254, + -0.02471005730330944, + -0.029771465808153152, + 0.020907510071992874, + 0.004513089545071125, + -0.07028868794441223, + 0.008487592451274395, + 0.015962904319167137, + 0.020128833130002022, + 0.025358954444527626, + 0.03592302277684212, + -0.0011607172200456262, + -0.04306090623140335, + 0.023269502446055412, + -0.015729300677776337, + 0.027669033035635948, + -0.011939733289182186, + -0.01957077905535698, + -0.018065335229039192, + -0.028343887999653816, + 0.007072994019836187, + -0.02914852276444435, + -0.02088155411183834, + 0.015534630976617336, + -0.01691029593348503, + 0.03029058314859867, + -0.0015030112117528915, + 0.015846101567149162, + -0.02569638192653656, + 0.03324956074357033, + -0.006690144073218107, + 0.01752026006579399, + 0.002392813330516219, + -0.0007223052089102566, + -0.04137377068400383, + 0.00940253958106041, + 0.001946695614606142, + -0.016806472092866898, + 0.006352716591209173, + -0.0024009246844798326, + -0.03838883712887764, + 0.01989522948861122, + 0.007741359528154135, + -0.022854207083582878, + -0.000450578925665468, + -0.024723034352064133, + 0.026059765368700027, + 0.021932771429419518, + 0.005168477073311806, + -0.03350912034511566, + 0.033535078167915344, + 0.004925139714032412, + -0.0064273402094841, + 0.028188152238726616, + -0.006709611043334007, + -0.03410610556602478, + 0.0030984904151409864, + 3.193797601852566e-05, + -0.028162196278572083, + 0.03195176273584366, + -0.012588631361722946, + -0.045085471123456955, + 0.002027807990089059, + -0.03249683976173401, + 0.02714991569519043, + 0.014107054099440575, + -0.0256314929574728, + 0.0029313992708921432, + 0.0036857437808066607, + -0.007527222856879234, + 0.010103350505232811, + 0.026864400133490562, + 0.02140067331492901, + 0.001625490840524435, + 0.0064468071796, + -0.028343887999653816, + -0.050276659429073334, + 0.0026961734984070063, + -0.024139026179909706, + 0.006420851219445467, + 0.00011670035019051284, + -0.026656752452254295, + 0.010752248577773571, + -0.011245411820709705, + 0.04435870423913002, + 0.02339928224682808, + -0.002133253961801529, + -0.014210877940058708, + 0.006391650531440973, + -0.008124209940433502, + 0.025761272758245468, + 0.007592112757265568, + 0.006761522963643074, + 0.011414125561714172, + -0.014976578764617443, + -0.013172640465199947, + -0.018532542511820793, + -0.006755033973604441, + 0.05362497642636299, + 0.001284819096326828, + -0.02086857706308365, + 0.02064795233309269, + -0.014353635720908642, + 0.006586320232599974, + -0.014081098139286041, + 0.007222240790724754, + 0.025981897488236427, + -0.015949925407767296, + 0.0017763597425073385, + 0.008013896644115448, + -0.0010001148330047727, + 0.012088979594409466, + -0.014704041182994843, + 0.008805553428828716, + -0.0014843554235994816, + -0.002861642511561513, + 0.027409473434090614, + 0.013613891787827015, + -0.010680870153009892, + 0.017494304105639458, + 0.014288745820522308, + -0.007682958617806435, + -0.03296404704451561, + -0.02179001271724701, + -0.010946918278932571, + 0.002464192220941186, + -0.004253529943525791, + -0.015132313594222069, + -0.007760826498270035, + -0.004876472521573305, + -0.024580277502536774, + -0.031095217913389206, + 0.03374272584915161, + 0.01622246392071247, + 0.004000459332019091, + -0.0021948993671685457, + -0.028577491641044617, + -0.010103350505232811, + -0.009383073076605797, + -0.029459994286298752, + 0.0015419451519846916, + -0.011290834285318851, + -0.025800205767154694, + -0.0025355711113661528, + -0.03218536823987961, + 0.03753229230642319, + -0.030991394072771072, + -0.011212966404855251, + -0.019402066245675087, + 0.016611803323030472, + -0.017494304105639458, + -0.05128894001245499, + 0.039868324995040894, + 0.030342495068907738, + 0.009733478538691998, + 0.03771398216485977, + -0.008357813581824303, + 0.016339264810085297, + 0.029485950246453285, + 0.041192080825567245, + -0.018000446259975433, + 0.012037067674100399, + -0.014483415521681309, + 0.0013456533197313547, + 0.023957334458827972, + -0.001826649415306747, + 0.0175851508975029, + -0.004590956959873438, + 0.011771019548177719, + 0.013756648637354374, + 0.009882724843919277, + 0.001946695614606142, + 0.00905862357467413, + -0.026059765368700027, + -0.012679477222263813, + -0.010317486710846424, + 0.0011436836794018745, + -0.02914852276444435, + -0.02599487639963627, + -0.023347370326519012, + -0.025761272758245468, + 0.01479488704353571, + -0.0023652352392673492, + -0.02186788059771061, + 0.009389561600983143, + 0.021893836557865143, + -0.009739967063069344, + 0.02486579120159149, + -0.0016100795473903418, + 0.01376962661743164, + -0.023736707866191864, + 0.014522349461913109, + -0.025878073647618294, + -0.008189099840819836, + 0.0030417118687182665, + 0.07163839787244797, + 0.031224997714161873, + 0.03901178017258644, + -0.0031763582956045866, + 0.013717714697122574, + 0.019402066245675087, + 0.008883421309292316, + 0.012147380970418453, + 0.010427800007164478, + -0.011855375953018665, + 0.009162447415292263, + -0.0034780960995703936, + -0.020310524851083755, + 0.018156182020902634, + 0.004623401910066605, + 0.004649357870221138, + 0.016546912491321564, + 0.020063942298293114, + 0.0174294151365757, + 0.0348588302731514, + 0.04544885456562042, + 0.018934858962893486, + -0.011109142564237118, + -0.014094076119363308, + -0.03693530336022377, + -0.013549001887440681, + 0.03174411505460739, + 0.020557105541229248, + 0.001241018413566053, + 0.023658839985728264, + -0.0253200214356184, + 0.008993733674287796, + -0.006433829199522734, + -0.0174294151365757, + -0.009739967063069344, + 0.00311471289023757, + 0.010473222471773624, + -0.02624145708978176, + 0.002704284619539976, + -0.017546216025948524, + -0.03005697950720787, + -0.0005398024804890156, + 0.006362450309097767, + -0.01158283930271864, + 0.022776339203119278, + -0.04762915149331093, + -0.03363890200853348, + -0.014742975123226643, + 0.013036372140049934, + -0.0002202199393650517, + 0.036597877740859985, + -0.005768707953393459, + 0.011608795262873173, + 0.0009400917333550751, + 0.02249082364141941, + 0.012147380970418453, + -0.06390352547168732, + -0.040050018578767776, + 0.04700620844960213 + ], + "how_to_set_up_raw_resource_burner_mine": [ + -0.03136128932237625, + -0.02553161233663559, + 0.06638695299625397, + -0.010987158864736557, + -0.0031111447606235743, + -0.009821223095059395, + 0.026959288865327835, + 0.007072946522384882, + 0.003765496425330639, + -0.014455222524702549, + 0.02329491823911667, + 0.03233686834573746, + 0.01587100140750408, + -0.00010038349137175828, + 0.059105802327394485, + 0.03316967934370041, + -0.03716717287898064, + 0.007162176538258791, + -0.01671571098268032, + -0.013015649281442165, + 0.05049215257167816, + 0.008411393500864506, + -0.0013644719729200006, + -0.03114713914692402, + 0.008804003708064556, + -0.016406381502747536, + 0.04111707955598831, + 0.038404494524002075, + -0.04178332909941673, + 0.03628677502274513, + -0.01829805225133896, + -0.015002499334514141, + -0.033812135457992554, + 0.016798991709947586, + 0.0005052635679021478, + -0.010701623745262623, + 0.0046399482525885105, + 0.013348774053156376, + 0.01570443995296955, + -0.0057791150175035, + 0.028363170102238655, + -0.025888530537486076, + -0.008054474368691444, + -0.008316215127706528, + -0.031623031944036484, + 0.022128982469439507, + -0.0564408041536808, + 0.006704130209982395, + 0.018869122490286827, + 0.024139627814292908, + -0.024556033313274384, + 0.015276136808097363, + -0.05986722931265831, + -0.07714211195707321, + 0.003518627258017659, + -0.031242316588759422, + 0.007661863230168819, + 0.0094226635992527, + 0.01054695900529623, + 0.007905757986009121, + -0.00292524928227067, + 0.018535997718572617, + 0.03842828795313835, + 0.027506563812494278, + 0.02705446630716324, + 0.0211058147251606, + -0.04678019508719444, + 0.00026118298410438, + 0.01147494837641716, + 0.0305284783244133, + -0.04225922003388405, + -0.01052316464483738, + 0.01784595474600792, + 0.004315746482461691, + 0.038404494524002075, + -0.049064476042985916, + -0.006139008328318596, + 0.047660596668720245, + -0.05177706107497215, + 0.000824631832074374, + -0.041164666414260864, + -0.059058211743831635, + -0.048445817083120346, + -0.008197241462767124, + -0.004538821056485176, + -0.049968671053647995, + -0.046827785670757294, + 0.019202247262001038, + -0.02441326528787613, + -0.05758294463157654, + -0.028529731556773186, + -0.014943012036383152, + 0.039475250989198685, + 0.031623031944036484, + 0.0018649022094905376, + -0.003001094562932849, + 0.046494659036397934, + -0.022854719310998917, + 0.014038817025721073, + 0.03326486051082611, + 0.026221655309200287, + -0.03578708693385124, + -0.005032558925449848, + -0.0006190315471030772, + 0.03457356244325638, + 0.017429549247026443, + -0.015299931168556213, + 0.004788664169609547, + -0.04982590302824974, + -0.03081401437520981, + -0.08056853711605072, + 0.00228725653141737, + 0.010160296224057674, + 0.014395736157894135, + 0.010838442482054234, + 0.009107385762035847, + 0.033812135457992554, + 0.03221789747476578, + 0.028030045330524445, + -0.016989348456263542, + -0.02334250882267952, + 0.042449574917554855, + 0.015204752795398235, + 0.005086096934974194, + 0.0121233519166708, + -0.029053213074803352, + -0.00451800087466836, + -0.03692922741174698, + 0.00101647584233433, + 0.0367150753736496, + -0.02924356982111931, + 0.024984335526823997, + 0.043234799057245255, + 0.036619897931814194, + -0.023378200829029083, + -0.016085153445601463, + -0.04523354396224022, + 0.002687303349375725, + 0.006246083881705999, + 0.032122716307640076, + -0.033479008823633194, + -0.023485274985432625, + -0.06476891785860062, + 0.022795232012867928, + -0.023556658998131752, + 0.003161708125844598, + -0.07871255278587341, + -0.0009138615569099784, + 0.02496054209768772, + 0.005847524385899305, + 0.0007090048748068511, + -0.025341255590319633, + -0.014467120170593262, + -0.0012752421898767352, + -0.006912332959473133, + -0.039189714938402176, + -0.02133186347782612, + 0.04275890812277794, + -0.006585157010704279, + -0.03669128194451332, + -0.02177206426858902, + 0.02222416177392006, + -0.018274256959557533, + 0.006014086771756411, + -0.026388218626379967, + -0.023413892835378647, + -0.03197994828224182, + -0.014407633803784847, + -0.054965540766716, + 0.01441953144967556, + 0.020011262968182564, + -0.0007755554397590458, + -0.012730114161968231, + 0.0361202098429203, + 0.010094861499965191, + -0.032122716307640076, + -0.06529239565134048, + 0.003554319264367223, + 0.008458982221782207, + -0.0033609881065785885, + -0.0006562105845659971, + -0.029600489884614944, + -0.018036311492323875, + 0.013289287686347961, + 0.037452708929777145, + 0.024151524528861046, + -0.010838442482054234, + -0.015442699193954468, + 0.01204007025808096, + -0.01396743394434452, + -0.009910453110933304, + -0.007768938783556223, + -0.011314335279166698, + 0.03205133229494095, + -0.001811364316381514, + -0.0031587339472025633, + 0.010707572102546692, + 0.042735110968351364, + 0.06700561195611954, + -0.027292413637042046, + 0.013372568413615227, + 0.06914712488651276, + 0.014157790690660477, + -0.006775513757020235, + -0.011463051661849022, + 0.009666558355093002, + -0.004714306443929672, + 0.0463280975818634, + 0.015061985701322556, + 0.01466937456279993, + 0.004333592485636473, + -0.016596738249063492, + 0.011403564363718033, + -0.020058851689100266, + 0.008226985111832619, + -0.010558856651186943, + -0.01431245543062687, + 0.04949278011918068, + -0.0424019880592823, + -0.010511266998946667, + -0.03780962899327278, + -0.002612945158034563, + -0.0027051493525505066, + 0.033740751445293427, + 0.01784595474600792, + 0.01441953144967556, + -0.007679708767682314, + -0.048564791679382324, + 0.10907447338104248, + -0.0037327788304537535, + -0.03314588591456413, + -0.03424043580889702, + 0.024817774072289467, + -0.019261732697486877, + 0.04689916968345642, + 0.00698371697217226, + -0.03590606153011322, + -0.006359108258038759, + -0.005202095489948988, + -0.006531619466841221, + -0.04647086560726166, + -0.011201310902833939, + -0.07514336705207825, + -0.017881646752357483, + 0.0073644304648041725, + 0.008940823376178741, + 0.002899967599660158, + 9.582905477145687e-05, + 0.03255102038383484, + 0.0056779878214001656, + 0.06362677365541458, + -0.031504057347774506, + -0.04816028103232384, + -0.015894796699285507, + -0.007072946522384882, + -0.05363304167985916, + -0.05667874962091446, + -0.0010053220903500915, + 0.0032955529168248177, + -0.01522854808717966, + -0.008060422725975513, + 0.02726861834526062, + -0.083043172955513, + 0.0282204020768404, + 0.02541263960301876, + -0.009089539758861065, + 0.040879134088754654, + -0.02103443071246147, + -0.020070750266313553, + -0.022795232012867928, + -0.01588289998471737, + 0.028244197368621826, + 0.05672634020447731, + -0.07876014709472656, + -0.014324353076517582, + 0.0119270458817482, + 0.031170932576060295, + 0.0072276112623512745, + -0.0021608476527035236, + -0.019166555255651474, + -0.01712021790444851, + 0.015561671927571297, + 0.051586706191301346, + 0.04887412115931511, + -0.020772689953446388, + 0.00447636004537344, + -0.016227921470999718, + 0.01043988298624754, + 0.020213518291711807, + -0.0021206941455602646, + 0.020570436492562294, + 0.028862856328487396, + 0.023806503042578697, + 0.009327485226094723, + 0.009880710393190384, + -0.04706573113799095, + -0.0016165460692718625, + -0.02373511902987957, + 0.012587346136569977, + -0.011355975642800331, + -0.019820906221866608, + 0.04737506061792374, + 0.04223542660474777, + 0.021236686035990715, + -0.02137945406138897, + -0.05672634020447731, + 0.02598370984196663, + -0.08485156297683716, + 0.017715083435177803, + 0.019939878955483437, + -0.012730114161968231, + -0.006793359760195017, + 0.01969003677368164, + -0.004690511617809534, + 0.024211011826992035, + -0.007596428040415049, + 0.023604249581694603, + 0.0281728133559227, + -0.022355031222105026, + -0.027340002357959747, + -0.005758294370025396, + -0.0005327761173248291, + 0.014360044151544571, + -0.04892170801758766, + -0.008649338968098164, + -0.046542249619960785, + 0.04635189101099968, + -0.013217903673648834, + -0.004758920986205339, + 0.0001414663711329922, + -0.011278643272817135, + -0.06652972102165222, + 0.01433624979108572, + -0.01570443995296955, + -0.012979957275092602, + 0.016989348456263542, + 0.04599497467279434, + 0.015061985701322556, + 0.012789600528776646, + 0.035668112337589264, + 0.005434093065559864, + 0.009720096364617348, + 0.0006748001324012876, + -0.016858479008078575, + 0.000833554775454104, + 0.014074509032070637, + -0.021177198737859726, + 0.07514336705207825, + -0.01090982649475336, + 0.03148026391863823, + 0.04775577411055565, + 0.016346894204616547, + -0.03145647048950195, + -0.010802751407027245, + -0.014907320030033588, + 0.016061358153820038, + -0.013027546927332878, + -0.03771445155143738, + 0.0041670300997793674, + -0.0005465323338285089, + -0.07033685594797134, + 0.039951141923666, + 0.02098684199154377, + 0.005957574583590031, + -0.003575139446184039, + 0.029838435351848602, + -0.006115213502198458, + 0.027625536546111107, + 0.0008395034237764776, + 0.018988095223903656, + 0.02755415253341198, + 0.05929615721106529, + -0.02344958484172821, + -0.0031914515420794487, + -0.03169441595673561, + 0.022259853780269623, + 0.03547775745391846, + 0.04471006244421005, + 0.030504684895277023, + 0.023152152076363564, + -0.012682524509727955, + -0.0360250324010849, + 0.02032059244811535, + 0.009690352715551853, + -0.010541010648012161, + -0.03345521539449692, + 0.025317460298538208, + 0.014098304323852062, + -0.04520975053310394, + -0.04861237853765488, + 0.04949278011918068, + -0.026745136827230453, + 0.036334361881017685, + 0.026792725548148155, + -0.027363795787096024, + -0.008887285366654396, + 0.008601750247180462, + 0.014847833663225174, + -0.010654035024344921, + 0.007989038713276386, + 0.035882264375686646, + -0.0019675164949148893, + -0.020118338987231255, + 0.015216650441288948, + 0.00028553526499308646, + 0.02800625003874302, + -0.03359798341989517, + -0.01396743394434452, + -0.031218523159623146, + -0.035311195999383926, + 0.05853473022580147, + -0.013539130799472332, + 0.062484633177518845, + -0.013015649281442165, + -0.017429549247026443, + -0.005865370389074087, + 0.012872881256043911, + -0.004161081742495298, + -0.026340628042817116, + -0.009226358495652676, + -0.021224787458777428, + -0.0018143387278541923, + -0.001850030617788434, + 0.012051967903971672, + 0.0075012496672570705, + 0.036619897931814194, + 0.033122092485427856, + -0.0353349894285202, + 0.036334361881017685, + -0.019559165462851524, + -0.019725728780031204, + 0.015323726460337639, + 0.03247963637113571, + 0.055298663675785065, + -0.005023635923862457, + -0.03378833830356598, + -0.043187208473682404, + -0.04106948897242546, + 0.003649497637525201, + 0.011873507872223854, + 0.02598370984196663, + 0.037952397018671036, + -0.003700061235576868, + 0.03799998387694359, + -0.04423417150974274, + -0.016453970223665237, + -0.03148026391863823, + -0.010285218246281147, + -0.011171567253768444, + -0.027530359104275703, + 0.026864109560847282, + -0.037000611424446106, + -0.006721976213157177, + 0.04068877547979355, + 0.021962421014904976, + -0.007774887606501579, + 0.04109328240156174, + 0.01751282997429371, + -0.04352033510804176, + 0.008911079727113247, + 0.019380705431103706, + 0.0113619240000844, + -0.009190666489303112, + 0.00024222164938692003, + -0.012141197919845581, + 0.025674380362033844, + -0.029648078605532646, + 0.039023153483867645, + 0.012004378251731396, + 0.007417968474328518, + -0.018988095223903656, + -0.024532238021492958, + -0.014490914531052113, + 0.0015317777870222926, + -0.018726354464888573, + 0.011213207617402077, + -0.022033805027604103, + 0.04442453011870384, + -0.037000611424446106, + -0.016787094995379448, + 0.036667488515377045, + 0.010225731879472733, + -0.012730114161968231, + -0.005121788941323757, + 0.051253579556941986, + 0.04835063964128494, + -0.0008714774157851934, + -0.01514526642858982, + -0.04549528658390045, + -0.01817907951772213, + -0.038856592029333115, + -0.002190590836107731, + 0.03559672832489014, + -0.01088603213429451, + 0.03238445892930031, + -0.028196608647704124, + -0.03940386697649956, + -0.01672760769724846, + 0.023128356784582138, + 0.019321219995617867, + 0.02722102962434292, + -0.0023110511247068644, + -0.004229491110891104, + 0.030219148844480515, + -0.042568549513816833, + -0.015073882415890694, + -0.012385092675685883, + 0.0037030354142189026, + 0.00032977835508063436, + -0.012456475757062435, + -0.0034145258832722902, + -0.0037982140202075243, + -0.007352533284574747, + 0.004818407818675041, + -0.007370379287749529, + 0.020844073966145515, + -0.005213993135839701, + -0.003307450097054243, + 0.011689100414514542, + -0.00499389274045825, + -0.0361202098429203, + -0.015728235244750977, + -0.014657476916909218, + 0.020939253270626068, + -0.0008171959780156612, + -0.01767939142882824, + -0.040926720947027206, + -0.020046954974532127, + 0.0033609881065785885, + 0.007132432889193296, + -0.02643580734729767, + -0.03669128194451332, + -0.0032925785053521395, + 0.015609261579811573, + -0.04768439009785652, + -0.003783342195674777, + -0.0485885851085186, + -0.016299305483698845, + 0.020891664549708366, + 0.0031706311274319887, + -0.010249526239931583, + 0.051586706191301346, + -0.027815893292427063, + 0.018619278445839882, + -0.040879134088754654, + 0.012551654130220413, + 0.01845271699130535, + 0.00497902138158679, + 0.0238540917634964, + -0.0064364406280219555, + -0.00973199401050806, + -0.025745762512087822, + -0.06919471174478531, + -0.03821413591504097, + 0.007298995275050402, + 0.03849967196583748, + -0.008685030974447727, + -0.02462741732597351, + 0.005740448832511902, + 0.015835309401154518, + -0.011772381141781807, + 0.017774570733308792, + -0.002156386151909828, + -0.004999841563403606, + 0.01733436994254589, + 0.0376906543970108, + 0.01710832118988037, + -0.021974317729473114, + -0.009190666489303112, + -0.02131996676325798, + -0.009202564135193825, + -0.02042766846716404, + 0.036167800426483154, + 0.014954909682273865, + 0.0029698642902076244, + -0.007816527970135212, + -0.035216014832258224, + -0.0019229016033932567, + 0.025460228323936462, + -0.02098684199154377, + -0.02698308229446411, + -0.04718470200896263, + -0.01840512827038765, + -0.024282395839691162, + -0.041997477412223816, + -0.013503438793122768, + -0.0036138056311756372, + 0.023747015744447708, + 0.025436433032155037, + -0.007245457265526056, + -0.0055887578055262566, + 0.024675006046891212, + 0.0012945752823725343, + -0.024389469996094704, + -0.02030869573354721, + -0.028030045330524445, + -0.0019675164949148893, + 0.04504318907856941, + -0.0059337797574698925, + 0.0133011844009161, + 0.02082028053700924, + 0.0026545857544988394, + -0.0076678115874528885, + 0.012242324650287628, + -0.02003505825996399, + 0.014728860929608345, + -0.02255728654563427, + -0.022866616025567055, + -0.030433300882577896, + 0.007358481641858816, + -0.06091419234871864, + -0.015002499334514141, + -0.009499995969235897, + -0.024365676566958427, + 0.0035602678544819355, + -0.0109931081533432, + 0.035763293504714966, + 0.04882653057575226, + 0.006103316321969032, + -0.011605818755924702, + 0.001985362498089671, + -0.011367873288691044, + -0.016227921470999718, + 0.03333624079823494, + -0.004868971183896065, + 0.020510949194431305, + -0.0063888514414429665, + 0.03226548433303833, + -0.048231665045022964, + -0.013170314021408558, + 0.0014440350933000445, + -0.038404494524002075, + 0.01671571098268032, + -0.007530992850661278, + -0.0439724326133728, + -0.03390731289982796, + 0.03754788637161255, + -0.0076678115874528885, + 0.018488408997654915, + 0.0025222282856702805, + 0.004479334689676762, + 0.01577582396566868, + 0.004625076428055763, + -0.03892797604203224, + -0.004538821056485176, + 0.025912325829267502, + 0.03433561697602272, + 0.03692922741174698, + -0.01744144596159458, + -0.024389469996094704, + 0.0029668898787349463, + 0.001638853456825018, + 0.031170932576060295, + -0.03949904441833496, + 0.016013769432902336, + -0.01632309891283512, + 0.018654970452189445, + -0.04870755970478058, + -0.04349653795361519, + -0.006739822216331959, + -0.056535981595516205, + -0.0063888514414429665, + -0.02462741732597351, + 0.027696920558810234, + -0.001839620410464704, + 0.0035632422659546137, + -0.043734487146139145, + 0.006454286631196737, + 0.025555405765771866, + 0.02888665162026882, + 0.0050385077483952045, + -0.013622411526739597, + -0.026078887283802032, + 0.006561362650245428, + 0.02714964561164379, + -9.104225318878889e-05, + -0.009238255210220814, + -0.03890417888760567, + -0.01102285087108612, + 0.028244197368621826, + 0.00044726423220708966, + -0.0141102010384202, + -0.01779836416244507, + 0.03090919367969036, + 0.027340002357959747, + -0.007994987070560455, + 0.02126047946512699, + -0.01828615367412567, + -0.0016343919560313225, + -0.008173447102308273, + -0.0019675164949148893, + -0.0086136469617486, + 0.04021288454532623, + 0.010285218246281147, + 0.012718216516077518, + -0.01133812963962555, + 0.03864243999123573, + -0.006716027390211821, + -0.03752409294247627, + -0.06691043078899384, + 0.020118338987231255, + 0.00793550070375204, + 0.04164056107401848, + -0.0029386337846517563, + -0.026507191359996796, + 0.014026920311152935, + -0.028101429343223572, + 0.0068706925958395, + 0.03188477084040642, + 0.03102816641330719, + 0.000645800493657589, + -0.019440192729234695, + -0.04061739146709442, + 0.025127103552222252, + -0.026340628042817116, + 0.015835309401154518, + -0.0038101112004369497, + -0.015668747946619987, + 9.206467802869156e-05, + -0.005826704204082489, + 0.02065371721982956, + 0.021807756274938583, + 0.01571633666753769, + -0.0219862163066864, + -0.02120099402964115, + -0.0026992005296051502, + 0.009137128479778767, + -0.009095488116145134, + -0.026887904852628708, + 0.00555306626483798, + -0.00475297262892127, + 0.0018128515221178532, + 0.016561046242713928, + 0.03328865393996239, + 0.008090166375041008, + -0.008572006598114967, + -0.02261677198112011, + 0.028363170102238655, + -0.00453287223353982, + 0.015311828814446926, + 0.018988095223903656, + -0.007037254516035318, + 0.044971805065870285, + -0.025888530537486076, + -0.008464930579066277, + 0.015169060789048672, + 0.009125230833888054, + 0.050920456647872925, + -0.01851220242679119, + 0.019844701513648033, + -0.02855352684855461, + 0.008143703453242779, + -0.027411386370658875, + 0.03490668535232544, + 0.0026397141627967358, + -0.021415144205093384, + -0.006442389450967312, + -0.010951466858386993, + -0.03207512944936752, + -0.022462107241153717, + -0.04002252593636513, + -0.00032698994618840516, + 0.013467746786773205, + 0.01052316464483738, + -0.02800625003874302, + -0.004467437043786049, + -0.01615653745830059, + -0.01021383423358202, + -0.010035375133156776, + 0.02805384062230587, + 0.020380079746246338, + -0.0028181737288832664, + 0.033693160861730576, + -0.01744144596159458, + 0.017322473227977753, + 0.0024731517769396305, + 0.01813148893415928, + 0.011831867508590221, + -0.015847207978367805, + -0.07285908609628677, + 0.0024939721915870905, + -0.006585157010704279, + -0.01032091025263071, + 0.06196115165948868, + 0.004086723551154137, + -0.014348147436976433, + -0.01363430917263031, + 0.042164042592048645, + 0.01338446605950594, + -0.004059954546391964, + -0.05268125608563423, + -0.04354412853717804, + -0.001305729034356773, + -0.008464930579066277, + 0.01396743394434452, + -0.04561425745487213, + -0.00996399112045765, + -0.09184718132019043, + -0.023128356784582138, + 0.00226643611676991, + -0.008970566093921661, + -0.03540637344121933, + -0.007376327645033598, + 0.030052587389945984, + 0.03990355506539345, + -0.020058851689100266, + -0.03190856799483299, + -0.04668501764535904, + -0.01509767770767212, + -0.031004371121525764, + 0.0021221814677119255, + -0.01941639743745327, + 0.016977451741695404, + 0.006484030280262232, + 0.021783960983157158, + -0.005654192995280027, + 0.0033312446903437376, + -0.028862856328487396, + -0.006787411402910948, + -0.0015600338811054826, + 0.03057606890797615, + -0.04723229259252548, + -0.01784595474600792, + 0.010731367394328117, + 0.008667184971272945, + 0.01728678122162819, + 0.0703844428062439, + 0.011950841173529625, + 0.01102285087108612, + 0.018869122490286827, + 0.035382580012083054, + -0.01633499749004841, + -0.002218846930190921, + 0.013896049931645393, + 0.041664354503154755, + 0.013753281906247139, + 0.009446458891034126, + 0.00642454344779253, + 0.023770811036229134, + 0.018714457750320435, + 0.01716780848801136, + 0.0188453271985054, + 0.02648339606821537, + 0.0021281300578266382, + -0.022402621805667877, + -0.03466873988509178, + 0.020189722999930382, + 0.033859722316265106, + 0.008417341858148575, + -0.0021117711439728737, + 0.020118338987231255, + 0.026959288865327835, + 0.024484649300575256, + -0.031099550426006317, + 0.02738759107887745, + -0.02249779924750328, + -0.01734626665711403, + 0.004776766989380121, + 0.020213518291711807, + 0.028291786089539528, + -4.772863394464366e-05, + -0.005883216392248869, + 0.001339190173894167, + -0.017857851460576057, + -0.004494206048548222, + 0.0064364406280219555, + 0.012349400669336319, + -0.0051426091231405735, + -0.008435187861323357, + -0.0007015690789557993, + 0.03771445155143738, + 0.008845645003020763, + -0.009892607107758522, + -0.015549775213003159, + 0.010511266998946667, + 0.031004371121525764, + -0.06481650471687317, + 0.001192704658024013, + 0.05453723669052124, + 0.018155284225940704, + 0.015918591991066933, + -0.00680525740608573, + -0.03657230734825134, + 0.0060854703187942505, + 0.0007056587492115796, + 0.004196773748844862, + 0.015811515972018242, + 0.017964927479624748, + 0.008209139108657837, + 0.012266119010746479, + -0.02603129856288433, + 0.0022352058440446854, + -0.0023512043990194798, + -0.028696294873952866, + -0.0423068106174469, + 0.0038458032067865133, + 0.03295552730560303, + 0.0006688514840789139, + -0.0017236217390745878, + 0.05610768124461174, + -0.001735519035719335, + 0.03233686834573746, + 0.06971819698810577, + 0.010332807898521423, + -0.046756401658058167, + 0.04511457309126854, + -0.04792233556509018, + 0.022140881046652794, + -0.017239192500710487, + 0.0025014078710228205, + -0.019559165462851524, + -0.05034938454627991, + 0.021296171471476555, + -0.02888665162026882, + -0.023889783769845963, + -0.014360044151544571, + 0.0013116776244714856, + 0.016846580430865288, + 0.013051341287791729, + -0.00017390510765835643, + -0.018809635192155838, + 0.027482770383358, + -0.011195361614227295, + 0.01464558020234108, + 0.03933248296380043, + -0.05648839473724365, + -0.002080540871247649, + 0.03788101300597191, + 0.04011770337820053, + -0.003105195937678218, + 0.03136128932237625, + -0.028981829062104225, + -0.013348774053156376, + 0.027197234332561493, + -0.0032628353219479322, + -0.04068877547979355, + -0.004999841563403606, + -0.003949904348701239, + -0.017191601917147636, + -0.03450217843055725, + -0.005365683697164059, + -0.03581088036298752, + 0.013420158065855503, + 0.013729487545788288, + 0.02631683461368084, + -0.05144393816590309, + -0.01588289998471737, + 0.026673752814531326, + -0.01919034868478775, + 0.03450217843055725, + 0.03626297786831856, + -0.04992108419537544, + 0.005392452701926231, + -0.015549775213003159, + -0.022140881046652794, + 0.024056347087025642, + -0.026673752814531326, + -0.0018292103195562959, + 0.014145893044769764, + 0.0057345000095665455, + -0.023996859788894653, + -0.005380555056035519, + -0.011641510762274265, + 0.056250449270009995, + -0.015204752795398235, + 0.00750719802454114, + -0.01660863496363163, + -0.01834564097225666, + 0.03669128194451332, + -0.028696294873952866, + 0.011326231993734837, + 0.014205379411578178, + 0.036881640553474426, + 0.0075012496672570705, + -0.06210391968488693, + -0.05510830506682396, + 0.03799998387694359, + -0.004812458995729685, + -0.011903251521289349, + 0.0013704205630347133, + 0.0018916710978373885, + 0.03742891550064087, + -0.006597054656594992, + -0.010231680236756802, + 0.02300938405096531, + 0.01974952220916748, + 0.005463836248964071, + -0.006900435779243708, + 0.012105505913496017, + -0.012527859769761562, + -0.01522854808717966, + 0.003319347510114312, + 0.002098386874422431, + 0.010082963854074478, + 0.013955536298453808, + -0.015478391200304031, + -0.04016529396176338, + -0.0013622412225231528, + -0.026554780080914497, + 0.014657476916909218, + 0.03247963637113571, + -0.02945772185921669, + 0.007358481641858816, + 0.02329491823911667, + -0.0014514710055664182, + -0.05020661652088165, + 0.02536504901945591, + 0.0037417018320411444, + 0.001668596756644547, + 0.005523323081433773, + -0.026911698281764984, + 0.0069242301397025585, + 0.011308385990560055, + -0.03321726992726326, + 0.027673127129673958, + -0.019975570961833, + -0.03483530133962631, + -0.00894677173346281, + -0.0470181405544281, + 0.0038785208016633987, + 0.004714306443929672, + -0.02193862572312355, + 0.032574813812971115, + 0.008417341858148575, + -0.03343142196536064, + -0.027411386370658875, + 0.015585466288030148, + 0.019285527989268303, + -0.003020427655428648, + 0.03590606153011322, + -0.008732620626688004, + 0.025555405765771866, + 0.01811959221959114, + 0.013063238933682442, + -0.020356284454464912, + 0.011046646162867546, + 0.0069242301397025585, + -0.021569810807704926, + 0.00976173672825098, + -0.002027002861723304, + -0.014681271277368069, + -0.016227921470999718, + 0.019178451970219612, + 0.019333116710186005, + -0.00950594525784254, + 0.0020344387739896774, + -0.0024939721915870905, + -0.020665615797042847, + 0.011242951266467571, + 0.00739417364820838, + 0.005312145687639713, + 0.010011580772697926, + -0.014847833663225174, + 0.016227921470999718, + -0.0023318713065236807, + 0.002584689063951373, + -0.01192109752446413, + -0.025674380362033844, + 0.05734499916434288, + 0.020677512511610985, + -0.008619596250355244, + 0.009024104103446007, + -0.0019184401025995612, + -0.01638258621096611, + 0.01237319502979517, + 0.01969003677368164, + -0.015407007187604904, + 0.00973794236779213, + -0.011956789530813694, + -0.0062698787078261375, + 0.009267998859286308, + 0.007334687281399965, + 0.013539130799472332, + 0.009642763994634151, + -0.03157544136047363, + -0.024437060579657555, + -0.042568549513816833, + 0.00836380384862423, + -0.02339009754359722, + 0.026126477867364883, + 0.03114713914692402, + -0.005002815742045641, + -0.015549775213003159, + -0.0024791003670543432, + -0.03264619782567024, + 0.023199740797281265, + 0.04080775007605553, + 0.015383212827146053, + 0.00709674134850502, + -0.006775513757020235, + -0.03854726254940033, + -0.0016046487726271152, + 0.0027229951228946447, + -0.02962428331375122, + 0.016751402989029884, + 0.0008499135728925467, + -0.008197241462767124, + -0.003744676010683179, + -0.003060581162571907, + -0.004083749372512102, + -0.004089697729796171, + -0.015752028673887253, + -0.022462107241153717, + 0.00045730257988907397, + -0.005380555056035519, + -0.00892297737300396, + -0.005181275308132172, + 0.003935032989829779, + 0.01728678122162819, + 0.01032091025263071, + -0.007043203338980675, + -0.01790544018149376, + -0.010683777742087841, + 0.01577582396566868, + -0.0032925785053521395, + -0.055013127624988556, + 0.01603756472468376, + 0.00017604290042072535, + 0.037452708929777145, + 0.034811507910490036, + -0.01441953144967556, + -0.0011570126516744494, + -0.029267365112900734, + -0.0337645448744297, + -0.024817774072289467, + 0.04085533693432808, + 0.012022224254906178, + -0.009862864390015602, + -0.002279820619150996, + -0.019785214215517044, + -0.017988722771406174, + -0.01947588473558426, + -0.008322163484990597, + -0.052205365151166916, + 0.007602376397699118, + -0.02772071585059166, + 0.032574813812971115, + 0.01952347345650196, + 0.0030754527542740107, + 0.013741385191679, + -0.013693795539438725, + -0.02738759107887745, + 0.03207512944936752, + 0.02205760031938553, + 0.0038309316150844097, + 0.028196608647704124, + 0.014241071417927742, + 0.06277017295360565, + -0.0033996542915701866, + -0.05491795018315315, + -0.001552597968839109, + 0.04756541550159454, + 0.006192546337842941, + 0.005663115996867418, + -0.014502812176942825, + 0.0160494614392519, + -0.030766425654292107, + 0.000676659110467881, + -0.026530984789133072, + 0.022010009735822678, + -0.002630791161209345, + 0.005460862070322037, + -0.04242578148841858, + -0.013598617166280746, + -0.039475250989198685, + 0.016787094995379448, + -0.009226358495652676, + -0.0030814013443887234, + -0.006531619466841221, + 0.024817774072289467, + 0.005065276753157377, + 0.022485902532935143, + -0.0016834683483466506, + -0.006418595090508461, + -0.03557293489575386, + 0.021926729008555412, + 0.020273003727197647, + -0.014966807328164577, + -0.01549028791487217, + 0.04052221402525902, + 0.035216014832258224, + -0.015252342447638512, + 0.01919034868478775, + 0.01355102751404047, + -0.032003745436668396, + 0.010398242622613907, + 6.706175190629438e-05, + -0.024092039093375206, + 0.03519222140312195, + 0.020725101232528687, + 0.006460235454142094, + -0.010767059400677681, + 0.003224169136956334, + 0.021676884964108467, + 0.008078268729150295, + 0.002221821341663599, + 0.0023779734037816525, + 0.04285408556461334, + -0.012325605377554893, + 0.034145258367061615, + -0.01952347345650196, + -0.03340762481093407, + -0.058154016733169556, + -0.0018857225077226758, + 0.015525979921221733, + 0.029648078605532646, + 0.029505310580134392, + -0.02003505825996399, + -0.03090919367969036, + 0.020736997947096825, + 0.02793486788868904, + 0.004425796680152416, + -0.004633999429643154, + -0.024484649300575256, + -0.0029594541992992163, + 0.005585783626884222, + 0.012587346136569977, + -0.022735746577382088, + 0.028077634051442146, + -0.0009361690026707947, + 0.001924388692714274, + 0.02121289074420929, + 0.006046804133802652, + 0.004042108543217182, + -0.025745762512087822, + 0.005386503878980875, + -0.011201310902833939, + 0.006017060950398445, + -0.014574196189641953, + -0.03145647048950195, + 0.013765179552137852, + 0.0008461956749670208, + -0.0031706311274319887, + 0.02941013313829899, + -0.011272694915533066, + 0.010969312861561775, + 0.022081393748521805, + -0.024841567501425743, + 0.03719097003340721, + 0.033812135457992554, + -0.009993734769523144, + -0.008435187861323357, + 0.021224787458777428, + -0.0018128515221178532, + 0.006858794949948788, + -0.02643580734729767, + -0.02486536279320717, + -0.006835000589489937, + 0.009006258100271225, + 0.0204157717525959, + 0.0022723849397152662, + -0.016513455659151077, + 0.01526423916220665, + 0.014597990550100803, + -0.018714457750320435, + 0.03864243999123573, + 0.010624291375279427, + 0.012539757415652275, + -0.013289287686347961, + -0.0030189405661076307, + -0.006365057080984116, + -0.00020560027041938156, + 0.014288661070168018, + -0.01377707626670599, + 0.006448338273912668, + -0.006882589776068926, + -0.030004998669028282, + 0.019368808716535568, + 0.020130235701799393, + 0.005764243192970753, + -0.017643699422478676, + -0.011005004867911339, + 0.014455222524702549, + -0.011207259260118008, + -0.03478771448135376, + 0.02441326528787613, + 0.026887904852628708, + 0.002010644180700183, + 0.006555413827300072, + 0.008322163484990597, + -0.009577328339219093, + -0.01043988298624754, + 0.0009012207156047225, + -0.01332497876137495, + -0.0018857225077226758, + 0.018000619485974312, + -0.010832494124770164, + -0.08475638180971146, + 0.03326486051082611, + 0.011302437633275986, + -0.0037773936055600643, + 0.016180332750082016, + 0.05196741968393326, + -0.01282529253512621, + -0.053157150745391846, + 0.04287787899374962, + -0.0004156620125286281, + 0.020891664549708366, + 0.016085153445601463, + 0.00847682822495699, + 0.00631151907145977, + -0.03426423296332359, + 0.009125230833888054, + -0.01239698939025402, + -0.05601250007748604, + 0.020796485245227814, + -0.023818399757146835, + 0.03921350836753845, + 0.009993734769523144, + 0.010237629525363445, + -0.02205760031938553, + 0.008798055350780487, + 0.0007235047523863614, + 0.018488408997654915, + 0.014931115321815014, + -0.0010350653901696205, + -0.030480889603495598, + 0.014157790690660477, + 0.011302437633275986, + -0.004955226555466652, + -0.016299305483698845, + -0.028529731556773186, + -0.014800244942307472, + 0.001120577217079699, + -0.024770185351371765, + -0.052824024111032486, + 0.01588289998471737, + -0.023663735017180443, + 0.02776830457150936, + 0.0012901137815788388, + -0.0008424777770414948, + -0.018595485016703606, + 0.03507325053215027, + 0.0004788664518855512, + -0.025602996349334717, + 0.03197994828224182, + -0.005130711942911148, + -0.040926720947027206, + -0.00280478922650218, + 0.04173573851585388, + -0.05258607864379883, + 0.028244197368621826, + 0.004925483372062445, + -0.03859484940767288, + -0.0018351589096710086, + -0.02503192611038685, + 0.01991608552634716, + -0.008732620626688004, + -0.0344545878469944, + -0.023021280765533447, + -0.008268625475466251, + 0.015728235244750977, + 0.01712021790444851, + 0.03036191686987877, + 0.01654914766550064, + 0.010850340127944946, + 0.012420783750712872, + -0.04444832354784012, + -0.06738632172346115, + 0.018393229693174362, + -0.010255474597215652, + -0.003917186986654997, + 0.024199113249778748, + -0.017417650669813156, + 0.012908573262393475, + 0.0044466168619692326, + 0.04611394554376602, + 0.01801251620054245, + -0.030671246349811554, + 0.005499528255313635, + -0.002813712228089571, + -0.02519848756492138, + 0.007840322330594063, + 0.005689885001629591, + 0.010576702654361725, + 0.0073168412782251835, + -0.037857215851545334, + -0.009517841972410679, + -0.01582341268658638, + 0.001772698131389916, + 0.03433561697602272, + -0.0035989340394735336, + -0.02300938405096531, + 0.010695675387978554, + -0.005029584746807814, + 0.005324042867869139, + -0.018155284225940704, + -0.005752346012741327, + 0.006430492270737886, + -0.016763299703598022, + -0.006864743772894144, + -0.00028553526499308646, + 0.014657476916909218, + -0.010820597410202026, + -0.017655597999691963, + 0.00995804276317358, + -0.014574196189641953, + 0.01571633666753769, + 0.025103308260440826, + 0.006793359760195017, + -0.020855972543358803, + 0.009928299114108086, + 0.02131996676325798, + 0.001087116077542305, + -0.030932987108826637, + -0.05134876072406769, + -0.026911698281764984, + 0.006228237878531218, + 0.0035216016694903374, + -0.006531619466841221, + -0.01332497876137495, + -0.009571379981935024, + -0.0025787404738366604, + -0.017144013196229935, + 0.04639948159456253, + 0.007977141998708248, + 0.007174073718488216, + -0.005544143263250589, + -0.046090152114629745, + 0.02783968858420849, + -0.013872255571186543, + -0.058725085109472275, + 0.028577322140336037, + 0.01433624979108572, + -0.01386035792529583, + 0.0023616147227585316, + -0.03002879209816456, + 0.032455842941999435, + -0.042568549513816833, + -0.0214984267950058, + -0.0383806973695755, + 0.009101436473429203, + -0.015811515972018242, + -0.05829678475856781, + 0.03871382400393486, + 0.03226548433303833, + 0.001148833311162889, + 0.02879147231578827, + -0.016763299703598022, + 0.003949904348701239, + 0.023925475776195526, + 0.01980900950729847, + -0.023532865568995476, + 0.01858358643949032, + 0.001287883031181991, + -0.01615653745830059, + 0.025484023615717888, + -0.0051901983097195625, + -0.015061985701322556, + -0.0014075996587052941, + -0.004470411688089371, + 0.029529105871915817, + -0.0014016509521752596, + 0.0012834215303882957, + 0.010790853761136532, + -0.02496054209768772, + -0.0019615679048001766, + -0.011980583891272545, + -0.010475574992597103, + -0.03233686834573746, + -0.027863483875989914, + 0.007905757986009121, + -0.007899808697402477, + 0.03281276300549507, + -0.005844550207257271, + 0.011576076038181782, + -0.014015022665262222, + 0.0047916388139128685, + -0.018809635192155838, + 0.011730740778148174, + -0.007043203338980675, + -0.0012098070001229644, + -0.04223542660474777, + -0.03585847094655037, + -0.02070130780339241, + -0.00347103807143867, + 0.0008224010816775262, + 0.06605382263660431, + 0.02406824380159378, + 0.04111707955598831, + 0.023747015744447708, + 0.00035413066507317126, + 0.01032091025263071, + 0.0029906844720244408, + 0.008875387720763683, + 0.0035216016694903374, + 3.6156645364826545e-05, + 0.019333116710186005, + 0.003120067762210965, + -0.00035152811324223876, + 0.01593048870563507, + 0.018750149756669998, + -0.023877887055277824, + 0.01408640667796135, + 0.020689409226179123, + 0.02941013313829899, + 0.02626924403011799, + 0.032907940447330475, + 0.009315588511526585, + -0.02945772185921669, + -0.003592985449358821, + -0.01514526642858982, + -0.005419221241027117, + 0.036500923335552216, + 0.03485909849405289, + -0.02900562435388565, + 0.014943012036383152, + -0.02053474448621273, + 0.016572942957282066, + -0.023497173562645912, + -0.009583277627825737, + -0.021415144205093384, + 0.022093292325735092, + 0.014716963283717632, + -0.012765806168317795, + -0.003649497637525201, + -0.0422116294503212, + -0.03271758183836937, + -0.005930805578827858, + 0.013027546927332878, + 0.012920470908284187, + 0.03609641641378403, + -0.023711323738098145, + -0.010600497014820576, + 0.008036628365516663, + 0.003488884074613452, + -0.03355039283633232, + 0.034145258367061615, + -0.012742011807858944, + 0.010427986271679401, + 0.01813148893415928, + 0.005368657875806093, + 0.022307442501187325, + -0.040308061987161636, + -0.03878520801663399, + 0.03269378840923309 + ], + "how_to_smelt_ores": [ + 0.02409088797867298, + 0.01775694079697132, + 0.008488583378493786, + -0.008030295372009277, + 0.00027894845698028803, + 0.0027634066063910723, + 0.012749975547194481, + -0.040219880640506744, + 0.02220301516354084, + -0.0016561630181968212, + 0.07370908558368683, + -0.0469231940805912, + -0.013105661608278751, + -0.023023828864097595, + 0.04158790409564972, + 0.0758432000875473, + -0.01101942639797926, + 0.03182021901011467, + -0.033106159418821335, + 0.011422992683947086, + 0.04987812414765358, + 0.01035593543201685, + 0.020752910524606705, + 0.02086235210299492, + -0.0265670083463192, + -0.0017057538498193026, + -0.0002479541872162372, + 0.017551736906170845, + -0.041396379470825195, + -0.03329768404364586, + 0.07288827002048492, + -0.014336882159113884, + -0.04290120676159859, + 0.0031892037950456142, + -0.021984132006764412, + 0.01164871733635664, + 0.03502139076590538, + 0.010998905636370182, + 0.030151229351758957, + -0.03890657797455788, + 0.011484554037451744, + -0.022230375558137894, + 0.0006498110014945269, + -0.016990847885608673, + -0.010951025411486626, + 0.05433787778019905, + -0.025540992617607117, + 0.001636497676372528, + -0.006453649140894413, + 0.042572878301143646, + 0.01274313498288393, + 0.010239653289318085, + -0.03978211060166359, + -0.04790816828608513, + 0.00455209705978632, + -0.015841707587242126, + -0.03343448415398598, + 0.013700751587748528, + -0.0007160746026784182, + 0.0075241271406412125, + -0.031081484630703926, + -0.004890682641416788, + 0.03934434428811073, + 0.06068550422787666, + 0.003919386304914951, + -0.008344940841197968, + -0.04588349536061287, + -0.004911202937364578, + 0.042572878301143646, + 0.029275694862008095, + -0.018933439627289772, + 0.018085265532135963, + 0.024296090006828308, + -0.024980101734399796, + -0.010930504649877548, + -0.02563675306737423, + 0.0019528530538082123, + 0.017551736906170845, + 0.0056123146787285805, + -0.0074899266473948956, + -0.0969654768705368, + -0.0414511002600193, + 0.020451946184039116, + 0.003998047672212124, + -0.023488957434892654, + 0.002517162589356303, + -0.07086359709501266, + 0.004056188743561506, + -0.046704310923814774, + -0.09663715213537216, + -0.005424211733043194, + 0.021642126142978668, + 0.020205700770020485, + -0.0005416516796685755, + 0.05931748077273369, + -0.029494578018784523, + 0.03734702989459038, + -0.012770496308803558, + -0.03135509043931961, + 0.05636255443096161, + 0.044679634273052216, + -0.004582877270877361, + -0.022476619109511375, + 0.004914623219519854, + 0.022627102211117744, + 0.010191772133111954, + -0.018782958388328552, + 0.026156602427363396, + -0.0812605768442154, + -0.0398641936480999, + -0.0688389241695404, + -0.02908417209982872, + 0.014295841567218304, + 0.0438041016459465, + -0.006056922487914562, + 0.03543179854750633, + -0.01320826355367899, + 0.03704606741666794, + 0.048428017646074295, + -0.0007220596889965236, + -0.012154885567724705, + 0.019029201939702034, + 0.011046786792576313, + -0.03805840387940407, + -0.03409113734960556, + -0.04697791486978531, + 0.0023119591642171144, + -0.02837279997766018, + 0.015075614675879478, + -0.016525719314813614, + 0.019056562334299088, + -0.015732266008853912, + 0.08350413292646408, + -0.0018143407069146633, + -0.018618794158101082, + 0.014131679199635983, + -0.01140931248664856, + -0.058989156037569046, + -0.017196049913764, + 0.0398641936480999, + -0.024802260100841522, + -0.028673764318227768, + -0.010951025411486626, + 0.009562481194734573, + -0.014829370193183422, + 0.0033516567200422287, + -0.0414237417280674, + 0.008844269439578056, + 0.03721022978425026, + 0.0265806894749403, + -0.0035705403424799442, + 0.014487365260720253, + -0.04363993927836418, + -0.0004762430617120117, + 0.04284648597240448, + -0.020192021504044533, + -0.017948463559150696, + 0.07622624933719635, + 0.0075788479298353195, + -0.023516317829489708, + -0.025992440059781075, + 0.006402348168194294, + -0.02242189832031727, + -0.018947120755910873, + -0.02510322444140911, + -0.023119591176509857, + -0.03953586891293526, + -0.014555766247212887, + -0.045774053782224655, + 0.07633569091558456, + 0.03187493979930878, + 0.026389166712760925, + -0.014432643540203571, + 0.011279351077973843, + 0.0032063042744994164, + -0.0006139003671705723, + -0.01797582395374775, + -0.011224629357457161, + -0.0010815933346748352, + 0.023584717884659767, + 0.011559795588254929, + -0.017948463559150696, + -0.045308925211429596, + -0.037483833730220795, + -0.0021426661405712366, + -0.005109566263854504, + -0.07097303867340088, + -0.01986369490623474, + -0.01790742203593254, + 0.010335414670407772, + -0.009966048412024975, + 0.021765246987342834, + -0.01751069538295269, + 0.03414585813879967, + 0.020055219531059265, + -0.02470649778842926, + 0.010780022479593754, + -0.03094468265771866, + 0.028263358399271965, + 0.022490300238132477, + -0.009993408806622028, + 0.0036423616111278534, + 0.024501293897628784, + -0.01704556867480278, + 0.011258830316364765, + -0.013167222961783409, + -0.019371207803487778, + 0.052723612636327744, + 0.029850265011191368, + -0.0024043007288128138, + -0.0254041887819767, + 0.013981196098029613, + 0.031382448971271515, + 0.023338474333286285, + -0.005971421021968126, + -0.0037620635703206062, + -0.035595960915088654, + 0.07518655061721802, + -0.007380484603345394, + 0.018112625926733017, + -0.013269823975861073, + 0.007428365759551525, + 0.04073973000049591, + -0.022380858659744263, + 0.015622824430465698, + 0.06128743663430214, + 0.04136902093887329, + -0.007585688028484583, + 0.05636255443096161, + -0.006439968943595886, + -0.03863297402858734, + -0.030671078711748123, + 0.027319421991705894, + -0.04188886657357216, + 0.011710277758538723, + -0.013769152574241161, + -0.029439857229590416, + 0.025349467992782593, + -0.000850739364977926, + 0.012592652812600136, + -0.01547234132885933, + -0.015116655267775059, + -0.035541240125894547, + -0.03997363522648811, + -0.011867600493133068, + 0.003710762830451131, + -0.027305740863084793, + -0.041943587362766266, + 0.03414585813879967, + 0.061725202947854996, + 0.011231469921767712, + -0.05723808705806732, + 0.024118248373270035, + -0.010697940364480019, + 0.00472651980817318, + -0.04705999419093132, + -0.020192021504044533, + -0.023023828864097595, + 0.017688538879156113, + -0.023242712020874023, + -0.05431051924824715, + 0.05975525081157684, + -0.07496766746044159, + 0.005205328110605478, + -0.03540444001555443, + 0.014665207825601101, + 0.034118495881557465, + 0.00878954865038395, + 0.021929411217570305, + -0.047880809754133224, + -0.029822904616594315, + 0.01435056235641241, + 0.03644413501024246, + -0.04426922649145126, + -0.043038006871938705, + -0.03321560099720955, + 0.024610735476017, + 0.05400955304503441, + -0.010013929568231106, + 0.007127400487661362, + -0.015745945274829865, + -0.010102850385010242, + 0.042791761457920074, + 0.0351855531334877, + 0.024802260100841522, + 0.02524002641439438, + 0.0010542328236624599, + 0.0010567979188635945, + 0.0005694396095350385, + -0.027004776522517204, + -0.004483695607632399, + 0.03444682061672211, + -0.006227925419807434, + 0.013693911023437977, + 0.03047955594956875, + 0.015773305669426918, + -0.01352290902286768, + 0.006751194130629301, + -0.011703438125550747, + -0.04941299557685852, + 0.006214245222508907, + 0.05849666893482208, + 0.011614516377449036, + 0.044132426381111145, + -0.0226681437343359, + -0.04322953149676323, + -0.0058004180900752544, + -0.044214505702257156, + -0.009637722745537758, + 0.03417321667075157, + 0.06468013674020767, + -0.024843299761414528, + 0.02446025423705578, + -0.022941747680306435, + 0.005400271154940128, + 0.024296090006828308, + 0.02221669629216194, + -0.0030489815399050713, + -0.03997363522648811, + -0.015677545219659805, + 0.04659486934542656, + -0.022558702155947685, + 0.026088200509548187, + 0.013974356465041637, + 0.01164187677204609, + -0.03291463479399681, + 0.006002201233059168, + -0.01262001320719719, + 0.0004101931699551642, + 0.006245025433599949, + -0.04424186795949936, + -0.022230375558137894, + 0.01352290902286768, + -0.05201223865151405, + -0.027305740863084793, + 0.0383320078253746, + 0.019891055300831795, + 0.03165605664253235, + 0.02023306116461754, + 0.0484553799033165, + -0.0035773804411292076, + -0.010273853316903114, + -0.04407770559191704, + 0.018181027844548225, + -0.006310006603598595, + 0.005519973114132881, + -0.018399911001324654, + 0.02415928803384304, + -0.01301673986017704, + 0.04511740431189537, + 0.037319671362638474, + 0.037401750683784485, + -0.005078786052763462, + -0.014172719791531563, + -0.021067555993795395, + -0.013071460649371147, + 0.021751567721366882, + -0.005372910760343075, + -0.03939906507730484, + -0.013618670403957367, + -0.029056811705231667, + 0.03351656720042229, + 0.042955927550792694, + 0.005567854270339012, + -0.03526763617992401, + 0.04935827478766441, + 0.009658243507146835, + -0.014159039594233036, + -0.041943587362766266, + 0.03548651933670044, + 0.05379066988825798, + 0.09548801183700562, + -0.025062182918190956, + 0.009015272371470928, + -0.051328226923942566, + 0.022572381421923637, + 0.008577505126595497, + 0.04027460142970085, + 0.033899612724781036, + 0.029521938413381577, + 0.025212666019797325, + -0.006251865532249212, + 0.02752462588250637, + 0.0007340299198403955, + 0.034829869866371155, + 0.010068650357425213, + 0.021313799545168877, + 0.00941883958876133, + -0.06736145913600922, + -0.04528156667947769, + 0.05346234515309334, + -0.03502139076590538, + 0.034665707498788834, + 0.012264327146112919, + 0.0034491282422095537, + -0.008228658698499203, + 0.004340053535997868, + 0.040219880640506744, + 0.02556835301220417, + 0.033735450357198715, + 0.06933141499757767, + 0.004723099991679192, + -0.027018455788493156, + 0.013673391193151474, + -0.02439185231924057, + -0.0073326039128005505, + -0.020123619586229324, + 0.040520843118429184, + -0.038578253239393234, + 0.023078549653291702, + 0.048811063170433044, + 0.0164162777364254, + 0.05422843620181084, + 0.0033140359446406364, + 0.020616108551621437, + -0.043038006871938705, + 0.019124962389469147, + 0.014063277281820774, + -0.018741916865110397, + -0.011142548173666, + -0.009138394147157669, + -0.017196049913764, + 0.039918914437294006, + -0.042490798979997635, + -0.003076341934502125, + 0.012927818112075329, + 0.018796637654304504, + -0.06347627192735672, + 0.0312730073928833, + -0.09056313335895538, + -0.022531339898705482, + 0.029494578018784523, + 0.0027907672338187695, + 0.04604765772819519, + -0.016758283600211143, + -0.019754253327846527, + -0.024884341284632683, + -0.043120089918375015, + -0.004025408066809177, + -0.007305243518203497, + -0.012257487513124943, + -0.024487614631652832, + 0.02963137999176979, + 0.031847577542066574, + -0.036717738956213, + -0.02704581804573536, + -0.04544572904706001, + -0.012011243030428886, + 0.026156602427363396, + -0.04470699653029442, + 0.029521938413381577, + -0.0414237417280674, + -0.012284847907721996, + 0.0034747787285596132, + 0.030506916344165802, + 0.010027609765529633, + 0.02321535162627697, + -0.021245399489998817, + 0.0036970824003219604, + 0.01586906798183918, + 0.009651402942836285, + 0.03026067093014717, + -0.004890682641416788, + -0.015828028321266174, + 0.018249427899718285, + 0.028591683134436607, + 0.014829370193183422, + 0.03956322744488716, + 0.020287783816456795, + -0.01551338192075491, + -0.0032798354513943195, + -0.050999902188777924, + -0.002096495358273387, + -0.011046786792576313, + 0.017100289463996887, + -0.012688414193689823, + -0.024022486060857773, + 0.03288727626204491, + -0.018878718838095665, + -0.00993184745311737, + 0.010547458194196224, + 0.03157397359609604, + 0.029439857229590416, + 0.006214245222508907, + 0.009521440602838993, + 0.07288827002048492, + -0.01813998632133007, + -0.01011653058230877, + -0.06577455252408981, + -0.01414535939693451, + -0.009165754541754723, + -0.013721272349357605, + 0.018085265532135963, + -0.0164162777364254, + 0.01625211536884308, + -0.044050343334674835, + 0.025609392672777176, + -0.04098597168922424, + 0.00703847873955965, + 0.031300369650125504, + 0.03296935558319092, + -0.0336260087788105, + -0.01227116771042347, + 0.046895831823349, + -0.04087653011083603, + -0.02979554422199726, + 0.017004527151584625, + 0.001764749875292182, + 0.02618396282196045, + 0.0009088803781196475, + 0.030862601473927498, + -0.014760969206690788, + 0.008297060616314411, + 0.019521689042448997, + -0.01658044010400772, + -0.020438265055418015, + 0.020588748157024384, + 0.03110884502530098, + -0.014117999002337456, + 0.03149189054965973, + -0.013160382397472858, + 0.007790891453623772, + -0.01689508557319641, + -0.001117503852583468, + 0.02134115993976593, + -0.02024674229323864, + -0.015321859158575535, + 0.0007041043718345463, + 0.007907173596322536, + 0.00535581074655056, + 0.00794137455523014, + -0.025828275829553604, + 0.009829246439039707, + -0.0175790973007679, + -0.03507611155509949, + 0.0406302884221077, + -0.03556860238313675, + -0.013864913955330849, + -0.018345190212130547, + -0.016470998525619507, + -0.011792358942329884, + 0.012838897295296192, + -0.021053876727819443, + -0.018194707110524178, + -0.014172719791531563, + -0.035459160804748535, + 0.030862601473927498, + 0.02102651447057724, + -0.029357776045799255, + -0.010882623493671417, + -0.00829022005200386, + -0.04596557840704918, + -0.01978161372244358, + -0.0281539149582386, + 0.013413466513156891, + -0.00860486552119255, + -0.01051325723528862, + -0.04410506412386894, + 0.0023273492697626352, + 0.016279475763440132, + 0.006050082389265299, + -0.02565043419599533, + -0.009911327622830868, + -0.026375485584139824, + -0.005879079457372427, + 0.013714431785047054, + 0.004134850110858679, + 0.008338101208209991, + -0.01435056235641241, + 0.016224754974246025, + -0.020670829340815544, + -0.01759277656674385, + 0.01673092320561409, + 0.00699743814766407, + -0.005304509773850441, + 0.002235007705166936, + 0.029987066984176636, + 0.0012278007343411446, + -0.005270309280604124, + -0.01238744892179966, + 0.00410406943410635, + -0.046321261674165726, + 0.0012235257308930159, + 0.03425529971718788, + -0.05037061125040054, + -0.0008195313275791705, + -0.023707840591669083, + 0.014925132505595684, + -0.01137511245906353, + -0.033653367310762405, + 0.0029515097849071026, + -0.011156228370964527, + 0.00036060233833268285, + 0.0018878718838095665, + 0.013215103186666965, + 0.0075788479298353195, + -0.033735450357198715, + 0.03682718425989151, + -0.03614317253232002, + 0.047798726707696915, + -0.0014501045225188136, + 0.0019545629620552063, + -0.020041538402438164, + 0.010998905636370182, + -0.023092230781912804, + 0.04016515985131264, + 0.00212898594327271, + -0.0007062419317662716, + 0.004398194141685963, + 0.019371207803487778, + -0.029521938413381577, + 0.013666550628840923, + -0.014336882159113884, + -0.0031960441265255213, + -0.012059124186635017, + -0.001817760756239295, + 0.028181277215480804, + 0.024952741339802742, + -0.020301463082432747, + -0.019576411694288254, + 0.0021854168735444546, + 0.031163565814495087, + 0.0014697698643431067, + 0.013447667472064495, + 0.007442045956850052, + 0.021122276782989502, + 0.01673092320561409, + 0.029056811705231667, + -0.05286041274666786, + 5.616376074613072e-05, + 0.004825701471418142, + -0.008851110003888607, + 0.008652746677398682, + 0.015732266008853912, + -0.025992440059781075, + -0.018249427899718285, + 0.01767485961318016, + -0.015841707587242126, + 0.01688140444457531, + 0.013926475308835506, + -0.010458536446094513, + -0.026238683611154556, + -0.006693053059279919, + -0.0066725327633321285, + -0.0031225127167999744, + 0.016457317396998405, + 0.016060590744018555, + 0.02242189832031727, + -0.0076814498752355576, + -0.056964483112096786, + -0.00601930171251297, + -0.019439607858657837, + -0.011717118322849274, + -0.01519873645156622, + 0.018878718838095665, + 0.015061934478580952, + -0.03644413501024246, + -0.04571933299303055, + -0.013030420057475567, + 0.020602427423000336, + -0.016087951138615608, + -0.0011859050719067454, + 0.005752537399530411, + 0.025472590699791908, + 0.018947120755910873, + 0.0020554547663778067, + -0.00197508349083364, + -0.005540493875741959, + 0.058824993669986725, + -0.006357887294143438, + -0.008365461602807045, + -0.0038578251842409372, + -0.02437817119061947, + -0.01868719607591629, + -0.030123868957161903, + -0.00019761521252803504, + 0.00363552151247859, + -0.04820913448929787, + -0.01231220830231905, + 0.0285369623452425, + -0.021477963775396347, + 0.009925007820129395, + -0.020342504605650902, + 0.00568413594737649, + 0.0001951570447999984, + -0.03258631005883217, + 0.027237340807914734, + 0.000574569683521986, + 0.012866257689893246, + 0.014172719791531563, + -0.005947480443865061, + -0.030862601473927498, + 0.021861009299755096, + 0.0017527795862406492, + -0.007202641572803259, + -0.012469531036913395, + 0.031929660588502884, + -0.040000997483730316, + -0.019261766225099564, + -0.06774450838565826, + -0.00040506309596821666, + -0.014364242553710938, + 0.05173863470554352, + 0.003974107094109058, + -0.028181277215480804, + -0.008427022024989128, + -0.029439857229590416, + -0.0059577408246695995, + 0.0195490512996912, + 0.021778928115963936, + -0.014377922751009464, + 0.005092466250061989, + -0.049604520201683044, + 0.0019648231100291014, + -0.023105910047888756, + 0.008112377487123013, + -0.024296090006828308, + -0.00922731589525938, + 0.022148294374346733, + 0.009487240575253963, + 0.009439359419047832, + 0.03978211060166359, + 0.005892759654670954, + -0.017004527151584625, + -0.012031763792037964, + 0.037401750683784485, + 0.006929037161171436, + 0.037018705159425735, + -0.0016219624085351825, + -0.01043801661580801, + -0.024282410740852356, + 0.017483334988355637, + 0.008468063548207283, + -0.0011183589231222868, + 0.0025564932730048895, + -0.014295841567218304, + -0.040602926164865494, + 0.01782534085214138, + 0.015308178961277008, + -0.005321609787642956, + -0.005923540331423283, + 0.012325888499617577, + -0.005677295848727226, + -0.02588299661874771, + 0.05433787778019905, + -0.004093809053301811, + -0.03316088020801544, + 0.04911202937364578, + -0.012517411261796951, + 0.03026067093014717, + -0.020834991708397865, + 0.01216172520071268, + -0.04238135740160942, + 0.02220301516354084, + 0.020369865000247955, + -0.04117749631404877, + 0.03299671784043312, + 0.039672669023275375, + -0.046950552612543106, + 0.031136205419898033, + -0.03305143862962723, + -0.01580066792666912, + -0.003209724323824048, + -0.0016288025071844459, + -0.030123868957161903, + -0.001829730928875506, + 0.022695504128932953, + 0.0053831711411476135, + -0.013611829839646816, + 0.04246343672275543, + 0.022380858659744263, + -0.037866879254579544, + 0.007619888987392187, + 0.011265669949352741, + 0.014159039594233036, + 0.0031327728647738695, + -0.031218288466334343, + 0.006932456977665424, + 0.0016193973133340478, + -0.037237588316202164, + 0.0026231843512505293, + 0.015650184825062752, + 0.004004887770861387, + 0.03901601955294609, + -0.003411507699638605, + 0.0036663019564002752, + 0.0048120212741196156, + 0.029521938413381577, + 0.0041827308014035225, + -0.03056163713335991, + -0.01783902198076248, + -0.02008257992565632, + -0.012264327146112919, + 0.015034574083983898, + -0.027565665543079376, + -0.03729230910539627, + 0.012469531036913395, + -0.08853845298290253, + -0.026019800454378128, + -0.0017596196848899126, + -0.019959457218647003, + -0.042873844504356384, + 0.01618371345102787, + -0.0059953611344099045, + 0.009220476262271404, + -0.008399661630392075, + -0.04801760986447334, + 0.01293465867638588, + -0.03578748553991318, + -0.012298528105020523, + -0.022326137870550156, + 0.017784301191568375, + 0.011758158914744854, + 0.00976768508553505, + 0.043038006871938705, + 0.01079370267689228, + 0.0022486879024654627, + -0.014104318805038929, + -0.01689508557319641, + -0.0046170782297849655, + 0.00848174374550581, + -0.04782608896493912, + -0.02954929880797863, + -0.01106046698987484, + -0.006121903657913208, + 0.004032248165458441, + 0.013830713927745819, + 0.013796512968838215, + 0.012031763792037964, + 0.04799025133252144, + -0.013495547696948051, + -0.04473435506224632, + 0.015431300736963749, + 0.019754253327846527, + 0.012565292418003082, + 0.0390981025993824, + 0.013003059662878513, + 0.01435056235641241, + 0.02697741612792015, + 0.020807631313800812, + 0.0009935267735272646, + 0.030616357922554016, + -0.006987178232520819, + -0.019124962389469147, + 0.032859914004802704, + -0.0035431799478828907, + 0.030041787773370743, + 0.022175654768943787, + -0.018865039572119713, + -0.022613422945141792, + -0.01074582152068615, + 0.0015082454774528742, + 0.04120485484600067, + -0.02250397950410843, + 0.0383046455681324, + -0.04035668075084686, + -0.013427146710455418, + 0.0018895819084718823, + -0.0012799566611647606, + 0.03846881166100502, + -0.02258606255054474, + 0.03422793745994568, + -0.006887996569275856, + -0.012401130050420761, + -0.007722490467131138, + -0.0030643718782812357, + 0.009733484126627445, + 0.03707342594861984, + -0.013050940819084644, + -0.0020554547663778067, + 0.004295592661947012, + 0.004107489250600338, + -0.00024154158018063754, + 0.007175281178206205, + -0.0140769574791193, + 0.020807631313800812, + -0.02548626996576786, + -0.0035021391231566668, + 0.03433737903833389, + 0.033270321786403656, + 0.01907024160027504, + -0.0065665110014379025, + -0.028345439583063126, + 0.008769027888774872, + 0.014323201961815357, + -0.01227116771042347, + 0.01414535939693451, + 0.005838038865476847, + 0.0030797619838267565, + -0.0065494105219841, + 0.0004148957668803632, + -0.0010456827003508806, + 0.03948114812374115, + -0.0422171950340271, + -0.03551388159394264, + 0.028947370126843452, + 0.011224629357457161, + 0.0003582510689739138, + 0.016539400443434715, + 0.036854542791843414, + -0.009740324690937996, + -0.0032558951061218977, + 0.023119591176509857, + 0.008844269439578056, + -0.046540144830942154, + -0.012715774588286877, + -0.011197268962860107, + 0.029521938413381577, + 0.0013765732292085886, + 0.03400905430316925, + 0.044132426381111145, + -0.030972043052315712, + 0.0009576161974109709, + 0.04856482148170471, + -0.024980101734399796, + -0.017086608335375786, + 0.015923788771033287, + 0.02212093397974968, + 0.01563650369644165, + 0.011792358942329884, + -0.006504950113594532, + -0.0025889838580042124, + -0.009124713949859142, + 0.016689881682395935, + 0.03540444001555443, + -0.03160133585333824, + -0.002243557944893837, + 0.022093573585152626, + 0.07288827002048492, + -0.02258606255054474, + 0.00829022005200386, + -0.002009283984079957, + -0.02377624250948429, + 0.020369865000247955, + -0.0476892851293087, + -0.01789374276995659, + -0.02023306116461754, + -0.00680249510332942, + -0.02409088797867298, + -0.04626654088497162, + -0.02392672374844551, + -0.01270209439098835, + 0.01767485961318016, + -0.00917943473905325, + -0.002477831905707717, + -0.0031977540347725153, + 0.0036936623509973288, + 0.024829620495438576, + -0.0036868222523480654, + 0.04626654088497162, + 0.030972043052315712, + -0.07206745445728302, + 0.01649835892021656, + -0.010800542309880257, + -0.009733484126627445, + 0.0033003557473421097, + 0.03329768404364586, + 0.006221085321158171, + 0.05576062202453613, + -0.013782832771539688, + -0.01570490561425686, + -0.00984976626932621, + 0.02454233542084694, + 0.0042887525632977486, + -0.004798341076821089, + 0.04251815751194954, + -0.03901601955294609, + -0.003974107094109058, + -0.02104019559919834, + 0.010951025411486626, + 0.0028865288477391005, + 0.023981444537639618, + -0.02744254469871521, + -0.017072929069399834, + -0.017880061641335487, + -0.0461023785173893, + 0.07004278153181076, + -0.0025667534209787846, + -0.013516068458557129, + -0.013427146710455418, + 0.00797557458281517, + 0.043886180967092514, + -0.035595960915088654, + -0.003871505381539464, + 0.0367451012134552, + 0.015048254281282425, + 0.0016347876517102122, + 0.02250397950410843, + 0.012216446921229362, + 0.014678888022899628, + 0.011286190710961819, + -0.024761218577623367, + 0.018550394102931023, + 0.042107753455638885, + 0.013392946682870388, + 0.017962142825126648, + -0.0020588748157024384, + -0.012086484581232071, + 0.012640533968806267, + -0.010834743268787861, + -0.012284847907721996, + 0.013427146710455418, + 0.0074352058582007885, + -0.01625211536884308, + -0.0006476734415628016, + -0.037647996097803116, + 0.00013765732001047581, + -7.2075044954544865e-06, + -0.029439857229590416, + 0.036471497267484665, + -0.0028540382627397776, + -0.03236742690205574, + 0.009754004888236523, + -0.06462541222572327, + 0.004962503910064697, + -0.03573276475071907, + -0.002052034717053175, + -0.04965924099087715, + -0.03250423073768616, + -0.00035290722735226154, + -0.018495673313736916, + 0.00020082152332179248, + 0.049522437155246735, + -0.01742861419916153, + 0.0004582877445500344, + -0.02400880493223667, + 0.013659710995852947, + -0.008153418079018593, + 0.00820129830390215, + 0.02095811441540718, + -0.0036731420550495386, + 0.024583375081419945, + -0.0049522435292601585, + 0.03841409087181091, + 0.02001417800784111, + 0.014364242553710938, + -0.006559670902788639, + -0.00891951099038124, + -0.005147187039256096, + -0.011464034207165241, + -0.021245399489998817, + -0.007989254780113697, + 0.01355710905045271, + 0.04071236774325371, + 0.041642624884843826, + -0.0015612563583999872, + 0.0035158193204551935, + -0.008960551582276821, + -0.02727838046848774, + 0.0006848665652796626, + -0.027018455788493156, + 0.04363993927836418, + -0.0034320279955863953, + 0.022298777475953102, + 0.02446025423705578, + -0.014692568220198154, + -0.024063527584075928, + -0.010267013683915138, + -0.012537932023406029, + 0.005225848406553268, + 0.030288031324744225, + -0.03855089098215103, + -0.007209481671452522, + -0.013345065526664257, + 0.01051325723528862, + 0.021847330033779144, + -0.034583624452352524, + 0.000739159993827343, + -0.03682718425989151, + -0.01790742203593254, + -0.012182245962321758, + -0.029412496834993362, + -0.00914523471146822, + -0.011826559901237488, + -0.013652870431542397, + 0.010800542309880257, + -0.040301959961652756, + -0.02875584550201893, + 0.004473435692489147, + 0.01938488706946373, + 0.016457317396998405, + -0.02041090466082096, + -0.03332504257559776, + -0.021464282646775246, + -0.008577505126595497, + -0.012319047935307026, + -0.007318923715502024, + 0.020616108551621437, + -0.013304024934768677, + 0.006132163573056459, + -0.03149189054965973, + -0.022613422945141792, + 0.004890682641416788, + -0.037647996097803116, + -0.0018895819084718823, + -0.011443513445556164, + 0.013823873363435268, + -0.040767088532447815, + -0.00631342688575387, + 0.01797582395374775, + -0.011970202438533306, + 0.0038441449869424105, + -0.02502114325761795, + -0.004859901964664459, + -0.021395880728960037, + 0.019097601994872093, + 0.0034610985312610865, + 0.033352404832839966, + 0.010198612697422504, + 0.023748882114887238, + 0.016457317396998405, + -0.00068614911288023, + 0.0144600048661232, + 0.036389414221048355, + -0.029494578018784523, + 0.0034610985312610865, + 0.012319047935307026, + 0.018317829817533493, + 0.00629290658980608, + -0.011559795588254929, + -0.005899599753320217, + -0.04426922649145126, + 0.0026146341115236282, + -0.02674485184252262, + -0.0195490512996912, + 0.0016459028702229261, + 0.010137051343917847, + -0.009425679221749306, + 0.002869428601115942, + -0.00648784963414073, + -0.021122276782989502, + -0.046868473291397095, + 0.004555516876280308, + -0.06074022501707077, + -0.005899599753320217, + -0.011901801452040672, + 0.026717491447925568, + 0.021915730088949203, + -0.021286439150571823, + -0.014733608812093735, + -0.014884091913700104, + -0.00021460863354150206, + 0.0023957504890859127, + -0.03354392573237419, + 0.0035226596519351006, + 0.004558937158435583, + 0.011655556969344616, + 0.0726693868637085, + 0.0035465999972075224, + -0.048592180013656616, + 0.002966900123283267, + 0.04974132031202316, + -0.00013487852993421257, + 0.020424585789442062, + 0.014733608812093735, + -0.0027616966981440783, + -0.03324296325445175, + 0.010595339350402355, + -0.005242948420345783, + 0.004921463318169117, + 0.004299012478441, + 0.002253818092867732, + 0.0024607316590845585, + -0.03376280888915062, + -0.01789374276995659, + 0.006563090719282627, + -0.012298528105020523, + 0.04963187873363495, + 0.027702467516064644, + -0.001957983011379838, + 0.01898816041648388, + 0.021532684564590454, + -0.016156353056430817, + 0.00617320416495204, + -0.02525370754301548, + 0.016457317396998405, + 0.0453636460006237, + 0.02102651447057724, + -0.025677794590592384, + 0.03242214769124985, + 0.017538055777549744, + -0.014747289009392262, + 0.004983024206012487, + 0.022449258714914322, + -0.0035568601451814175, + 0.01875559613108635, + -0.004517896566540003, + -0.011970202438533306, + -0.01216172520071268, + 0.016156353056430817, + 0.0057149166241288185, + -0.008440702222287655, + 0.03160133585333824, + 0.014788329601287842, + -0.012695254758000374, + 0.01551338192075491, + -0.02047930657863617, + 0.04714207723736763, + -0.0265670083463192, + -0.03770271688699722, + -0.016539400443434715, + -0.003827044740319252, + -0.02414560876786709, + -0.006347627379000187, + 0.019808974117040634, + -0.00729156332090497, + 0.0254041887819767, + -0.008139737881720066, + -0.04175206646323204, + 0.03789424151182175, + -0.0003355931839905679, + 0.0032576050143688917, + 0.02049298584461212, + -0.017018208280205727, + -0.00397068727761507, + -0.018003184348344803, + -0.026457566767930984, + -0.00891267042607069, + 0.026293404400348663, + -0.008160257712006569, + 0.01790742203593254, + -4.5422642870107666e-05, + 0.022777585312724113, + -0.0043229530565440655, + -0.013823873363435268, + -0.027415182441473007, + -0.020670829340815544, + -0.000696409260854125, + -0.010294374078512192, + -0.037319671362638474, + 0.023160630837082863, + 0.017059247940778732, + -0.010417495854198933, + 0.037647996097803116, + -0.0033328463323414326, + -0.032257985323667526, + 0.0072984034195542336, + -0.01168291736394167, + 0.03882449492812157, + 0.02158740535378456, + 0.019042881205677986, + -0.0066691129468381405, + 0.009986569173634052, + -0.03253158926963806, + 0.018276788294315338, + 0.0039912075735628605, + 0.02299646846950054, + 0.00824917946010828, + -0.006210824940353632, + 0.034501541405916214, + 0.0070521594025194645, + -0.034364741295576096, + 0.01923440583050251, + 0.0005767072434537113, + -0.002305119065567851, + -4.411340341903269e-05, + -0.011477714404463768, + 0.006764874327927828, + -0.016854044049978256, + 0.01751069538295269, + 0.006771714426577091, + -0.01994577795267105, + 0.013447667472064495, + -0.024638095870614052, + 0.026553329080343246, + -0.019357526674866676, + -0.017455974593758583, + 0.013105661608278751, + 0.01601955108344555, + 0.006689633242785931, + -0.0164162777364254, + -0.012469531036913395, + 0.028892647475004196, + -0.003796264063566923, + -0.013946996070444584, + -0.023557357490062714, + -0.02674485184252262, + 0.01024649292230606, + 0.004117749631404877, + -0.005728596821427345, + -0.007756690960377455, + 0.003129352815449238, + -0.015581782907247543, + -0.005896179471164942, + -0.007825092412531376, + -0.004110909532755613, + -0.010314893908798695, + -0.04465227574110031, + -0.03119092807173729, + -0.0195353701710701, + -0.0012782466365024447, + -0.011881280690431595, + 0.05595214664936066, + -0.011635036207735538, + -0.025445230305194855, + 0.01805790513753891, + 0.028017112985253334, + 0.008981071412563324, + -0.018960800021886826, + 0.006563090719282627, + -0.011778678745031357, + -0.024528654292225838, + -0.009952368214726448, + -0.010383295826613903, + -0.038277287036180496, + 0.02180628851056099, + -0.010150731541216373, + -0.03305143862962723, + 0.011156228370964527, + 0.028947370126843452, + 0.01580066792666912, + 0.029959706589579582, + -0.0012030053185299039, + 0.013844394125044346, + -0.04656750708818436, + 0.04621182009577751, + -0.006306586787104607, + 0.018030544742941856, + -0.01168291736394167, + -0.009596682153642178, + 0.018659835681319237, + 0.00953512080013752, + -0.01946696825325489, + 0.015978509560227394, + -0.005896179471164942, + -0.025705154985189438, + -0.0072300024330616, + -0.007872972637414932, + 0.014104318805038929, + -0.003953586798161268, + -0.030534276738762856, + -0.015349219553172588, + 0.04643070325255394, + -0.01352290902286768, + -0.011429833248257637, + 0.02203885279595852, + -0.019672172144055367, + -0.028783205896615982, + 0.01907024160027504, + 0.0042374515905976295, + -0.04369466006755829, + -0.0036765621043741703, + 0.014446323737502098, + -0.039508506655693054, + -0.01426848117262125, + -0.039918914437294006, + -0.012141205370426178, + -0.011484554037451744, + -0.028017112985253334, + -0.021546363830566406, + -0.02235349826514721, + -0.02493906207382679, + 0.00891267042607069, + 0.008297060616314411, + 0.014788329601287842, + 0.033106159418821335, + 0.0002819410292431712, + -0.023105910047888756, + 0.002966900123283267, + 0.0031327728647738695, + 0.006470749154686928, + 0.03231270611286163, + 0.004500796087086201, + -0.01930280588567257, + 0.008857949636876583, + -0.0006339932442642748, + 0.05017908662557602, + 0.004818861372768879, + -0.006874316371977329, + -0.0007742155576124787, + -0.02273654378950596, + -0.018003184348344803, + 0.009637722745537758, + 0.0023341893684118986, + 0.005831198766827583, + -0.0023786502424627542, + -0.005478932522237301, + 0.029193613678216934, + -0.016840364784002304, + -0.008940030820667744, + 0.01875559613108635, + 0.006180044263601303, + -0.011888121254742146, + -0.0036492017097771168, + 0.007503606844693422, + -0.0021324059925973415, + 0.02469281665980816, + -0.011313551105558872, + 0.019672172144055367, + -0.02900209091603756, + 0.004367413930594921, + 0.004370833747088909, + -0.023653119802474976, + 0.022257735952734947, + 0.011717118322849274, + -0.033981695771217346, + -0.008112377487123013, + 0.018728235736489296, + 0.022887026891112328, + 0.01648467779159546, + -0.013085140846669674, + 0.027811910957098007, + -0.027346782386302948, + 0.01666252128779888, + -0.032558951526880264, + -0.01993209682404995, + -0.004969344008713961, + 0.015157695859670639, + -0.019603772088885307, + -0.016293155029416084, + 0.010369615629315376, + 0.023393195122480392, + 0.01177183911204338, + -0.01149823423475027, + 0.025212666019797325, + 0.020192021504044533, + -0.028728485107421875, + -0.0073326039128005505, + -0.031382448971271515, + -0.02273654378950596, + -0.001373153179883957, + -0.030588997527956963, + -0.011204109527170658, + -0.015458661131560802, + -0.037948962301015854, + 0.00917943473905325, + -0.014733608812093735, + 0.013447667472064495, + -0.056006867438554764, + -0.03001442737877369, + 0.002840358065441251, + 0.03614317253232002, + 0.004381094127893448, + -0.015732266008853912, + 0.0045110564678907394, + 0.01666252128779888, + 0.026950055733323097, + 0.02242189832031727, + 0.014282161369919777, + -0.0022486879024654627, + 0.022558702155947685, + 0.021847330033779144, + -0.009350437670946121, + 0.020192021504044533, + -0.03190229833126068, + -0.026334445923566818, + 0.01555442251265049, + -0.0034918789751827717, + -0.030370112508535385, + 0.00887847039848566, + -0.0023461596574634314, + 0.035541240125894547, + -0.007277883123606443, + -0.02399512566626072, + 0.022093573585152626, + -0.008857949636876583, + 0.0045931376516819, + 0.026799572631716728, + -0.030753159895539284, + -0.037730079144239426, + -0.04809969291090965, + -0.006730673834681511, + -0.0072984034195542336, + -0.021984132006764412, + 0.010171252302825451, + -0.021614765748381615, + 0.027333101257681847, + -0.01352290902286768, + 0.015841707587242126, + 0.01136827189475298, + -0.010725301690399647, + -0.015663864091038704, + 0.00018575189460534602, + 0.009193114936351776, + -0.020930754020810127, + 0.008344940841197968, + 0.0019049722468480468, + 0.03956322744488716, + 0.002517162589356303, + 0.043038006871938705, + 0.012175405398011208, + -0.006826435215771198, + -0.008050816133618355, + -0.017551736906170845, + -0.013933315873146057, + 0.041396379470825195, + 0.008536464534699917, + 0.0017288392409682274, + -0.02963137999176979, + 0.003915966022759676, + -0.009295716881752014, + -0.01519873645156622, + 0.010882623493671417, + 0.022326137870550156, + 0.01337242592126131, + -0.015814347192645073, + 0.03160133585333824, + 0.0563078299164772, + 0.03737439215183258, + -0.014925132505595684, + 0.0005142911686562002, + -0.022066213190555573, + 0.0006284356350079179, + 0.022462939843535423, + 0.0034183477982878685, + -0.0019203624688088894, + -0.01812630705535412, + -0.02205253206193447, + 0.007182121276855469, + 0.02641652710735798, + -0.023338474333286285, + 0.010492737405002117, + -0.0297134630382061, + -0.015171376056969166, + -0.002033224329352379, + -0.008365461602807045, + 0.020506666973233223, + -0.03151925280690193, + 0.027305740863084793, + 0.0183725506067276, + -0.0144600048661232, + 0.011949681676924229, + -0.015663864091038704, + -0.0312730073928833, + -0.008228658698499203, + -0.029740823432803154, + 0.01238744892179966, + 0.020739231258630753, + 0.009316237643361092, + -0.005581534467637539, + -0.02361207827925682, + 0.0069495574571192265, + -0.014747289009392262, + -0.023885684087872505, + -0.020192021504044533, + 0.02205253206193447 + ], + "entity_status_monitoring": [ + -0.008429164998233318, + 0.046692028641700745, + -0.029520167037844658, + 0.021537180989980698, + -0.025661321356892586, + 0.04471437260508537, + 0.03791315481066704, + 0.020162466913461685, + 0.05161205679178238, + 0.010105350986123085, + -0.011136386543512344, + -0.05026146024465561, + -0.011890067718923092, + -0.007621219847351313, + -0.003472960786893964, + 0.062465060502290726, + -0.006101799197494984, + 0.03576667234301567, + -0.010219911113381386, + 0.03277606889605522, + 0.05440972000360489, + 0.005128043703734875, + -0.004941130988299847, + -0.0030162304174154997, + 0.008169899694621563, + -0.008007104508578777, + 0.008453283458948135, + 0.024913670495152473, + -0.041627295315265656, + 0.03388548642396927, + 0.08011927455663681, + -0.012517130002379417, + 0.029254872351884842, + 0.010394765064120293, + -0.017159802839159966, + 0.00754283694550395, + 0.004392451141029596, + 0.015073615126311779, + 0.0045401728712022305, + -0.0007683775038458407, + 0.02841074950993061, + -0.0090743163600564, + 0.021283943206071854, + 0.026891328394412994, + -0.029785463586449623, + 0.009827996604144573, + -0.04736732691526413, + 0.0017410025466233492, + 0.007410189136862755, + 0.009785790927708149, + -0.039649635553359985, + -0.012348305433988571, + -0.018992755562067032, + -0.005447604227811098, + -0.0013890336267650127, + -0.042760830372571945, + -0.004428627900779247, + 0.000567144772503525, + -0.03480196371674538, + -0.009707408025860786, + 0.0008433687617070973, + -0.017328627407550812, + -0.027856040745973587, + 0.04073493555188179, + -0.0029182517901062965, + 0.002728324383497238, + -0.0641050711274147, + -0.0388055145740509, + 0.023080719634890556, + -0.036948446184396744, + 0.01301154401153326, + 0.08036045730113983, + 0.03938433900475502, + -0.01331301685422659, + 0.03740668296813965, + -0.010358587838709354, + 0.021283943206071854, + -0.009616966359317303, + -0.029399577528238297, + -0.016725683584809303, + -0.061307407915592194, + 0.011148445308208466, + -0.02913428284227848, + 0.057689737528562546, + 0.037069033831357956, + -0.023273661732673645, + -0.05440972000360489, + -0.01456714142113924, + 0.006746950093656778, + -0.011865949258208275, + 0.00777798518538475, + 0.04905557259917259, + -0.011395652778446674, + -0.015133908949792385, + 0.04601673036813736, + 0.0037503154017031193, + 0.019089225679636, + -0.00629474176093936, + -0.011980509385466576, + 0.036321382969617844, + -0.04789792001247406, + -0.00901402160525322, + -0.05334853753447533, + -0.01659303531050682, + 0.0013799894368276, + 0.034560784697532654, + -0.03108782321214676, + -0.008121663704514503, + 0.013735078275203705, + -0.025034260004758835, + -0.003665903117507696, + -0.027011917904019356, + -0.014760083518922329, + 0.014145080000162125, + 0.004145244136452675, + -0.028579574078321457, + -0.028651926666498184, + 0.017364803701639175, + 0.038733161985874176, + -0.02633661963045597, + -0.008947697468101978, + 0.03193194419145584, + -0.04249553382396698, + -0.0028715236112475395, + -0.017497451975941658, + 0.02872428111732006, + 0.010738443583250046, + -0.017159802839159966, + -0.019438933581113815, + 0.054988548159599304, + 0.01227595191448927, + 0.026794858276844025, + 0.07659807801246643, + 0.011021827347576618, + -0.028169570490717888, + 0.021488945931196213, + 0.0061470200307667255, + -0.0663239061832428, + -0.011666977778077126, + 0.0249860230833292, + 0.011787566356360912, + -0.015278615988790989, + -0.009966674260795116, + 0.04963440075516701, + -0.0030689879786223173, + 0.03856433555483818, + -0.04963440075516701, + -0.009466229937970638, + 0.01605038531124592, + 0.002692147623747587, + 0.03856433555483818, + 0.007916662842035294, + -0.06458742171525955, + -0.004298994783312082, + 0.010304323397576809, + 0.0006850957870483398, + 0.04864557087421417, + -0.04114493727684021, + -0.024045430123806, + -0.020150408148765564, + 0.008043280802667141, + 0.011341387405991554, + 0.031449589878320694, + -0.0037864919286221266, + -0.01928216777741909, + -0.004434657283127308, + -0.008169899694621563, + 0.01866716518998146, + -0.01888422481715679, + 0.0433637760579586, + 0.025058377534151077, + 0.027735451236367226, + 0.006541948765516281, + 0.013204487040638924, + -0.0049592191353440285, + -0.0421096496284008, + 0.015483616851270199, + -0.016532741487026215, + -0.013614488765597343, + -0.03007487580180168, + 0.017642159014940262, + -0.003159429645165801, + -0.018932459875941277, + 0.01058167777955532, + 0.007488572038710117, + -0.0028157513588666916, + -0.011606683023273945, + 0.055085018277168274, + -0.027711333706974983, + 0.039649635553359985, + -0.02104276604950428, + 0.05682149901986122, + 0.04987557604908943, + 0.010545500554144382, + 0.019571581855416298, + -0.02756662666797638, + -0.011070062406361103, + 0.017859218642115593, + 0.009411965496838093, + -0.035935498774051666, + -0.029206635430455208, + -0.004054802469909191, + 0.06955568492412567, + -0.005640546791255474, + 0.006403271574527025, + 0.023044541478157043, + -0.017678335309028625, + 0.02870016172528267, + -0.01606244407594204, + 0.03890198469161987, + 0.017123626545071602, + -0.026577796787023544, + -0.012987426482141018, + 0.0014968100003898144, + -0.007940780371427536, + -0.01793157309293747, + -0.021706005558371544, + -0.0026815959718078375, + -0.010973591357469559, + -0.04963440075516701, + -0.03793727234005928, + 0.06188623234629631, + 0.05682149901986122, + 0.013879784382879734, + -0.04847674444317818, + 0.05141911655664444, + 0.03636961802840233, + -0.01720803789794445, + -0.008802991360425949, + -0.03793727234005928, + -0.004383407067507505, + -0.006976068951189518, + -0.003159429645165801, + 0.014157138764858246, + 0.01098565012216568, + -0.06733684986829758, + 0.0008026699651964009, + 0.03776844963431358, + -0.004407525062561035, + 0.03200430050492287, + 0.010955503210425377, + -0.0007412449922412634, + -0.018799811601638794, + -0.01978864148259163, + -0.00552297243848443, + 0.010913297533988953, + 0.019342463463544846, + 0.03152194246649742, + -0.008821079507470131, + 0.04220611974596977, + -0.021308062598109245, + 0.015411263331770897, + -0.008851226419210434, + -0.015580087900161743, + -0.006421359721571207, + -0.03183547407388687, + -0.027277212589979172, + -0.02261042222380638, + 0.01130521111190319, + 0.009122551418840885, + 0.003723182948306203, + 0.08378518372774124, + -0.06145211309194565, + -0.027204860001802444, + -0.01301154401153326, + -0.06560037285089493, + 0.03825080394744873, + -0.053010888397693634, + -0.0006297002546489239, + -0.03142547234892845, + 0.018679223954677582, + -0.016026267781853676, + 0.0344160757958889, + -0.02768721617758274, + -0.04765674099326134, + -0.0020605630706995726, + 0.014325963333249092, + 0.009188875555992126, + 0.025034260004758835, + 0.02725309506058693, + 0.004757232964038849, + 0.009954615496098995, + 0.02696368284523487, + 0.02684309333562851, + -0.004286936018615961, + 0.01032241154462099, + -0.016424210742115974, + -0.04179611802101135, + 0.029713109135627747, + 0.04500378295779228, + 0.018003925681114197, + -0.00725945271551609, + 0.020174525678157806, + -0.006554007530212402, + 0.013952137902379036, + -0.010075204074382782, + 0.011787566356360912, + -0.03784080222249031, + 0.02166982926428318, + -0.030098993331193924, + 0.041313763707876205, + 0.0369243286550045, + -0.02756662666797638, + 0.021693946793675423, + -0.004868777468800545, + 0.006062607746571302, + 0.022875718772411346, + -0.041820235550403595, + -0.0319078266620636, + 0.00038569612661376595, + 0.0036086232867091894, + -0.02353895641863346, + 0.016773918643593788, + 0.02966487407684326, + 0.03972198814153671, + -0.076356902718544, + 0.016713624820113182, + 0.02944781444966793, + 0.018124515190720558, + -0.018220985308289528, + -0.0018224000232294202, + -0.06661331653594971, + -0.009044168516993523, + 0.004302009474486113, + -0.03856433555483818, + -0.05585678666830063, + 0.014639494940638542, + 0.022634539753198624, + 0.015507735311985016, + -0.012939191423356533, + -0.0015081152087077498, + 0.031449589878320694, + 0.011938302777707577, + 0.0009473767131567001, + 0.021718064323067665, + 0.03993904963135719, + -0.030412524938583374, + 0.042857300490140915, + -0.0024811169132590294, + 0.02434690296649933, + -0.03077429160475731, + -0.018474223092198372, + -0.04447319358587265, + 0.011196681298315525, + 0.009948586113750935, + -0.056146200746297836, + -0.09401112049818039, + -0.01503743790090084, + 0.030123112723231316, + -0.00011851629824377596, + 0.05055087432265282, + 0.010485206730663776, + -0.012770366854965687, + 0.0090743163600564, + -0.0634780079126358, + -0.0018178779864683747, + 0.006324888672679663, + 0.0615968182682991, + 0.019306285306811333, + -0.020162466913461685, + -0.00020217486598994583, + -0.01940275728702545, + -0.013108015060424805, + 0.005465692840516567, + -0.020970413461327553, + -0.02280336432158947, + -0.03690020740032196, + -0.0179195124655962, + 0.012119186110794544, + 0.03205253556370735, + 0.014157138764858246, + 0.036128439009189606, + -0.016086561605334282, + 0.019438933581113815, + 0.007989015430212021, + 0.0025866322685033083, + -0.01279448438435793, + 0.03711726889014244, + -0.006710773333907127, + 0.06415330618619919, + 0.031256645917892456, + -0.010798737406730652, + 0.05773797258734703, + -0.004715026821941137, + -0.005670693702995777, + 0.05050263926386833, + -0.050647344440221786, + -0.028458984568715096, + -0.06767450273036957, + -0.0220798309892416, + 0.04548614099621773, + -0.0325348898768425, + -0.01357831247150898, + -0.013095956295728683, + -0.0055199577473104, + 0.04406319186091423, + -0.00902608036994934, + 0.04862145334482193, + 0.04811497777700424, + 0.004461789969354868, + 0.025733675807714462, + -0.01802804321050644, + -0.008833138272166252, + -0.0038196539971977472, + -0.012396540492773056, + 0.024720728397369385, + -0.0488867461681366, + -0.015049496665596962, + 0.014024491421878338, + -0.014120962470769882, + 0.0631885901093483, + -0.0049230423755943775, + 0.00041942333336919546, + 0.013180368579924107, + 0.018848048523068428, + -0.023575132712721825, + -0.0016701564891263843, + 0.03369254246354103, + -0.035501375794410706, + -0.013421546667814255, + -0.014555082656443119, + -0.07336629927158356, + 0.015459499321877956, + -0.009827996604144573, + -0.04526907950639725, + -0.024298667907714844, + -0.016629211604595184, + -0.011474035680294037, + 0.06888038665056229, + -0.06733684986829758, + 0.03398195654153824, + -0.00979784969240427, + -0.0023349029943346977, + -0.04350848123431206, + 0.05055087432265282, + -0.047102030366659164, + 0.03501902148127556, + -0.03723785653710365, + 0.018425986170768738, + -0.00824828166514635, + 0.0028172587044537067, + -0.06699920445680618, + -0.013361251913011074, + -0.015797147527337074, + 0.011890067718923092, + -0.008513577282428741, + -0.05387913063168526, + -0.056773263961076736, + 0.014699788764119148, + -0.017871277406811714, + 0.0041422294452786446, + -0.028627809137105942, + -0.017340686172246933, + -0.002315307268872857, + -0.025564851239323616, + -0.024021312594413757, + 0.03130488470196724, + -0.012734189629554749, + 0.05754503235220909, + 0.007609160616993904, + -0.0060535636730492115, + -0.029471931979060173, + -0.0006232939776964486, + 0.009870203211903572, + -0.011256975121796131, + 0.026794858276844025, + -0.007193129044026136, + -0.0017711496911942959, + -0.04874204099178314, + 0.002030415926128626, + 0.015218321233987808, + 0.010533441789448261, + 0.046788498759269714, + -0.002747919876128435, + 0.03137723729014397, + 0.0031745033338665962, + 0.039553165435791016, + 0.01234227605164051, + 0.004965248517692089, + 0.05387913063168526, + -0.04341201111674309, + -0.000695270486176014, + 0.017907453700900078, + 0.0065359193831682205, + 0.025540733709931374, + 0.07925103604793549, + -0.002922773826867342, + 0.00022648106096312404, + -0.045558493584394455, + 0.039239633828401566, + 0.006234447006136179, + -0.011443888768553734, + 0.007108716759830713, + -0.012137274257838726, + 0.031353119760751724, + -0.025347791612148285, + 0.014892731793224812, + 0.0034609020221978426, + 0.02870016172528267, + -0.04758438840508461, + -0.011576536111533642, + -0.0719674676656723, + -0.029592521488666534, + 0.017256274819374084, + -0.010913297533988953, + -0.04097611457109451, + 0.014579200185835361, + 0.022622480988502502, + 0.015712736174464226, + 0.01523037999868393, + -0.02053629234433174, + 0.012685954570770264, + 0.0011440874077379704, + -0.012818601913750172, + -0.01125094573944807, + -0.0256130862981081, + 0.011431829072535038, + 0.006198270246386528, + -0.012209627777338028, + -0.013204487040638924, + 0.02124776691198349, + -0.008869314566254616, + 0.017268333584070206, + -0.004265833180397749, + -0.003831712994724512, + -0.015133908949792385, + 0.022550128400325775, + 0.005342089105397463, + -0.02188688889145851, + 0.02341836877167225, + 0.026601916179060936, + -0.038299039006233215, + 0.012782425619661808, + 0.021898947656154633, + -0.03412666544318199, + 0.00656003737822175, + -0.01690656691789627, + -0.030436642467975616, + -0.03938433900475502, + 0.012529188767075539, + 0.015821266919374466, + -0.032607242465019226, + 0.009568730369210243, + -0.031883709132671356, + -0.012348305433988571, + -0.0016822153702378273, + -0.004594437777996063, + 0.04584790766239166, + 0.022128066048026085, + -0.007579013705253601, + 0.020041877403855324, + -0.029616639018058777, + -0.025950735434889793, + -0.00551694305613637, + -0.0026469267904758453, + 0.017183920368552208, + -0.043797895312309265, + -0.02385248802602291, + -0.016122737899422646, + 0.03610432147979736, + 0.028241924941539764, + -0.024214254692196846, + 0.037165503948926926, + -0.006819303147494793, + -0.017461275681853294, + 0.034464314579963684, + 0.0014357618056237698, + 0.03200430050492287, + 0.007452395278960466, + 0.01929422654211521, + 0.011118298396468163, + -0.008778872899711132, + 0.00782019179314375, + -0.03863668814301491, + 0.007874456234276295, + 0.005538045894354582, + 0.026071324944496155, + -0.043484363704919815, + 0.02631250210106373, + 0.02693956531584263, + 0.0024871465284377337, + -0.012698013335466385, + 0.025251319631934166, + 0.05325206741690636, + -0.07987809926271439, + -0.003195606404915452, + -0.022960130125284195, + 0.009436083026230335, + -0.022357186302542686, + 0.022043654695153236, + 0.02279130555689335, + -0.008055339567363262, + 0.011902126483619213, + -0.0030735100153833628, + 0.051660291850566864, + -0.02737368457019329, + 0.012987426482141018, + 0.0007092135492712259, + -0.03137723729014397, + 0.005179293919354677, + 0.006825332995504141, + 0.02903781086206436, + -0.013385370373725891, + 0.02074129320681095, + 0.02053629234433174, + 0.025661321356892586, + 0.004790394566953182, + 0.013819489628076553, + 0.0023198293056339025, + 0.017967749387025833, + -0.062465060502290726, + 0.0546991340816021, + -0.021923065185546875, + -0.0069941570982337, + -0.009779761545360088, + -0.0050798081792891026, + -0.004775321111083031, + 0.03132900223135948, + 0.01981275901198387, + -0.03921551629900932, + 0.01535096950829029, + 0.025420144200325012, + -0.013337134383618832, + -0.014084785245358944, + -0.00702430447563529, + 0.0001145594724221155, + 0.036128439009189606, + 0.03460901975631714, + 0.022972188889980316, + -0.025227202102541924, + -0.02323748543858528, + -0.010702266357839108, + -0.005278780125081539, + -0.02071717567741871, + -0.03171488642692566, + 0.01700303703546524, + -0.023273661732673645, + 0.017340686172246933, + 0.05431324988603592, + 0.005224514752626419, + 0.007271511945873499, + -0.0003576215240173042, + -0.03152194246649742, + -0.012939191423356533, + 0.0072775413282215595, + -0.06019798666238785, + -0.0001726870978018269, + 0.016641270369291306, + 0.03058134950697422, + 0.004081934690475464, + 0.02882075123488903, + -0.03371665999293327, + 0.006909744814038277, + -0.005839518271386623, + 0.0016852301778271794, + -0.016207151114940643, + -0.023888664320111275, + -0.028868986293673515, + -0.0090743163600564, + 0.015314792282879353, + -0.04693320766091347, + 0.04324318468570709, + -0.00835078302770853, + 0.05016499012708664, + -0.006825332995504141, + 0.0026363751385360956, + 0.0037864919286221266, + -0.007717690896242857, + 0.03576667234301567, + -0.020162466913461685, + -0.02291189506649971, + -0.01233021728694439, + -0.028941340744495392, + 0.014627436175942421, + 0.016544800251722336, + 0.002711743349209428, + -0.009122551418840885, + -0.026674268767237663, + -0.035211965441703796, + 0.014651553705334663, + 0.024383079260587692, + 0.019728347659111023, + -0.009194904938340187, + -0.015688618645071983, + -0.010545500554144382, + 0.011142415925860405, + 0.001915856497362256, + 0.007301658857613802, + 0.017292451113462448, + -0.014711848460137844, + -0.015724794939160347, + -0.01896863617002964, + 0.01843804493546486, + 0.003840757068246603, + -0.00022761158470530063, + -0.028844868764281273, + -0.009665201418101788, + -0.0070544518530368805, + 0.026167795062065125, + 0.00024438099353574216, + 0.008447254076600075, + 0.00195052579510957, + 0.0009127073572017252, + 0.03193194419145584, + -0.01451890543103218, + -0.010708295740187168, + 0.012372422963380814, + -0.0022746084723621607, + 0.005812386050820351, + 0.020078055560588837, + -0.05754503235220909, + 0.03759962320327759, + -0.018944518640637398, + 0.020560409873723984, + -0.048356156796216965, + -0.02010217308998108, + -0.022007478401064873, + -0.011118298396468163, + 0.04377377778291702, + -0.02841074950993061, + 0.03480196371674538, + 0.03776844963431358, + -0.007735779043287039, + -0.00985211506485939, + -0.0070845987647771835, + -0.022839540615677834, + 0.002827810123562813, + 0.004835615865886211, + -0.03241430222988129, + -0.021645711734890938, + -0.031787239015102386, + -0.011070062406361103, + 0.04652320593595505, + -0.01711156778037548, + 0.04186847433447838, + 0.03878139704465866, + -0.03152194246649742, + 0.0230204239487648, + -0.03369254246354103, + 0.023707780987024307, + -0.02631250210106373, + 0.03058134950697422, + -0.031111940741539, + -0.04592026025056839, + 0.031570177525281906, + -0.02311689592897892, + -0.004630614537745714, + 0.022767188027501106, + -0.01916157826781273, + -0.005444589536637068, + 0.011263005435466766, + 0.007663425989449024, + -0.04324318468570709, + 0.022851599380373955, + -0.009520495310425758, + -0.04570319876074791, + 0.01586950197815895, + 0.04823556914925575, + 0.009809908457100391, + 0.018377751111984253, + -0.012058892287313938, + -0.005366207100450993, + -0.0003555488947313279, + 0.003304136451333761, + -0.006216358859091997, + 0.046499088406562805, + -0.014012432657182217, + 0.030726056545972824, + -0.00529083888977766, + 0.01898069493472576, + 0.012420658953487873, + -0.0024946832563728094, + 0.004657746758311987, + 0.02831427752971649, + 0.027807803824543953, + 0.03371665999293327, + -0.02227277308702469, + 0.0164965633302927, + 0.049079690128564835, + 0.027108388021588326, + 0.008802991360425949, + 0.007078569382429123, + 0.0057008410803973675, + 0.00850151851773262, + 0.0075368075631558895, + 0.034657254815101624, + 0.011546389199793339, + -0.0033644307404756546, + -0.010436970740556717, + -0.006927833426743746, + -0.02882075123488903, + -0.01451890543103218, + -0.009821967221796513, + 0.0049863518215715885, + 0.0230204239487648, + -0.031473707407712936, + -0.007868426851928234, + -0.06289917975664139, + -0.002138945972546935, + -0.038009628653526306, + 0.007579013705253601, + 0.023912781849503517, + 0.04196494445204735, + 0.030726056545972824, + -0.00312325288541615, + -0.0038528158329427242, + -0.005942019168287516, + 0.02496190555393696, + -0.05619443580508232, + -0.013940079137682915, + -0.02747015655040741, + 0.034271370619535446, + -0.013144192285835743, + -0.01099167950451374, + -0.027952510863542557, + 0.04292965680360794, + 0.007970927283167839, + 0.00629474176093936, + -0.02248983271420002, + -0.024274548515677452, + 0.0006877337000332773, + 0.014108903706073761, + 0.05412030592560768, + -0.025420144200325012, + -0.001798282261006534, + 0.03670726716518402, + -0.013180368579924107, + 0.021802475675940514, + -0.05267323926091194, + 0.0156403835862875, + 0.0010076711187139153, + -0.020572468638420105, + 0.035404905676841736, + -0.00451002549380064, + -0.00130763603374362, + 0.001774164498783648, + 0.018184809014201164, + 0.016122737899422646, + 0.012830660678446293, + 0.014627436175942421, + -0.01483243703842163, + 0.023563073948025703, + -0.03538078814744949, + -0.044931430369615555, + 0.026698386296629906, + -0.005073778796941042, + -0.01384360808879137, + -0.038202568888664246, + 0.0024419256951659918, + 0.013337134383618832, + 0.01451890543103218, + 0.008700490929186344, + 0.05127440765500069, + -0.0028489131946116686, + 0.029158400371670723, + -0.028241924941539764, + -0.029471931979060173, + -0.017244216054677963, + 0.032800186425447464, + 0.019619816914200783, + -0.02353895641863346, + -0.00777195580303669, + 0.006050548981875181, + 0.008935638703405857, + -0.005206426605582237, + 0.02321336604654789, + 0.020572468638420105, + 0.001309143495745957, + -0.0061168731190264225, + 0.003907080739736557, + 0.0048838513903319836, + -0.015628322958946228, + 0.01637597568333149, + 0.03444019332528114, + -0.008302547037601471, + 0.006885627284646034, + -0.012565365061163902, + 0.016315679997205734, + 0.011413740925490856, + 0.024093665182590485, + 0.04343612864613533, + -0.0003255900810472667, + 0.001927915378473699, + -0.012613601051270962, + -0.028169570490717888, + 0.009351670742034912, + 0.007175040431320667, + 0.026915445923805237, + -0.0027901260182261467, + -0.04734320938587189, + 0.01843804493546486, + 0.021416591480374336, + 0.028844868764281273, + -0.036224912852048874, + -0.03868492692708969, + 0.024226313456892967, + 0.013361251913011074, + 0.0014123977161943913, + 0.014965084381401539, + 0.0003781593113671988, + -0.000601814070250839, + -0.001655082916840911, + -0.028627809137105942, + 0.02157335728406906, + -0.0031292825005948544, + -0.0029664873145520687, + -0.01617097482085228, + 0.05267323926091194, + 0.008007104508578777, + 0.05267323926091194, + -0.00030448700999841094, + 0.0035422993823885918, + 0.0031051647383719683, + 0.03854021802544594, + -0.009345641359686852, + 0.0053752511739730835, + 0.021790416911244392, + -0.030436642467975616, + 0.05937798321247101, + 0.00187817239202559, + -0.03721373900771141, + -0.010340499691665173, + 0.02043982222676277, + -0.020174525678157806, + 0.003831712994724512, + -0.037671979516744614, + -0.012191539630293846, + 0.029616639018058777, + 0.029086047783493996, + -0.05117793753743172, + -0.028048982843756676, + -0.016544800251722336, + -0.06434624642133713, + 0.04143435135483742, + -0.05117793753743172, + 0.006140990648418665, + -0.00016910712292883545, + 0.0013392906403169036, + 0.011691095307469368, + -0.03243841975927353, + 0.0016158914659172297, + 0.03294489160180092, + 0.0022806378547102213, + -0.017774807289242744, + -0.06555213779211044, + 0.004398480989038944, + -0.010895208455622196, + 0.03598373383283615, + -0.018630987033247948, + -0.0007382303010672331, + 0.008338723331689835, + -0.02508249506354332, + 0.019848935306072235, + -0.02549249678850174, + 0.0018842018907889724, + -0.0018344589043408632, + -0.009430053643882275, + -0.009960644878447056, + 0.050647344440221786, + -0.028531339019536972, + 0.026143677532672882, + 0.018329516053199768, + 0.009128580801188946, + -0.020656881853938103, + 0.01722009666264057, + 0.0007457670872099698, + 0.01771451160311699, + -0.054457955062389374, + -0.027856040745973587, + 0.023141013458371162, + 0.003943257499486208, + 0.03752727061510086, + 0.0014078756794333458, + 0.026071324944496155, + -0.009761673398315907, + -0.049393221735954285, + -0.002607735339552164, + 0.024117784574627876, + 0.01969216950237751, + -0.008079457096755505, + -0.0062766531482338905, + 0.027590744197368622, + 0.009393876418471336, + 0.02592661790549755, + 0.039336103945970535, + -0.032824303954839706, + 0.011890067718923092, + 0.030533114448189735, + 0.024286607280373573, + 0.005622458178550005, + 0.034970786422491074, + -0.0015103762270882726, + -0.016834212467074394, + 0.03265547752380371, + 0.024226313456892967, + -0.016122737899422646, + -0.017810983583331108, + 0.01175741944462061, + 0.03827492147684097, + -0.026601916179060936, + 0.01836569234728813, + 0.03513960912823677, + 0.04030081629753113, + 0.009924467653036118, + -0.030291935428977013, + -0.04543790593743324, + 0.02352689765393734, + -0.03132900223135948, + -0.0009360715048387647, + 0.021332180127501488, + -0.008971815928816795, + -0.02903781086206436, + -0.02157335728406906, + -0.019559523090720177, + -0.03388548642396927, + -0.001175742014311254, + 0.0009594355942681432, + -0.01896863617002964, + 0.013518017716705799, + -0.026457209140062332, + -0.023575132712721825, + -0.0029544285498559475, + 0.06439448148012161, + 0.017063332721590996, + 0.03545314073562622, + -0.0003191838040947914, + -0.017605982720851898, + -0.030098993331193924, + 0.025685438886284828, + 0.025106612592935562, + -0.01700303703546524, + -0.008977845311164856, + 0.010081233456730843, + 0.05947445333003998, + -0.004407525062561035, + 0.007319747470319271, + -0.002469058148562908, + -0.025830145925283432, + -0.005568193271756172, + -0.009622995741665363, + 0.010623883455991745, + 0.020777471363544464, + -0.006855479907244444, + 0.0054053980857133865, + 0.009007992222905159, + 0.029568402096629143, + 0.03714138641953468, + -0.028965458273887634, + 0.014338022097945213, + -0.0214527677744627, + 0.01378331333398819, + 0.04319494962692261, + 0.005483780987560749, + -0.07158157974481583, + -0.0076393079943954945, + -0.001480228966102004, + 0.004118111450225115, + -0.017461275681853294, + -0.006056578364223242, + 0.0016822153702378273, + 0.04567908123135567, + -0.011540359817445278, + -0.005471722222864628, + -0.015821266919374466, + 0.011944332160055637, + 0.016834212467074394, + 0.013445664197206497, + -0.053734421730041504, + -0.004543187562376261, + -0.004901939537376165, + -9.797849634196609e-05, + -0.01011741068214178, + -0.015254498459398746, + 0.006095769815146923, + -0.022658657282590866, + 0.002806707052513957, + 0.01260154228657484, + 0.022851599380373955, + 0.011847861111164093, + 0.031449589878320694, + 0.015363028272986412, + 0.013445664197206497, + -0.023551015183329582, + 0.0030162304174154997, + -0.007735779043287039, + 0.0059510632418096066, + -0.0066926851868629456, + -0.0009285346604883671, + 0.01098565012216568, + 0.04283318296074867, + -0.028024865314364433, + 0.014856554567813873, + 0.007940780371427536, + -0.01565244235098362, + -0.027132507413625717, + 1.992543548112735e-05, + -0.00450701080262661, + -0.012456835247576237, + 0.022731011733412743, + -0.01584538444876671, + -0.004594437777996063, + -0.02841074950993061, + -0.0214527677744627, + -0.029930168762803078, + -0.04543790593743324, + -0.0033614160493016243, + 0.0015540897147729993, + -0.011112269014120102, + -0.00953858345746994, + -0.004139214754104614, + 0.01383154932409525, + 0.012770366854965687, + 0.0396014004945755, + 0.04775321111083031, + -0.004591423086822033, + -0.007946809753775597, + 0.01586950197815895, + 0.0025444261264055967, + -0.04075905308127403, + -0.049393221735954285, + 0.027204860001802444, + 0.007681514136493206, + 0.03793727234005928, + -0.01835363358259201, + -0.01305978000164032, + -0.007952839136123657, + -0.014181257225573063, + 0.014060667715966702, + 0.013095956295728683, + 0.00927328784018755, + -0.0022504907101392746, + -0.0048657627776265144, + -0.019643934443593025, + 0.01668950542807579, + -0.04095199704170227, + -0.00019068122492171824, + -0.0018163706408813596, + 0.02104276604950428, + -0.034657254815101624, + -0.03046075999736786, + 0.005170249845832586, + 0.019957466050982475, + -0.004112082067877054, + -0.006921804044395685, + 0.008748725987970829, + 0.025371909141540527, + 0.0018540546298027039, + 0.0603426955640316, + -0.015278615988790989, + -0.03482608124613762, + -0.02134423889219761, + 0.018920401111245155, + -0.01450684666633606, + 0.03142547234892845, + 0.030750174075365067, + 0.036249030381441116, + -0.0023183219600468874, + 0.0060806963592767715, + -0.0156403835862875, + 0.00032144482247531414, + -0.019535405561327934, + 0.01006314530968666, + 0.011112269014120102, + 0.005815400741994381, + -0.025468379259109497, + -0.008175929076969624, + -0.002621301682665944, + 0.021428650245070457, + 0.0024374034255743027, + 0.0033282542135566473, + 0.002019864274188876, + -0.00046539786853827536, + -0.014024491421878338, + 0.023273661732673645, + -0.008308576419949532, + 0.0164965633302927, + 0.04365319013595581, + 0.011148445308208466, + 0.016725683584809303, + 0.012987426482141018, + 0.011124327778816223, + -0.002239939058199525, + 0.024310726672410965, + 0.025998970493674278, + 0.014265669509768486, + 0.017063332721590996, + -0.023611310869455338, + 0.025733675807714462, + 0.006427389569580555, + -0.004787379875779152, + -0.019463051110506058, + 0.021609533578157425, + 0.014036550186574459, + -0.013710959814488888, + -0.011323299258947372, + -0.007132834754884243, + -0.0063791535794734955, + 0.0056917970068752766, + -0.013240663334727287, + 0.0040216404013335705, + 0.019776582717895508, + -0.02281542308628559, + -0.013723018579185009, + -0.0455826111137867, + 0.0063791535794734955, + 0.007524748332798481, + -0.023177189752459526, + 0.005094881635159254, + -0.01110021024942398, + -0.004371348302811384, + -0.0046064965426921844, + -0.012866837903857231, + 0.006433418951928616, + 0.021609533578157425, + 0.0011832787422463298, + -0.0003811740316450596, + 0.014530965127050877, + 0.005797312129288912, + -0.012710072100162506, + 0.005890768487006426, + 0.00011587841436266899, + -0.011642860248684883, + 0.018618928268551826, + -0.013421546667814255, + -0.010732414200901985, + -0.01731656864285469, + 0.012022715061903, + 0.00012162522762082517, + -0.004895910155028105, + 0.006397242192178965, + 0.011829772964119911, + -0.01576097123324871, + 0.0364660881459713, + -0.01285477913916111, + -0.006095769815146923, + 0.007205187808722258, + -0.04034905135631561, + -0.005818415433168411, + 0.034681372344493866, + 0.04553437605500221, + -0.011184622533619404, + 0.024841317906975746, + 0.009309464134275913, + -0.008115634322166443, + 0.012324187904596329, + -0.014434493146836758, + -0.0036478147376328707, + 0.017666276544332504, + -0.015773029997944832, + -0.034970786422491074, + 0.004238700494170189, + 0.001532232970930636, + -0.008923579938709736, + 0.02125982567667961, + -0.005106940865516663, + -0.03791315481066704, + -0.024793080985546112, + -0.0038980368990451097, + 0.005390324629843235, + 0.029688991606235504, + -0.01535096950829029, + -0.008356812410056591, + 0.002043982269242406, + -0.014856554567813873, + -0.028893105685710907, + 0.009954615496098995, + 0.02001775987446308, + 0.026047205552458763, + -0.019885113462805748, + -0.021537180989980698, + 0.004838630557060242, + -0.010141528211534023, + -0.0019083196530118585, + -0.004850689321756363, + 0.01279448438435793, + -0.020463939756155014, + 0.01502537913620472, + -0.005860621575266123, + 0.022562187165021896, + 0.006020401604473591, + -0.01005108654499054, + 0.022260714322328568, + 0.053734421730041504, + -0.034657254815101624, + -0.026167795062065125, + 0.0052637062035501, + 0.010557560250163078, + 0.031980182975530624, + -0.03463313728570938, + 0.00554709043353796, + -0.009134610183537006, + -0.022116007283329964, + 0.04319494962692261, + 0.009888291358947754, + 0.01083491463214159, + 0.023285720497369766, + 0.002808214398100972, + -0.006734891328960657, + -0.019137460738420486, + -0.02299630641937256, + 0.017063332721590996, + -0.017437158152461052, + -0.05223912000656128, + -0.01783510111272335, + 0.024793080985546112, + 0.006451507098972797, + -0.0014621405862271786, + -0.004184435587376356, + -0.013819489628076553, + -0.00551694305613637, + 0.004847674630582333, + 0.007386071141809225, + 0.009671231731772423, + -0.008429164998233318, + 0.04223024100065231, + -0.0028926266822963953, + -0.017979808151721954, + 0.036659032106399536, + -0.022031595930457115, + 0.016219209879636765, + 0.020090114325284958, + 0.024419255554676056, + -0.04830792173743248, + 0.011540359817445278, + -0.019571581855416298, + -0.022007478401064873, + 0.02901369333267212, + -0.012420658953487873, + 0.01877569407224655, + -0.0377202145755291, + -0.0301713477820158, + 0.002393689937889576, + 0.018208926543593407, + -0.0029288034420460463, + -0.03636961802840233, + -0.0017530614277347922, + -0.014120962470769882, + 0.03277606889605522, + -0.04616143926978111, + -0.022116007283329964, + -0.0038136246148496866, + -0.006451507098972797, + -0.013071838766336441, + -0.011401682160794735, + -0.02964075654745102, + 0.012360364198684692, + 0.0003540415200404823, + -0.016761859878897667, + -0.039022572338581085, + -0.0325348898768425, + 0.020343350246548653, + -0.005239588674157858, + 0.016568917781114578, + -0.0027901260182261467, + -0.028748398646712303, + -0.02292395383119583, + -0.0230204239487648, + 0.02175424061715603, + -0.01731656864285469, + -0.03222135826945305, + -0.036948446184396744, + 0.002901670755818486, + -0.007814161479473114, + -0.03854021802544594, + -0.014325963333249092, + -0.005616428796201944, + 0.03641785308718681, + -0.004895910155028105, + -0.004229656420648098, + 0.021585416048765182, + -0.00980387907475233, + -0.020150408148765564, + 0.015266557224094868, + 0.036755502223968506, + -0.012505071237683296, + -0.0022942041978240013, + -0.008917550556361675, + 0.04256788641214371, + 0.006837391760200262, + -0.005206426605582237, + -0.003427739953622222, + -0.01969216950237751, + -0.005833488889038563, + -0.030870763584971428, + -0.0026363751385360956, + 0.037261974066495895, + -0.014543023891746998, + -0.00823622290045023, + -0.010684178210794926, + -0.018944518640637398, + 0.009231082163751125, + -0.008899462409317493, + -0.03200430050492287, + 0.021525122225284576, + 0.004965248517692089, + -0.046064965426921844, + 0.01554391160607338, + -0.004030684474855661, + -0.027831923216581345, + 0.0331619530916214, + 0.002337917685508728, + -0.015109791420400143, + -0.01254124753177166, + -0.008790932595729828, + -0.017557745799422264, + -0.03099135123193264, + -0.026047205552458763, + 0.02788015827536583, + 0.0045371581800282, + -0.002677073935046792, + -0.0227068942040205, + 0.031546059995889664, + -0.016605094075202942, + 0.012637718580663204, + 0.00604150490835309, + 0.031015470623970032, + -0.006373124197125435, + 0.026191912591457367, + -0.02715662494301796, + -0.017027154564857483, + 0.028941340744495392, + -0.01181168481707573, + -0.001784716034308076, + 0.007741808425635099, + -0.016773918643593788, + -0.0007058220217004418, + 0.0019264079164713621, + 0.018594810739159584, + -0.03620079159736633, + -0.020090114325284958, + -0.022441597655415535, + -0.012673895806074142, + -0.026867210865020752, + 0.007621219847351313, + 0.01584538444876671, + 0.040686700493097305, + 0.0033674456644803286, + 0.002561007160693407, + 0.039649635553359985, + -0.037358447909355164, + -0.027518391609191895, + 0.009641083888709545, + -0.007392100524157286, + 0.00349707854911685, + -0.012420658953487873, + 0.0011320285266265273, + 0.0050285579636693, + -0.030412524938583374, + -0.03670726716518402, + 0.002996634691953659, + -0.017497451975941658, + -0.009653142653405666, + -0.01404860895127058, + -0.010135498829185963, + -0.003358401358127594, + -0.007217246573418379, + -0.006752979476004839, + -0.00823622290045023, + 0.0017153773223981261, + -0.007367982994765043, + -0.04739144444465637, + -0.0024404183495789766, + 0.004169361665844917, + -0.03089488111436367, + 0.0031534002628177404, + 0.03545314073562622, + 0.014084785245358944, + -0.000722779834177345, + -0.0014666627394035459, + 0.009948586113750935, + -0.016605094075202942, + 0.027446037158370018, + 0.004202523734420538, + 0.0017229141667485237, + -0.019933348521590233, + 0.03137723729014397, + -0.03200430050492287, + 0.030943116173148155, + 0.03687608987092972, + -0.00906828697770834, + 0.01533891074359417, + -0.026867210865020752, + -0.05117793753743172, + -0.006819303147494793, + 0.017461275681853294, + 0.03463313728570938, + 0.009188875555992126, + -0.012770366854965687, + -0.016556859016418457, + -0.007452395278960466, + -0.023804252967238426, + -0.02486543543636799, + -0.015061556361615658, + 0.040180228650569916, + -0.0029438768979161978, + 0.041024349629879, + 0.05320383235812187, + 0.022960130125284195, + -0.030243700370192528, + -0.03026781789958477, + -0.032197240740060806, + -0.06150034815073013, + -0.024503668770194054, + 0.004238700494170189, + 0.015628322958946228, + 0.012046832591295242, + -0.01383154932409525, + -0.020463939756155014, + -0.007741808425635099, + 0.01927010901272297, + 0.027228977531194687, + -0.01741304062306881, + 0.016544800251722336, + -0.018389809876680374, + -0.039456695318222046, + -0.013180368579924107, + 0.0056737083941698074, + -0.03639373555779457, + 0.025420144200325012, + 0.011938302777707577, + 0.0037171533331274986, + -0.002523323055356741, + -0.0194871686398983, + -0.05190147086977959, + 0.029254872351884842, + -0.04044552147388458, + -0.04189259186387062, + 0.0185465756803751, + 0.0020816661417484283, + 0.007651366759091616, + -0.0150856738910079, + -0.032076653093099594, + 0.005920915864408016, + -0.010129469446837902, + -0.02353895641863346, + 0.04944145679473877 + ] +} \ No newline at end of file diff --git a/env/src/tools/agent/_query_information/server.lua b/env/src/tools/rag/query_information/server.lua similarity index 100% rename from env/src/tools/agent/_query_information/server.lua rename to env/src/tools/rag/query_information/server.lua From 919410c91162b6859cba5fb029b6ea562850a396 Mon Sep 17 00:00:00 2001 From: Mart Date: Fri, 4 Apr 2025 18:08:27 +0100 Subject: [PATCH 04/12] made previus files compatibel with new version --- env/tests/benchmarks/test_demo_video.py | 1 - env/tests/test_warnings.py | 1 - eval/open/beam/run.py | 5 +++-- eval/open/beam/run_milestones.py | 5 +++-- eval/open/beam/run_parallel.py | 5 +++-- eval/open/independent_runs/run.py | 4 ++-- eval/open/mcts/__main__chunked.py | 4 ++-- eval/open/mcts/__main__objective_mcts.py | 3 ++- eval/open/mcts/__main__planning_agent.py | 4 ++-- eval/open/mcts/blueprints_to_programs.py | 4 ++-- eval/open/mcts/main.py | 4 ++-- eval/open/mcts/parallel_planning_mcts.py | 4 ++-- eval/open/mcts/planning_mcts.py | 4 ++-- 13 files changed, 25 insertions(+), 23 deletions(-) diff --git a/env/tests/benchmarks/test_demo_video.py b/env/tests/benchmarks/test_demo_video.py index f2f86ecc3..97e5c83cd 100644 --- a/env/tests/benchmarks/test_demo_video.py +++ b/env/tests/benchmarks/test_demo_video.py @@ -67,7 +67,6 @@ def test_inspect_inventory(game): #game.execute_transaction() #game.craft_item(Prototype.IronChest) #inventory = game.inspect_inventory() - prompt = game.get_system_prompt() furnace = game.place_entity(Prototype.StoneFurnace, position=Position(x=0, y=0)) game.move_to(game.nearest(Prototype.Coal)) game.harvest_resource(game.nearest(Prototype.Coal), quantity=10) diff --git a/env/tests/test_warnings.py b/env/tests/test_warnings.py index e1065c915..ed7270110 100644 --- a/env/tests/test_warnings.py +++ b/env/tests/test_warnings.py @@ -14,7 +14,6 @@ def test_drop_box_chest(): fast=True, # cache_scripts=False, inventory={'burner-mining-drill': 1, 'iron-chest':1, 'coal': 10}) - prompt = instance.get_system_prompt() instance.namespace.move_to(instance.namespace.nearest(Resource.IronOre)) drill = instance.namespace.place_entity(Prototype.BurnerMiningDrill, Direction.UP, instance.namespace.nearest(Resource.IronOre)) instance.namespace.place_entity(Prototype.IronChest, Direction.UP, diff --git a/eval/open/beam/run.py b/eval/open/beam/run.py index fbeb77b04..7911a266c 100644 --- a/eval/open/beam/run.py +++ b/eval/open/beam/run.py @@ -14,6 +14,7 @@ from agents.utils.formatters.recursive_formatter import RecursiveFormatter from models.game_state import GameState +from agents.utils.prompt_utils import get_default_system_prompt os.environ.update({"FORCE_COLOR": "1", "TERM": "xterm-256color"}) load_dotenv() @@ -140,8 +141,8 @@ async def main(): "\033[91mError initialising Factorio instances. Are the docker containers running, and have they been activated?\033[91m") return instances = instances[-4:] - API_SCHEMA = instances[0].get_system_prompt() - prompt = SYSTEM_PROMPT + '\n\n' + API_SCHEMA + '\n\n# Observations:\n' + OBSERVATION_SPACE + '\n\n' + MANUAL + '\n```' + API_SCHEMA = get_default_system_prompt(instances[0].get_system_prompt()) + prompt = SYSTEM_PROMPT + '\n\n' + API_SCHEMA + '\n\n# Observations:\n' + OBSERVATION_SPACE + '\n\n' initial_state = GameState.from_instance(instances[0]) # Add argument parsing for version diff --git a/eval/open/beam/run_milestones.py b/eval/open/beam/run_milestones.py index fcb988653..df434bb1c 100644 --- a/eval/open/beam/run_milestones.py +++ b/eval/open/beam/run_milestones.py @@ -17,6 +17,7 @@ from eval.open.mcts.parallel_supervised_config import SupervisedExecutorConfig from models.game_state import GameState from eval.tasks.throughput_task import ThroughputTask, LAB_PLAY_POPULATED_STARTING_INVENTORY +from agents.utils.prompt_utils import get_default_system_prompt os.environ.update({"FORCE_COLOR": "1", "TERM": "xterm-256color"}) load_dotenv() @@ -231,8 +232,8 @@ async def main(): "\033[91mError initialising Factorio instances. Are the docker containers running, and have they been activated?\033[91m") return - API_SCHEMA = instances[0].get_system_prompt() - prompt = SYSTEM_PROMPT + '\n\n' + API_SCHEMA + '\n\nObservations:\n' + OBSERVATION_SPACE + '\n\n' + MANUAL + '\n```' + API_SCHEMA = get_default_system_prompt(instances[0].get_system_prompt()) + prompt = SYSTEM_PROMPT + '\n\n' + API_SCHEMA + '\n\nObservations:\n' + OBSERVATION_SPACE + '\n\n' zero_state = GameState.from_instance(instances[0]) model_to_evaluate = "claude-3-5-sonnet-20241022" diff --git a/eval/open/beam/run_parallel.py b/eval/open/beam/run_parallel.py index 6014e68a3..32d3bda08 100644 --- a/eval/open/beam/run_parallel.py +++ b/eval/open/beam/run_parallel.py @@ -16,6 +16,7 @@ from instance import FactorioInstance from agents.utils.formatters.recursive_report_formatter import RecursiveReportFormatter from models.game_state import GameState +from agents.utils.prompt_utils import get_default_system_prompt os.environ.update({"FORCE_COLOR": "1", "TERM": "xterm-256color"}) load_dotenv() @@ -106,8 +107,8 @@ async def run_model_search(model: str, instance_start: int, version: int, resume return initial_state = GameState.from_instance(instances[0]) - API_SCHEMA = instances[0].get_system_prompt() - prompt = SYSTEM_PROMPT + '\n\n' + API_SCHEMA + '\n\n# Observations:\n' + OBSERVATION_SPACE + '\n\n' + MANUAL + '\n```' + API_SCHEMA = get_default_system_prompt(instances[0].get_system_prompt()) + prompt = SYSTEM_PROMPT + '\n\n' + API_SCHEMA + '\n\n# Observations:\n' + OBSERVATION_SPACE + '\n\n' current_depth = 0 resume_heads = None diff --git a/eval/open/independent_runs/run.py b/eval/open/independent_runs/run.py index f97197f05..8237e4399 100644 --- a/eval/open/independent_runs/run.py +++ b/eval/open/independent_runs/run.py @@ -27,7 +27,7 @@ def main(): # Create initial state and get system prompt try: instance = create_factorio_instance(0) - system_prompt = instance.get_system_prompt() + system_prompt_parts = instance.get_system_prompt() except Exception as e: raise(f"Error creating Factorio instance: {e}") @@ -41,7 +41,7 @@ def main(): processes = [] for run_idx, run_config in enumerate(run_configs): task = TaskFactory.create_task(run_config["task"]) - agent = QueryAgent(model=run_config["model"], system_prompt=system_prompt, task = task) + agent = BasicAgent(model=run_config["model"], system_prompt_parts=system_prompt_parts, task = task) if "version" in run_config: version = run_config["version"] else: diff --git a/eval/open/mcts/__main__chunked.py b/eval/open/mcts/__main__chunked.py index dd996a72d..971a2dfdd 100644 --- a/eval/open/mcts/__main__chunked.py +++ b/eval/open/mcts/__main__chunked.py @@ -24,7 +24,7 @@ from instance import FactorioInstance from agents.utils.llm_factory import LLMFactory from cluster.local.cluster_ips import get_local_container_ips - +from agents.utils.prompt_utils import get_default_system_prompt # Configure environment os.environ.update({ "FORCE_COLOR": "1", @@ -240,7 +240,7 @@ async def main(): # Load system prompt #with open(CONFIG['prompt_path']) as f: # system_prompt = f.read().format(schema=instances[0].get_system_prompt()) - system_prompt = instances[0].get_system_prompt() + system_prompt = get_default_system_prompt(instances[0].get_system_prompt()) # Initialize MCTS print("Initializing MCTS...") diff --git a/eval/open/mcts/__main__objective_mcts.py b/eval/open/mcts/__main__objective_mcts.py index b1d032dbf..6b08ae440 100644 --- a/eval/open/mcts/__main__objective_mcts.py +++ b/eval/open/mcts/__main__objective_mcts.py @@ -25,6 +25,7 @@ from instance import FactorioInstance from agents.utils.llm_factory import LLMFactory from cluster.local.cluster_ips import get_local_container_ips +from agents.utils.prompt_utils import get_default_system_prompt # Configure environment os.environ.update({ @@ -238,7 +239,7 @@ async def main(): initial_state = GameState.from_instance(instances[0]) - system_prompt = instances[0].get_system_prompt() + system_prompt = get_default_system_prompt(instances[0].get_system_prompt()) # Initialize MCTS print("Initializing MCTS...") diff --git a/eval/open/mcts/__main__planning_agent.py b/eval/open/mcts/__main__planning_agent.py index cedc47d6e..9079c2b00 100644 --- a/eval/open/mcts/__main__planning_agent.py +++ b/eval/open/mcts/__main__planning_agent.py @@ -25,7 +25,7 @@ from models.game_state import GameState from instance import FactorioInstance from agents.utils.llm_factory import LLMFactory - +from agents.utils.prompt_utils import get_default_system_prompt load_dotenv() def create_instance(params: Tuple[str, int, int]) -> FactorioInstance: @@ -158,7 +158,7 @@ async def main(): # load from prompts/bottoms_up_prompts/system_message_policy_self_gen into string with open(objective_model_prompt_path, "r") as f: - system_prompt = f.read().format(schema=instances[0].get_system_prompt()) + system_prompt = f.read().format(schema=get_default_system_prompt(instances[0].get_system_prompt())) print("Initializing MCTS...") # Sampler diff --git a/eval/open/mcts/blueprints_to_programs.py b/eval/open/mcts/blueprints_to_programs.py index 95c3bbc6e..dfab66c98 100644 --- a/eval/open/mcts/blueprints_to_programs.py +++ b/eval/open/mcts/blueprints_to_programs.py @@ -11,7 +11,7 @@ from eval.open.db_client import DBClient from models.program import Program from instance import FactorioInstance - +from agents.utils.prompt_utils import get_default_system_prompt load_dotenv() class BlueprintsToPrograms: @@ -121,7 +121,7 @@ async def save(): 'dbname': os.getenv("SKILLS_DB_NAME"), 'user': os.getenv("SKILLS_DB_USER"), 'password': os.getenv("SKILLS_DB_PASSWORD") - }, system_prompt=instance.get_system_prompt()) + }, system_prompt=get_default_system_prompt(instance.get_system_prompt())) scenarios = blueprints_to_programs.sample_scenarios(n_samples=1000) diff --git a/eval/open/mcts/main.py b/eval/open/mcts/main.py index fcf05da6b..e14a04236 100644 --- a/eval/open/mcts/main.py +++ b/eval/open/mcts/main.py @@ -8,7 +8,7 @@ from instance import FactorioInstance import concurrent.futures from typing import List, Tuple - +from agents.utils.prompt_utils import get_default_system_prompt os.environ.update({"FORCE_COLOR": "1", "TERM": "xterm-256color"}) load_dotenv() @@ -85,7 +85,7 @@ async def main(): print("\033[91mError initialising Factorio instances. Are the docker containers running, and have they been activated?\033[91m") return - prompt = SYSTEM_PROMPT + '\n\n' + instances[0].get_system_prompt() + '\n\nExamples:\n```\n' + TEST_PROMPT + '\n```' + prompt = SYSTEM_PROMPT + '\n\n' + get_default_system_prompt(instances[0].get_system_prompt()) + '\n\nExamples:\n```\n' + TEST_PROMPT + '\n```' # Get configuration from CLI/interactive prompts factory = MCTSFactory() diff --git a/eval/open/mcts/parallel_planning_mcts.py b/eval/open/mcts/parallel_planning_mcts.py index 7d62779a2..b4d3e066c 100644 --- a/eval/open/mcts/parallel_planning_mcts.py +++ b/eval/open/mcts/parallel_planning_mcts.py @@ -21,7 +21,7 @@ from models.game_state import GameState from models.program import Program from instance import FactorioInstance - +from agents.utils.prompt_utils import get_default_system_prompt logger = logging.basicConfig(level=logging.INFO) @@ -96,7 +96,7 @@ def __init__(self, # Create instance groups self.instance_groups = self._create_instance_groups(instances) - self.api_description = self.instance_groups[0].evaluator.instances[0].get_system_prompt() + self.api_description = get_default_system_prompt(self.instance_groups[0].evaluator.instances[0].get_system_prompt()) # format the 2 system prompts self.step_executor_system_prompt = self.step_executor_system_prompt.format(schema=self.api_description) self.example_plan_system_prompt = self.example_plan_system_prompt.format(schema=self.api_description) diff --git a/eval/open/mcts/planning_mcts.py b/eval/open/mcts/planning_mcts.py index d3e886dd6..2e62e583d 100644 --- a/eval/open/mcts/planning_mcts.py +++ b/eval/open/mcts/planning_mcts.py @@ -11,7 +11,7 @@ from models.program import Program from eval.open.mcts.planning_models import LanguageOutput, TaskOutput, InitialPlanOutput, PlanOutput, Step from tenacity import wait_exponential, retry - +from agents.utils.prompt_utils import get_default_system_prompt def get_mining_setup(instance): mining_setup = instance.namespace.get_entities() @@ -37,7 +37,7 @@ def __init__(self, *args, self.planning_model = planning_model self.executor_model = executor_model self.objective_model = objective_model - self.api_description = self.evaluator.instances[0].get_system_prompt() + self.api_description = get_default_system_prompt(self.evaluator.instances[0].get_system_prompt()) self.step_executor_prompt_path = step_executor_prompt_path self.step_generator_prompt_path = step_generator_prompt_path self.step_judge_prompt_path = step_judge_prompt_path From a1fa637b669825c2351b892391ecc671c005833f Mon Sep 17 00:00:00 2001 From: Mart Date: Fri, 4 Apr 2025 18:08:52 +0100 Subject: [PATCH 05/12] agents updates --- agents/basic_agent.py | 7 ++++--- agents/query_agent.py | 11 ++++++++--- agents/utils/prompt_utils.py | 22 ++++++++++++++++++++++ 3 files changed, 34 insertions(+), 6 deletions(-) create mode 100644 agents/utils/prompt_utils.py diff --git a/agents/basic_agent.py b/agents/basic_agent.py index 131cbbc5a..38a284091 100644 --- a/agents/basic_agent.py +++ b/agents/basic_agent.py @@ -8,7 +8,7 @@ from models.conversation import Conversation from models.generation_parameters import GenerationParameters from tenacity import wait_exponential, retry_if_exception_type, wait_random_exponential - +from agents.utils.prompt_utils import get_default_system_prompt from namespace import FactorioNamespace GENERAL_INSTRUCTIONS = \ @@ -175,8 +175,9 @@ def find_idle_furnaces(entities): class BasicAgent(AgentABC): - def __init__(self, model, system_prompt, task, *args, **kwargs): - instructions = GENERAL_INSTRUCTIONS+system_prompt+FINAL_INSTRUCTION + def __init__(self, model, system_prompt_parts, task, *args, **kwargs): + + instructions = GENERAL_INSTRUCTIONS+get_default_system_prompt(system_prompt_parts)+FINAL_INSTRUCTION self.task = task instructions += f"\n\n### Goal\n{task.goal_description}\n\n" super().__init__( model, instructions, *args, **kwargs) diff --git a/agents/query_agent.py b/agents/query_agent.py index 50ad7e590..6f68b3534 100644 --- a/agents/query_agent.py +++ b/agents/query_agent.py @@ -8,6 +8,7 @@ from models.conversation import Conversation from models.generation_parameters import GenerationParameters from tenacity import wait_exponential, retry_if_exception_type, wait_random_exponential +from agents.utils.prompt_utils import get_rag_system_prompt from namespace import FactorioNamespace @@ -41,18 +42,22 @@ - What will this step achieve? 3. Action Planning if : - - what wiki pages need to be printed + - what information needs to be printed - what environment information needs to be printed If : - What specific actions are needed? - What resources are required? +Remember: If you don't have some information regarding howto use the API, use the policy to print the information you need. +DO NOT TRY TO USE THE API WITHOUT KNOWING HOW IT WORKS. + ### 2. POLICY Stage Write Python code to execute the or plan: ```python # Code must be enclosed in Python tags your_code_here ``` +MAXIMUM 20 LINES OF CODE PER POLICY ## Best Practices @@ -180,8 +185,8 @@ def find_idle_furnaces(entities): class QueryAgent(AgentABC): - def __init__(self, model, system_prompt, task, *args, **kwargs): - instructions = GENERAL_INSTRUCTIONS+system_prompt+FINAL_INSTRUCTION + def __init__(self, model, system_prompt_parts, task, *args, **kwargs): + instructions = GENERAL_INSTRUCTIONS+get_rag_system_prompt(system_prompt_parts)+FINAL_INSTRUCTION self.task = task instructions += f"\n\n### Goal\n{task.goal_description}\n\n" super().__init__( model, instructions, *args, **kwargs) diff --git a/agents/utils/prompt_utils.py b/agents/utils/prompt_utils.py new file mode 100644 index 000000000..de8868bf6 --- /dev/null +++ b/agents/utils/prompt_utils.py @@ -0,0 +1,22 @@ +import re +from typing import Optional, Tuple +import ast + + +def get_default_system_prompt(prompt_object): + # Combine all parts into final prompt + return ( + f"```types\n{prompt_object['type_defs']}\n{prompt_object['entity_defs']}\n```\n" + f"```methods\n{prompt_object['schema']}\n```" + f"{prompt_object['manual_defs']}\n{prompt_object['examples']}\n" + ) + +def get_rag_system_prompt(prompt_object): + # Combine all parts into final prompt + return ( + f"```types\n{prompt_object['type_defs']}\n{prompt_object['entity_defs']}\n```\n" + f"```methods\n{prompt_object['schema']}\n```" + f"{prompt_object['manual_defs']}\n" + f"Information gathering tools available to you\n" + f"{prompt_object['rag_manual_defs']}\n" + ) \ No newline at end of file From 2e5902bc742559c23636b1aa090ebfd022ea43a7 Mon Sep 17 00:00:00 2001 From: Mart Date: Fri, 4 Apr 2025 18:09:37 +0100 Subject: [PATCH 06/12] added the examples and rag tools to prompt generator --- env/src/instance.py | 2 +- .../controller_loader/examples_generator.py | 21 +++++++++++++ .../controller_loader/manual_generator.py | 31 ++++++++++++++----- .../system_prompt_generator.py | 26 +++++++++++----- 4 files changed, 64 insertions(+), 16 deletions(-) create mode 100644 env/src/utils/controller_loader/examples_generator.py diff --git a/env/src/instance.py b/env/src/instance.py index 89605752f..365fbfc13 100644 --- a/env/src/instance.py +++ b/env/src/instance.py @@ -191,7 +191,7 @@ def get_elapsed_ticks(self): if not response: return 0 return int(response) - def get_system_prompt(self) -> str: + def get_system_prompt(self) -> dict: """ Get the system prompt for the Factorio environment. This includes all the available actions, objects, and entities that the agent can interact with. diff --git a/env/src/utils/controller_loader/examples_generator.py b/env/src/utils/controller_loader/examples_generator.py new file mode 100644 index 000000000..3fcf15c43 --- /dev/null +++ b/env/src/utils/controller_loader/examples_generator.py @@ -0,0 +1,21 @@ +import os + + +class ExamplesGenerator: + """Generates a string of examples from all markdown files in the examples directory.""" + + @staticmethod + def generate_examples(folder_path) -> str: + """Generate schema from all Python files in the folder.""" + agent_example_path = os.path.join(folder_path, "examples") + # get all the examples in tool_paths + example_files = [ + f for f in os.listdir(agent_example_path) if os.path.isfile(os.path.join(agent_example_path, f)) + ] + examples = "Here are examples of how to use the API for various objectives in Factorio\n\n" + for file_path in example_files: + file_path = os.path.join(agent_example_path, file_path) + with open(file_path, "r") as f: + examples += f.read() + examples += "\n\n" + return examples diff --git a/env/src/utils/controller_loader/manual_generator.py b/env/src/utils/controller_loader/manual_generator.py index 7e1692599..c2355a9a2 100644 --- a/env/src/utils/controller_loader/manual_generator.py +++ b/env/src/utils/controller_loader/manual_generator.py @@ -5,23 +5,40 @@ class ManualGenerator: """Generates manual from agent.md files in a directory.""" @staticmethod - def generate_manual(folder_path) -> str: + def generate_agent_manual(folder_path) -> str: """Generate schema from all Python files in the folder.""" agent_tool_path = os.path.join(folder_path, "agent") - # get all the folders in tool_paths - tool_folders = [f for f in os.listdir(agent_tool_path) if os.path.isdir(os.path.join(agent_tool_path, f))] manual = "Here is the manual for the tools available to you\n\n" + # get all the folders in tool_paths + manual = ManualGenerator.get_tool_descriptions(agent_tool_path, manual) + # read in the agent.md in master_tool_path + with open(os.path.join(folder_path, "agent.md"), "r") as f: + manual += f"## General tips\n" + manual += f.read() + return manual + + @staticmethod + def get_tool_descriptions(folder_path, manual): + # get all the folders in tool_paths + tool_folders = [f for f in os.listdir(folder_path) if os.path.isdir(os.path.join(folder_path, f))] for folder in tool_folders: # check if it has a agent.md file - agent_path = os.path.join(agent_tool_path, folder, "agent.md") + agent_path = os.path.join(folder_path, folder, "agent.md") if os.path.exists(agent_path): with open(agent_path, "r") as f: manual += f.read() manual += "\n\n" else: continue + return manual + + + @staticmethod + def generate_rag_manual(folder_path): + """Generate schema from all Python files in the folder.""" + agent_tool_path = os.path.join(folder_path, "rag") + manual = "Here are information gathering tools available to you\n\n" + # get all the folders in tool_paths + manual = ManualGenerator.get_tool_descriptions(agent_tool_path, manual) # read in the agent.md in master_tool_path - with open(os.path.join(folder_path, "agent.md"), "r") as f: - manual += f"## General useful patterns\n" - manual += f.read() return manual diff --git a/env/src/utils/controller_loader/system_prompt_generator.py b/env/src/utils/controller_loader/system_prompt_generator.py index 850c2e962..e884daff2 100644 --- a/env/src/utils/controller_loader/system_prompt_generator.py +++ b/env/src/utils/controller_loader/system_prompt_generator.py @@ -3,6 +3,7 @@ from utils.controller_loader.code_analyzer import CodeAnalyzer from utils.controller_loader.manual_generator import ManualGenerator from utils.controller_loader.schema_generator import SchemaGenerator +from utils.controller_loader.examples_generator import ExamplesGenerator from utils.controller_loader.type_definition_processor import TypeDefinitionProcessor @@ -13,7 +14,7 @@ def __init__(self, base_path: str): self.base_path = Path(base_path) self.tool_path = self.base_path / "tools" / "agent" - def generate(self) -> str: + def generate(self) -> dict: # Generate schema schema_generator = SchemaGenerator(str(self.tool_path)) schema = schema_generator.generate_schema(with_docstring=True).replace("temp_module.", "") @@ -29,13 +30,22 @@ def generate(self) -> str: ) # Load and process the manuals (agent.md files) - manual_defs = ManualGenerator.generate_manual( + agent_manual_defs = ManualGenerator.generate_agent_manual( str(self.base_path / "tools") ) - - # Combine all parts into final prompt - return ( - f"```types\n{type_defs}\n{entity_defs}\n```\n" - f"```methods\n{schema}\n```" - f"{manual_defs}" + # Load and process the RAG manuals (agent.md files) + rag_manual_defs = ManualGenerator.generate_rag_manual( + str(self.base_path / "tools") ) + examples = ExamplesGenerator.generate_examples( + str(self.base_path / "tools") + ) + # Combine all parts into final prompt + return { + "type_defs":type_defs, + "entity_defs":entity_defs, + "schema": schema, + "manual_defs": agent_manual_defs, + "examples": examples, + "rag_manual_defs": rag_manual_defs, + } From a65eb4040794ed250e3dc6c7ee82c80c3de45f45 Mon Sep 17 00:00:00 2001 From: Mart Date: Mon, 7 Apr 2025 15:50:03 +0100 Subject: [PATCH 07/12] updated tools --- env/src/tools/agent.md | 5 - .../tools/agent/get_prototype_recipe/agent.md | 4 +- env/src/tools/agent/rotate_entity/agent.md | 18 +- ...how_to_set_up_multiple_drill_plate_mine.md | 7 +- .../how_to_set_up_raw_resource_burner_mine.md | 2 + .../examples/how_to_setup_chemical_plants.md | 2 +- .../how_to_setup_crude_oil_production.md | 4 +- .../examples/how_to_setup_oil_refineries.md | 1 + env/src/tools/rag/query_information/agent.md | 7 +- env/src/tools/rag/query_information/client.py | 12 +- .../rag/query_information/embeddings.json | 43064 ++++++++-------- 11 files changed, 21570 insertions(+), 21556 deletions(-) diff --git a/env/src/tools/agent.md b/env/src/tools/agent.md index 8c573d971..88aabb92b 100644 --- a/env/src/tools/agent.md +++ b/env/src/tools/agent.md @@ -1,8 +1,3 @@ -## TIPS FOR QUERYING INFORMATION -- Make sure to query information using the query_information tool -- Use the tool like you would research different areas on the wiki -- The pages have info regarding how to use the api, how to carry out different actions and general factorio knowledge - ## TIPS WHEN CREATING STRUCTURES - When a entity has status "WAITING_FOR_SPACE_IN_DESTINATION", it means the there is no space in the drop position. For instance, a mining drill will have status WAITING_FOR_SPACE_IN_DESTINATION when the entities it mines are not being properly collected by a furnace or a chest or transported away from drop position with transport belts - Make sure to always put 20+ fuel into all entities that require fuel. It's easy to mine more coal, so it's better to insert in abundance diff --git a/env/src/tools/agent/get_prototype_recipe/agent.md b/env/src/tools/agent/get_prototype_recipe/agent.md index 6872ed6f4..5c47bf33b 100644 --- a/env/src/tools/agent/get_prototype_recipe/agent.md +++ b/env/src/tools/agent/get_prototype_recipe/agent.md @@ -28,9 +28,7 @@ for ingredient in recipe.ingredients: print(f"Need {ingredient.count} {ingredient.name}") ``` -## Common Use Cases - -### 1. Basic Recipe Checking +### Checking recipe for chemical plant or oil refinery technologies using RecipeName ```python # Check light oil cracking requirements recipe = get_prototype_recipe(RecipeName.LightOilCracking) diff --git a/env/src/tools/agent/rotate_entity/agent.md b/env/src/tools/agent/rotate_entity/agent.md index bf33770c4..d9f5c97fd 100644 --- a/env/src/tools/agent/rotate_entity/agent.md +++ b/env/src/tools/agent/rotate_entity/agent.md @@ -15,14 +15,18 @@ Returns the rotated Entity object. - `direction`: Target direction (UP/DOWN/LEFT/RIGHT) ### Examples +Rotating inserters - Inserter rotation affects pickup/drop positions +Important: By default inserters take items from entities they are placed next to and place them at the drop_position +Always rotate the inserters the other way if they need to put items into the entity (i.e the entity is at the drop_position) ```python -# Rotating inserters - Inserter rotation affects pickup/drop positions -# Important: By default inserters take from entities they are placed next to -# Always rotate the inserters the other way if they need to take items from an entity -inserter = place_entity(Prototype.BurnerInserter, position=pos, direction = Direction.UP) -print(f"Original inserter: pickup={inserter.pickup_position}, drop={inserter.drop_position}") -inserter = rotate_entity(inserter, Direction.DOWN) -print(f"Rotated inserter: pickup={inserter.pickup_position}, drop={inserter.drop_position}") +# place inserter above a chest that takes from the chest +output_inserter = place_entity_next_to(Prototype.BurnerInserter, reference_position=chest_pos, direction = Direction.UP) +print(f"Inserter that takes items from the chest: pickup={inserter.pickup_position}, drop={inserter.drop_position}") +# place inserter left from a chest that puts items into the chest +input_inserter = place_entity_next_to(Prototype.BurnerInserter, reference_position=chest_pos, direction = Direction.LEFT) +# rotate the inserter to put items into the chest +input_inserter = rotate_entity(input_inserter, Direction.RIGHT) +print(f"Inserter that puts item into a chest: pickup={inserter.pickup_position}, drop={inserter.drop_position}") ``` ## Entity-Specific Behaviors diff --git a/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md index 4ff6f09e5..e5f63c6bb 100644 --- a/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md +++ b/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md @@ -1,4 +1,9 @@ ## How to set up multiple drill plate mines +Furnaces can be placed at the drop position of drills to automatically smelt resources +The following resources can be smelt +x - iron ore to iron plate +x - copper ore to copper plate +x - stone to stone brick Example: Create a copper plate mining line with 3 drills with inserters for future integration ```python # log your general idea what you will do next @@ -28,7 +33,7 @@ for i in range(3): # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") - # add inserters for future potential integartion + # add inserters that remove items from furnaces for future potential integartion # put them below the furnace as the furnace is below the drill inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") diff --git a/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md index 955a213a1..21bf5ec6b 100644 --- a/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md +++ b/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md @@ -1,4 +1,6 @@ ## How to create single drill raw resource mine +All types of drills (burner, electric) can be used. +Coal, iron ore, copper ore and stone automaton can be set up like this You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines ```python # Setup mining drill on ore patch diff --git a/env/src/tools/examples/how_to_setup_chemical_plants.md b/env/src/tools/examples/how_to_setup_chemical_plants.md index 0dfcbb181..b91d4424c 100644 --- a/env/src/tools/examples/how_to_setup_chemical_plants.md +++ b/env/src/tools/examples/how_to_setup_chemical_plants.md @@ -5,7 +5,7 @@ Example: Placing a chemical plant near a existing oil_refinery at Position(x=-50, y=0) Also connect the chemical plant to a steam engine, that will power the engine. To power the chemical plant, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, QUERY "HOW TO SET UP ELECTRICITY?" ```python # get the oil_refinery oil_refinery = get_entity(Prototype.OilRefinery, position=Position(x=-50, y=0)) diff --git a/env/src/tools/examples/how_to_setup_crude_oil_production.md b/env/src/tools/examples/how_to_setup_crude_oil_production.md index ef35c8bf7..6762cc238 100644 --- a/env/src/tools/examples/how_to_setup_crude_oil_production.md +++ b/env/src/tools/examples/how_to_setup_crude_oil_production.md @@ -1,13 +1,13 @@ ## Pumpjacks To harvest crude oil from the environment, it needs to be done with pumpjacks - +Crude oil can be processed to petroleum gas ### Placing a pumpjack Example: Placing a pumpjack near a crude oil patch Also connect the pumpjack to a steam engine, that will power the pumpjack. To power the pumpjack, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, PRINT OUT THE "how_to_create_electricity_generators" WIKI PAGE +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, QUERY "HOW TO SET UP ELECTRICITY?" ```python # Get the crude oil resource patch resource_pos = nearest(Resource.CrudeOil) diff --git a/env/src/tools/examples/how_to_setup_oil_refineries.md b/env/src/tools/examples/how_to_setup_oil_refineries.md index 4c2838a76..f4f7b9146 100644 --- a/env/src/tools/examples/how_to_setup_oil_refineries.md +++ b/env/src/tools/examples/how_to_setup_oil_refineries.md @@ -5,6 +5,7 @@ Example: Placing a oil refinery near a existing pumpjack at Position(x=-50, y=0) Also connect the oil refinery to a steam engine, that will power the refinery. To power the oil refinery, it needs to be connected to a power source via electric poles +NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, QUERY "HOW TO SET UP ELECTRICITY?" ```python # get the pumpjack pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) diff --git a/env/src/tools/rag/query_information/agent.md b/env/src/tools/rag/query_information/agent.md index 90f3bc232..b64024574 100644 --- a/env/src/tools/rag/query_information/agent.md +++ b/env/src/tools/rag/query_information/agent.md @@ -4,6 +4,7 @@ The `query_information` tool allows you to retrieve pages that are relevant to y ## Basic Usage To get content relevant to a query, send in the query in a question format using the tool + ```python inserter_information = query_information("How to use inserters to input items into a chest") print(f"Manual how to use inserters") @@ -22,7 +23,7 @@ print(chem_plant_information) resource_mine_information = query_information("How to set up resource mines?") print(f"Manual how to set up resource mines") print(resource_mine_information) - ``` - -NB: The tool gives high value information so always consult the tool when something is unknown \ No newline at end of file +NB: Do not under any circumstances execute steps that rely on printed information in the same policy. You need to first print the information in step n and then execute actions that rely on that information in step n+1 +EXTREMELY IMPORTANT: Do not use this tool for entity recipes. Use the get_prototype_recipe tool to get recipes and ingredients for entities +Do not use this tool to get information about the general environment. This tool only gives API examples and factorio know-how \ No newline at end of file diff --git a/env/src/tools/rag/query_information/client.py b/env/src/tools/rag/query_information/client.py index b0c30f6b1..cb6fdad4f 100644 --- a/env/src/tools/rag/query_information/client.py +++ b/env/src/tools/rag/query_information/client.py @@ -20,6 +20,10 @@ def __init__(self, connection, game_state): self.pages = [page.replace(".md", "") for page in os.listdir(self.pages_path) if page.endswith('.md')] # read inthe embeddings.json file self.embeddings_path = Path(root_directory, 'embeddings.json') + if not os.path.exists(self.embeddings_path): + # create the embeddings.json file + with open(self.embeddings_path, 'w') as file: + json.dump({}, file) with open(self.embeddings_path, 'r') as file: self.embeddings = json.load(file) self.client = OpenAI(api_key=os.getenv("OPENAI_API_KEY")) @@ -59,7 +63,7 @@ def __call__(self, :param nr_of_results: The number of results to return :return: The content of the pages """ - + top_relevance_ratio = 0.8 # get the embeddings for the query query_embedding = self.get_embeddings(query) # get the closest pages to the query @@ -69,11 +73,15 @@ def __call__(self, closest_pages.append((page, similarity)) # sort the pages by similarity closest_pages = sorted(closest_pages, key=lambda x: x[1], reverse=True) + idx = 0 # get the content of the closest pages content = f"QUERY RESULTS FOR - {query}:\n\n" - for page, _ in closest_pages[:nr_of_results]: + for page, sim in closest_pages: + if idx >= nr_of_results and sim < top_relevance_ratio: + break with open(Path(self.pages_path, page + ".md"), 'r') as file: content += file.read() + "\n\n" + idx += 1 return content.strip() diff --git a/env/src/tools/rag/query_information/embeddings.json b/env/src/tools/rag/query_information/embeddings.json index b8da1d2a2..4f64a0979 100644 --- a/env/src/tools/rag/query_information/embeddings.json +++ b/env/src/tools/rag/query_information/embeddings.json @@ -1,21536 +1,4 @@ { - "how_to_check_research_progress": [ - 0.036177150905132294, - 0.036125872284173965, - 0.006108579691499472, - 0.000976699753664434, - 0.021972939372062683, - 0.017062999308109283, - 2.626533023430966e-05, - 0.011172355152666569, - 0.0065829078666865826, - 0.03758731484413147, - 0.022126775234937668, - -0.022844677790999413, - -0.04940706491470337, - 0.01044804323464632, - 0.022434448823332787, - 0.0010576240019872785, - -0.02069097012281418, - -0.0007795970886945724, - 0.007217482663691044, - 0.03540796786546707, - 0.05758602172136307, - 0.008486631326377392, - 0.0020928136073052883, - 0.01980641297996044, - -0.015781031921505928, - -0.061021700501441956, - 0.015268244780600071, - 0.05102234333753586, - 0.0020271125249564648, - -0.018921853974461555, - 0.07414905726909637, - -0.019793592393398285, - -0.07671299576759338, - 0.04417663440108299, - 0.0011217223946005106, - -0.015934867784380913, - -0.038741085678339005, - -0.009044287726283073, - 0.01077494490891695, - -0.015396441332995892, - 0.043945878744125366, - 0.011999225243926048, - 0.0008853594772517681, - 0.02651110850274563, - -0.026793140918016434, - -0.012236389331519604, - -0.053073495626449585, - -0.004781742580235004, - 0.022485727444291115, - 0.02451123669743538, - -0.04484325647354126, - -0.03194665536284447, - -0.04627906158566475, - -0.08009739220142365, - 0.006265620701014996, - 0.013095308095216751, - -0.02225497178733349, - 0.016370737925171852, - 0.00588743994012475, - -0.018191132694482803, - 0.044689420610666275, - 0.018755199387669563, - 0.061637043952941895, - 0.0029597447719424963, - -0.002754629822447896, - -0.015614375472068787, - -0.014204210601747036, - -0.005704759620130062, - -0.003990126773715019, - -0.026049599051475525, - 0.0007952210726216435, - 0.026690583676099777, - -0.016191260889172554, - 0.009845517575740814, - 0.012608160264790058, - 0.00030787274590693414, - 0.027126451954245567, - 0.02907504513859749, - -0.02338310517370701, - 0.008717385120689869, - -0.06122681498527527, - -0.04233060032129288, - -0.0035222084261476994, - -0.006502785254269838, - 0.022626742720603943, - -0.031921014189720154, - -0.06543166935443878, - -0.05522720143198967, - -0.046920046210289, - -0.03602331504225731, - -0.03440803289413452, - 0.016524573788046837, - -0.00495160324499011, - 0.06461121141910553, - 0.042125482112169266, - -0.0168194267898798, - -0.023831794038414955, - 0.002788281301036477, - 0.011069797910749912, - 0.08886605501174927, - 0.008358434773981571, - -0.026408549398183823, - -0.029972422868013382, - -0.006057301070541143, - 0.04515092819929123, - 0.03425419703125954, - -0.01329401321709156, - -0.00676879333332181, - -0.029254520311951637, - -0.023831794038414955, - -0.07563614100217819, - -0.047817423939704895, - -0.0027770642191171646, - 0.04053584113717079, - 0.005198382306843996, - -0.033920884132385254, - -0.04520220682024956, - -0.011351830326020718, - 0.0014983006985858083, - -0.011069797910749912, - -0.0509197860956192, - 0.030741604045033455, - 0.019870510324835777, - 0.002775461645796895, - 0.012999160215258598, - -0.0010183637496083975, - 0.006762383505702019, - 0.0023299776948988438, - 0.00355746247805655, - -0.008377663791179657, - 0.03227996453642845, - 0.01733221299946308, - 0.05871415510773659, - -0.021485790610313416, - 0.004403561819344759, - -0.01116594485938549, - -0.013108127750456333, - 0.020216641947627068, - -0.05027880147099495, - -0.015409260988235474, - 0.03584383800625801, - 0.010441632941365242, - -0.034920819103717804, - 0.04653545469045639, - 0.014563161879777908, - 0.02493428625166416, - 0.01131978165358305, - -0.022831859067082405, - 0.0374591201543808, - 0.03333118185400963, - 0.04433047026395798, - -0.012223569676280022, - -0.07189279049634933, - -0.03294659033417702, - 0.021011462435126305, - 0.0048009720630943775, - 0.029049405828118324, - 0.05809881165623665, - -0.006839301902800798, - -0.024575335904955864, - 0.004996472038328648, - 0.028357142582535744, - -0.04609958454966545, - 0.009653222747147083, - -0.0008517078240402043, - -0.0012635401217266917, - -0.0184603463858366, - -0.026921337470412254, - -0.07281580567359924, - 0.01747323013842106, - 0.03140822798013687, - -0.009826288558542728, - -0.0013861283659934998, - -0.009332730434834957, - 0.01266584824770689, - -0.019575659185647964, - -0.001566405175253749, - 0.03210049122571945, - 9.50209050643025e-06, - -0.013588865287601948, - -0.02671622298657894, - -0.007230302318930626, - -0.094199039041996, - -0.021011462435126305, - -0.041997287422418594, - -0.026177795603871346, - 0.018832117319107056, - -0.020088445395231247, - -0.05235559120774269, - 0.004525348544120789, - 0.04476634040474892, - 0.02858789637684822, - 0.005262480583041906, - -0.003097556298598647, - -0.008640467189252377, - -0.029228881001472473, - 0.00032049210858531296, - 0.008102040737867355, - 0.03227996453642845, - -0.04445866495370865, - -0.025139400735497475, - 0.0184603463858366, - 0.012954290956258774, - -0.009012238122522831, - 0.040869154036045074, - -0.06117553636431694, - -0.003336322959512472, - -0.0030623022466897964, - -0.04897119477391243, - -0.026690583676099777, - 0.010076272301375866, - -0.013217095285654068, - 0.01751169003546238, - 0.00467277504503727, - 0.002962949685752392, - 0.012954290956258774, - -0.042817745357751846, - 0.059073105454444885, - -0.030126258730888367, - 0.009025057777762413, - -0.02415228635072708, - -0.012608160264790058, - -0.0010143575491383672, - 0.004759307950735092, - 0.03476698324084282, - 0.05415034666657448, - 0.08573804795742035, - -0.026972616091370583, - 0.04251007363200188, - -0.03194665536284447, - 0.020344840362668037, - 0.02185756154358387, - -0.021934479475021362, - 0.00473687332123518, - 0.04053584113717079, - -0.035741280764341354, - 0.02451123669743538, - 0.003634380642324686, - 0.007082875818014145, - -0.03179281949996948, - 0.04215112328529358, - 0.03153642266988754, - -0.007326449733227491, - 0.01051214151084423, - 0.04033072665333748, - 0.005951538681983948, - 0.0013877308228984475, - -0.05158641189336777, - 0.0391000397503376, - 0.013024799525737762, - 0.02542143501341343, - 0.014986211434006691, - 0.02051149494946003, - -0.03002370148897171, - 0.0284596998244524, - -0.047253359109163284, - -0.03722836449742317, - 0.025216320529580116, - -0.017703983932733536, - 0.04974037781357765, - -0.03297222778201103, - 0.01924234628677368, - -0.04251007363200188, - -0.02138323336839676, - -0.01829368993639946, - -0.01394781656563282, - 0.0157297533005476, - -0.01589640974998474, - 0.0006782414275221527, - -0.06553422659635544, - -0.0060765305534005165, - -0.00023415955365635455, - 0.050381362438201904, - 0.004179217386990786, - -0.04115118831396103, - -0.01616562157869339, - 0.009281451813876629, - 0.023626679554581642, - -0.01863982155919075, - -0.005368242971599102, - -0.027126451954245567, - 0.03407471999526024, - 0.04102298989892006, - -0.0054772100411355495, - 0.03240816295146942, - 0.021280676126480103, - 0.025703467428684235, - 0.01889621466398239, - 0.026664944365620613, - 0.009569894522428513, - 0.0034388804342597723, - -0.01638355664908886, - 0.012531241402029991, - -0.015075949020683765, - -0.010351895354688168, - -0.02163962833583355, - -0.010871092788875103, - 0.003054289845749736, - 0.0011970381019636989, - -0.008352024480700493, - 0.013960636220872402, - 0.031433865427970886, - 0.0059291040524840355, - 0.0304595697671175, - -0.02720336988568306, - -0.013044029474258423, - -0.0014069604221731424, - -0.06199599429965019, - -0.04409971460700035, - 0.028741732239723206, - 0.005259275436401367, - 0.03207485005259514, - 0.0490993931889534, - -0.03863852843642235, - -0.02225497178733349, - -0.023562580347061157, - -0.002451764652505517, - 0.0036824543494731188, - -0.007454646751284599, - -0.031433865427970886, - 0.01651175320148468, - -0.03497210144996643, - 0.05722707137465477, - 0.02407536841928959, - 0.008877631276845932, - -0.05048391968011856, - -0.002062366809695959, - -0.0014974994119256735, - 0.011114666238427162, - -0.033690132200717926, - 0.014242669567465782, - -0.03476698324084282, - -0.006201522424817085, - 0.023434383794665337, - -0.031921014189720154, - 0.028177667409181595, - -0.0001347068464383483, - 0.0157297533005476, - 0.012127421796321869, - 0.00851867999881506, - -0.013614505529403687, - -0.022190874442458153, - -0.0474584735929966, - -0.018396247178316116, - -0.015140047296881676, - -0.014319587498903275, - -0.018537264317274094, - -0.007980253547430038, - 0.0010367919458076358, - 0.02280621975660324, - 0.038997478783130646, - 0.03158770129084587, - 0.007448236923664808, - 0.007999483495950699, - -0.05589382350444794, - 0.024190744385123253, - -0.0034260607790201902, - 0.030049340799450874, - -0.004214471206068993, - -0.029741669073700905, - -0.03694633021950722, - 0.0074931057170033455, - -0.0215498898178339, - 0.023793334141373634, - -0.0016393171390518546, - 0.010633928701281548, - -0.03976666182279587, - -0.029100684449076653, - 0.01258252002298832, - 0.01069161668419838, - 0.03992049768567085, - 0.03384396806359291, - -0.012832504697144032, - -0.040305089205503464, - -0.010826223529875278, - -0.0057656532153487206, - 0.0068521215580403805, - 0.031741540879011154, - 0.042433157563209534, - 0.04397151991724968, - -0.007409777492284775, - 0.018216772004961967, - -0.030741604045033455, - -0.015665654093027115, - 0.010127550922334194, - 0.015614375472068787, - -0.010121140629053116, - 0.0022386375349014997, - -0.07040570676326752, - -0.00467277504503727, - 0.0013044029474258423, - -0.032613277435302734, - 0.04102298989892006, - -0.011358240619301796, - 0.015845129266381264, - 0.012941471301019192, - -0.019370542839169502, - 0.0732773169875145, - 0.03615150973200798, - -0.04240751639008522, - 0.03448495268821716, - -0.018024476245045662, - -0.07061082124710083, - 0.023524120450019836, - -0.0023331826087087393, - 0.052560705691576004, - 0.015524637885391712, - 0.026434190571308136, - 0.04971473664045334, - 0.020626872777938843, - 0.03922823444008827, - 0.009794238954782486, - 0.03433111682534218, - -0.007166203577071428, - 0.008460992015898228, - -0.025600910186767578, - 0.020998643711209297, - 0.07917436957359314, - -0.00015654036542400718, - -0.03533105179667473, - -0.007191842887550592, - -0.03525413200259209, - 0.010281386785209179, - -0.03948462754487991, - -0.011140305548906326, - 0.030664686113595963, - 0.02429330162703991, - -0.05625277757644653, - 0.03184409812092781, - -0.05030444264411926, - -0.016229720786213875, - -0.009672451764345169, - 0.03179281949996948, - 0.04120246693491936, - -0.02098582312464714, - -0.0006994740688242018, - 0.02189602144062519, - 0.011249273084104061, - 0.0025014409329742193, - 0.03089543990790844, - 0.013217095285654068, - -0.02011408470571041, - -0.02298569492995739, - 0.03940771147608757, - 0.012172290123999119, - -0.03353629633784294, - -0.030690325424075127, - -0.028793010860681534, - 0.0035606673918664455, - -0.010396764613687992, - 0.0028876338619738817, - -0.026305992156267166, - 0.0020591618958860636, - 0.006813662592321634, - -0.024703532457351685, - 0.002788281301036477, - 0.03384396806359291, - -0.05471441522240639, - 0.018537264317274094, - 0.036433544009923935, - 0.03102363646030426, - 0.011178765445947647, - 0.002128067659214139, - 0.013255554251372814, - 0.05548359453678131, - -0.015960507094860077, - -0.0033267082180827856, - 0.01672968827188015, - -0.01451188325881958, - -0.0304595697671175, - 0.05743218585848808, - -0.034997738897800446, - -0.02415228635072708, - -0.02602395974099636, - 0.01083904318511486, - 0.03312606364488602, - -0.0024661868810653687, - 0.03666429966688156, - -0.027690518647432327, - -0.010499321855604649, - -0.030690325424075127, - 0.01747323013842106, - 0.011781290173530579, - 0.0029645520262420177, - 0.03271583467721939, - 0.015870770439505577, - -0.033305540680885315, - -0.007903335615992546, - -0.020229462534189224, - 0.02081916853785515, - 0.03938207030296326, - -0.008076401427388191, - 0.058201368898153305, - -0.013819620013237, - 0.017024541273713112, - -0.011371060274541378, - -0.010736485943198204, - 0.02367795817553997, - 0.007102105300873518, - 0.011819749139249325, - 0.03566436097025871, - 0.00481379171833396, - -0.02029355987906456, - 0.07353371381759644, - -0.0020944159477949142, - -0.01712709851562977, - 0.008717385120689869, - 0.0234600231051445, - 0.003304273821413517, - 0.05409906804561615, - -0.036048952490091324, - -0.0371001660823822, - 0.003906799014657736, - 0.034049082547426224, - 0.015550277195870876, - 0.012332536280155182, - -0.0013853271957486868, - -0.00025298845139332116, - -0.0196397565305233, - -0.014127292670309544, - 0.010640338063240051, - -0.01885775662958622, - -0.035305410623550415, - 0.03076724335551262, - -0.008832762949168682, - -0.06148320809006691, - -0.0013660975964739919, - -0.04422791302204132, - 0.01869110018014908, - 0.016409195959568024, - -0.0007912149303592741, - -0.030536489561200142, - 0.011717191897332668, - -0.007300810422748327, - -0.055945102125406265, - -0.0017899484373629093, - -0.05140693485736847, - -0.03207485005259514, - -0.0510992631316185, - -0.03797190636396408, - 0.020973004400730133, - 0.00487788999453187, - 0.028536617755889893, - -0.025126582011580467, - 0.013781161047518253, - 0.01279404480010271, - 0.0166399497538805, - 0.006839301902800798, - -0.013909357599914074, - -0.02042175829410553, - 0.041817810386419296, - -0.03845905512571335, - 0.029177602380514145, - -0.03576692193746567, - 0.0062463912181556225, - 0.0005877024377696216, - -0.011890257708728313, - -0.0354592464864254, - 0.01811421476304531, - 0.01825523003935814, - 0.04653545469045639, - -0.04297158122062683, - -0.03312606364488602, - -0.006499580107629299, - -0.02467789314687252, - 0.020434577018022537, - 0.020755069330334663, - -0.012101782485842705, - -0.02851097844541073, - -0.013588865287601948, - 0.02702389471232891, - -0.05379139631986618, - 0.018101394176483154, - -0.029741669073700905, - 0.02524195984005928, - 0.00012018454435747117, - -0.00010405978537164629, - -0.034433674067258835, - -0.004906734451651573, - -0.01829368993639946, - -0.010614698752760887, - -0.002878019120544195, - 0.007666171528398991, - 0.03233124315738678, - -0.02902376651763916, - 0.010294206440448761, - 0.013140176422894001, - -0.0038266759365797043, - 0.011678732931613922, - -0.03076724335551262, - 0.005493234843015671, - 0.006800842471420765, - 0.007941794581711292, - -0.009140434674918652, - -0.0021136454306542873, - 0.013024799525737762, - -0.027793075889348984, - 0.010454452596604824, - -0.018575722351670265, - 0.03884364292025566, - 0.007044416852295399, - 0.0072110723704099655, - -0.017498869448900223, - 0.0030687120743095875, - -0.01612716354429722, - 0.03366449102759361, - 0.031997933983802795, - 0.0065412442199885845, - -0.0056118168868124485, - -0.011505667120218277, - -0.041458860039711, - -0.006512399762868881, - -0.007557203993201256, - -0.0008100438280962408, - -0.02789563313126564, - 0.018370607867836952, - 0.02515222132205963, - 0.021831922233104706, - -0.01233894657343626, - -0.0020126905292272568, - 0.022652382031083107, - 0.01055700983852148, - 0.005679120309650898, - -0.05466313660144806, - 0.0356387235224247, - -0.03651046007871628, - 0.009460926987230778, - -0.01485801488161087, - 0.012486373074352741, - -0.015473359264433384, - 0.005634251516312361, - -0.008281515911221504, - 0.025408614426851273, - -0.02233188971877098, - -0.015793850645422935, - 0.031613342463970184, - 0.05122746154665947, - 0.002294723642989993, - 0.014191390946507454, - -0.004762512631714344, - 0.054816972464323044, - -0.010210879147052765, - -0.007935385219752789, - -0.03312606364488602, - 0.015934867784380913, - -0.014627260155975819, - 0.0024806088767945766, - 0.03861289098858833, - 0.006794432643800974, - 0.0038651349022984505, - -0.02529323846101761, - -0.020216641947627068, - 0.046996962279081345, - 0.008595598861575127, - 0.008832762949168682, - 0.005034931004047394, - -0.012268438003957272, - -0.005137488711625338, - -0.03202357143163681, - 0.017665525898337364, - -0.019216706976294518, - 0.0158194899559021, - 0.00447406992316246, - -0.012550471350550652, - -0.032485079020261765, - 0.019921790808439255, - 0.01010191161185503, - 0.013095308095216751, - 0.04635598137974739, - 0.005804112181067467, - -0.08758408576250076, - 0.0071982527151703835, - 0.029126323759555817, - 0.01925516687333584, - -0.029869865626096725, - 0.016973262652754784, - 0.0456380769610405, - -0.022037038579583168, - 0.004009356256574392, - 0.0569193996489048, - 0.01898595318198204, - -0.0059002600610256195, - -0.06902118027210236, - 0.0032545975409448147, - 0.013178635388612747, - 0.00623677670955658, - 0.008435352705419064, - 0.02211395651102066, - 0.007287990767508745, - 0.0018428296316415071, - 0.006352153606712818, - 0.008121269755065441, - -0.00426895497366786, - -0.021472971886396408, - 0.008691745810210705, - -0.01401191484183073, - 0.008960959501564503, - -0.03376704826951027, - -0.02316517010331154, - -0.12901730835437775, - 0.011569765396416187, - -0.00043306496809236705, - -0.017742443829774857, - -0.02720336988568306, - -0.023562580347061157, - -0.016011785715818405, - 0.01812703348696232, - 0.00853790994733572, - -0.012069732882082462, - -0.003958077635616064, - -0.03902311995625496, - 0.031562063843011856, - -0.0254598930478096, - 0.01911414973437786, - -0.004159987438470125, - -0.03940771147608757, - -0.024536876007914543, - 0.030100619420409203, - 0.024447139352560043, - -0.010044222697615623, - -0.014422144740819931, - 0.013114537112414837, - -0.018627000972628593, - -0.012569700367748737, - -0.004361897706985474, - -0.002695338800549507, - -0.02129349671304226, - 0.04461250081658363, - -0.023177990689873695, - 0.007550794165581465, - 0.02516504004597664, - 0.002865199465304613, - 0.0014390095602720976, - -0.01820395141839981, - 0.013447849079966545, - 0.03307478502392769, - -0.05322733148932457, - 0.036997608840465546, - 0.02442150004208088, - 0.015742572024464607, - -0.018485985696315765, - 0.0029661545995622873, - -0.006993137765675783, - 0.02807511016726494, - 0.014678538776934147, - 0.004031790886074305, - -0.022216513752937317, - 0.031305670738220215, - -0.0223703496158123, - -0.023306187242269516, - -0.03810010105371475, - 0.009909615851938725, - -0.02633163146674633, - -0.02554963156580925, - 0.06630340963602066, - -0.008960959501564503, - -0.008069991134107113, - 0.0023299776948988438, - -0.004442020785063505, - 0.0510992631316185, - -0.01151207648217678, - 0.016088703647255898, - -0.012133831158280373, - 0.02351130172610283, - -0.01585794985294342, - 0.030562128871679306, - 0.0059355138801038265, - -0.011210814118385315, - -0.01625536009669304, - 0.023665137588977814, - 0.026613665744662285, - -0.012697897851467133, - 0.023716416209936142, - 0.013524767011404037, - 0.005566948093473911, - 0.03007498010993004, - 0.006800842471420765, - -0.009710910730063915, - 0.015075949020683765, - -0.011915897019207478, - 0.02689569815993309, - 0.0013076078612357378, - -0.017268115654587746, - 0.023306187242269516, - -0.0031856915447860956, - 0.003759372513741255, - 0.0007315232651308179, - 0.03235688433051109, - -0.030254455283284187, - -0.03684377297759056, - -0.043125420808792114, - -0.02815202809870243, - 5.0277201808057725e-05, - 7.481488137273118e-05, - -0.013486308045685291, - -0.0012122613843530416, - -0.01551181823015213, - -0.08343050628900528, - 0.0006185497622936964, - 0.006140628829598427, - 0.0002640053862705827, - 0.007102105300873518, - 0.02507530339062214, - -0.0017578992992639542, - 0.04645853862166405, - -0.021742185577750206, - -0.04402279853820801, - -0.0059291040524840355, - -0.04192036762833595, - 0.009505796246230602, - 0.009525025263428688, - -0.005663095507770777, - 0.013024799525737762, - 0.06543166935443878, - -0.050560835748910904, - 0.035997673869132996, - -0.004458045121282339, - -0.011140305548906326, - -0.016716869547963142, - -0.006502785254269838, - 0.011486437171697617, - -0.02833150327205658, - -0.007832827046513557, - 0.0005091818748041987, - -0.0022097930777817965, - 0.0046535455621778965, - 0.006348948925733566, - 0.048073817044496536, - -0.010377534665167332, - 0.0021713341120630503, - 0.024690711870789528, - -0.012114602141082287, - 0.020562773570418358, - -0.0016697639366611838, - 0.012159470468759537, - 0.037048887461423874, - 0.009236582554876804, - 0.03579255938529968, - 0.023690776899456978, - 0.059585895389318466, - -0.015473359264433384, - 0.03576692193746567, - -0.030946718528866768, - 0.00020811957074329257, - -0.013422209769487381, - -0.026613665744662285, - 0.042253680527210236, - 0.027177730575203896, - 0.012524832040071487, - 0.0042016515508294106, - -0.00969168171286583, - 0.04661237448453903, - 0.005515669472515583, - -0.016716869547963142, - 0.012806865386664867, - -0.023575400933623314, - -0.012159470468759537, - -0.015614375472068787, - 0.009178894571959972, - 0.02389589138329029, - -0.01221075002104044, - -0.0031921013724058867, - 0.003544642822816968, - 0.019062871113419533, - 0.0015375609509646893, - 0.007300810422748327, - 0.02984422631561756, - 0.01353758666664362, - -0.03071596473455429, - -0.003228957997635007, - 0.02120375819504261, - -0.006313694640994072, - 0.024101007729768753, - 0.022190874442458153, - -0.016832245513796806, - 0.0021376824006438255, - -0.055329758673906326, - 0.051330018788576126, - -0.009666042402386665, - 0.02342156320810318, - 0.05176588520407677, - -0.02280621975660324, - 0.001921350252814591, - -0.015178506262600422, - 0.021908840164542198, - 0.030536489561200142, - -0.009608353488147259, - 0.016845066100358963, - 0.04063840210437775, - 0.030869800597429276, - -0.010249338112771511, - -0.013383750803768635, - 0.015934867784380913, - 0.003349142614752054, - -0.020537134259939194, - 0.010242927819490433, - -0.01394781656563282, - 0.012826094403862953, - 0.024344580247998238, - 0.020780708640813828, - 0.001797960721887648, - 0.0071149249561131, - 0.017229655757546425, - 0.014691358432173729, - -0.0068521215580403805, - 0.00873661506921053, - -0.014422144740819931, - 0.018306510522961617, - 0.030510850250720978, - 0.043433092534542084, - 0.0013693025102838874, - -0.01707581989467144, - -0.004563807509839535, - 0.021434511989355087, - 0.01880647800862789, - -0.03507465869188309, - 0.020396118983626366, - -0.008377663791179657, - 0.0238189734518528, - -0.00034993732697330415, - 0.013819620013237, - -0.015063129365444183, - -0.004445225466042757, - -0.016434835270047188, - 0.05209919810295105, - 0.009191714227199554, - 0.03194665536284447, - 0.014281128533184528, - 0.00886481162160635, - -0.06486760079860687, - 0.02745976485311985, - -0.015845129266381264, - -0.02820330671966076, - 0.041946008801460266, - -0.00021152479166630656, - 0.009242992848157883, - -0.018716739490628242, - -0.022780580446124077, - 0.01620408147573471, - -0.023908711969852448, - 0.004627906251698732, - -0.01651175320148468, - -0.0017162353033199906, - -0.05122746154665947, - -0.028049470856785774, - -0.007858466356992722, - -0.011627454310655594, - -0.008980189450085163, - 0.0020928136073052883, - 0.03753603622317314, - 0.04289466515183449, - -0.03497210144996643, - 0.015588736161589622, - -0.008076401427388191, - -0.024652253836393356, - -0.00010766532068373635, - -0.008159729652106762, - 0.013217095285654068, - 0.03189537674188614, - 0.02771615795791149, - -0.005730398930609226, - 0.03620278835296631, - 0.019267985597252846, - -0.028382781893014908, - 0.021267857402563095, - 0.014845195226371288, - -0.011614634655416012, - 0.012422274798154831, - 0.01694762334227562, - 0.015998966991901398, - 0.0416383370757103, - 0.014550342224538326, - 0.028408421203494072, - 0.053945232182741165, - -0.003163257148116827, - -0.036177150905132294, - 0.033100426197052, - 0.0038106513675302267, - 0.044074077159166336, - 0.0014269911916926503, - 0.03984358161687851, - 0.03797190636396408, - 0.013691423460841179, - -0.007589253131300211, - 0.010601879097521305, - -0.011095437221229076, - -0.007467466406524181, - 0.021844742819666862, - 0.04140758141875267, - -0.0010255747474730015, - 0.024011269211769104, - -0.05348372459411621, - -0.024357400834560394, - 0.020011527463793755, - 0.007287990767508745, - 0.022562645375728607, - -0.014473424293100834, - 0.015370802022516727, - 0.024575335904955864, - 0.012935061939060688, - 0.0005051756743341684, - 0.031305670738220215, - 0.04035636782646179, - -0.00016585466801188886, - -0.01329401321709156, - -0.03325426205992699, - 0.03335681930184364, - 0.008243056945502758, - -0.0041952417232096195, - -0.012262028641998768, - 0.0031969088595360518, - -0.026216255500912666, - -0.008198188617825508, - -0.07132872194051743, - 0.006634186953306198, - -0.02633163146674633, - -0.0065348343923687935, - -0.04176653176546097, - 0.004637520760297775, - -0.03848469257354736, - 0.004486889578402042, - 0.01353758666664362, - 0.026408549398183823, - -0.006659826263785362, - 0.005201586987823248, - 0.022998513653874397, - -0.01010191161185503, - 0.002055956982076168, - 0.009044287726283073, - 0.009544255211949348, - -0.00412793830037117, - -0.014268308877944946, - -0.03715144470334053, - 0.043689485639333725, - -0.0029196832329034805, - 0.0076277125626802444, - 0.01589640974998474, - 0.010653157718479633, - 0.03789498656988144, - -0.01144797820597887, - 0.0036984789185225964, - 0.01201204489916563, - -0.005865005776286125, - 0.03676685690879822, - 0.013986275531351566, - 0.020934544503688812, - 0.010332665406167507, - -0.008223827928304672, - 0.019883330911397934, - 0.07230301946401596, - -0.017370672896504402, - 0.018934674561023712, - 0.003150437492877245, - 0.00934555009007454, - 0.011550535447895527, - -0.018665460869669914, - -0.012351766228675842, - 0.0008765459642745554, - -0.0016192863695323467, - 0.0203704796731472, - -0.008095630444586277, - -0.025485532358288765, - 0.01481955498456955, - 0.0038010363932698965, - 0.0018604567740112543, - 0.03815137967467308, - -0.005390677601099014, - -0.0034324706066399813, - 0.01246714312583208, - -0.01538362167775631, - 0.0030030112247914076, - -0.00629126001149416, - -0.027254650369286537, - 0.002049547154456377, - -0.0296391099691391, - -0.018960313871502876, - -0.02080634795129299, - -0.026818780228495598, - 0.02571628801524639, - 0.01055700983852148, - 0.04735591635107994, - -0.03553616628050804, - -0.04276646673679352, - -0.04997112974524498, - -0.028690453618764877, - -0.010057042352855206, - 0.004711234010756016, - -0.0029517323710024357, - 0.012390225194394588, - 0.00855713989585638, - -0.022434448823332787, - -0.05343244597315788, - -0.018485985696315765, - -0.0020543544087558985, - -0.02538297511637211, - -0.0038234710227698088, - 0.02024228125810623, - -0.0025126582477241755, - -0.018268050625920296, - 0.02089608646929264, - 0.013768341392278671, - 0.01611434295773506, - 0.019344903528690338, - -0.002858789637684822, - -0.05045827850699425, - -0.007550794165581465, - -0.008717385120689869, - -0.008550729602575302, - 0.014909293502569199, - 0.006409842520952225, - 0.026305992156267166, - 0.013845259323716164, - 0.0033202983904629946, - 0.006166268140077591, - -0.030357012525200844, - -0.020280741155147552, - -0.006326514296233654, - 0.019011592492461205, - 0.014409325085580349, - 0.01160181500017643, - 0.0020976208616048098, - -0.023665137588977814, - 0.0022498546168208122, - -0.00790974497795105, - -0.004890709649771452, - -0.02211395651102066, - -0.027408486232161522, - 0.0018075755797326565, - -0.007230302318930626, - -0.032741475850343704, - 0.0004911541473120451, - -0.019562838599085808, - 0.018614182248711586, - 0.01847316510975361, - -0.020537134259939194, - 0.012915831990540028, - -0.002701748628169298, - -0.024049729108810425, - 0.0009943267796188593, - -0.0026985437143594027, - 0.0012979931198060513, - 0.013499127700924873, - 0.00527850491926074, - 0.0015239400090649724, - -0.046945683658123016, - 0.007467466406524181, - 0.010204468853771687, - 0.08414840698242188, - 0.018434707075357437, - 0.0027978962752968073, - 0.026664944365620613, - 0.0010391956893727183, - -0.007595662958920002, - 0.010249338112771511, - 0.028998127207159996, - 0.001189826987683773, - -0.052817098796367645, - 0.02489582821726799, - 0.04097171127796173, - 0.010024993680417538, - 0.018088575452566147, - -0.019396182149648666, - 0.028228946030139923, - -0.0006874555838294327, - -0.007666171528398991, - 0.0038523152470588684, - -0.01116594485938549, - 0.04435610771179199, - 0.04009997472167015, - 0.00203192001208663, - -0.011947945691645145, - 0.013986275531351566, - -0.018703920766711235, - 0.030049340799450874, - -0.020306380465626717, - 0.01751169003546238, - 0.0074866958893835545, - 0.01946028135716915, - -0.019793592393398285, - -0.005272095091640949, - 0.012858144007623196, - -0.042997222393751144, - 0.011223633773624897, - -0.001759501756168902, - 0.008614827878773212, - 0.007576433476060629, - 0.006544448900967836, - 0.012358175590634346, - 0.00866610649973154, - 0.004377922508865595, - 6.479949661297724e-05, - 0.00025619339430704713, - 0.01660149171948433, - 0.012531241402029991, - 0.006445096340030432, - -0.007691810838878155, - -0.00014922914851922542, - -0.001028779661282897, - -0.033997803926467896, - -0.008704565465450287, - -0.01435804646462202, - -0.027536682784557343, - -0.02011408470571041, - -0.003906799014657736, - 0.026305992156267166, - -0.01444778498262167, - 0.03197229281067848, - -0.033613212406635284, - 0.021319136023521423, - 0.0027049535419791937, - 0.006634186953306198, - -0.009807058610022068, - -0.012101782485842705, - -0.0177296232432127, - -0.020844807848334312, - -0.04151013866066933, - -0.028793010860681534, - -0.030126258730888367, - -0.013396570459008217, - 0.02467789314687252, - 0.023524120450019836, - 0.02316517010331154, - 0.06112425774335861, - 0.01207614317536354, - -0.010050632990896702, - 0.03176717832684517, - -0.011621044017374516, - 0.015652835369110107, - -0.0093647800385952, - -0.025049664080142975, - -0.016704048961400986, - -0.015806671231985092, - -0.0168194267898798, - 0.0027770642191171646, - 0.023306187242269516, - -0.028741732239723206, - -0.006794432643800974, - 0.0038106513675302267, - 0.05286838114261627, - 0.011339010670781136, - 0.04222803935408592, - 0.00990320648998022, - 0.013319652527570724, - -0.01410165335983038, - -0.0004723252495750785, - -0.005563742946833372, - -0.006166268140077591, - -0.0017643091268837452, - -0.021229397505521774, - 0.0035991263575851917, - 0.03922823444008827, - -0.016755327582359314, - -0.0030831340700387955, - -0.01010191161185503, - -0.015345162712037563, - 0.013370931148529053, - -0.0007651749183423817, - -0.012050503864884377, - 0.011287732049822807, - -0.005675915163010359, - -0.0067175147123634815, - 0.010307026095688343, - 0.007480286061763763, - -0.036689937114715576, - 0.007038007024675608, - -0.001067238743416965, - -0.02851097844541073, - 0.039997417479753494, - -0.015793850645422935, - -0.02598549984395504, - 0.00012549269013106823, - -0.01353758666664362, - 0.009992944076657295, - 0.020126905292272568, - -0.013088897801935673, - -0.011762060225009918, - 0.011024928651750088, - 0.00886481162160635, - 0.019139789044857025, - -0.011242863722145557, - 0.0013628926826640964, - 0.01625536009669304, - 0.005903464742004871, - 0.005970768164843321, - -0.011351830326020718, - -0.007711040321737528, - -0.03822829946875572, - -0.045817553997039795, - -0.011454388499259949, - -0.025447074323892593, - -0.005563742946833372, - -0.007191842887550592, - 0.03238252177834511, - 0.008730204775929451, - 0.005634251516312361, - 0.002088006120175123, - 0.0013709049671888351, - -0.01516568660736084, - 0.006483555305749178, - 0.0005079800030216575, - 0.018434707075357437, - -0.012512012384831905, - -0.033997803926467896, - 0.01516568660736084, - -0.01647329516708851, - -0.004317028913646936, - 0.003188896458595991, - -0.0004096289922017604, - 0.00975577998906374, - -0.016498934477567673, - 0.022690841928124428, - 0.006288055330514908, - 0.021229397505521774, - 0.010531370528042316, - 0.03966410458087921, - 0.002929297974333167, - 0.021998578682541847, - 0.0187295600771904, - -0.0036375855561345816, - 0.0023716415744274855, - 0.024613793939352036, - 0.03451059013605118, - -0.0038010363932698965, - 0.012197930365800858, - -0.004611881449818611, - -0.021626807749271393, - 0.0060829403810203075, - -0.02411382645368576, - 0.02485736832022667, - -0.018139854073524475, - -0.0057816775515675545, - 0.008762254379689693, - 0.014268308877944946, - -0.009358369745314121, - -0.011454388499259949, - 0.02238317020237446, - -0.011069797910749912, - 0.021524250507354736, - 0.0013372533721849322, - 0.02337028458714485, - -0.017537329345941544, - 0.005240045953541994, - 0.03238252177834511, - 0.004858660511672497, - -0.015152866952121258, - -0.020434577018022537, - -0.003241777652874589, - 0.024395860731601715, - -0.01192871667444706, - -0.04022816941142082, - 0.022472906857728958, - -0.03015189804136753, - 0.0014309972757473588, - -0.03435675427317619, - 0.02254982478916645, - -0.006073325406759977, - 0.01158258505165577, - 0.002172936452552676, - -0.02067815139889717, - -0.03333118185400963, - -0.01916542835533619, - 0.014768276363611221, - 0.0032433802261948586, - -0.04422791302204132, - -0.007813598029315472, - 0.0021633217111229897, - 0.0011938331881538033, - -0.00947374664247036, - -0.034433674067258835, - 0.028408421203494072, - -0.038253940641880035, - -0.015486178919672966, - -0.030485210940241814, - 0.008717385120689869, - 0.002217805478721857, - -0.032920949161052704, - -0.02342156320810318, - 0.02516504004597664, - 0.004534963518381119, - -0.023319005966186523, - 0.0030510849319398403, - -0.004211266525089741, - -0.01451188325881958, - -0.030100619420409203, - -0.00589705491438508, - -0.0012018454726785421, - -0.009992944076657295, - -0.02324208803474903, - 0.00015674067253712565, - -0.01863982155919075, - 0.012858144007623196, - -0.028357142582535744, - 0.0013749111676588655, - 0.03666429966688156, - -0.0005488427705131471, - -0.010633928701281548, - 0.015922049060463905, - 0.0012082553002983332, - -0.004246520344167948, - 0.007749499287456274, - -0.02615215629339218, - 0.033613212406635284, - -0.05784241855144501, - 0.007326449733227491, - -0.024036908522248268, - -0.017447590827941895, - 0.04104863107204437, - -0.012370995245873928, - -0.01201204489916563, - -0.01292865164577961, - 0.015370802022516727, - 0.005903464742004871, - 0.011947945691645145, - 0.00983910821378231, - 0.002283506328240037, - -0.00894813984632492, - 0.0016633541090413928, - 0.033305540680885315, - 0.012499192729592323, - -0.01110184658318758, - 0.0073520890437066555, - -0.007249531801789999, - 0.020280741155147552, - -0.0051054395735263824, - -0.018178312107920647, - -0.0016857885057106614, - -0.005326578859239817, - 0.02242162823677063, - -0.016627131029963493, - -0.03479262441396713, - 0.009069927036762238, - -0.038997478783130646, - 0.01594768837094307, - -0.04376640170812607, - 0.0203704796731472, - 0.031613342463970184, - 0.011505667120218277, - 0.009601944126188755, - 0.061329372227191925, - 0.01585794985294342, - -0.025049664080142975, - 0.0009069927036762238, - -0.0002525878371670842, - 0.019216706976294518, - -0.04597138985991478, - -0.03394652530550957, - -0.0054643903858959675, - -0.007390548009425402, - -0.006762383505702019, - 0.027664879336953163, - -0.021972939372062683, - 0.03015189804136753, - -0.0020543544087558985, - 0.008467401377856731, - 0.0074866958893835545, - -0.0012090564705431461, - 0.02472917176783085, - -0.015716932713985443, - -0.0004771326493937522, - 0.005999612621963024, - -0.018870575353503227, - -0.003342732787132263, - 0.012024864554405212, - 0.0011794109595939517, - 0.004980447702109814, - -0.03592075780034065, - 0.021780643612146378, - 0.018562903627753258, - 0.005541308782994747, - 0.028613535687327385, - -0.04753538966178894, - 0.002554322127252817, - -0.003836290678009391, - -0.01589640974998474, - -0.020062806084752083, - 0.018780838698148727, - -0.0121851097792387, - 0.03833085671067238, - 0.010935191065073013, - 0.0447406992316246, - 0.02338310517370701, - 0.01894749328494072, - -0.009377599693834782, - 0.04261263087391853, - -0.0004490895662456751, - 0.01994743011891842, - 0.010108320973813534, - -0.04497145488858223, - -0.005070185288786888, - 0.012858144007623196, - 0.0013108127750456333, - -0.006486760452389717, - 0.028921209275722504, - 0.0041824220679700375, - -0.01803729683160782, - 0.0012114602141082287, - 0.03494646027684212, - 0.04020253196358681, - 0.05186844244599342, - -0.011415929533541203, - 0.026741862297058105, - -0.03451059013605118, - 0.02394717000424862, - 0.009826288558542728, - -0.020716609433293343, - 0.021870382130146027, - 0.03863852843642235, - -0.016063064336776733, - 0.03494646027684212, - -0.005881030112504959, - -0.0013412594562396407, - 0.008114860393106937, - -0.00894813984632492, - -0.013435029424726963, - -0.027690518647432327, - -0.004387537017464638, - -0.018280869349837303, - 0.003910003695636988, - 0.03694633021950722, - 0.02429330162703991, - -0.031177472323179245, - -3.653109524748288e-05, - -0.016716869547963142, - -0.025395795702934265, - 0.021562710404396057, - -0.007396957837045193, - -0.022870317101478577, - 0.006820072419941425, - -0.04986857250332832, - 0.05635533481836319, - -0.003435675520449877, - 0.013345291838049889, - -0.014422144740819931, - -0.012512012384831905, - -0.01798601821064949, - 0.035997673869132996 - ], - "how_to_connect_entities": [ - -0.013995696790516376, - -0.0014536207308992743, - 0.028989259153604507, - 0.013317660428583622, - -0.011353912763297558, - 0.023564966395497322, - -0.0075927297584712505, - 0.021479684859514236, - -0.015825117006897926, - 0.0013736635446548462, - 0.02988477796316147, - -0.02421741746366024, - 0.026967942714691162, - -0.01426435261964798, - 0.009307010099291801, - 0.04022163897752762, - -0.009703597985208035, - 0.09067779034376144, - 0.010515962727367878, - 0.041219502687454224, - 0.06401687860488892, - 0.012377364560961723, - 0.04395723342895508, - 0.022848550230264664, - -0.04436661675572395, - 0.019228091463446617, - 0.047692831605672836, - 0.03950522094964981, - -0.034797344356775284, - -0.040247224271297455, - 0.07471194863319397, - -0.006665227003395557, - -0.02371848374605179, - -0.007669488433748484, - -0.02023874968290329, - 0.034848518669605255, - -0.002417903859168291, - 0.0409892238676548, - 0.020712096244096756, - 0.022656653076410294, - 0.04689965769648552, - -0.0010002637282013893, - -0.012793141417205334, - -0.029628915712237358, - -0.009102320298552513, - 0.012038346379995346, - -0.012166277505457401, - 0.0204946119338274, - 0.0075479536317288876, - -0.0066268472000956535, - 0.0015823517460376024, - 0.014737699180841446, - -0.019560713320970535, - -0.06053714454174042, - 0.0008331533754244447, - -0.03180374950170517, - -0.026737665757536888, - -0.046285584568977356, - -0.027965808287262917, - -0.04073336347937584, - 0.00492855766788125, - 0.0222344808280468, - 0.023296311497688293, - 0.03364596143364906, - -0.009889098815619946, - 0.01368866115808487, - -0.041014812886714935, - -0.014865630306303501, - 0.006063949316740036, - 0.01618332415819168, - 0.02632828615605831, - 0.062481705099344254, - -0.01092534326016903, - 0.0188954696059227, - 0.008379507809877396, - -0.05588044226169586, - -0.003988261800259352, - 0.052912432700395584, - -0.06391453742980957, - -0.0321107842028141, - -0.03661397099494934, - -0.05255422741174698, - -0.02364172600209713, - -0.02126220054924488, - -0.03548817336559296, - -0.0014544202713295817, - -0.05531754344701767, - -0.04029839485883713, - -0.040196049958467484, - -0.046541448682546616, - -0.023590553551912308, - -0.0422685407102108, - -0.008974389173090458, - 0.0033262167125940323, - 0.05613630637526512, - -0.00960125308483839, - 0.015569252893328667, - -0.010061806067824364, - -0.0483069010078907, - 0.035104379057884216, - 0.03791887313127518, - -0.016720635816454887, - -0.04083570837974548, - -0.034413550049066544, - 0.0664219930768013, - 0.015377355739474297, - 0.014341111294925213, - 0.024179037660360336, - -0.023795243352651596, - -0.005987190175801516, - -0.07112986594438553, - -0.002283575711771846, - 0.022247273474931717, - 0.01613215170800686, - 0.03134319558739662, - -0.015019148588180542, - 0.020443439483642578, - -0.0300127100199461, - 0.051300499588251114, - 0.007068210747092962, - -0.019381608814001083, - -0.013970110565423965, - 0.012191863730549812, - 0.022183308377861977, - -0.0082579730078578, - 0.004112995229661465, - -0.0157355647534132, - 0.011302740313112736, - 0.008942405693233013, - -0.019356023520231247, - -0.009518097154796124, - 0.020776061341166496, - 0.03605107218027115, - -0.008552215062081814, - -0.018933849409222603, - 0.011961587704718113, - -0.04761607199907303, - -0.01613215170800686, - 0.011833655647933483, - 0.010112978518009186, - -0.005568214692175388, - -0.037483904510736465, - 0.023987140506505966, - 0.016746222972869873, - -0.0006112722912803292, - 0.016669463366270065, - -0.013791006989777088, - -0.02691677026450634, - 0.01940719597041607, - -0.011552207171916962, - -0.03052443638443947, - 0.003103936091065407, - -0.05234953388571739, - -0.027530841529369354, - -0.008974389173090458, - -0.03830266743898392, - -0.003158306935802102, - 0.06611495465040207, - -0.012678002938628197, - -0.047564901411533356, - 0.013509557582437992, - 0.0035532950423657894, - -0.010829394683241844, - 0.012588451616466045, - -0.05357767641544342, - -0.03065236657857895, - -0.03625576198101044, - 0.0019909327384084463, - -0.03930053114891052, - 0.005561818368732929, - -0.01101489458233118, - -0.030242986977100372, - -0.009658821858465672, - 0.011104446835815907, - 0.022771792486310005, - -0.024588417261838913, - -0.07133455574512482, - -0.018665194511413574, - 0.009358183480799198, - -0.020187577232718468, - 0.03743273392319679, - -0.011008498258888721, - -0.04948387295007706, - -0.050021182745695114, - -0.04971414804458618, - 0.014929596334695816, - -0.048281315714120865, - 0.04633675888180733, - -0.01445624977350235, - 0.008392300456762314, - 0.01134112011641264, - 0.022976482287049294, - 0.012089518830180168, - 0.005449878517538309, - 0.005350731313228607, - 0.018166260793805122, - 0.023692898452281952, - -0.013368832878768444, - 0.04782076179981232, - -0.02011081948876381, - 0.048025455325841904, - -0.00577930174767971, - 0.07046462595462799, - -0.011603379622101784, - -0.04746255651116371, - -0.023564966395497322, - -0.03771417960524559, - 0.03689542040228844, - 0.005952008999884129, - -0.010854980908334255, - -0.021274995058774948, - -0.053731195628643036, - 0.007823006249964237, - 0.015172665938735008, - 0.0034317602403461933, - -0.02311720699071884, - -0.07486546784639359, - 0.048332490026950836, - -0.03569286689162254, - -0.010464790277183056, - -0.028247255831956863, - 0.034208860248327255, - 0.025547903031110764, - -0.0340297557413578, - 0.004823014605790377, - 0.04736021161079407, - 0.029526570811867714, - -0.07225566357374191, - 0.03571845218539238, - -0.016669463366270065, - -0.0022132135927677155, - 0.020673716440796852, - 0.027735531330108643, - -0.00848185271024704, - -0.0034157687332481146, - -0.03162464499473572, - 0.006307018920779228, - 0.004176960792392492, - -0.0003426163166295737, - 0.013599109835922718, - -0.034080930054187775, - 0.0009962659096345305, - 0.008187610656023026, - 0.005702543072402477, - -0.011737707071006298, - 0.00489977328106761, - -0.010528755374252796, - -0.012223847210407257, - 0.012786745093762875, - 0.029654502868652344, - 0.07706588506698608, - -0.0010698264231905341, - 0.03108733333647251, - 0.05889962241053581, - 0.024319762364029884, - -0.0715392455458641, - -0.01677180826663971, - -0.03487410396337509, - 0.02312999963760376, - -0.012166277505457401, - -0.02448607236146927, - 0.03822590783238411, - -0.050839945673942566, - 0.023078827187418938, - -0.0355905182659626, - 0.010170547291636467, - -0.001917372108437121, - 0.028758982196450233, - -0.052707742899656296, - -0.06253287941217422, - -0.0022020195610821247, - 0.027863461524248123, - 0.05710858479142189, - -0.06335163861513138, - -0.09042192250490189, - -0.042115021497011185, - -0.00017800457135308534, - 0.03617900609970093, - 0.003671631682664156, - -0.0368698351085186, - -0.035232312977313995, - -0.029117189347743988, - 0.03423444554209709, - 0.04817897081375122, - 0.004621522501111031, - 0.033108651638031006, - -0.029193948954343796, - 0.04203826189041138, - 0.03963315114378929, - 0.0019189711892977357, - 0.011571396142244339, - 0.05485698953270912, - -0.003063957439735532, - -0.006729192566126585, - 0.06488681584596634, - 0.011993570253252983, - 0.007330470252782106, - -0.023616138845682144, - -0.014865630306303501, - -0.0068827103823423386, - 0.009396562352776527, - 0.03983784466981888, - 0.01330486685037613, - 0.04651586338877678, - 0.012997832149267197, - -0.032468993216753006, - 0.007330470252782106, - -0.030984988436102867, - 0.020469026640057564, - -0.003905106568709016, - 0.012415744364261627, - -0.008980785496532917, - 0.016042599454522133, - 0.005424291826784611, - -0.005101265385746956, - 0.024524452164769173, - 0.016938120126724243, - -0.010196133516728878, - -0.04201267659664154, - 0.005619387608021498, - -0.02101913094520569, - -0.049944423139095306, - 0.037867698818445206, - -0.023680105805397034, - -0.018460502848029137, - -0.005692948121577501, - -0.018869884312152863, - -0.01766732893884182, - -0.03139436990022659, - -0.012773951515555382, - -0.026686493307352066, - -0.024191830307245255, - 0.008923216722905636, - 7.890769484220073e-05, - -0.04165446758270264, - 0.0060767424292862415, - 0.03252016752958298, - 0.04661820828914642, - 0.005958405788987875, - 0.053168296813964844, - -0.022976482287049294, - 0.018601227551698685, - -0.02865663729608059, - 0.006933882832527161, - -0.02806815318763256, - 0.0050149112939834595, - -0.026034042239189148, - 0.03528348356485367, - -0.02819608338177204, - 0.043522268533706665, - -0.005878448486328125, - 0.03717686980962753, - -0.05081435665488243, - -0.008737715892493725, - 0.0028208878356963396, - 0.03426003456115723, - 0.006780365016311407, - 0.014251559972763062, - -0.00924944132566452, - -0.010976515710353851, - -0.021863479167222977, - 0.0511469803750515, - -0.0429081954061985, - 0.009921081364154816, - -0.042498815804719925, - 0.0750189796090126, - -0.02870780974626541, - 0.03835383802652359, - -0.04812780022621155, - 0.03449030965566635, - 0.06442625820636749, - 0.056238651275634766, - 0.022950895130634308, - 0.025611869990825653, - -0.03231547400355339, - 0.0375094898045063, - 0.013663074932992458, - 0.01702767238020897, - -0.004583143163472414, - 0.07988037914037704, - 0.03991460055112839, - -0.03057560883462429, - 0.021825099363923073, - -0.04183357208967209, - 0.007541556842625141, - 0.013867765665054321, - -0.01352235022932291, - 0.020993545651435852, - -0.06437508761882782, - -0.01015135832130909, - 0.059462521225214005, - -0.004097003489732742, - 0.032724857330322266, - 0.016528738662600517, - 0.015773942694067955, - 0.00924944132566452, - 0.052963607013225555, - 0.0107974112033844, - 0.029654502868652344, - 0.018396537750959396, - 0.034592654556035995, - -0.03121526539325714, - -0.033825065940618515, - -0.01696370542049408, - -0.005238791462033987, - -0.005542628467082977, - -0.018857089802622795, - 0.020341094583272934, - -0.005241989623755217, - 0.012031950056552887, - 0.04029839485883713, - -0.0033006304875016212, - 0.04367578402161598, - 0.03231547400355339, - -0.002899245824664831, - -0.062481705099344254, - -0.014149214141070843, - 0.02261827513575554, - -0.01191041525453329, - -0.008008507080376148, - 0.039479635655879974, - 0.005440283566713333, - -0.022758997976779938, - -0.03449030965566635, - -0.0502258725464344, - 0.03553934767842293, - 0.04150095209479332, - -0.05009794235229492, - 0.03341568633913994, - -0.07578656822443008, - 0.0009650826104916632, - 0.0215948224067688, - 0.020149197429418564, - 0.05260539799928665, - 0.014213180169463158, - -0.009805942885577679, - 0.044110752642154694, - -0.018857089802622795, - -0.004720669239759445, - 0.006767571903765202, - 0.029193948954343796, - -0.008565008640289307, - 0.06683137267827988, - 0.01574835740029812, - -0.03950522094964981, - -0.013407212682068348, - -0.022707825526595116, - -0.016541531309485435, - -0.044417787343263626, - -0.0027473270893096924, - -0.012223847210407257, - -0.008590594865381718, - -0.00034681407851167023, - 0.03400417044758797, - 0.013663074932992458, - 0.006479726172983646, - 0.027582013979554176, - -0.016669463366270065, - 0.010554341599345207, - -0.013407212682068348, - -0.028477532789111137, - 0.010963722132146358, - 0.006038362625986338, - 0.010592721402645111, - -0.012754762545228004, - 0.0517866387963295, - -0.012607640586793423, - 0.007196142338216305, - 0.026558561250567436, - 0.02447327971458435, - 0.006569278426468372, - -0.0028816552367061377, - -0.010036219842731953, - 0.011648155748844147, - 0.0009674813481979072, - -0.024115072563290596, - -0.0284519474953413, - 0.04935593903064728, - -0.023756863549351692, - -0.035948727279901505, - 0.01268440019339323, - -0.016477566212415695, - -0.02620035409927368, - 0.012377364560961723, - -0.0001061430957634002, - 0.09180358052253723, - 0.020328301936388016, - -0.009044751524925232, - -0.02415345050394535, - -0.021313372999429703, - -0.04656703397631645, - -0.005360326264053583, - 0.038967911154031754, - -0.013752627186477184, - 0.0012385359732434154, - -0.06186763197183609, - -0.04321523383259773, - -0.04595296457409859, - 0.027633186429739, - 0.0008203602046705782, - 0.025266455486416817, - -0.04469923675060272, - 0.009108716621994972, - 0.033108651638031006, - 0.0073816427029669285, - -0.04651586338877678, - 0.030242986977100372, - -0.01902340166270733, - -0.020072439685463905, - 0.011616172268986702, - -0.007368849590420723, - 0.016336841508746147, - 0.02234961837530136, - 0.033185407519340515, - -0.03172698989510536, - 0.030473263934254646, - -0.0023555371444672346, - -0.0006116720614954829, - 0.012709986418485641, - 0.02281017228960991, - -0.021223822608590126, - -0.01844771020114422, - 0.009294217452406883, - 0.024191830307245255, - -0.0012233441229909658, - -0.031317610293626785, - -0.012243036180734634, - 0.002352338982746005, - -0.0037260025274008512, - 0.003383785951882601, - 0.022707825526595116, - 0.0037611837033182383, - -0.0011193999089300632, - -0.006131113041192293, - -0.06657551229000092, - 0.024575624614953995, - -0.03548817336559296, - -0.04736021161079407, - 0.0023619337007403374, - -0.01230060588568449, - -0.026481803506612778, - 0.02421741746366024, - -0.0037419938016682863, - 0.013727040961384773, - -0.015172665938735008, - -0.007567143067717552, - 0.018012743443250656, - 0.015505287796258926, - 0.007918954826891422, - 0.021415719762444496, - 0.0058816466480493546, - -0.04116832837462425, - -0.019867748022079468, - -0.030422091484069824, - -0.01060551404953003, - 0.003825149266049266, - -0.013004228472709656, - -0.023987140506505966, - 0.031906094402074814, - 0.006965865381062031, - 0.018063915893435478, - -0.027991393581032753, - -0.008053282275795937, - 0.0038123561535030603, - 0.008782492019236088, - 0.06985055655241013, - 0.01734749972820282, - -0.020609751343727112, - -0.015837909653782845, - -0.010848583653569221, - -0.0038923132233321667, - -0.0007460000924766064, - 0.03223871812224388, - -0.004848600830882788, - 0.043087299913167953, - 0.005321946926414967, - -0.01972702518105507, - -0.006447743158787489, - -0.003991459961980581, - -0.03287837281823158, - -0.024690764024853706, - -0.05165870487689972, - 0.022324031218886375, - 0.006092733703553677, - -0.04285702481865883, - -0.02344982884824276, - -0.01330486685037613, - -0.007720660883933306, - 0.012319795787334442, - -0.010592721402645111, - -0.00451278081163764, - 0.012825124897062778, - -0.002840077504515648, - 0.0023107612505555153, - -0.021620409563183784, - 0.010324065573513508, - -0.012006363831460476, - 0.0015095906564965844, - -0.008692939765751362, - -0.0181150883436203, - -0.009345389902591705, - -0.007605522871017456, - -0.030626781284809113, - 0.011110843159258366, - 0.01059911772608757, - -0.003610864281654358, - 0.010266495868563652, - -0.02177392691373825, - -0.026814425364136696, - 0.030984988436102867, - -0.035820797085762024, - -0.0024258994963020086, - -0.0177952591329813, - -0.006307018920779228, - -0.008130041882395744, - 0.021044718101620674, - -0.02107030339539051, - 0.04625999927520752, - 0.005424291826784611, - -0.02712146006524563, - -0.018716366961598396, - 0.025151316076517105, - -0.016490358859300613, - 0.01480166520923376, - 0.015313390642404556, - 0.03390182554721832, - -0.005309153813868761, - -0.006374182645231485, - -0.03244340792298317, - 0.006370984483510256, - -0.0015207846881821752, - -0.006367786321789026, - 0.00478783342987299, - -0.01632404886186123, - -0.016298461705446243, - 0.025215281173586845, - 0.004902971442788839, - 0.007579936180263758, - 0.03804680332541466, - 0.00928142387419939, - 0.001268120133318007, - -0.02132616750895977, - 0.01831977814435959, - -0.0035628899931907654, - -0.018102295696735382, - 0.021108683198690414, - -0.008654559962451458, - 0.05736444517970085, - 0.019816575571894646, - -0.015313390642404556, - -0.0007428017561323941, - 0.0014544202713295817, - 0.05454995483160019, - 0.0013680665288120508, - 0.012383760884404182, - -0.020315509289503098, - -0.0235137939453125, - -0.04689965769648552, - -0.0265329759567976, - 0.018358157947659492, - -0.04902331903576851, - 0.005728129297494888, - -0.002739331452175975, - 0.02094237320125103, - -0.005942414049059153, - -0.007503177504986525, - 0.04503185674548149, - 0.04109157249331474, - 0.013112969696521759, - -0.007765437010675669, - -0.017488224431872368, - 0.040119290351867676, - 0.00995946116745472, - 0.008692939765751362, - 0.0013832583790645003, - 0.018012743443250656, - 0.008136438205838203, - -0.03313423693180084, - 0.002190825529396534, - 0.014059662818908691, - -0.0444689616560936, - 0.01041361689567566, - -0.03720245510339737, - 0.04219178110361099, - 0.01913853920996189, - 0.00183101836591959, - 0.004458409734070301, - -0.0017814449965953827, - 0.007279297336935997, - -0.002884853398427367, - -0.0080980584025383, - 0.00497973058372736, - -0.019176919013261795, - -0.02266944758594036, - 0.016106564551591873, - -0.02801698073744774, - 0.025803767144680023, - -0.005082075484097004, - -0.01728353463113308, - -0.11483123898506165, - -0.005379516165703535, - -0.032468993216753006, - 0.028810154646635056, - -0.02627711370587349, - -0.034336790442466736, - -0.02988477796316147, - -0.0035916746128350496, - 0.03950522094964981, - 0.029270708560943604, - -0.0057952930219471455, - -0.042933784425258636, - 0.04052867367863655, - -0.04753931239247322, - 0.026865597814321518, - 0.0026593743823468685, - 0.0208144411444664, - -0.017808053642511368, - 0.003084746189415455, - 0.016400806605815887, - -0.03108733333647251, - 0.04810221120715141, - -0.006997848395258188, - -0.020609751343727112, - -0.015646012499928474, - -0.005913629662245512, - 0.004915764555335045, - -0.011545809917151928, - 0.026967942714691162, - 0.009140700101852417, - -0.002692956244572997, - -0.01643918640911579, - -0.0018646003445610404, - 0.025982869789004326, - -0.021569237112998962, - -0.008571404963731766, - 0.029321881011128426, - -0.023552173748612404, - 0.053731195628643036, - -0.035181138664484024, - 0.02423021011054516, - -0.01792319118976593, - 0.013151349499821663, - -0.0003795964876189828, - -0.04459689185023308, - 0.030729126185178757, - -0.016017014160752296, - -0.015518080443143845, - 0.0721021443605423, - -0.014302732422947884, - -0.010426410473883152, - -0.03364596143364906, - 0.010503169149160385, - -0.011193999089300632, - 0.005401904229074717, - 0.0082579730078578, - -0.008462662808597088, - 0.011091654188930988, - 0.043394334614276886, - 0.005718534346669912, - 0.027837876230478287, - -0.016669463366270065, - 0.036460451781749725, - -0.01656711846590042, - 0.016682256013154984, - -0.008021299727261066, - 0.010515962727367878, - -0.011289947666227818, - -0.0101769445464015, - 0.0060767424292862415, - 0.018972229212522507, - 0.06263522058725357, - 0.016592703759670258, - 0.021825099363923073, - 0.01933043636381626, - 0.008270765654742718, - -0.02627711370587349, - -0.03876321762800217, - -0.008737715892493725, - -0.013253694400191307, - -0.03474617376923561, - 0.020072439685463905, - -0.0059008365496993065, - -0.030242986977100372, - 0.03426003456115723, - 0.028170498088002205, - 0.015147079713642597, - -0.012377364560961723, - 0.00013772616512142122, - -0.002798499772325158, - -0.04093805328011513, - -0.04851159453392029, - -0.022912517189979553, - -0.012063932605087757, - 0.01926647126674652, - 0.002544236136600375, - -0.032289888709783554, - 0.0017174793174490333, - -0.11923208087682724, - -0.04897214472293854, - 0.02480590157210827, - -0.021351752802729607, - 0.008200403302907944, - -0.0037355972453951836, - 0.06161177158355713, - 0.03451589494943619, - -0.014187593944370747, - -0.050021182745695114, - -0.003630053950473666, - -0.007918954826891422, - -0.013356040231883526, - 0.009863512590527534, - 0.026865597814321518, - 0.008955199271440506, - 0.029859192669391632, - 0.0012993034906685352, - 0.05286126211285591, - 0.008840060792863369, - 0.002539438661187887, - -0.02704470045864582, - 0.024716349318623543, - -0.006588467862457037, - -0.018844297155737877, - -0.003940287511795759, - -0.0224135834723711, - -0.0002260788023704663, - 0.015556460246443748, - 0.03134319558739662, - -0.0008015703060664237, - 0.010931739583611488, - -0.011616172268986702, - -0.006614054087549448, - -0.02100633829832077, - 0.01120679173618555, - 0.02011081948876381, - 0.013420005328953266, - 0.005827276036143303, - -0.007643902208656073, - 0.004771841689944267, - 0.034720584750175476, - 0.005446679890155792, - 0.005117256660014391, - -0.0013392820255830884, - 0.0181150883436203, - -0.01734749972820282, - 0.02883574180305004, - -0.019176919013261795, - 0.03991460055112839, - 0.01020892709493637, - -0.05211925879120827, - 0.007611919194459915, - -0.025023385882377625, - 0.03512996807694435, - 0.033313341438770294, - -0.022004203870892525, - 0.001978139625862241, - -0.011456258594989777, - -0.020085232332348824, - 0.04137301817536354, - 0.01172491442412138, - 0.030729126185178757, - -0.02883574180305004, - -0.013189729303121567, - -0.0019093763548880816, - 0.00018829904729500413, - -0.0222344808280468, - -0.005219601560384035, - 0.03571845218539238, - 0.0032286690548062325, - 0.002321955282241106, - 0.01150103472173214, - 0.0046311174519360065, - -0.0009930676314979792, - 0.02153085730969906, - 0.0029696079436689615, - -0.03505320847034454, - 0.025739800184965134, - -0.035564932972192764, - 0.01579952985048294, - 0.053680021315813065, - -0.006297423969954252, - 0.04193591699004173, - 0.021172650158405304, - -0.013573523610830307, - -0.007989317178726196, - 0.00412578834220767, - 0.02466517686843872, - 0.052144844084978104, - 0.025036178529262543, - 0.008232386782765388, - -0.022080961614847183, - -0.034464724361896515, - 0.00613750983029604, - 0.015978634357452393, - 0.012025552801787853, - -0.014891216531395912, - 0.016784600913524628, - -0.01837095059454441, - 0.02988477796316147, - 0.019765403121709824, - -0.007458401378244162, - -0.00790616124868393, - -0.011936001479625702, - 0.04697641730308533, - 0.040631018579006195, - -0.0066716233268380165, - -0.008200403302907944, - -0.0011225981870666146, - -0.023155586794018745, - 0.005542628467082977, - 0.0505073219537735, - 0.028221670538187027, - -0.031957268714904785, - -0.012057536281645298, - 0.008219593204557896, - -0.03039650432765484, - -0.02062254399061203, - -0.007074607070535421, - -0.0023363474756479263, - 0.025931697338819504, - -0.021569237112998962, - -0.003383785951882601, - -0.0052164033986628056, - -0.0003320219984743744, - 0.03487410396337509, - 0.01689974032342434, - -0.03134319558739662, - -0.014622560702264309, - 0.018780332058668137, - 0.01952233351767063, - -0.04595296457409859, - 0.0026609734632074833, - -0.014865630306303501, - -0.028221670538187027, - 0.013151349499821663, - 0.0084178876131773, - -0.014763285405933857, - 0.004256918095052242, - -0.021799514070153236, - -0.00283528002910316, - -0.04787193611264229, - -0.030166227370500565, - 0.03597431257367134, - 0.011328326538205147, - -0.01714280992746353, - -0.019228091463446617, - -0.006665227003395557, - -0.05063525587320328, - 0.04643910378217697, - 0.013112969696521759, - 0.00347013957798481, - 0.020955165848135948, - -0.06156059727072716, - 0.019867748022079468, - -0.018524469807744026, - -0.04336874932050705, - -0.024447694420814514, - 0.006009578239172697, - -0.004001054912805557, - 0.03129202499985695, - 0.010074598714709282, - -0.019509540870785713, - -0.00318069476634264, - 0.006997848395258188, - -0.01082299742847681, - 0.00613750983029604, - 0.050200287252664566, - -0.03203402832150459, - -0.02357775904238224, - -0.023846415802836418, - -0.008558611385524273, - 0.03078029863536358, - 0.027249392122030258, - 0.006831537466496229, - 0.01484004408121109, - -0.021684374660253525, - -0.036076657474040985, - 0.02518969587981701, - -0.014059662818908691, - 0.0016327246557921171, - -0.0168357752263546, - 0.002870461205020547, - 0.016170531511306763, - -0.009326200000941753, - -0.008321939036250114, - 0.014520215801894665, - -0.0021796314977109432, - -0.0038571322802454233, - 0.0208144411444664, - 0.029628915712237358, - 0.0078677823767066, - 0.028733396902680397, - -0.007112986873835325, - -0.0010858179302886128, - 0.008692939765751362, - -0.0017670526867732406, - 0.01156499981880188, - -0.004061822313815355, - 0.02410227805376053, - -0.01587628945708275, - 0.02518969587981701, - 0.017897605895996094, - -0.016157737001776695, - 0.01464814692735672, - 0.02474193647503853, - -0.007560746744275093, - -0.01869077980518341, - 0.01371424738317728, - 0.02312999963760376, - 0.0059967851266264915, - 0.00470787612721324, - 0.015364563092589378, - -0.04838366061449051, - 0.02512573078274727, - -0.03231547400355339, - -0.015569252893328667, - -0.011929604224860668, - -0.02660973370075226, - -0.007675884757190943, - -0.01715560257434845, - 0.009108716621994972, - -0.012985038571059704, - 0.003498924197629094, - 0.05843907222151756, - 0.01426435261964798, - -0.012089518830180168, - -0.02041785418987274, - -0.0030367719009518623, - -0.023360276594758034, - 0.009466924704611301, - -0.0192152988165617, - -0.010228116996586323, - 0.01626008376479149, - 0.0029983925633132458, - 0.03891673684120178, - 0.021735547110438347, - 0.009294217452406883, - -0.028733396902680397, - 0.008904026821255684, - -0.013240901753306389, - 0.025611869990825653, - -0.021863479167222977, - 0.025266455486416817, - -0.03477175906300545, - 0.02806815318763256, - -0.004247323144227266, - 0.0014680130407214165, - 0.012479709461331367, - 0.00312472484074533, - 0.0026993528008461, - -0.028605464845895767, - -0.0015399744734168053, - 0.026865597814321518, - 0.003604467725381255, - 0.0028432756662368774, - 0.008520232513546944, - -0.0024818694218993187, - -0.01752660423517227, - 0.02472914196550846, - 0.027607599273324013, - 0.0005253183771856129, - -0.0008483452256768942, - -0.019381608814001083, - 0.008238783106207848, - -0.021569237112998962, - -0.007285694126039743, - 0.023347483947873116, - -0.026481803506612778, - 0.007854988798499107, - -0.006773968692868948, - -0.02921953611075878, - -0.004813419654965401, - -0.006502114236354828, - -0.03108733333647251, - -0.00010334459511796013, - -0.005497852806001902, - 0.016349634155631065, - -0.047053173184394836, - -0.015889082103967667, - -0.008213196881115437, - 0.01624728925526142, - 0.03548817336559296, - -0.009543683379888535, - -0.02054578624665737, - -0.0059008365496993065, - -0.020571371540427208, - -0.00389551161788404, - -0.018933849409222603, - 0.03326216712594032, - -0.006652433425188065, - 0.0353090725839138, - -0.053680021315813065, - 0.006140707992017269, - -0.0031215264461934566, - -0.020200369879603386, - -0.004621522501111031, - -0.010362444445490837, - -0.043854888528585434, - 0.0033390100579708815, - -0.01952233351767063, - -0.004755850415676832, - 0.008718525990843773, - 0.013970110565423965, - -0.008309145458042622, - -0.003949882462620735, - -0.0235137939453125, - 0.0028416765853762627, - -0.0015679594362154603, - -0.012965848669409752, - 0.0022356014233082533, - 0.04260116070508957, - 0.014149214141070843, - -0.023872002959251404, - 0.03418327495455742, - 0.03553934767842293, - 0.003017582232132554, - -0.013675868511199951, - 0.02467796951532364, - -0.005299558863043785, - -0.009230251424014568, - 0.015786737203598022, - 0.022899722680449486, - 0.0060511562041938305, - -0.03418327495455742, - -0.02055857889354229, - -0.002403511432930827, - 0.018089503049850464, - 0.012588451616466045, - -0.0029903969261795282, - 0.005414697341620922, - -0.008200403302907944, - -0.019944507628679276, - -0.027479669079184532, - 0.02717263251543045, - -0.018729159608483315, - 0.004061822313815355, - 0.004602332599461079, - -0.007010641507804394, - 0.04029839485883713, - 0.005101265385746956, - -0.015326183289289474, - 0.004170564003288746, - 0.014213180169463158, - -0.007157762534916401, - -0.018012743443250656, - 0.014660940505564213, - 0.025803767144680023, - 0.012786745093762875, - 0.07066931575536728, - 0.008999975398182869, - -0.041142743080854416, - 0.03804680332541466, - 0.05987190082669258, - 0.0074328151531517506, - 0.009876305237412453, - 0.005280368961393833, - -0.007854988798499107, - -0.027633186429739, - -0.0314711295068264, - 0.01310017704963684, - 0.03525789827108383, - -0.009492510929703712, - 0.0012161480262875557, - -0.005836870986968279, - -0.0005169228534214199, - -0.01063110027462244, - 0.020136404782533646, - 0.02929629385471344, - 0.0323922336101532, - 0.02311720699071884, - -0.014277146197855473, - 0.008904026821255684, - 0.023181172087788582, - -0.01227501966059208, - 0.020903993397951126, - -0.034413550049066544, - -0.0014912005281075835, - 0.04503185674548149, - -0.013560730032622814, - -0.023552173748612404, - 0.055726923048496246, - 0.005964802112430334, - -0.0489465594291687, - -0.00010364443733124062, - -0.01586349494755268, - -0.04137301817536354, - 0.005465869791805744, - 0.023692898452281952, - -0.012773951515555382, - -0.0065308986231684685, - -0.011462654918432236, - -0.017999950796365738, - -0.0034317602403461933, - 0.033492445945739746, - 0.03461823984980583, - 0.017066050320863724, - -0.028963671997189522, - -0.01560763269662857, - 0.024498866870999336, - 0.0067163994535803795, - -0.03548817336559296, - -0.029066016897559166, - -0.017130017280578613, - -0.03203402832150459, - -0.010279289446771145, - 0.02776111662387848, - -0.017040465027093887, - -0.004448814783245325, - -0.023744070902466774, - 0.01894664205610752, - -0.0013560729566961527, - 0.011833655647933483, - 0.007138573098927736, - 0.022183308377861977, - 0.008149230852723122, - -0.011168412864208221, - -0.007554349955171347, - 0.006370984483510256, - -0.038123562932014465, - 0.00982513278722763, - 0.019752610474824905, - 0.019995680078864098, - -0.019356023520231247, - -0.028758982196450233, - 0.005833672359585762, - -0.024370934814214706, - -0.016605498269200325, - -0.03141995519399643, - -0.0057856980711221695, - -0.009658821858465672, - -0.06534736603498459, - 0.023219551891088486, - -0.030242986977100372, - 0.00685712369158864, - 0.027147047221660614, - -0.006063949316740036, - -0.00928142387419939, - 0.018729159608483315, - 0.014763285405933857, - 0.0019333634991198778, - 0.032801613211631775, - -0.0012593248393386602, - 0.008737715892493725, - -0.0066012609750032425, - -0.008923216722905636, - -0.01991892233490944, - -0.05173546448349953, - -0.00520680844783783, - -0.00206449325196445, - 0.017884811386466026, - 0.03443913534283638, - 0.001653513521887362, - -0.02466517686843872, - -0.003569286549463868, - 0.00822599045932293, - -0.00908952672034502, - 0.007554349955171347, - 0.04723227769136429, - 3.5231112178735202e-06, - -0.01330486685037613, - 0.015620426274836063, - -0.008718525990843773, - -0.004228133242577314, - 0.01015135832130909, - 0.008622577413916588, - -0.009044751524925232, - 0.00014672134420834482, - 0.011705724522471428, - -0.011974380351603031, - -0.009997840039432049, - 0.02016199193894863, - 0.0010890162084251642, - -0.009115112945437431, - 0.005529835354536772, - -0.019483955577015877, - 0.007695074658840895, - -0.0340297557413578, - -0.009556476958096027, - 0.01246691681444645, - 0.03198285400867462, - -0.01933043636381626, - -0.012837917543947697, - 0.008181214332580566, - -0.01606818661093712, - -0.010829394683241844, - 0.012415744364261627, - -0.001754259574227035, - 0.024498866870999336, - -0.015697184950113297, - -0.003209479385986924, - -0.013189729303121567, - 0.017628949135541916, - 0.03052443638443947, - 0.015850702300667763, - 0.0173347070813179, - -0.03052443638443947, - -0.011347516439855099, - -0.011443465016782284, - 0.014686526730656624, - -0.012441330589354038, - 0.008277162909507751, - -0.013675868511199951, - -0.0257525946944952, - -0.0295521579682827, - -0.00017410666623618454, - -0.024358142167329788, - 0.014788871631026268, - -0.040042534470558167, - 0.006793158128857613, - -0.010343254543840885, - -0.0007200139807537198, - -0.014507422223687172, - 0.009569269604980946, - -0.007976523600518703, - 0.0015687589766457677, - -0.006303820293396711, - 0.012166277505457401, - 0.016554325819015503, - -0.008270765654742718, - -0.015773942694067955, - -0.014571388252079487, - 0.003905106568709016, - 0.005427490454167128, - -0.00312472484074533, - 0.02234961837530136, - 0.030089469626545906, - -0.036844246089458466, - -0.007068210747092962, - -0.025036178529262543, - 0.020673716440796852, - -0.01236457098275423, - -0.015850702300667763, - -0.027223804965615273, - 0.028861327096819878, - 0.02396155335009098, - -0.021889064460992813, - 0.04001694545149803, - -0.03136878460645676, - -0.0444689616560936, - -0.0058912415988743305, - 0.01626008376479149, - -0.01441787090152502, - 0.03108733333647251, - -0.03477175906300545, - -0.02627711370587349, - -0.0036492436192929745, - -0.001041841460391879, - 0.0111172404140234, - 0.009102320298552513, - -0.022695032879710197, - 0.012837917543947697, - -0.02087840624153614, - -0.04452013224363327, - -0.007010641507804394, - 0.0105671351775527, - 0.03400417044758797, - 0.01592746190726757, - 0.0028816552367061377, - -0.031829334795475006, - -0.020788855850696564, - 0.01352235022932291, - -0.03282720223069191, - -0.011232377961277962, - -0.007637505419552326, - -0.01233898475766182, - 0.01895943656563759, - 0.01191041525453329, - 0.017692914232611656, - -0.0036236573942005634, - 0.004768643528223038, - 0.013381626456975937, - -0.01211510505527258, - -0.0019957299809902906, - 0.015338976867496967, - 0.00171428092289716, - -0.0037707784213125706, - -0.0014632155653089285, - 0.002636986318975687, - 0.00165831099729985, - -0.014494629576802254, - -0.02298927493393421, - 0.026481803506612778, - -0.001861402066424489, - -0.018677987158298492, - -0.018140675500035286, - -0.012869900092482567, - -0.026059629395604134, - -0.0019349626963958144, - -0.010432806797325611, - 0.01082299742847681, - -0.002373127732425928, - 0.022950895130634308, - 0.005126851610839367, - -0.030933815985918045, - 0.03374830633401871, - -0.026814425364136696, - -0.0222344808280468, - -0.005747318733483553, - -0.007170555647462606, - 0.013637488707900047, - -0.00720893545076251, - -0.0034669414162635803, - -0.009102320298552513, - -0.013483971357345581, - 0.009172682650387287, - -0.020955165848135948, - -0.0170148778706789, - -0.02236241102218628, - -0.02041785418987274, - 0.005293162539601326, - 0.003214276861399412, - -0.013080987147986889, - 9.74477588897571e-05, - 0.02215772122144699, - 0.0017574578523635864, - 0.006390174385160208, - -0.0017478630179539323, - -0.020891200751066208, - 0.012831521220505238, - -0.03259692341089249, - -0.01805112324655056, - 0.0007887771353125572, - -0.015722770243883133, - -0.0020453035831451416, - -0.00999144371598959, - -0.01420038752257824, - 0.015978634357452393, - -0.01984216272830963, - 0.003447751747444272, - -0.015044734813272953, - 0.0007080204086378217, - -0.016669463366270065, - 0.014533008448779583, - -0.00682514114305377, - -0.03415768966078758, - 0.027991393581032753, - 0.02712146006524563, - 0.02921953611075878, - 0.026942355558276176, - 0.017692914232611656, - 0.006307018920779228, - -0.010138564743101597, - 0.01714280992746353, - -0.003604467725381255, - 0.00037220047670416534, - 0.022400790825486183, - -0.00231236033141613, - -0.00979954656213522, - -0.003049565013498068, - -0.005494654178619385, - 0.016029806807637215, - -0.01792319118976593, - 0.009933874011039734, - 0.01965026557445526, - -0.0026865596882998943, - 0.015095907263457775, - -0.0238336231559515, - -0.012134294956922531, - -0.014110835269093513, - 0.010445600375533104, - -0.004682289902120829, - -0.030089469626545906, - 0.017974363639950752, - 0.012383760884404182, - 0.008891233243048191, - -0.02819608338177204, - -0.012185467407107353, - 0.018601227551698685, - 0.02011081948876381, - -0.006534097250550985, - 0.03461823984980583, - -0.020034059882164, - 0.02325793169438839, - -0.009626839309930801, - 0.0016263280995190144, - -0.005075679160654545, - 0.024754729121923447, - -0.0067867618054151535, - 0.05127491056919098, - 0.015172665938735008, - 0.029014844447374344, - -0.047027587890625, - 0.02017478458583355, - -0.000596880039665848, - 0.0027265383396297693, - -0.01155860349535942, - 0.009044751524925232, - 0.005609792657196522, - 0.011609775945544243, - 0.008494646288454533, - 0.008788888342678547, - 0.007579936180263758, - 0.010343254543840885, - 0.0004293698293622583, - 0.012370968237519264, - 0.00575051736086607, - 0.010733446106314659, - 0.0173347070813179, - 0.0416288822889328, - 0.014750491827726364, - -0.0265329759567976, - 0.002248394535854459, - -0.005149239674210548, - -0.027454081922769547, - 0.018025536090135574, - 0.021940236911177635, - 0.014136421494185925, - 0.02075047604739666, - -0.005708939395844936, - 0.017449844628572464, - 0.008187610656023026, - -0.022503135725855827, - -0.016298461705446243, - 0.005539430305361748, - 0.009479718282818794, - -0.03231547400355339, - -0.01252448558807373, - 0.005232395138591528, - -0.013791006989777088, - 0.01908736675977707, - 0.04329198971390724, - 0.012646020390093327, - 0.005737723782658577, - -0.03193167969584465, - -0.01695091277360916, - -0.0011777685722336173, - -0.029449811205267906, - 0.016208911314606667, - 0.031112920492887497, - -0.01624728925526142, - 0.014904010109603405, - -0.03891673684120178, - 0.018089503049850464, - 0.006150302942842245, - -0.029475398361682892, - -0.035948727279901505, - 0.03198285400867462 - ], - "how_to_create_assembling_machines": [ - -0.007545278873294592, - 0.0006400335114449263, - 0.022225061431527138, - -0.03862721472978592, - -0.007069645449519157, - 0.012957412749528885, - 0.020927879959344864, - -0.019400086253881454, - 0.010773822665214539, - -0.027053464204072952, - 0.03150712326169014, - -0.04378712177276611, - 0.0017728162929415703, - -0.015854453667998314, - 0.016647176817059517, - -0.023291634395718575, - 0.01591210626065731, - 0.017901120707392693, - 0.026448111981153488, - 0.008424480445683002, - 0.03831012547016144, - 0.014744642190635204, - 0.03995322436094284, - -0.013526732102036476, - -0.03848308324813843, - 0.012034972198307514, - 0.01576797477900982, - 0.028365060687065125, - -0.051743172109127045, - -0.042403459548950195, - 0.017742576077580452, - -0.02304661087691784, - -0.03418796882033348, - 0.01378616876900196, - -0.0058337184600532055, - -8.799897477729246e-05, - 0.0064534833654761314, - 0.034130316227674484, - 0.015407647006213665, - 0.013620417565107346, - 0.029748721048235893, - -0.028480365872383118, - -0.01794436015188694, - -0.015840040519833565, - -0.027139943093061447, - 0.020567551255226135, - -0.05318448692560196, - 0.0080569451674819, - 0.0008521769195795059, - 0.0034357323311269283, - 0.01896769180893898, - 0.026981398463249207, - -0.015436473302543163, - -0.054769933223724365, - -0.025871586054563522, - -0.04194223880767822, - -0.03332317993044853, - -0.005455373786389828, - -0.008604644797742367, - 0.004904070869088173, - 0.03634994104504585, - -0.006788589060306549, - 0.04727509990334511, - 0.04260524362325668, - -0.01928478106856346, - -0.002576348837465048, - -0.03975144028663635, - 0.016214782372117043, - 0.04093331843614578, - 0.009743282571434975, - -0.024848254397511482, - 0.00622647674754262, - -0.00500135961920023, - -0.03845425695180893, - 0.023997878655791283, - -0.06387903541326523, - -0.0029637019615620375, - 0.02689491957426071, - -0.04658326879143715, - 0.04352768510580063, - -0.057133689522743225, - -0.015508539043366909, - 0.004918484017252922, - -0.031593602150678635, - -0.008885701186954975, - -0.033092569559812546, - -0.028883934020996094, - 0.010925160720944405, - -0.06059284135699272, - -0.059670399874448776, - -0.0338997058570385, - 0.0018484852043911815, - 0.012193516828119755, - 0.02523740939795971, - 0.07477537542581558, - -0.002012434648349881, - 0.003037569345906377, - -0.012006145901978016, - -0.0017412875313311815, - 0.015537365339696407, - 0.049350593239068985, - -0.02369520254433155, - -0.022484498098492622, - -0.03266017511487007, - 0.012222343124449253, - 0.009455019608139992, - -0.015566191636025906, - -0.01337539404630661, - -0.07806156575679779, - -0.03793538361787796, - -0.07483302801847458, - 0.010197296738624573, - 0.010658517479896545, - 0.0043671815656125546, - 0.019904546439647675, - -0.008244316093623638, - 0.03660937771201134, - 0.02605895698070526, - 0.04133688658475876, - -0.00741556053981185, - -0.00957753136754036, - 0.009851381182670593, - 0.008784809149801731, - -0.021706189960241318, - -0.01387985423207283, - -0.01729576848447323, - 0.0371859036386013, - -0.047505710273981094, - -0.0279182530939579, - 0.011919667012989521, - -0.0063237654976546764, - 0.004745526239275932, - 0.034966278821229935, - 0.0003619049384724349, - -0.013728516176342964, - 0.010975606739521027, - -0.03660937771201134, - -0.010110817849636078, - -0.002624993212521076, - 0.027990318834781647, - -0.010017132386565208, - -0.021244969218969345, - -0.022960131987929344, - 0.012654737569391727, - -0.023406939581036568, - 0.04442129656672478, - -0.01829027570784092, - -0.012914173305034637, - 0.027831774204969406, - -0.0007638964452780783, - -0.0033186255022883415, - -0.010442320257425308, - -0.030382899567484856, - -0.03315022215247154, - 0.032429564744234085, - -0.02506445161998272, - -0.02827858179807663, - 0.05378983914852142, - 0.010781029239296913, - -0.03127651289105415, - -0.00219980557449162, - -0.03467801585793495, - -0.020264875143766403, - 0.01777140237390995, - -0.05131077766418457, - 0.006511135958135128, - -0.03880017250776291, - 0.01742548681795597, - -0.0422881543636322, - 0.0186361912637949, - 0.006046312395483255, - -0.02084140107035637, - -0.020236048847436905, - 0.01573914848268032, - 0.0161138903349638, - -0.014917599968612194, - -0.0864211916923523, - -0.03816599398851395, - -0.022945718839764595, - -0.0033636665903031826, - 0.01878032088279724, - -0.013649243861436844, - -0.024776188656687737, - -0.04652561619877815, - -0.01329612173140049, - -0.013757342472672462, - -0.026822853833436966, - 0.006586804986000061, - 0.004983343183994293, - 0.04811106249690056, - -0.019573044031858444, - 0.01594093255698681, - -0.030584683641791344, - 0.02353665791451931, - 0.00741556053981185, - -0.006929117254912853, - 0.0474192313849926, - -0.02454557828605175, - 0.10250625014305115, - -0.020394593477249146, - 0.010961193591356277, - 0.004832005128264427, - 0.01279166154563427, - -0.011307108215987682, - -0.013015065342187881, - -0.01896769180893898, - -0.044796038419008255, - 0.028855107724666595, - 0.02440144680440426, - -0.0025078863836824894, - 0.009296475909650326, - -0.03998205065727234, - 0.034274447709321976, - 0.03975144028663635, - -0.0160850640386343, - 0.006738143041729927, - -0.01448520552366972, - 0.054625801742076874, - 0.0015431068604812026, - -0.014355488121509552, - -0.028912760317325592, - 0.04813988879323006, - 0.04384477436542511, - 0.026131022721529007, - -0.0003632561711128801, - 0.04419068992137909, - 0.0194721519947052, - -0.04251876473426819, - 0.08815076947212219, - 0.020034264773130417, - -0.009966686367988586, - -0.022657455876469612, - -0.002774529391899705, - -0.008179456926882267, - -0.01728135533630848, - 0.010701756924390793, - -0.018737081438302994, - 0.00856140535324812, - -0.03499510511755943, - 0.03415914252400398, - -0.00982976146042347, - -0.015220276080071926, - 0.020250461995601654, - -0.008820842020213604, - 0.01859295181930065, - 0.005469786934554577, - -0.02457440458238125, - -0.047476883977651596, - 0.015796801075339317, - 0.005923800636082888, - 0.03865604102611542, - -0.01150889229029417, - 0.023666376248002052, - 0.03170890733599663, - -0.028336234390735626, - -0.04266289621591568, - -0.05491406470537186, - -0.01624360866844654, - 0.04713096842169762, - -0.007296652067452669, - -0.03856956213712692, - 0.05015772953629494, - -0.09207113832235336, - 0.0371859036386013, - 0.02490590699017048, - 0.021461166441440582, - 0.031737733632326126, - -0.002722281962633133, - 0.012856520712375641, - -0.05978570505976677, - -0.016676003113389015, - 0.04372946918010712, - 0.05182965099811554, - -0.022743934765458107, - -0.05603829026222229, - -0.020365767180919647, - 0.00013782565656583756, - 0.047476883977651596, - 0.031737733632326126, - -0.01066572405397892, - -0.06410964578390121, - -0.02643369883298874, - 0.04519960656762123, - 0.09529968351125717, - -0.023666376248002052, - 0.02744261920452118, - -0.010723376646637917, - 0.0019457739545032382, - 0.01346907950937748, - 0.02418524958193302, - 0.008828048594295979, - 0.028177689760923386, - -0.0060859485529363155, - 0.006903894245624542, - 0.036494072526693344, - -0.009541498497128487, - -0.0033132205717265606, - 0.005513026379048824, - 0.012431333772838116, - 0.005887767765671015, - 0.02659224346280098, - 0.053933970630168915, - 0.029388392344117165, - 0.06059284135699272, - -0.023075437173247337, - -0.02724083513021469, - -0.03609050437808037, - -0.039549656212329865, - 0.03064233623445034, - 0.008647884242236614, - 0.020063091069459915, - 0.00566796725615859, - 0.029575763270258904, - -0.028004731982946396, - 0.028667736798524857, - -0.010391874238848686, - 0.024430273100733757, - -0.01429062895476818, - -0.012164690531790257, - -0.050215382128953934, - 0.00482840184122324, - -0.03381322696805, - 0.04018383473157883, - -0.04534373804926872, - -0.009887414053082466, - -0.021807081997394562, - 0.005855338182300329, - -0.003060990711674094, - -0.033957358449697495, - 0.007581311743706465, - -0.026347219944000244, - -0.01661835052073002, - 0.004673460964113474, - -0.03415914252400398, - 0.01896769180893898, - 0.00794884655624628, - 0.041913412511348724, - 0.030728815123438835, - 0.04485369101166725, - 0.033784400671720505, - -0.030872946605086327, - -0.02319074235856533, - -0.02607337012887001, - 0.03271782770752907, - -0.03188186511397362, - -0.018232623115181923, - 0.00013850127288606018, - 0.003286195918917656, - 0.023608723655343056, - 0.04381594806909561, - 0.014773468486964703, - 0.00871994998306036, - -0.01641656644642353, - -0.0160850640386343, - -0.02591482549905777, - -0.01194849330931902, - -0.003945596981793642, - 0.04329707473516464, - -0.009476639330387115, - -0.001039547729305923, - -0.021115250885486603, - 0.09558794647455215, - 0.023133089765906334, - 0.03369792178273201, - 0.017180463299155235, - 0.052233219146728516, - -0.007062438875436783, - 0.04992711916565895, - -0.020077504217624664, - 0.05096486583352089, - 0.04759218916296959, - 0.031017078086733818, - 0.008539785631000996, - 0.011595371179282665, - -0.056989558041095734, - -0.013944713398814201, - 0.012229549698531628, - 0.02898482419550419, - 0.018564125522971153, - 0.013778962194919586, - 0.0473615787923336, - -0.032948438078165054, - 0.034476231783628464, - -0.020942293107509613, - 0.009087485261261463, - 0.01627243496477604, - 0.004511313047260046, - 0.06624279171228409, - -0.06491678208112717, - -0.05667246878147125, - 0.04825519397854805, - -0.06728053838014603, - 0.029186608269810677, - 0.017857881262898445, - 0.00597424665465951, - -0.008006499148905277, - 0.04349885880947113, - -0.013332154601812363, - 0.010536005720496178, - 0.04335472732782364, - 0.02827858179807663, - 0.0014710411196574569, - -0.007285842206329107, - 0.004976136609911919, - -0.012755629606544971, - 0.0009674820466898382, - -0.004104141611605883, - 0.0018719065701588988, - 0.031103556975722313, - -0.009361335076391697, - 0.0796181857585907, - -0.05399162322282791, - 0.03831012547016144, - -0.011890840716660023, - -0.028134450316429138, - -0.04793810471892357, - -0.007019199430942535, - 0.0029042477253824472, - -0.022974545136094093, - 0.01533558126538992, - -0.040068529546260834, - -0.023954639211297035, - 0.01296461932361126, - -0.018002012744545937, - -0.0013575376942753792, - 0.01573914848268032, - 0.035283368080854416, - -0.023623136803507805, - 0.028019145131111145, - -0.03335200622677803, - -0.018665017560124397, - 0.01372130960226059, - 0.037502989172935486, - 0.0694136843085289, - 0.026678722351789474, - 0.012063798494637012, - -0.049696508795022964, - -0.031103556975722313, - -0.012986239045858383, - 0.011415206827223301, - 0.03237191215157509, - 0.0019998231437057257, - 0.024776188656687737, - 0.026707548648118973, - -0.05151256173849106, - -0.013995159417390823, - -0.06116936728358269, - -0.011047672480344772, - -0.030411725863814354, - -0.018578538671135902, - 0.02796149253845215, - -0.009692836552858353, - -0.008402860723435879, - 0.053098008036613464, - 0.0002981718280352652, - 0.02369520254433155, - 0.07863809168338776, - -0.021922387182712555, - 0.02079816162586212, - 0.018247036263346672, - 0.03254486992955208, - 0.027384966611862183, - -0.027327314019203186, - 0.00319431209936738, - -0.018376754596829414, - 0.03271782770752907, - -0.020942293107509613, - 0.025439193472266197, - 0.026621069759130478, - 0.0018574934219941497, - -0.02339252643287182, - -0.06232241913676262, - 0.0008913626661524177, - -0.0015836438396945596, - -0.013425840064883232, - -0.018564125522971153, - -0.022729521617293358, - 0.03957848250865936, - -0.011213422752916813, - -0.05304035544395447, - -0.031218862161040306, - 0.00432033883407712, - 0.002129541477188468, - 0.009930653497576714, - 0.009325302205979824, - 0.06191885098814964, - -0.014009572565555573, - -0.03433210030198097, - -0.023262808099389076, - -0.0005706702941097319, - 0.013620417565107346, - 0.008193870075047016, - 0.042893506586551666, - -0.018203796818852425, - 0.042086370289325714, - -0.043931253254413605, - -0.06336016207933426, - -0.03978026658296585, - -0.014679783023893833, - 0.006042709108442068, - 0.023608723655343056, - -0.015018492005765438, - 0.014002365991473198, - 0.003605086822062731, - -0.023277221247553825, - -0.07010551542043686, - 0.006900290958583355, - 0.024271728470921516, - -0.01895327866077423, - -0.0110116396099329, - -0.007318271789699793, - 0.003291600849479437, - -0.003927580546587706, - 0.027168769389390945, - -0.007768682669848204, - 0.028004731982946396, - 0.00294028059579432, - 0.012892553582787514, - 0.028811868280172348, - 0.008417273871600628, - -0.0037762427236884832, - -0.03623463585972786, - -0.010118024423718452, - -0.01981806755065918, - 0.01726694218814373, - -0.036494072526693344, - -0.007624551188200712, - -0.008496546186506748, - -0.00724260276183486, - 0.013980746269226074, - 0.0008458711672574282, - -0.016531871631741524, - 0.028047971427440643, - 0.026015717536211014, - -0.046467963606119156, - 0.01878032088279724, - -0.037330035120248795, - -0.015998585149645805, - -0.028480365872383118, - -0.007674997206777334, - -0.007941639982163906, - 0.01759844459593296, - -0.008849668316543102, - 0.00949825905263424, - -0.0321701280772686, - 0.03487979993224144, - -0.011847601272165775, - -0.0014683386543765664, - 0.007826334796845913, - 0.023911399766802788, - 0.023464592173695564, - -0.04419068992137909, - -0.009123518131673336, - -0.03995322436094284, - -0.016330087557435036, - 0.01498966570943594, - 0.010853094980120659, - -0.02115849032998085, - -0.004590585362166166, - -0.004900467582046986, - 0.02894158475100994, - -0.015349994413554668, - -0.01777140237390995, - -0.004673460964113474, - 0.021792668849229813, - 0.03459153696894646, - 0.015076144598424435, - 0.007624551188200712, - 0.012914173305034637, - -0.005559868644922972, - -0.018852386623620987, - -0.017540792003273964, - 0.02356548421084881, - -0.017151637002825737, - -0.009757695719599724, - -0.014362694695591927, - 0.013987952843308449, - 0.007790302392095327, - 0.0035095997154712677, - -0.047995757311582565, - -0.019082996994256973, - -0.08348090946674347, - -0.01791553385555744, - 0.016027411445975304, - -0.04450777545571327, - 0.010982813313603401, - -0.03286195918917656, - 0.017007505521178246, - 0.010615278035402298, - -0.019356846809387207, - -0.008820842020213604, - 0.011638610623776913, - 0.023464592173695564, - -0.0186073649674654, - -0.012352061457931995, - 0.001998021500185132, - -0.02812003716826439, - 0.02169177681207657, - -0.008265935815870762, - 0.036465246230363846, - -0.0016962464433163404, - -0.010348634794354439, - -0.018347928300499916, - 0.013742929324507713, - -0.02728407457470894, - -0.026131022721529007, - -0.011883634142577648, - -0.002641208004206419, - -0.03782007843255997, - 0.004615808371454477, - -0.04199989140033722, - 0.04035679250955582, - 0.004518519621342421, - -0.016560697928071022, - -0.008727156557142735, - 0.0025835554115474224, - 0.008338001556694508, - 0.04661209508776665, - -0.010867508128285408, - -0.01660393737256527, - 0.005116664804518223, - 0.006817415356636047, - -0.006121981423348188, - 0.029042476788163185, - 0.01576797477900982, - 0.0036753506865352392, - 0.009447813034057617, - 0.019890133291482925, - -0.03421679511666298, - 0.004615808371454477, - -0.00749483285471797, - -0.0014773468719795346, - -0.006316558923572302, - -0.014535651542246342, - -0.0296622421592474, - 0.0118403946980834, - 0.04260524362325668, - -0.001989013282582164, - 0.0064282603561878204, - 0.021778255701065063, - 0.0007810120587237179, - -0.0032177334651350975, - 0.03756064176559448, - -0.024920320138335228, - 0.002235838444903493, - 0.07777330279350281, - 0.015465299598872662, - 0.018030839040875435, - 0.010197296738624573, - -0.04214402288198471, - 0.005545455496758223, - 0.00016327385674230754, - 0.024473512545228004, - -0.009627977386116982, - 0.013079924508929253, - -0.03113238327205181, - -0.030411725863814354, - -0.0728151872754097, - -0.011530512012541294, - 0.0003182151122018695, - -0.04338355362415314, - 0.0036483260337263346, - -0.01279166154563427, - 0.031103556975722313, - 0.0013926696265116334, - 0.004889657720923424, - 0.0011530512711033225, - 0.021792668849229813, - 0.04805340990424156, - 0.013915887102484703, - -0.011991732753813267, - -0.009455019608139992, - -0.01709398441016674, - -0.02017839625477791, - -0.019414499402046204, - -0.004046489018946886, - -0.0014169918140396476, - -0.0507630817592144, - 0.0016448996029794216, - 0.003967216704040766, - 0.0029637019615620375, - 0.011299901641905308, - -0.047822799533605576, - 0.05015772953629494, - 0.04027031362056732, - -0.009476639330387115, - 0.027341727167367935, - -0.009015419520437717, - 0.018391167744994164, - 0.010968400165438652, - 0.010312601923942566, - -0.005304035730659962, - 0.016315674409270287, - 0.0009485647897236049, - 0.02520858310163021, - -0.0006076039280742407, - 0.03257369622588158, - 0.006896687671542168, - -0.030354073271155357, - -0.06653105467557907, - 0.0015268920687958598, - -0.010009925812482834, - 0.038886651396751404, - 0.00024119489535223693, - -0.01430504210293293, - -0.038511909544467926, - -0.0035312194377183914, - 0.023824920877814293, - 0.004644634667783976, - 0.012979032471776009, - -0.02339252643287182, - 0.01338980719447136, - -0.035629283636808395, - 0.020365767180919647, - -0.042086370289325714, - 0.015292341820895672, - -0.01810290478169918, - -0.05716251581907272, - 0.022052105516195297, - -0.03116120956838131, - 0.010968400165438652, - 0.025280648842453957, - 0.009029832668602467, - -0.01378616876900196, - -0.012813281267881393, - -0.021720603108406067, - -0.016012998297810555, - 0.03519688919186592, - -0.004154587630182505, - 0.017872294411063194, - -0.00638862419873476, - 0.011898047290742397, - 0.037675946950912476, - 0.01243854034692049, - -0.010045958682894707, - 0.019400086253881454, - -0.03707059845328331, - 0.013195229694247246, - 0.002464646939188242, - -0.010276569053530693, - -0.03355379030108452, - -0.027327314019203186, - 0.014002365991473198, - 0.008222696371376514, - 0.021807081997394562, - 0.007934433408081532, - -0.012683563865721226, - 0.07425650209188461, - -0.022945718839764595, - 0.024819428101181984, - -0.024113183841109276, - 0.01338980719447136, - -0.011955699883401394, - 0.008900114335119724, - -0.005725619848817587, - -0.004950913600623608, - 0.044651906937360764, - -0.00015798152890056372, - 0.0035456325858831406, - 0.007127298042178154, - -0.01380058191716671, - 0.018347928300499916, - 0.009671216830611229, - -0.019169475883245468, - -0.02641928568482399, - -0.02287365309894085, - 0.010579245164990425, - -0.02914336882531643, - 0.034101489931344986, - 0.05384749174118042, - 0.05283857136964798, - -0.032083649188280106, - 0.0524638295173645, - 0.021043185144662857, - 0.0022592598106712103, - -0.01472302246838808, - 0.015969758853316307, - 0.0001267905900022015, - 0.011040465906262398, - -0.0457473061978817, - 0.007624551188200712, - 0.02605895698070526, - 0.008770396001636982, - 0.045314911752939224, - 0.03366909548640251, - 0.003396096173673868, - 0.0017016513738781214, - 0.04442129656672478, - 0.004035679157823324, - -0.02000543847680092, - -0.01729576848447323, - -0.012582671828567982, - 0.012899760156869888, - 0.017526378855109215, - 0.01607065089046955, - -0.0422881543636322, - -0.005678777117282152, - -0.11432503163814545, - -0.031766559928655624, - 0.009411780163645744, - -0.010110817849636078, - -0.013987952843308449, - 0.01270518358796835, - 0.04202871769666672, - 0.014103258028626442, - 0.005826511885970831, - -0.039520829916000366, - 0.016964266076683998, - -0.019746001809835434, - -0.048024583607912064, - 0.0004796873254235834, - 0.029921678826212883, - 0.027543511241674423, - 0.006316558923572302, - 0.0017160645220428705, - 0.020236048847436905, - 0.007022802717983723, - -0.01607065089046955, - -0.01829027570784092, - 0.014060018584132195, - -0.004323942121118307, - -0.03254486992955208, - -0.022988958284258842, - -0.018016425892710686, - -0.005422944203019142, - -0.006121981423348188, - 0.03658055141568184, - 0.007646170910447836, - 0.032256606966257095, - -0.007044422440230846, - 0.03418796882033348, - -0.027673229575157166, - 0.0052139535546302795, - 0.02164853736758232, - 0.0194721519947052, - 0.029013650491833687, - 0.05990101024508476, - 0.009029832668602467, - 0.00749483285471797, - 0.024502338841557503, - 0.0005855337949469686, - 0.036638204008340836, - 0.04421951621770859, - 0.005949023645371199, - 0.02356548421084881, - -0.03049820475280285, - 0.022268300876021385, - 0.020942293107509613, - -0.034620363265275955, - 0.0036735490430146456, - 0.007253412622958422, - 0.01742548681795597, - 0.032429564744234085, - -0.04839932546019554, - -0.008424480445683002, - 0.003046577563509345, - -0.023133089765906334, - 0.013317741453647614, - 0.01576797477900982, - 0.03303491696715355, - -0.022470084950327873, - 0.0013449261896312237, - -0.00020200916333124042, - -0.007523659151047468, - -0.007015596143901348, - 0.009188377298414707, - -0.008035325445234776, - 0.001906137797050178, - 0.010089198127388954, - 0.008150630630552769, - 0.0036339128855615854, - -0.009440606459975243, - 0.0045293294824659824, - -0.0041149514727294445, - -0.010982813313603401, - 0.036292288452386856, - -0.03335200622677803, - 0.01759844459593296, - 0.0186361912637949, - 0.004468073602765799, - 0.006860654801130295, - -0.01745431311428547, - -0.0228592399507761, - -0.01133593451231718, - 0.005531042814254761, - 0.025943651795387268, - 0.05621124804019928, - 0.026131022721529007, - 0.012770041823387146, - -0.00931809563189745, - -0.022758347913622856, - -0.012251169420778751, - 0.037848904728889465, - -0.021807081997394562, - -0.012618704698979855, - 0.029085716232657433, - 0.0011170184006914496, - -0.002565538976341486, - 0.02422848902642727, - 0.0016304864548146725, - -0.013447459787130356, - -0.0038411018904298544, - 0.049177635461091995, - 0.023133089765906334, - -0.01117738988250494, - 0.002295292681083083, - -0.020192809402942657, - 0.04277820140123367, - -0.025295061990618706, - 0.0054517704993486404, - 0.005030185915529728, - -0.03508158400654793, - 0.029229847714304924, - 0.028134450316429138, - -0.03456271067261696, - -0.007682203780859709, - 0.008229902945458889, - 0.0030429742764681578, - 0.03289078548550606, - -0.034649189561605453, - -0.00011969662591582164, - 0.007638964336365461, - -0.005156300961971283, - -0.01915506273508072, - 0.024531165137887, - -0.005304035730659962, - -0.020783748477697372, - 0.03424562141299248, - 0.033438485115766525, - -0.0390019565820694, - 0.0038699281867593527, - -0.01707957126200199, - -0.027975905686616898, - 0.013332154601812363, - -0.04695801064372063, - -0.07154683023691177, - -0.025496846064925194, - -0.0010908945696428418, - -0.04027031362056732, - -0.05211791396141052, - -0.049840640276670456, - -0.0008003796683624387, - 0.009613564237952232, - -0.02118731662631035, - 0.026044543832540512, - -0.0237096156924963, - -0.00871994998306036, - 0.011653023771941662, - -0.006702110171318054, - -0.002509688027203083, - 0.035485152155160904, - -0.06745349615812302, - -0.0006895787082612514, - -0.036839988082647324, - -0.03306374326348305, - 0.006341781932860613, - 0.02626074105501175, - 0.0018448819173499942, - 0.04623735323548317, - -0.0033492534421384335, - -0.013087131083011627, - -0.00940457358956337, - 0.00191694765817374, - -0.00014458181976806372, - -0.026491351425647736, - 0.0627836361527443, - -0.02931632660329342, - -0.03637876734137535, - 0.004370784852653742, - 0.00198721163906157, - 0.0032429564744234085, - 0.0029168592300266027, - -0.0048860544338822365, - 0.028538018465042114, - -0.021100837737321854, - -0.04260524362325668, - 0.0440177321434021, - -0.014175323769450188, - -0.02050989866256714, - -0.03245839104056358, - 0.032256606966257095, - 0.03799303621053696, - 1.021869138639886e-05, - 0.016690416261553764, - 0.04727509990334511, - 0.015782387927174568, - 0.015998585149645805, - 0.018564125522971153, - 0.008064151741564274, - -0.016012998297810555, - -0.01762727089226246, - -0.009476639330387115, - 0.01245295349508524, - 0.022066518664360046, - 0.013108750805258751, - -0.012697977013885975, - -0.011263868771493435, - 0.03877134621143341, - -0.0019349640933796763, - 0.01277724839746952, - -0.028148863464593887, - 0.006824621930718422, - 0.025958064943552017, - 9.492404205957428e-05, - 0.018866799771785736, - -0.06699227541685104, - 0.0001917623303597793, - 0.005617521237581968, - -0.011242249049246311, - 0.008676710538566113, - 0.00554905878379941, - -0.023248394951224327, - 0.004356371704488993, - -0.010290982201695442, - 0.01270518358796835, - -0.006968753412365913, - -0.027039051055908203, - -0.015710322186350822, - -0.03280430659651756, - -0.00681381206959486, - -0.005311242304742336, - 0.004727509804069996, - 0.03957848250865936, - -0.021706189960241318, - 0.006320162210613489, - -0.04185575991868973, - 0.008950560353696346, - -0.013778962194919586, - 0.013461872935295105, - 0.0010791838867589831, - -0.0036591358948498964, - 0.007660584058612585, - -0.00478876568377018, - 0.04185575991868973, - 0.014874360524117947, - 0.016330087557435036, - -0.04001087695360184, - -0.0033402452245354652, - -0.007253412622958422, - 0.01337539404630661, - 0.0013097941409796476, - 0.002241243375465274, - -0.004457263741642237, - 0.026635482907295227, - 0.021547645330429077, - 0.0016439987812191248, - -0.007080455310642719, - -0.007073248736560345, - -0.00905145239084959, - 0.01712281070649624, - -0.009923446923494339, - 0.030238768085837364, - -0.01472302246838808, - 0.020380180329084396, - 0.014845534227788448, - -0.004302322398871183, - 0.00387353147380054, - -0.021605297923088074, - 0.048658762127161026, - 0.013209642842411995, - 0.02033694088459015, - -0.02167736366391182, - -0.018881212919950485, - -0.02068285644054413, - -0.005224763415753841, - 0.02859567105770111, - 0.006720126606523991, - -0.017901120707392693, - -0.009519878774881363, - -0.0038447051774710417, - -0.008871288038790226, - 0.004277099389582872, - -0.011357554234564304, - 0.0005801289225928485, - -0.03162242844700813, - 0.0023385321255773306, - -0.03735886141657829, - -0.027312900871038437, - -0.0068570515140891075, - 0.030930599197745323, - 0.028811868280172348, - 0.010269362479448318, - -0.030699988827109337, - -0.021590884774923325, - -0.007019199430942535, - -0.003952803555876017, - -0.017886707559227943, - 0.014074431732296944, - 0.0059598335064947605, - 0.018218209967017174, - -0.029921678826212883, - -4.464695302885957e-05, - 0.009959479793906212, - -0.026866093277931213, - -0.0177569892257452, - -0.007062438875436783, - 0.00011721936607500538, - -0.020899053663015366, - 0.004486090037971735, - -0.015883279964327812, - -0.0006967852241359651, - 0.01455006469041109, - -0.030699988827109337, - 0.02185032144188881, - -0.03289078548550606, - 0.013584384694695473, - -0.0020070297177881002, - -0.0202937014400959, - 0.043268248438835144, - 0.021778255701065063, - 0.006615631282329559, - -0.022268300876021385, - 0.019673936069011688, - 0.02422848902642727, - 0.001598056871443987, - -0.002399787772446871, - 0.029056889936327934, - 0.00017250727978534997, - -0.014168117195367813, - 0.0228880662471056, - -0.022225061431527138, - -0.018665017560124397, - -0.0048356084153056145, - -0.011833188124001026, - -0.021807081997394562, - 0.02369520254433155, - -0.009505465626716614, - 0.008864081464707851, - -0.0036681441124528646, - 0.04450777545571327, - -0.001708857947960496, - -0.02878304198384285, - 0.0003537975426297635, - -0.05632655322551727, - -0.015234689228236675, - -0.011343141086399555, - -0.003949200268834829, - 0.017497552558779716, - 0.00040086545050144196, - -0.025684215128421783, - 0.007091265171766281, - -0.008784809149801731, - -0.005149094387888908, - -0.02238360606133938, - -0.002419605851173401, - 0.011674643494188786, - 0.017829054966568947, - 0.08861198276281357, - -0.01707957126200199, - -0.019774828106164932, - 0.012741216458380222, - 0.06987490504980087, - -0.0023241189774125814, - 0.021259382367134094, - -0.010629691183567047, - 0.010406287387013435, - -0.039520829916000366, - -0.0245599914342165, - -0.004132967907935381, - 0.05050364509224892, - -0.00018466835899744183, - 0.012921379879117012, - -0.025439193472266197, - -0.024603230878710747, - -0.01879473403096199, - 0.012164690531790257, - 0.005376101471483707, - 0.018837973475456238, - 0.016012998297810555, - 0.010118024423718452, - 0.018895626068115234, - -0.004136571194976568, - -0.006557978689670563, - -0.0002181113522965461, - -0.004803178831934929, - 0.0038915479090064764, - 0.03199717029929161, - 0.011674643494188786, - -0.00820107664912939, - 0.038194820284843445, - 0.008013705722987652, - -0.01911182329058647, - 0.0296334158629179, - -0.002423209138214588, - -0.027644403278827667, - -0.024848254397511482, - 0.0016241807024925947, - -0.029575763270258904, - 0.02607337012887001, - 0.0056319343857467175, - 0.01387985423207283, - 0.0043924045749008656, - 0.004096935037523508, - 0.001555718365125358, - -0.005779669154435396, - -0.006078741978853941, - -0.004388801287859678, - 0.03358261659741402, - 0.004050092305988073, - 0.0005373398889787495, - -0.023306047543883324, - 0.005988659802824259, - -0.04643913730978966, - -0.01794436015188694, - 0.021763842552900314, - 0.014204150065779686, - 0.03263134881854057, - -0.055951811373233795, - -0.01844882033765316, - 0.02133144810795784, - 0.00221962365321815, - -0.005149094387888908, - 0.003199717029929161, - -0.010716170072555542, - -0.008129010908305645, - -0.010456733405590057, - 0.006280526053160429, - -0.0372435562312603, - -0.008489339612424374, - -0.006929117254912853, - 0.02875421568751335, - 0.012827694416046143, - 0.006720126606523991, - 0.0013566368725150824, - -0.029042476788163185, - -0.014348281547427177, - 0.019054170697927475, - -0.02134586125612259, - -0.01847764663398266, - -0.03594637289643288, - 0.02977754734456539, - -0.023277221247553825, - 0.0045797755010426044, - 0.029546936973929405, - 0.0049365004524588585, - -0.02741379290819168, - 0.01878032088279724, - -0.01658952422440052, - 0.0169354397803545, - 0.03297726437449455, - 0.01277724839746952, - 0.01777140237390995, - -0.00047428239486180246, - -0.033294353634119034, - 0.006457086652517319, - -0.010564832016825676, - -0.004983343183994293, - 0.01627243496477604, - -0.017007505521178246, - 0.022916892543435097, - 0.0038050690200179815, - -0.033784400671720505, - 0.010463939979672432, - -0.004374388139694929, - -0.01024053618311882, - -0.0048356084153056145, - 0.012633117847144604, - 0.0014530246844515204, - -0.018564125522971153, - 0.03499510511755943, - -0.02218182198703289, - 0.00601388281211257, - 0.013425840064883232, - -0.007260619197040796, - -0.0032681794837117195, - -0.00266643101349473, - 0.0007494832971133292, - 0.01624360866844654, - -0.0007877682219259441, - 0.009534291923046112, - -0.013079924508929253, - -0.014686989597976208, - -0.004381594713777304, - -0.01931360736489296, - -0.02249891124665737, - -0.005181523971259594, - -0.0279470793902874, - -0.016834547743201256, - 0.022441258653998375, - 0.012849314138293266, - -0.017367834225296974, - 0.009181170724332333, - -0.0006040006410330534, - -0.016474219039082527, - -0.014773468486964703, - -0.005837321747094393, - 0.02741379290819168, - -0.03617698326706886, - -0.006583201698958874, - 0.0039131673984229565, - 0.009346921928226948, - 0.010305395349860191, - 0.03669585660099983, - -0.003331237006932497, - -0.009101898409426212, - -0.015378820709884167, - 0.0010764814214780927, - 0.04254759103059769, - 0.005145491100847721, - 0.01625802181661129, - -0.011645817197859287, - -0.06007396802306175, - 0.0026628277264535427, - -0.020610790699720383, - -0.029258674010634422, - 0.018319102004170418, - -0.033755574375391006, - -0.007473213132470846, - -0.007102075032889843, - 0.02182149514555931, - -0.038367778062820435, - -0.00034118606708943844, - 0.018564125522971153, - 0.01000271923840046, - 0.0016620152164250612, - 0.011090910993516445, - -0.00949825905263424, - 0.02013515681028366, - -0.02235477976500988, - -0.006993976421654224, - 0.021028771996498108, - 0.014636543579399586, - -0.02724083513021469, - 0.024747362360358238, - 0.006536358967423439, - -0.007509246002882719, - 0.005513026379048824, - -0.0053400686010718346, - 0.017065158113837242, - -0.01829027570784092, - -0.030267594382166862, - -0.017728162929415703, - 0.027039051055908203, - 0.003280790988355875, - -0.0064282603561878204, - 0.0007638964452780783, - -0.005862544756382704, - -0.03196834400296211, - 0.019846893846988678, - -0.019212715327739716, - -0.01313757710158825, - 0.019039757549762726, - -0.0027258852496743202, - -0.011653023771941662, - -0.007891193963587284, - -0.017670510336756706, - 0.019255954772233963, - -0.004078918602317572, - -0.018578538671135902, - 0.008683917112648487, - -0.0002977214171551168, - -0.008489339612424374, - -0.010766616091132164, - 0.01928478106856346, - 0.019414499402046204, - 0.015263515524566174, - 0.02200886607170105, - -0.03133416548371315, - -0.04099097102880478, - -0.012474573217332363, - -0.016704829409718513, - 0.03254486992955208, - 0.032775480300188065, - -0.023637549951672554, - 0.006518342532217503, - 0.00383389531634748, - 0.02166295051574707, - 0.00694713369011879, - 0.011703469790518284, - -0.005797685589641333, - 0.0032771877013146877, - -0.03095942549407482, - 0.03401501104235649, - -0.002565538976341486, - -0.025424780324101448, - 0.00043824955355376005, - -0.0032267416827380657, - -0.0186073649674654, - 0.007368717808276415, - -0.03862721472978592, - 0.06347546726465225, - -0.005812098737806082, - -0.010564832016825676, - 0.011386380530893803, - -0.018751494586467743, - 0.013015065342187881, - -0.004414024297147989, - -0.011249455623328686, - 0.01674806885421276, - -0.0059346104972064495, - 0.02352224476635456, - 0.007696616929024458, - -0.0041149514727294445, - 0.03078646771609783, - -0.005660760682076216, - -0.009246029891073704, - -0.023983465507626534, - -0.01792994700372219, - 0.02353665791451931, - 0.012539432384073734, - -0.0022178220096975565, - 0.017382247373461723, - 0.01109811756759882, - 0.0011548529146239161, - -0.040558576583862305, - -0.002037657657638192, - -0.006046312395483255, - -0.014859947375953197, - 0.0023241189774125814, - -0.01025494933128357, - -0.01378616876900196, - 0.007898400537669659, - -0.018492059782147408, - -0.0033636665903031826, - 0.015364407561719418, - 0.027053464204072952, - -0.028739802539348602, - -0.03594637289643288, - -0.024761775508522987, - -0.02807679772377014, - 0.006939927116036415, - -0.019212715327739716, - -0.0245599914342165, - -0.027471445500850677, - -0.021706189960241318, - -0.009534291923046112, - -0.024949146434664726, - 0.005311242304742336, - -0.028220929205417633, - 0.0008832552703097463, - -0.03415914252400398, - 0.04318176954984665, - -0.025295061990618706, - -0.034620363265275955, - 0.047995757311582565, - -0.002343936823308468, - 0.02352224476635456, - 0.040875665843486786, - -0.0030483792070299387, - 0.008251522667706013, - -0.0020106330048292875, - 0.04788045212626457, - -0.011487272568047047, - 0.009844174608588219, - 0.010298188775777817, - 0.0050121694803237915, - -0.006875067949295044, - 0.02980637364089489, - -0.0026177866384387016, - 0.02284482680261135, - 0.02063961699604988, - 0.030094636604189873, - -0.001798940123990178, - 0.013015065342187881, - 0.028855107724666595, - 0.00584092503413558, - 0.006075138691812754, - 0.002399787772446871, - -0.00830917526036501, - -0.02419966273009777, - -0.03978026658296585, - -0.0070840585976839066, - -0.006100361701101065, - 0.007581311743706465, - -0.010406287387013435, - -0.007030009292066097, - 0.006860654801130295, - 0.032083649188280106, - 0.004345561843365431, - 0.020855814218521118, - -0.02995050512254238, - -0.0017547998577356339, - -0.02592923864722252, - 0.015393233858048916, - -0.012856520712375641, - 0.015004078857600689, - -0.027125529944896698, - 0.024805014953017235, - -0.003736606566235423, - 0.05831556394696236, - -0.0043167355470359325, - 0.006359798368066549, - 0.003985233139246702, - -0.02419966273009777, - -0.01996219903230667, - 0.02014956995844841, - 0.005275209434330463, - 0.012301615439355373, - -0.01758403144776821, - -0.0006008477648720145, - 0.029345152899622917, - 0.002590761985629797, - 0.015782387927174568, - -0.0021025168243795633, - -0.00774706294760108, - 0.005949023645371199, - 0.030584683641791344, - 0.026664309203624725, - -0.008662297390401363, - -0.03758946806192398, - 0.0022880861070007086, - -0.021389100700616837, - -0.002448432147502899, - -0.010723376646637917, - 0.036638204008340836, - -0.022787174209952354, - -0.004482486750930548, - -0.019904546439647675, - -0.01168185006827116, - 0.01981806755065918, - -0.02185032144188881, - -0.00812180433422327, - 0.007235396187752485, - -0.006975959986448288, - -0.019544217735528946, - 0.01142961997538805, - -0.008078564889729023, - -0.01827586255967617, - 0.024617644026875496, - 0.02711111679673195, - -0.005141887813806534, - 0.01185480784624815, - -0.022311540320515633, - -0.03424562141299248, - -0.003563649021089077, - -0.012784454971551895, - 0.014946426264941692, - 0.040241487324237823, - 0.0010981011437252164, - 0.010463939979672432, - -0.006024692673236132, - 0.02728407457470894, - -0.016560697928071022, - -0.03064233623445034, - -0.041740454733371735, - 0.010795442387461662 - ], - "how_to_create_electricity_generators": [ - 0.007938527502119541, - 0.011051183566451073, - 0.005858194082975388, - 0.007041128817945719, - 0.006084112450480461, - 0.05381882190704346, - -0.014709808863699436, - -0.006451230030506849, - 0.026055941358208656, - -0.021474814042448997, - 0.039109013974666595, - -0.01350491028279066, - -0.014195216819643974, - -0.03358656167984009, - 0.016617566347122192, - 0.010787611827254295, - -0.003608421655371785, - 0.029294107109308243, - 0.026256758719682693, - 0.02231573313474655, - 0.05108269676566124, - -0.02418583817780018, - 0.041518811136484146, - 0.008139343932271004, - 0.0016692872159183025, - 0.03215574100613594, - 0.017835015431046486, - 0.07912170141935349, - -0.04731738939881325, - -0.035594724118709564, - 0.045284122228622437, - -0.01385633833706379, - -0.028214719146490097, - -0.011540673673152924, - 0.019027363508939743, - -0.016228483989834785, - 0.005547556094825268, - 0.03283349797129631, - 0.013153481297194958, - 0.020847262814641, - 0.015500524081289768, - -0.04643881693482399, - -0.022955836728215218, - 0.004603090696036816, - -0.016655217856168747, - 0.022780122235417366, - -0.041518811136484146, - -0.005999392829835415, - 0.0324067622423172, - 0.011226898059248924, - 0.04470677301287651, - 0.011747765354812145, - -0.010718581266701221, - -0.07942292839288712, - -0.017546342685818672, - -0.06747434288263321, - -0.013166031800210476, - -0.016366545110940933, - -0.05211188271641731, - -0.023520633578300476, - 0.022466346621513367, - 0.009934141300618649, - 0.0301726795732975, - 0.04508330672979355, - -0.017345525324344635, - 0.008597456850111485, - -0.05281474068760872, - 0.008861028589308262, - 0.01339195016771555, - 0.012262357398867607, - -0.0021179865580052137, - 0.06566699594259262, - -0.017847565934062004, - 0.01930348575115204, - 0.008597456850111485, - -0.03853166475892067, - 0.017458485439419746, - 0.026256758719682693, - -0.032682884484529495, - -0.01400695089250803, - -0.05793556198477745, - -0.033410847187042236, - -0.01369317527860403, - -0.00489804008975625, - -0.03544411435723305, - 0.006877965293824673, - -0.023646144196391106, - -0.017960526049137115, - -0.037125952541828156, - -0.0494510643184185, - -0.021725835278630257, - -0.011835622601211071, - -0.0022042749915271997, - -0.019692568108439445, - 0.09102007746696472, - 0.021838795393705368, - 0.03647329658269882, - -0.017596546560525894, - 0.012977766804397106, - 0.06305637955665588, - 0.023608490824699402, - -0.017696954309940338, - -0.058839235454797745, - -0.02726083993911743, - 0.06757475435733795, - 0.03235656023025513, - 0.005582071375101805, - 0.04023860767483711, - -0.03951064869761467, - -0.039535749703645706, - -0.05286494269967079, - 0.032005131244659424, - 0.0308002308011055, - 0.009394447319209576, - -0.022278081625699997, - -0.0007467863615602255, - 0.03408860042691231, - -0.0018355883657932281, - 0.030875537544488907, - -0.019466649740934372, - -0.04166942462325096, - -0.013881441205739975, - -0.02411053143441677, - 0.02640737034380436, - 0.026357166469097137, - -0.012412969954311848, - -0.015513074584305286, - -0.017332974821329117, - -0.008967711590230465, - 0.01038597896695137, - -0.030373496934771538, - 0.036824725568294525, - 0.037125952541828156, - -0.02577981911599636, - -0.004907453432679176, - -0.0052149537950754166, - -0.010994703508913517, - -0.020069099962711334, - -0.00868531409651041, - 0.017332974821329117, - 0.013153481297194958, - -0.04907453432679176, - -0.014257972128689289, - 0.02305624447762966, - -0.015161645598709583, - 0.022290632128715515, - -0.007900874130427837, - -0.0497271865606308, - -0.01026046834886074, - -0.020633894950151443, - -0.005654239561408758, - -0.015588381327688694, - -0.029017984867095947, - -0.020571140572428703, - 0.020997876301407814, - -0.019253281876444817, - 0.010787611827254295, - 0.038305748254060745, - -0.0388328917324543, - -0.02826492302119732, - -0.0218262430280447, - 0.00855980347841978, - -0.03418900817632675, - 0.014245420694351196, - -0.05256371945142746, - -0.026884309947490692, - -0.025691961869597435, - -0.021537570282816887, - -0.051609840244054794, - 0.022855428978800774, - 0.00028004488558508456, - -0.008346435613930225, - 0.01354256272315979, - 0.029695739969611168, - 0.0030765715055167675, - -0.02269226498901844, - -0.029294107109308243, - -0.034967172890901566, - -0.007668680045753717, - -0.04116738215088844, - 0.0158896055072546, - 0.004628192633390427, - -0.07179190218448639, - -0.02554134838283062, - 0.019993793219327927, - 0.02967063896358013, - -0.01381868589669466, - 0.05090698227286339, - -0.022717367857694626, - 0.042146362364292145, - 0.011289652436971664, - 0.007787914946675301, - 0.009143426083028316, - 0.004123013932257891, - 0.016492055729031563, - -0.007405108772218227, - 0.029645536094903946, - 0.016994096338748932, - 0.026557981967926025, - -0.04171963036060333, - 0.03810493275523186, - 0.02350808121263981, - 0.06908087432384491, - -0.010825264267623425, - -0.018726138398051262, - -0.022215325385332108, - -0.045484937727451324, - 0.04234718158841133, - 0.026231655851006508, - -0.01590215601027012, - -0.004954519681632519, - -0.05366821214556694, - 0.03481656312942505, - 0.003410742850974202, - -0.013442154973745346, - -0.030398597940802574, - -0.030373496934771538, - 0.03941023722290993, - -0.004675259348005056, - -0.034465134143829346, - -0.046714939177036285, - 0.06581760942935944, - -0.010994703508913517, - -0.006037046201527119, - 0.0324067622423172, - 0.039234522730112076, - -0.0012935406994074583, - -0.1007094755768776, - 0.060445766896009445, - 0.02343277633190155, - -0.020558590069413185, - 0.002914977027103305, - 0.028039004653692245, - -0.010273018851876259, - 0.0029714566189795732, - -0.028064105659723282, - 0.005632275249809027, - 0.03029819019138813, - -0.035167988389730453, - -0.013417053036391735, - -0.036649011075496674, - -0.0011766592506319284, - 0.007191740907728672, - -0.05171024799346924, - -0.002991852117702365, - 0.007668680045753717, - 0.005453423131257296, - -0.02788839116692543, - 0.023821856826543808, - 0.008697864599525928, - 0.044179629534482956, - -0.008729242719709873, - 0.010367152281105518, - 0.05301555618643761, - 0.011521846987307072, - -0.05893964320421219, - -0.04081595316529274, - -0.008327608928084373, - 0.03765309602022171, - 0.0012441209983080626, - -0.005403219256550074, - 0.06401026248931885, - -0.0780172124505043, - 0.011728938668966293, - -0.01984318159520626, - -0.022729918360710144, - 0.03210553899407387, - -0.0168309323489666, - -0.029394514858722687, - -0.04217146709561348, - -0.0029887142591178417, - 0.032431866973638535, - 0.033611662685871124, - -0.0468655526638031, - -0.06948251277208328, - -0.03536880761384964, - 0.010561692528426647, - 0.03529350087046623, - 0.002334491815418005, - -0.004929417744278908, - -0.011873275972902775, - -0.03697533905506134, - 0.05652984604239464, - 0.07912170141935349, - -0.013040522113442421, - 0.016228483989834785, - -0.021688181906938553, - 0.012293735519051552, - 0.041694525629282, - -0.014521543867886066, - -0.0020426802802830935, - 0.025641757994890213, - 0.01563858613371849, - 0.0063131689094007015, - 0.06918128579854965, - 0.023332366719841957, - 0.0018497082637622952, - -0.03248206898570061, - 0.005616586655378342, - -0.01878889463841915, - 0.014634503051638603, - 0.0340132936835289, - -0.012657715007662773, - 0.0583873987197876, - -0.017220014706254005, - -0.022830326110124588, - 0.007813016884028912, - -0.04184513911604881, - 0.021424610167741776, - -0.006695975083857775, - 0.019077567383646965, - -0.010028273798525333, - 0.035343702882528305, - -0.02078450843691826, - 0.03782881051301956, - -0.014634503051638603, - 0.05442127212882042, - 0.021976856514811516, - -0.03956085070967674, - -0.03677452355623245, - -0.03351125493645668, - -0.032733090221881866, - 0.05301555618643761, - -0.06089760363101959, - -0.008704140782356262, - -0.01965491473674774, - -0.007561996579170227, - -0.005996255204081535, - -0.02237848937511444, - -0.0006455936818383634, - -0.03654860332608223, - 0.016416748985648155, - -0.01044873334467411, - 0.005186713766306639, - -0.057784948498010635, - 0.006250413600355387, - 0.009940416552126408, - 0.0558771938085556, - 0.008653935976326466, - 0.02023226208984852, - -0.037376970052719116, - 0.005105132237076759, - -0.00420773308724165, - 0.011728938668966293, - 0.013479807414114475, - -0.03506758064031601, - -0.011402611620724201, - -0.014985931105911732, - -0.0031973752193152905, - 0.018826548010110855, - 0.026884309947490692, - 0.011829347349703312, - -0.02034522220492363, - 0.015011033974587917, - -0.008679037913680077, - 0.01276439893990755, - 0.00982745736837387, - 0.013429603539407253, - -0.00871669128537178, - -0.023395122960209846, - -0.043677590787410736, - 0.0574837252497673, - -0.04551003873348236, - 0.0008730811532586813, - -0.03612186759710312, - 0.06526536494493484, - -0.04051472991704941, - 0.042196568101644516, - 0.003875131020322442, - 0.06265474855899811, - 0.03313472121953964, - 0.07811761647462845, - 0.030750026926398277, - 0.023457877337932587, - -0.021788591518998146, - 0.031252067536115646, - -0.010624447837471962, - 0.03004716895520687, - -0.016705423593521118, - 0.05037983879446983, - 0.01929093524813652, - -0.006564189679920673, - 0.008892405778169632, - -0.004957657307386398, - -0.014107359573245049, - 0.015437768772244453, - 0.014257972128689289, - 0.009727049618959427, - -0.026633288711309433, - -0.027486758306622505, - 0.0510575957596302, - -0.051609840244054794, - 0.0372263602912426, - -0.005145922768861055, - 0.014835319481790066, - 0.055124130100011826, - 0.04161921888589859, - 0.016090422868728638, - 0.020734304562211037, - 0.010837815701961517, - -0.009049293585121632, - 0.0025462904013693333, - -0.0001567898434586823, - -0.024097980931401253, - 0.021236345171928406, - 0.0044587538577616215, - -0.013304092921316624, - -0.004772529937326908, - 0.0067838323302567005, - 0.014885523356497288, - 0.07575802505016327, - 0.03622227534651756, - 0.0343647226691246, - -0.013906543143093586, - 0.01626613736152649, - -0.049752287566661835, - 0.023859510198235512, - -0.007336077746003866, - -0.01054286677390337, - 0.020671548321843147, - -0.030900638550519943, - -0.04111718013882637, - 0.005572658032178879, - -0.02146226353943348, - -0.014082257635891438, - 0.018839098513126373, - 0.02721063606441021, - -0.03368696942925453, - 0.02603083848953247, - -0.02721063606441021, - 0.0008236614521592855, - -0.004926279652863741, - -0.0008887699223123491, - 0.039661258459091187, - 0.03351125493645668, - -0.01085036713629961, - 0.016479505226016045, - -0.04849718511104584, - 0.004527784418314695, - -0.001251181005500257, - 0.004759978502988815, - -0.027411453425884247, - 0.05186086148023605, - 0.007091332692652941, - -0.04342656955122948, - -0.012067817151546478, - -0.023106448352336884, - -0.020633894950151443, - -0.04606228694319725, - -0.017722057178616524, - 0.02313155122101307, - 0.007568271830677986, - -0.0038939574733376503, - 0.012143122963607311, - -0.019065016880631447, - 0.003881406504660845, - 0.056931477040052414, - -0.01966746710240841, - -0.010097304359078407, - -0.0121180210262537, - 0.003092260332778096, - 0.014722360298037529, - -0.01400695089250803, - -0.009877662174403667, - -0.025830022990703583, - 0.01258240919560194, - 0.02015695720911026, - 0.018638281151652336, - -0.003947299439460039, - -0.0017194913234561682, - 0.0067085265181958675, - -0.03556962311267853, - -0.024349000304937363, - -0.012406694702804089, - 0.006422990467399359, - -0.01135240774601698, - 0.007499241270124912, - 0.03958595171570778, - -0.0028208442963659763, - -0.04234718158841133, - 0.004543473478406668, - 0.00825230311602354, - -0.04598698019981384, - 0.00807031337171793, - 0.009193630889058113, - 0.07485435158014297, - 0.02144971303641796, - -0.02783818729221821, - -0.06240372732281685, - -0.001575938891619444, - -0.04018840193748474, - -0.001473961747251451, - 0.04279901832342148, - -0.013253889046609402, - 0.010348325595259666, - -0.03612186759710312, - -0.03609676659107208, - -0.04817085713148117, - 0.014232869260013103, - 0.016730524599552155, - 0.02380930632352829, - -0.035393908619880676, - -0.016805831342935562, - 0.01292756199836731, - -0.010793887078762054, - -0.05090698227286339, - 0.02721063606441021, - 0.019027363508939743, - 0.007279598154127598, - -0.005936637986451387, - -0.025202471762895584, - -0.0232570618391037, - -0.00029298814479261637, - 0.026633288711309433, - -0.024750633165240288, - 0.02144971303641796, - -0.011910928413271904, - 0.03105125203728676, - 0.020884916186332703, - 0.015927258878946304, - -0.022152571007609367, - -0.004405411891639233, - 0.006620669271796942, - 0.040113095194101334, - 0.013429603539407253, - -0.038305748254060745, - -0.01966746710240841, - 0.002078764606267214, - -0.02023226208984852, - -0.02058369107544422, - 0.004091636277735233, - 0.0009452495723962784, - -0.011327305808663368, - -0.011917204596102238, - -0.05954209342598915, - -0.031879618763923645, - -0.04212126135826111, - -0.016165727749466896, - 0.010153784416615963, - 0.01898971013724804, - -0.028515944257378578, - 0.036272481083869934, - -0.018198994919657707, - 0.016843484714627266, - -0.014396033249795437, - 0.012161949649453163, - 0.012256082147359848, - -0.002299976535141468, - 0.02127399854362011, - 0.01911522075533867, - 0.019190527498722076, - -0.04985269531607628, - -0.03574533760547638, - -0.02300604060292244, - -0.029043087735772133, - 0.006921893917024136, - -0.007135261315852404, - -0.014847869984805584, - 0.008641385473310947, - -0.008189547806978226, - 0.02330726571381092, - 0.014421135187149048, - 0.026758799329400063, - -0.004775667563080788, - 0.0002165052865166217, - 0.0753563940525055, - 0.03802962601184845, - 0.007329802494496107, - 0.011233173310756683, - 0.009545059874653816, - -0.013919093646109104, - -0.010084753856062889, - 0.034414928406476974, - -0.031201863661408424, - 0.02992165833711624, - 0.009695671498775482, - 0.049752287566661835, - 0.005356152541935444, - 0.0042359731160104275, - -0.017295321449637413, - -0.012977766804397106, - -0.05683106929063797, - 0.012199603021144867, - 0.009005364961922169, - -0.03406349942088127, - -0.016743075102567673, - -0.021600324660539627, - 0.019366241991519928, - 0.020872365683317184, - -0.015324809588491917, - -0.020357772707939148, - -0.004421100951731205, - -0.012833429500460625, - 0.012525929138064384, - -0.0007722806767560542, - -0.009281488135457039, - -0.005428321193903685, - 0.01288990955799818, - -0.05037983879446983, - -0.013994400389492512, - -0.006978373508900404, - -0.019391342997550964, - -0.02936941385269165, - 0.05206167697906494, - -0.004985897336155176, - -0.027863290160894394, - -0.0031973752193152905, - 0.012111745774745941, - -0.02751186117529869, - 0.03679962456226349, - -0.045911673456430435, - -0.014722360298037529, - -0.0031738420948386192, - -0.0016896825982257724, - -0.003373089712113142, - -0.019127771258354187, - 0.0020552314817905426, - 0.03833084926009178, - 0.007656129077076912, - -0.033912885934114456, - -0.042196568101644516, - 0.012406694702804089, - -0.027135329321026802, - -0.0023705761414021254, - 0.0016849759267643094, - -0.016780728474259377, - 0.00868531409651041, - 0.022780122235417366, - 0.007869496941566467, - 0.015312258154153824, - 0.02869165875017643, - 0.009915314614772797, - 0.009996896609663963, - -0.002271736739203334, - -0.0026263033505529165, - 0.008089140057563782, - 0.02176348865032196, - 0.023658694699406624, - 0.04001268744468689, - -0.014082257635891438, - -0.014584298245608807, - 0.005547556094825268, - 0.05045514553785324, - -0.006043321453034878, - -0.03155329450964928, - 0.07364945113658905, - -0.04081595316529274, - 0.05668045952916145, - 0.02844063751399517, - -0.03810493275523186, - 0.004537197761237621, - 0.03584574535489082, - 0.046539224684238434, - 0.011283377185463905, - 0.01916542463004589, - -0.011082560755312443, - -0.008089140057563782, - -0.04779432713985443, - -0.06702250987291336, - -0.004289315082132816, - -0.05176045373082161, - 0.01379358395934105, - -0.03642309457063675, - -0.007725159637629986, - 0.011540673673152924, - 0.020320119336247444, - 0.007882047444581985, - 0.013429603539407253, - 0.010831540450453758, - 0.009871385991573334, - -0.03858187049627304, - 0.014295624569058418, - -0.008647660724818707, - 0.015387564897537231, - -0.01350491028279066, - 0.005164749454706907, - -0.029695739969611168, - -0.04440554976463318, - 0.004998448304831982, - 0.0022827188950031996, - -0.026934513822197914, - 0.015738993883132935, - -0.025152267888188362, - 0.01379358395934105, - 0.04877330735325813, - -0.019931038841605186, - -0.025629205629229546, - 0.007718884386122227, - -0.01842491328716278, - 0.026557981967926025, - -0.016605013981461525, - 0.01954195648431778, - -0.016843484714627266, - -0.0019156011985614896, - 0.0179856289178133, - -0.019127771258354187, - -0.00744903739541769, - 0.009909039363265038, - -0.027687575668096542, - -0.07400088012218475, - 0.0003218163037672639, - 0.0004702714504674077, - 0.03165370225906372, - -0.016805831342935562, - -0.03582064434885979, - -0.0023407672997564077, - -0.01379358395934105, - 0.018073486164212227, - 0.0158896055072546, - 0.0074113840237259865, - -0.038933299481868744, - -0.0014770994894206524, - -0.025215022265911102, - 0.04781942814588547, - -0.0020709200762212276, - 0.016667770221829414, - -0.012174500152468681, - -0.015111441724002361, - 0.02653288096189499, - -0.010486386716365814, - 0.03549431636929512, - 0.0030514695681631565, - -0.0168309323489666, - -0.010442458093166351, - -0.027235738933086395, - 0.005801714491099119, - -0.003533115377649665, - 0.036950238049030304, - 9.854520612861961e-05, - -0.005378116853535175, - 0.0030797093641012907, - -0.007267047185450792, - 0.037376970052719116, - -0.0018826547311618924, - -0.016843484714627266, - -0.002102297730743885, - -0.026884309947490692, - 0.015663687139749527, - -0.006102939136326313, - 0.017107056453824043, - -0.013479807414114475, - -0.009902764111757278, - 0.024386653676629066, - -0.03504247963428497, - 0.012042714282870293, - 0.0021273999009281397, - 0.002532170619815588, - 0.05853801220655441, - 0.0012245100224390626, - -0.0030169542878866196, - -0.011088836006820202, - 0.008710416033864021, - 0.001382182352244854, - 0.012438071891665459, - 0.016416748985648155, - 0.002023853827267885, - 0.029645536094903946, - 0.025152267888188362, - -0.011986235156655312, - 0.005258881952613592, - -0.01694389246404171, - 0.01072485651820898, - -0.019705118611454964, - -0.01023536641150713, - -0.004232835490256548, - -0.00914970226585865, - 0.0052149537950754166, - 0.006972097791731358, - 0.006303755566477776, - -0.00605901051312685, - 0.010662101209163666, - 0.007631027139723301, - 0.0182994045317173, - -0.0020615069661289454, - 0.003912784159183502, - -0.04397881403565407, - 0.009130875580012798, - -0.0016316340770572424, - -0.01632889173924923, - -0.0301726795732975, - 0.005221229046583176, - 0.0003086769429501146, - -0.03647329658269882, - 0.019065016880631447, - 0.03863207623362541, - 0.0005185144837014377, - -0.001546130166389048, - 0.02670859545469284, - 0.00838408898562193, - -0.06812699884176254, - -0.026809003204107285, - -0.03042370080947876, - 0.024323899298906326, - 0.028340229764580727, - 0.027536962181329727, - -0.0142830740660429, - 0.009432099759578705, - -0.10864172875881195, - -0.032005131244659424, - 0.026357166469097137, - -0.029545128345489502, - 0.014923176728188992, - 0.04166942462325096, - 0.03617207333445549, - 0.026306962594389915, - 0.020420528948307037, - -0.06330740451812744, - -0.013216235674917698, - -0.013492358848452568, - -0.036021459847688675, - 0.026256758719682693, - 0.012199603021144867, - -0.0061405920423567295, - 0.018073486164212227, - -0.002754951361566782, - 0.026733696460723877, - -0.01793542318046093, - 0.011829347349703312, - -0.044254936277866364, - -0.009915314614772797, - -0.022717367857694626, - -0.022955836728215218, - 0.028917577117681503, - -0.00606214813888073, - -0.01029184553772211, - 0.016466952860355377, - 0.03938513621687889, - 0.018023280426859856, - 0.027863290160894394, - 0.019428996369242668, - 0.016479505226016045, - -0.03752758353948593, - -0.011477918364107609, - 0.0027125917840749025, - 0.008973987773060799, - 0.021161038428544998, - 0.011666183359920979, - 0.002103866543620825, - 0.0261563491076231, - -0.016102973371744156, - 0.005155336111783981, - 0.01978042535483837, - 0.019316038116812706, - -0.026482677087187767, - 0.034163907170295715, - -0.005280846264213324, - 0.03295901045203209, - 0.028892474249005318, - -0.05276453495025635, - 0.027160432189702988, - 0.0052149537950754166, - 0.009381895884871483, - 0.03130227327346802, - -0.04114228114485741, - -0.020696651190519333, - -0.01044873334467411, - -0.01041735615581274, - 0.03870737925171852, - 0.02269226498901844, - -0.008729242719709873, - -0.05401964113116264, - 0.004298728425055742, - 0.015475422143936157, - 0.0008864165865816176, - -0.014822768047451973, - 0.0007071722066029906, - -0.024712981656193733, - 0.02225297875702381, - -0.016102973371744156, - 0.00019709041225723922, - -0.002180741634219885, - -0.024637674912810326, - -0.008465670980513096, - 0.012682816945016384, - -0.025403287261724472, - 0.020458180457353592, - -0.06310658901929855, - 0.030072271823883057, - 0.01903991401195526, - -0.002880461746826768, - 0.013630419969558716, - -0.004417962860316038, - -0.0142830740660429, - -0.014270522631704807, - 0.01985573209822178, - 0.02535308338701725, - 0.019366241991519928, - 0.011101387441158295, - -0.0279385969042778, - -0.02368379570543766, - -0.03198002651333809, - 3.885426849592477e-05, - 0.03072492592036724, - -0.01910267025232315, - -0.008396640419960022, - 0.03823044151067734, - -0.0034327071625739336, - 0.005644826218485832, - 0.0301726795732975, - -0.024888696148991585, - 0.008277405053377151, - 0.013655521906912327, - 0.042020853608846664, - -0.005654239561408758, - -0.013065624050796032, - -0.0033856406807899475, - -0.03710084781050682, - 0.015801748260855675, - -0.017270218580961227, - 0.02448706328868866, - 0.032180845737457275, - -0.044982895255088806, - 0.008120517246425152, - 0.024085428565740585, - -0.023834409192204475, - -0.026432471349835396, - 0.007486690301448107, - -0.0035864573437720537, - 0.04234718158841133, - -0.025403287261724472, - -0.006790108047425747, - 0.0029165458399802446, - 0.0007385497447103262, - 0.028490841388702393, - 0.009369345381855965, - -0.023031143471598625, - -0.03353635594248772, - 0.04146860912442207, - 0.0308002308011055, - -0.04089125990867615, - -0.02763737179338932, - -0.023633591830730438, - -0.026005737483501434, - 0.018098587170243263, - -0.008277405053377151, - -0.030624516308307648, - 0.0006954055861569941, - -0.03085043467581272, - -0.05668045952916145, - -0.009243834763765335, - 0.005651101935654879, - 0.02726083993911743, - -0.004697223659604788, - 0.02237848937511444, - -0.0002731810382101685, - -0.013467256911098957, - -0.02436155267059803, - 0.043501876294612885, - -0.0063633727841079235, - 0.00961409043520689, - 0.028164515271782875, - -0.058839235454797745, - 0.013831236399710178, - -0.0028930127155035734, - -0.030222883448004723, - 0.012155674397945404, - -0.0028584974352270365, - 0.0043991366401314735, - 0.018562976270914078, - -0.014910625293850899, - -0.0019689430482685566, - -0.0073862820863723755, - -0.04433024302124977, - -0.00903046689927578, - 0.004813320469111204, - 0.022127468138933182, - -0.049250248819589615, - -0.019692568108439445, - 0.0027518137358129025, - -0.004697223659604788, - 0.02096022292971611, - 0.046589430421590805, - -0.020809609442949295, - 0.027988800778985023, - -0.0446314662694931, - -0.05311596393585205, - 0.006256689317524433, - -0.0020364047959446907, - 0.002725142752751708, - -0.00405084528028965, - -0.004154391586780548, - 0.03315982595086098, - -0.00019669819448608905, - 0.0024866731837391853, - 0.028666555881500244, - -0.021161038428544998, - -0.004267350770533085, - 0.0122749088332057, - 0.01657991297543049, - -0.020746855065226555, - 0.00852842628955841, - -0.002188586164265871, - 0.0010480111232027411, - 0.02577981911599636, - 0.02844063751399517, - -0.007223118562251329, - 0.005541280377656221, - 0.006049597170203924, - -0.009268936701118946, - 0.025302879512310028, - 0.00482587143778801, - -0.037125952541828156, - 0.03305941820144653, - -0.004380309954285622, - -0.010825264267623425, - -0.042447589337825775, - 0.019680017605423927, - 0.01162853091955185, - -0.029394514858722687, - 0.03715105354785919, - 0.044982895255088806, - -0.04171963036060333, - 0.005500489380210638, - -0.026809003204107285, - -0.0013500202912837267, - -0.026332063600420952, - -0.03343594819307327, - 0.004019467625766993, - -0.054822906851768494, - -0.022353386506438255, - -0.030348394066095352, - -0.012952664867043495, - 0.06852862983942032, - 0.011747765354812145, - 0.011289652436971664, - -0.00737373111769557, - 0.010831540450453758, - -0.020169507712125778, - 0.006877965293824673, - -0.025240125134587288, - 0.007223118562251329, - 0.011101387441158295, - -0.004110462963581085, - 0.028892474249005318, - 0.020169507712125778, - -0.006426128093153238, - -0.03702554106712341, - 0.005095718894153833, - -0.01212429627776146, - 0.021173590794205666, - 0.0007365886704064906, - 0.009821182116866112, - 0.01563858613371849, - 0.047392696142196655, - 0.005048652179539204, - 0.05015392228960991, - 0.01199251040816307, - -0.02338257245719433, - 0.0008981832070276141, - -0.009381895884871483, - -0.020533487200737, - 0.035268399864435196, - 0.0018104863120242953, - 0.0010032980935648084, - -0.016165727749466896, - -8.481751865474507e-05, - -0.025127165019512177, - 0.008572354912757874, - 0.02577981911599636, - 0.009532508440315723, - -0.0004628192982636392, - -0.01273929700255394, - 0.009701947681605816, - -0.032180845737457275, - 0.0038908198475837708, - 0.040439423173666, - -0.005346739199012518, - 0.02237848937511444, - -0.014245420694351196, - -0.009413274005055428, - 0.01607787050306797, - 0.010166335850954056, - 0.005036101210862398, - -0.006093525793403387, - -0.01632889173924923, - -0.013341746293008327, - -0.025804920122027397, - -0.015387564897537231, - -0.009199906140565872, - 0.02237848937511444, - 0.04274881258606911, - 0.007110159378498793, - -0.027988800778985023, - -0.0020944534335285425, - -0.0174961369484663, - -0.004894902464002371, - -0.0026749386452138424, - 0.014948278665542603, - 0.005989979952573776, - 0.00505806552246213, - -0.039234522730112076, - -0.014044604264199734, - 0.006065285764634609, - -0.02783818729221821, - -0.006564189679920673, - -0.011452816426753998, - -0.051183104515075684, - -0.010818989016115665, - -0.00013168777513783425, - -0.0016081009525805712, - 0.022353386506438255, - 0.0007460019551217556, - -0.0020819022320210934, - 0.010003171861171722, - -0.012168224900960922, - 0.019127771258354187, - -0.006040183827280998, - -0.020922569558024406, - 0.00962036568671465, - 0.01755889318883419, - 0.007825568318367004, - -0.02171328477561474, - 0.022340836003422737, - 0.05492331460118294, - 0.022027060389518738, - 0.0001724786270642653, - 0.008145619183778763, - -0.007561996579170227, - -0.02114848792552948, - 0.017797362059354782, - 0.02257930487394333, - 0.011747765354812145, - -0.03288370370864868, - 0.007982456125319004, - 0.004452478606253862, - 0.0056605152785778046, - 0.023081347346305847, - 0.006501434370875359, - -0.024210939183831215, - -0.007185465656220913, - -0.020370323210954666, - -0.042824119329452515, - -0.0011468505254015326, - -0.011182969436049461, - 0.01775970868766308, - -0.007718884386122227, - -0.020420528948307037, - 0.017772261053323746, - -0.0038531667087227106, - -0.030323291197419167, - -0.0005769552080892026, - -0.01379358395934105, - 0.0020568002946674824, - -0.01602766662836075, - -0.02270481549203396, - 0.05688127502799034, - 0.03363676369190216, - 0.08479476720094681, - -0.007988731376826763, - -0.033787377178668976, - 0.001000160351395607, - 0.06812699884176254, - 0.016466952860355377, - 0.014722360298037529, - -0.036573704332113266, - -0.01432072650641203, - -0.04252289608120918, - -0.012143122963607311, - -0.023909714072942734, - 0.05959229916334152, - -0.004860386718064547, - -0.0005263588973321021, - -0.017797362059354782, - -0.007198016624897718, - -0.007988731376826763, - -0.012193326838314533, - 0.0221400186419487, - 0.024223491549491882, - 0.0003292684559710324, - -0.016153177246451378, - 0.003111087018623948, - 0.030222883448004723, - -0.004584264010190964, - 0.017784811556339264, - -0.005503627471625805, - 0.012155674397945404, - 0.026608185842633247, - 0.0006146083469502628, - -0.0314277820289135, - 0.05497351661324501, - 0.02108573354780674, - -0.024662775918841362, - 0.03190472349524498, - 0.028089208528399467, - -0.024901246652007103, - 0.0010464421939104795, - 0.0400879941880703, - 0.0014104221481829882, - 0.012011337094008923, - 0.014647053554654121, - -0.017483586445450783, - 0.01196740847080946, - 0.03519309312105179, - 0.03790411353111267, - -0.021788591518998146, - -0.02023226208984852, - -0.002494517480954528, - 0.004920004401355982, - 0.020734304562211037, - -0.011245723813772202, - -0.007743986323475838, - 0.009281488135457039, - -0.05627882480621338, - -0.02585512399673462, - 0.03253227472305298, - -0.005776612088084221, - 0.031628597527742386, - -0.028666555881500244, - 0.014534094370901585, - -0.011741490103304386, - 0.006077837198972702, - -0.007894598878920078, - 0.006626944523304701, - -0.0026608186308294535, - 0.003300921292975545, - 0.017207464203238487, - 0.016554810106754303, - -0.029520025476813316, - 0.016893688589334488, - 0.026306962594389915, - 0.017596546560525894, - -0.010065927170217037, - -0.010693478398025036, - -0.008233476430177689, - -0.015023584477603436, - -0.02350808121263981, - 0.001193132484331727, - -0.02585512399673462, - -0.022491447627544403, - -0.06004413589835167, - 0.04438044875860214, - -0.01656736060976982, - 0.01354256272315979, - 0.03085043467581272, - 0.009237559512257576, - 0.012080367654561996, - 0.003038918599486351, - 0.016090422868728638, - 0.007003475446254015, - 0.0356198288500309, - 0.013341746293008327, - 0.012011337094008923, - 0.011829347349703312, - -0.02473808266222477, - 0.014634503051638603, - -0.03315982595086098, - -0.004326967988163233, - 0.018650833517313004, - -0.0019171700114384294, - 0.029545128345489502, - 0.02566685900092125, - -0.016605013981461525, - -0.008773171342909336, - 0.010492661967873573, - -0.02442430704832077, - 0.012475725263357162, - 0.038130033761262894, - -0.011490468867123127, - -0.027436554431915283, - 0.019931038841605186, - -0.003674314357340336, - -0.011835622601211071, - -0.002947923494502902, - -0.013705726712942123, - -0.011490468867123127, - -0.00035456664045341313, - 0.0003320139949209988, - -0.006463780999183655, - 0.0011044907150790095, - 0.007292149122804403, - 0.0012362765846773982, - -0.00031691353069618344, - -0.006037046201527119, - 0.005578933283686638, - -0.014697257429361343, - -0.011139040812849998, - 0.022679714486002922, - 0.02078450843691826, - 0.04551003873348236, - -0.011019805446267128, - 0.0007279598503373563, - -0.005996255204081535, - -0.007103883661329746, - -0.03300921246409416, - 0.010749958455562592, - 0.014119910076260567, - 0.023081347346305847, - -0.003451533615589142, - -0.01307817455381155, - -0.001212743460200727, - -0.0018340194365009665, - 0.02560410462319851, - 0.004540335852652788, - -0.005971153266727924, - -0.02700982056558132, - -0.02004399709403515, - 0.013090725988149643, - 0.01757144369184971, - -0.003950437065213919, - 0.008082863874733448, - -0.0008958298712968826, - -0.023909714072942734, - -0.017358075827360153, - -0.042999833822250366, - -0.017784811556339264, - 0.013103276491165161, - -0.030624516308307648, - -0.008610007353127003, - -0.009375620633363724, - 0.011245723813772202, - -0.021236345171928406, - -0.0009554472635500133, - 0.01339195016771555, - 0.010567968711256981, - -0.005108269862830639, - -0.0069909244775772095, - 0.005582071375101805, - 0.001918738940730691, - -0.01103863213211298, - -0.018575526773929596, - 0.0054973517544567585, - -0.013705726712942123, - -0.04914984107017517, - 0.040339015424251556, - 0.02165052853524685, - -0.038431257009506226, - 0.014797666110098362, - -0.01595236174762249, - 0.03245696797966957, - -0.012055265717208385, - -0.002450588857755065, - -0.008540976792573929, - 0.02318175509572029, - -0.007336077746003866, - 0.0015186747768893838, - 0.03165370225906372, - -0.018701037392020226, - -0.04116738215088844, - -0.013994400389492512, - 0.0037433451507240534, - -0.0030279364436864853, - 0.03305941820144653, - -0.02962043508887291, - -0.009043018333613873, - -0.009017916396260262, - 0.0033981918822973967, - 0.017546342685818672, - -0.003344849916175008, - -0.009601539000868797, - -0.015626033768057823, - -0.011145316064357758, - -0.04827126860618591, - -0.0022419278975576162, - 0.015412666834890842, - 0.016052769497036934, - 0.001295109512284398, - -0.031754110008478165, - -0.0481206551194191, - -0.052413105964660645, - 0.002803586656227708, - -0.004910591058433056, - -0.0035895949695259333, - 0.006695975083857775, - -0.014396033249795437, - -0.0009052431560121477, - 0.01496082916855812, - 0.007492965552955866, - -0.011095112189650536, - 0.01119551993906498, - 0.026332063600420952, - 0.0324067622423172, - -0.012262357398867607, - 0.016655217856168747, - 0.014571747742593288, - -0.014546645805239677, - 0.017332974821329117, - 0.020182058215141296, - 0.013730828650295734, - 0.014232869260013103, - -0.01885164901614189, - 0.045786160975694656, - 0.0021995683200657368, - -0.009545059874653816, - 0.012808327563107014, - -0.009852559305727482, - -0.02270481549203396, - -0.014421135187149048, - -0.008183272555470467, - 0.015588381327688694, - -0.013605318032205105, - 0.0050768922083079815, - -0.003649212419986725, - -0.025240125134587288, - 0.01750868931412697, - -0.015626033768057823, - -0.013919093646109104, - -0.006539087276905775, - 0.015500524081289768, - 0.025691961869597435, - -0.002392540453001857, - -0.008773171342909336, - -0.010216539725661278, - 0.0037966871168464422, - 0.0031659977976232767, - -0.020859815180301666, - -0.037929218262434006, - -0.01354256272315979, - 0.003310334635898471, - 0.010762509889900684, - -0.0032601305283606052, - -0.01850022003054619, - -0.004044570028781891, - -0.009582712315022945, - -0.01014123298227787, - 0.02473808266222477, - 0.0039880904369056225, - 0.001725766807794571, - 0.011277101933956146, - -0.030900638550519943, - -0.0030624517239630222, - 0.009137150831520557, - -0.03258247673511505, - 0.009256385266780853, - 0.009363069199025631, - -0.01555072795599699, - -0.017709504812955856, - -0.026984717696905136, - -0.008867303840816021, - -0.024461960420012474, - -0.010593070648610592, - 0.004060258623212576, - 0.027988800778985023, - -0.02478828653693199, - -0.027813086286187172, - 0.02546604350209236, - 0.02034522220492363, - 0.008208374492824078, - 0.031026149168610573, - -0.010097304359078407, - -0.029168596491217613, - 0.0006648124544881284, - 0.016843484714627266, - -0.005682479590177536, - 0.018600627779960632, - 0.021424610167741776, - -0.005993117578327656, - -0.022604407742619514, - 0.01713215745985508, - -0.02040797658264637, - -0.007047404069453478, - 0.004810182843357325, - 0.02126144804060459, - 0.016291238367557526, - 0.014245420694351196, - 0.02355828694999218, - -0.02818961627781391, - -0.013454705476760864, - -0.01288990955799818, - -0.01818644441664219, - -0.0018402950372546911, - -0.01793542318046093, - 0.022403590381145477, - 0.004386585671454668, - 0.00567306624725461, - -0.03122696653008461, - -0.01555072795599699, - -0.00853470154106617, - 0.027311043813824654, - -0.022227875888347626, - 0.019642364233732224, - -0.002412935718894005, - 0.002092884387820959, - -0.0020568002946674824, - -0.021914100274443626, - -0.032431866973638535, - -0.012758123688399792, - -0.02170073427259922, - 0.04648901894688606, - 0.03431452065706253, - 0.058337192982435226, - -0.018349608406424522, - 0.02058369107544422, - -0.020458180457353592, - -0.001212743460200727, - 0.0015382857527583838, - 0.006146867759525776, - -0.014207767322659492, - 0.010693478398025036, - 0.00017845997354015708, - 0.0009829025948420167, - -0.0006581447087228298, - 0.008729242719709873, - 0.013341746293008327, - 0.026809003204107285, - -0.0019736497197300196, - -0.001168814837001264, - 0.02033267170190811, - 0.0433010570704937, - 0.0025462904013693333, - -0.02047073282301426, - 0.01866338402032852, - -0.031126558780670166, - -0.0336618646979332, - -0.0016426162328571081, - 0.029946761205792427, - 0.014483890496194363, - 0.0032318904995918274, - 0.0019438409944996238, - 0.017659300938248634, - 0.027612268924713135, - -0.009450926445424557, - -0.015801748260855675, - 0.0057295458391308784, - 0.0030028342735022306, - -0.049802493304014206, - 0.021499916911125183, - 0.0003628032573033124, - -0.012325112707912922, - 0.006495158653706312, - 0.03308451920747757, - -0.021123385056853294, - -0.00394416181370616, - -0.026758799329400063, - -0.022679714486002922, - 0.006030770484358072, - -0.005647964309900999, - 0.026633288711309433, - 0.005610310938209295, - -0.022340836003422737, - -0.007969904690980911, - -0.011289652436971664, - 0.0015382857527583838, - 0.005845643114298582, - -0.05186086148023605, - -0.01335429772734642, - 0.03554452210664749 - ], - "how_to_create_reserach_setups": [ - -0.014088370837271214, - 0.023309091106057167, - 0.014220492914319038, - -0.0015359175158664584, - 0.0010561062954366207, - 0.017940768972039223, - -0.01496454793959856, - -0.00021132991241756827, - 0.023907117545604706, - -0.032654982060194016, - 0.015117531642317772, - -0.03382321819663048, - 0.01823282800614834, - -0.05354415625333786, - 0.035353049635887146, - -0.004019288346171379, - 0.005097125191241503, - 0.03490800783038139, - -0.0068320948630571365, - 0.03916372358798981, - 0.012593306601047516, - -0.019985182210803032, - 0.003723752684891224, - -0.03507489711046219, - -0.02775951474905014, - -0.03504708409309387, - 0.039052464067935944, - 0.030235063284635544, - -0.02211304008960724, - -0.03223775327205658, - 0.04695196449756622, - -0.025965437293052673, - -0.051346756517887115, - 0.020305056124925613, - -0.014519506134092808, - 0.0009248536080121994, - -0.059301890432834625, - 0.0032908793073147535, - 0.006508743856102228, - 0.001285581267438829, - 0.01717585138976574, - -0.046812888234853745, - -0.040554482489824295, - 0.0051040793769061565, - -0.023044848814606667, - -0.015673834830522537, - -0.06369668245315552, - -0.00049111113185063, - 0.03646565601229668, - -0.0049997721798717976, - 0.00029075518250465393, - 0.007419690024107695, - 0.007280614227056503, - -0.10502998530864716, - -0.012085680849850178, - -0.032209936529397964, - -0.023448167368769646, - -0.029845651239156723, - 0.020430224016308784, - 0.0451439805328846, - 0.054573316127061844, - 0.04870431870222092, - 0.025756824761629105, - 0.018316272646188736, - 0.01052107848227024, - -0.022266024723649025, - -0.05045667290687561, - 0.04172271862626076, - 0.012690659612417221, - 0.023503797128796577, - -0.02920590341091156, - 0.0054169995710253716, - -0.007975992746651173, - -0.013963202945888042, - 0.011960512027144432, - 0.0027484840247780085, - -0.012482046149671078, - 0.05493491142988205, - -0.04297440126538277, - 0.011724083684384823, - -0.024964092299342155, - -0.04105515405535698, - 0.02730056457221508, - -0.029372792690992355, - -0.03131985291838646, - -0.007294521667063236, - -0.03093044087290764, - 5.682547271135263e-05, - -0.06191651523113251, - -0.07782677561044693, - -0.018663963302969933, - -0.02276669628918171, - -0.030485399067401886, - 0.02368459664285183, - 0.07192996889352798, - -0.023712411522865295, - -0.008441896177828312, - -0.02026333287358284, - 0.0008740040357224643, - 0.07966257631778717, - 0.0243382528424263, - -0.042863138020038605, - -0.01775996945798397, - -0.018524887040257454, - 0.025228336453437805, - -0.014422153122723103, - -0.016619550064206123, - 0.022669343277812004, - -0.04458767920732498, - -0.009088599123060703, - -0.08489182591438293, - -0.023698503151535988, - 0.008831308223307133, - -0.003737660124897957, - -0.01032637245953083, - -0.03749481588602066, - 0.0034143091179430485, - -0.01561820413917303, - -0.0043426393531262875, - -0.01664736494421959, - -0.00485374266281724, - 0.03446296602487564, - 0.04455986246466637, - 0.0060324096120893955, - 0.051012977957725525, - -0.015187069773674011, - 0.031876157969236374, - -0.051346756517887115, - 0.007523996755480766, - -0.001653262646868825, - 0.005371800158172846, - -0.02506144531071186, - 0.04314129054546356, - -0.02165408991277218, - -0.012356878258287907, - 0.011133012361824512, - -0.02934497781097889, - -0.015590389259159565, - -0.02724493481218815, - -0.03123640827834606, - 0.04386448487639427, - 0.00399842718616128, - -0.0005341377109289169, - 0.0352696031332016, - 0.016494380310177803, - 0.053182557225227356, - -0.003967135213315487, - -0.016550011932849884, - 0.03373977169394493, - 0.016202321276068687, - 0.009304165840148926, - -0.029762204736471176, - -0.04798112437129021, - -0.04992818459868431, - 0.0300681721419096, - -0.019234172999858856, - 0.007503135595470667, - 0.05151364952325821, - -0.008685278706252575, - -0.02243291400372982, - 0.04414263740181923, - 0.02440778911113739, - -0.032265570014715195, - 0.02481110952794552, - -0.03543649613857269, - 0.023990562185645103, - -0.020875265821814537, - -0.034963637590408325, - -0.06914845108985901, - 0.020360685884952545, - 0.023364722728729248, - -0.014672488905489445, - 0.014867194928228855, - 0.028510523959994316, - 0.016341397538781166, - -0.0023138723336160183, - -0.04795331135392189, - 0.024240899831056595, - -0.02979002147912979, - 0.0073084295727312565, - 0.0014507336309179664, - -0.0100968973711133, - -0.04481019824743271, - -0.015409590676426888, - -0.02315610833466053, - -0.015437405556440353, - -0.00506235659122467, - -0.009220720268785954, - 0.0004928496200591326, - -0.020305056124925613, - 0.06158273294568062, - 0.015743372961878777, - 0.009603179059922695, - 0.023309091106057167, - 0.038913387805223465, - 0.021028250455856323, - -0.017996398732066154, - -0.017718248069286346, - 0.04750826954841614, - -0.03966439887881279, - 0.007433597464114428, - 0.03084699623286724, - 0.03282187134027481, - -0.007329290732741356, - 0.013469483703374863, - -0.0631403774023056, - -0.02348989062011242, - -0.003010989399626851, - 0.004353070165961981, - -0.0016602164832875133, - 0.009637948125600815, - -0.030819181352853775, - 0.006300130393356085, - 0.03170926496386528, - -0.02492237091064453, - -0.023309091106057167, - -0.011571100912988186, - 0.07109551131725311, - -0.01344862300902605, - -0.03835708647966385, - -0.02387930266559124, - 0.016689086332917213, - 0.0326271653175354, - 0.002835406456142664, - 0.00954059511423111, - 0.04152801260352135, - 0.05098516121506691, - -0.039052464067935944, - 0.03908028081059456, - -0.01565992645919323, - 0.02211304008960724, - 0.03084699623286724, - 0.02157064527273178, - 0.018705684691667557, - -0.034629855304956436, - 0.0044087003916502, - 0.004464330617338419, - -0.01522879209369421, - 0.005601274780929089, - -0.027620438486337662, - 0.01036114152520895, - -0.01125122606754303, - -0.004791158717125654, - -0.023072663694620132, - 0.01433870755136013, - 0.011063474230468273, - -0.009832654148340225, - -0.06731265038251877, - 0.035158343613147736, - -0.01933152601122856, - 0.03638220950961113, - 0.002758914837613702, - 0.07365450263023376, - -0.003177880309522152, - 0.0026424387469887733, - -0.039247170090675354, - -0.02625749632716179, - 0.0009318073862232268, - 4.631330375559628e-05, - -0.010089944116771221, - -0.023587243631482124, - 0.02269715815782547, - 0.0022008733358234167, - 0.019957367330789566, - -0.0128297358751297, - -0.028649600222706795, - 0.0003159626794513315, - -0.006122808903455734, - -0.04472675547003746, - -0.08355669677257538, - -0.013163517229259014, - 0.030207248404622078, - 0.01638312079012394, - -0.032738424837589264, - -0.07665853947401047, - -0.005038018338382244, - 0.017120221629738808, - 0.043447256088256836, - 0.00351861584931612, - 0.019109005108475685, - -0.08122022449970245, - -0.0025433474220335484, - 0.03162581846117973, - 0.03290531784296036, - -0.00308400415815413, - 0.04856524243950844, - 0.02005472034215927, - -0.002296488033607602, - 0.0414445661008358, - 0.0011838821228593588, - 0.024588588625192642, - 0.03282187134027481, - 0.015506943687796593, - -0.025367412716150284, - 0.021403754130005836, - -0.023378629237413406, - 0.012843643315136433, - -0.015965893864631653, - 0.03229338303208351, - 0.005410045851022005, - 0.02197396568953991, - 0.0026580847334116697, - 0.07115114480257034, - 0.01148070115596056, - -0.02775951474905014, - -0.009422380477190018, - 0.01966530829668045, - -0.04111078381538391, - 0.01710631512105465, - 0.016355305910110474, - 0.027203211560845375, - -0.005872472655028105, - 0.06364104896783829, - -0.03757826238870621, - -0.006894679274410009, - 0.01862224005162716, - 0.032599348574876785, - 0.0009422380244359374, - -0.031069517135620117, - -0.015868540853261948, - -0.0663113072514534, - -0.021431569010019302, - 0.06247281655669212, - -0.0705392062664032, - -0.004561683628708124, - -0.039302799850702286, - -0.01127904187887907, - -0.0150340860709548, - -0.0035012313164770603, - -0.012356878258287907, - 0.008309775032103062, - -0.02347598224878311, - 0.018385810777544975, - 0.013851942494511604, - 0.010674062184989452, - -0.04177834838628769, - 0.018330181017518044, - 0.08984292298555374, - 0.009874376468360424, - -0.006620004773139954, - -0.016925515606999397, - -0.03410136699676514, - -0.0331556536257267, - 0.012398600578308105, - -0.03031850792467594, - 0.009637948125600815, - 0.00028206294518895447, - -0.01901165209710598, - 0.004012334626168013, - 0.023712411522865295, - 0.03960876539349556, - 0.003866305109113455, - -0.038523975759744644, - -0.008295866660773754, - -0.04322473704814911, - -0.013754589483141899, - 0.00506583321839571, - -0.024519050493836403, - -0.013580745086073875, - -0.017982492223381996, - -0.012043957598507404, - 0.08494745194911957, - 0.054768022149801254, - 0.037522632628679276, - -0.060025084763765335, - 0.02024942636489868, - -0.009721393696963787, - 0.028232373297214508, - -0.023072663694620132, - 0.010382003150880337, - 0.07298693805932999, - -0.0012664583045989275, - 0.012002235278487206, - -0.007169353775680065, - -0.008483619429171085, - -0.01597980037331581, - 0.04984474182128906, - 0.03215430676937103, - -0.01848316378891468, - 0.055880628526210785, - 0.04895465448498726, - -0.0065887123346328735, - 0.0011995281092822552, - 0.013469483703374863, - 0.02546476572751999, - -0.006526128388941288, - 0.01240555476397276, - 0.03999817743897438, - -0.05757734924554825, - -0.021807074546813965, - 0.0001643918512854725, - -0.033851031213998795, - 0.045283056795597076, - -0.018650054931640625, - -0.02024942636489868, - -0.006522651761770248, - 0.021612368524074554, - 0.04044322296977043, - 0.011932697147130966, - 0.02329518459737301, - 0.024574680253863335, - -0.040749188512563705, - -0.04414263740181923, - 0.015479128807783127, - 0.025033630430698395, - 0.0014124878216534853, - 0.02329518459737301, - 0.025868084281682968, - 0.04703541100025177, - -0.02401837706565857, - 0.056742895394563675, - -0.04675725847482681, - 0.050818271934986115, - 0.01020120456814766, - -0.030179433524608612, - -0.029845651239156723, - 0.012259525246918201, - 0.012043957598507404, - -0.025172706693410873, - -0.0022582421079277992, - 0.015771187841892242, - -0.0347411148250103, - 0.028315817937254906, - -0.032988760620355606, - 0.01842753402888775, - 0.031152963638305664, - 0.016842070966959, - -0.03112514689564705, - 0.0005862911348231137, - -0.0231004785746336, - -0.007802148349583149, - -0.005830749869346619, - 0.05841180682182312, - 0.06892593204975128, - 0.01055584754794836, - 0.018538793548941612, - -0.038051117211580276, - -0.03807893395423889, - -0.03410136699676514, - 0.03974784165620804, - 0.05165272578597069, - 0.012551584281027317, - 0.024421697482466698, - 0.052403733134269714, - -0.025283966213464737, - -0.03972002863883972, - -0.034240443259477615, - -0.007092861924320459, - -0.008073345758020878, - -0.027801238000392914, - 0.016007615253329277, - -0.03412918373942375, - -0.0194010641425848, - 0.03501926735043526, - -0.012384693138301373, - 0.005024110432714224, - 0.03507489711046219, - 0.004106211010366678, - 0.024032285436987877, - 0.03323910012841225, - 0.04951095953583717, - 0.04080481827259064, - 0.010792276822030544, - 0.01345557626336813, - -0.0016437012236565351, - 0.011007843539118767, - -0.04138893634080887, - 0.016842070966959, - -0.015812909230589867, - 0.0011169519275426865, - 0.02419917657971382, - -0.06831399351358414, - -0.004412177484482527, - 0.005743827670812607, - -0.0027519608847796917, - 0.010861814022064209, - -0.06441987305879593, - 0.06503181159496307, - -0.0061610545963048935, - -0.027912497520446777, - 0.0015011485666036606, - 0.020179888233542442, - 0.009561455808579922, - 0.008789585903286934, - -0.027536993846297264, - 0.05702104791998863, - -0.007273660507053137, - -0.019720938056707382, - -0.031013887375593185, - -0.026354849338531494, - 0.00977007020264864, - -0.009818746708333492, - 0.047007594257593155, - -0.01716194488108158, - 0.049038100987672806, - -0.03546430915594101, - -0.009484964422881603, - -0.000794470077380538, - -0.010437632910907269, - 0.02816283516585827, - 0.02394884079694748, - -0.003633353393524885, - -0.06486491858959198, - 0.01814938150346279, - -0.015590389259159565, - -0.010973074473440647, - -0.011564146727323532, - 0.027717791497707367, - 0.015965893864631653, - 0.006154100876301527, - 0.016369212418794632, - -0.017092406749725342, - 0.006887725554406643, - 0.03663254529237747, - 0.005437860731035471, - 0.007683933712542057, - -0.005743827670812607, - -2.2545478714164346e-05, - 0.012050911784172058, - -0.007176307495683432, - -0.010569754987955093, - -0.015896355733275414, - -0.03268279507756233, - 0.010875721462070942, - 0.0028023759368807077, - -0.05359978601336479, - -0.037995487451553345, - -0.04061011224985123, - 0.0066130505874753, - -0.0007909932173788548, - -0.016160599887371063, - -0.015882447361946106, - -0.013406899757683277, - -0.0022234732750803232, - -0.04842616617679596, - -0.012704567983746529, - -0.043196920305490494, - -0.011459839530289173, - -0.026813799515366554, - -0.02158455364406109, - -0.017189759761095047, - 0.021167324855923653, - -0.016939423978328705, - -0.011035659350454807, - -0.015562573447823524, - 0.008678325451910496, - -0.026869431138038635, - 0.02111169509589672, - 0.02329518459737301, - -0.0002746745594777167, - 0.04984474182128906, - -0.06486491858959198, - 0.008142883889377117, - -0.04169490188360214, - -0.00819156039506197, - 0.0056638591922819614, - 0.010020405985414982, - -0.026215774938464165, - 0.028329726308584213, - 0.0023434259928762913, - 0.008907800540328026, - 0.016035431995987892, - -0.011765806935727596, - -0.0073084295727312565, - 0.006560897454619408, - 0.0347411148250103, - 0.011786667630076408, - -0.0149923637509346, - -0.01756526343524456, - -0.02137593924999237, - -0.009095552377402782, - -0.03131985291838646, - 0.046534739434719086, - 0.02992909587919712, - -0.007579626981168985, - 0.020096441730856895, - -8.393437747145072e-05, - -0.018914299085736275, - -0.001161282300017774, - -0.0315701887011528, - -0.002225211588665843, - -0.062139034271240234, - 0.03243245929479599, - 0.02599325403571129, - -0.0305966604501009, - 0.02862178534269333, - -0.030040357261896133, - 0.01618841476738453, - 0.004467807710170746, - -0.029122456908226013, - 0.005799457896500826, - 0.04191742464900017, - 0.028440985828638077, - -0.011988327838480473, - -0.0022043501958251, - 0.0034403856843709946, - -0.029817836359143257, - -0.006581758614629507, - 0.023128293454647064, - 0.015673834830522537, - -0.017801692709326744, - 0.01735665090382099, - -0.022669343277812004, - 0.026424387469887733, - -0.01994345895946026, - -0.016355305910110474, - -0.011696268804371357, - 0.015868540853261948, - -0.03585372120141983, - 0.016341397538781166, - -0.0030353276524692774, - 0.028121111914515495, - -0.026619093492627144, - -0.016397027298808098, - -0.006953786127269268, - -0.007565719541162252, - -0.005027587525546551, - 0.0186917781829834, - 0.010076036676764488, - -0.021807074546813965, - -0.017926860600709915, - 0.013775451108813286, - -0.05359978601336479, - 0.0038071980234235525, - 0.030485399067401886, - -0.007315383292734623, - -0.00862269476056099, - 0.018650054931640625, - -0.012516815215349197, - 0.017148036509752274, - 0.02657737210392952, - -0.00028075912268832326, - 0.007843870669603348, - -0.018246734514832497, - -0.03393447771668434, - 0.005771642550826073, - 0.05835617333650589, - -0.00467294454574585, - 0.028538338840007782, - 0.016216229647397995, - 0.05735483020544052, - -0.005556075368076563, - 0.028315817937254906, - -0.05212558060884476, - -0.009366749785840511, - 0.0414445661008358, - 0.00799685437232256, - 0.017523542046546936, - 0.014436060562729836, - -0.025937622413039207, - -0.02104215696454048, - 0.01453341357409954, - 0.04422608017921448, - -0.002040936378762126, - -0.0028858212754130363, - 0.012927088886499405, - -0.02571510151028633, - -0.048787765204906464, - -0.01127904187887907, - -0.013545976020395756, - -0.047063227742910385, - 0.014011879451572895, - 0.020374594256281853, - -0.002604193054139614, - 0.00989523809403181, - 0.021890519186854362, - 0.012551584281027317, - 0.019901735708117485, - 0.014171816408634186, - 0.05919063091278076, - -0.03524179011583328, - 0.012078726664185524, - 0.013761542737483978, - 0.013066164217889309, - -0.03532523289322853, - 0.013525114394724369, - -0.007440551184117794, - -0.023781949654221535, - 0.013052256777882576, - 0.028065482154488564, - 0.03755044564604759, - -0.002383410232141614, - -0.049705665558576584, - 0.0532660037279129, - 0.06475365906953812, - -0.007040708791464567, - -0.003181357169523835, - 0.01947060227394104, - -0.00266503868624568, - -0.004401746671646833, - 0.04013725370168686, - -0.0002154587273253128, - 0.001366419019177556, - -0.011960512027144432, - 0.028037667274475098, - -0.013698958791792393, - 0.022460730746388435, - -0.015187069773674011, - -0.02303094044327736, - -0.057521719485521317, - -0.024574680253863335, - -0.0052431547082960606, - 0.042668431997299194, - -0.019428879022598267, - -0.020541485399007797, - -0.032321199774742126, - -0.020805729553103447, - 0.0022930109407752752, - 0.019234172999858856, - 0.005514352582395077, - -0.018914299085736275, - 0.01906728185713291, - -0.013643329031765461, - 0.038579605519771576, - -0.0033725863322615623, - 0.0019835676066577435, - 0.00966576300561428, - -0.021542830392718315, - 0.019109005108475685, - -0.022989217191934586, - -0.025562118738889694, - 0.026619093492627144, - 0.0029953434132039547, - -0.028329726308584213, - -0.03040195442736149, - -0.018858669325709343, - -0.010548894293606281, - 0.033044394105672836, - -0.049705665558576584, - 0.007280614227056503, - 0.007238891441375017, - 0.028385356068611145, - 0.008469711989164352, - 0.02652174048125744, - 0.011800575070083141, - 0.008052484132349491, - -0.03148674592375755, - 0.03243245929479599, - 0.010757507756352425, - -0.0025016246363520622, - -0.04066574200987816, - 0.010548894293606281, - -0.003706368152052164, - 0.027536993846297264, - 0.013344315811991692, - -0.010924397967755795, - 0.0075518121011555195, - 0.05070700868964195, - -0.001788861583918333, - -0.01789904572069645, - -0.034963637590408325, - 0.012419462203979492, - -0.005111033096909523, - -0.028204556554555893, - 0.04631221666932106, - -0.02348989062011242, - 0.02454686537384987, - -0.0048711271956563, - -0.012996627017855644, - 0.030179433524608612, - -0.018205013126134872, - 0.03310002386569977, - -0.009352842345833778, - -0.01585463248193264, - -0.03468548506498337, - -0.006974647752940655, - 0.00839321967214346, - -0.012676752172410488, - -0.0039045510347932577, - 0.01233601663261652, - 0.04998381435871124, - -0.012391647323966026, - 0.03118077851831913, - 0.0013333884999155998, - 0.03913591057062149, - -0.005413522478193045, - 0.018705684691667557, - -0.0449770912528038, - -0.01085486076772213, - -0.017787786200642586, - 0.015812909230589867, - -0.006355760619044304, - 0.002348641399294138, - 0.010861814022064209, - 0.01032637245953083, - 0.0004967611166648567, - 0.0269806906580925, - 0.029233718290925026, - -0.004137502983212471, - -0.04800894111394882, - -0.03521397337317467, - -0.036604732275009155, - 0.017078498378396034, - 0.0027728222776204348, - 0.02158455364406109, - 0.021987872198224068, - -0.00996477622538805, - -0.08088644593954086, - 0.00785777810961008, - 0.012655891478061676, - -0.020708376541733742, - 0.016021523624658585, - 0.019456693902611732, - 0.07665853947401047, - 0.040943894535303116, - -0.008567065000534058, - -0.0398591049015522, - 0.008427988737821579, - -0.03145892918109894, - -0.01954014040529728, - 0.03671599179506302, - -0.004311347380280495, - 0.004923280794173479, - 0.020096441730856895, - -0.010861814022064209, - 0.01611887663602829, - -0.014950640499591827, - -0.030012542381882668, - 0.0023781948257237673, - -0.036549102514982224, - -0.006074132397770882, - -0.02243291400372982, - -0.017926860600709915, - -0.015353959985077381, - 0.02033287100493908, - -0.008740909397602081, - 0.04283532500267029, - 0.02901119738817215, - 0.01986001431941986, - -0.025895901024341583, - 0.04183397814631462, - -0.04244591295719147, - -0.005656905006617308, - 0.015632111579179764, - 0.026827707886695862, - 0.027397917583584785, - 0.02237728424370289, - 0.012662844732403755, - 0.024435605853796005, - 0.006797326263040304, - 0.014825472608208656, - 0.04817583039402962, - 0.007082431577146053, - -0.029261533170938492, - 0.03357287868857384, - -0.05270969867706299, - 0.003967135213315487, - 0.05952440947294235, - -0.03788422793149948, - 0.029261533170938492, - -0.004092303104698658, - 0.029094642028212547, - 0.01549303624778986, - -0.011571100912988186, - -0.022279931232333183, - -0.014123139902949333, - -0.022266024723649025, - 0.014700304716825485, - 0.03730010986328125, - 0.03677162155508995, - -0.026758169755339622, - -0.018010307103395462, - 0.006039363332092762, - -0.0163135826587677, - -0.00374113698489964, - -0.0097005320712924, - 0.009610132314264774, - 0.002369502792134881, - 0.00442260829731822, - 0.010208158753812313, - 0.013233055360615253, - -0.0225719902664423, - -0.003057927591726184, - 0.03387884795665741, - -0.00845580454915762, - 0.036270949989557266, - -0.06703449785709381, - 0.02237728424370289, - -0.0007640472613275051, - -0.014686396345496178, - -0.025840269401669502, - -0.019762661308050156, - -0.0034490779507905245, - -0.00950582604855299, - 0.01391452644020319, - 0.008295866660773754, - 0.02486673928797245, - 0.019693123176693916, - 0.0034264782443642616, - 0.004599929787218571, - -0.017092406749725342, - -0.007030277978628874, - 0.021473292261362076, - -0.008803493343293667, - -0.010507171042263508, - 0.01730102114379406, - -0.024366067722439766, - 0.007586580701172352, - 0.020944803953170776, - -0.001383803435601294, - 0.00016558704373892397, - 0.015743372961878777, - 0.07309820502996445, - -0.009380658157169819, - 0.011598915793001652, - 0.008664418011903763, - -0.013956248760223389, - 0.011807529255747795, - 0.01994345895946026, - -0.03012380190193653, - 0.00957536417990923, - -0.026007160544395447, - 0.01571555621922016, - 0.032654982060194016, - 0.01078532263636589, - -0.006376622244715691, - 0.020040811970829964, - -0.003433431964367628, - 0.005343984812498093, - -0.027801238000392914, - -0.0022930109407752752, - 0.024491235613822937, - -0.022126948460936546, - 0.017982492223381996, - 0.03179271146655083, - -0.0027171920519322157, - -0.0033117407001554966, - 0.03540867939591408, - 0.009630993939936161, - -0.054823651909828186, - 0.01691160909831524, - -0.02590980753302574, - -0.04439297318458557, - 0.02506144531071186, - 0.005090171471238136, - -0.032070863991975784, - -0.008490572683513165, - -0.007530950475484133, - -0.0035985843278467655, - -0.019373249262571335, - -0.008427988737821579, - -0.02282232604920864, - 0.0038245825562626123, - -0.02499190717935562, - 0.015840725973248482, - -0.03972002863883972, - -0.0363265797495842, - 0.005257062613964081, - 0.004001903813332319, - 0.028510523959994316, - 0.0299847275018692, - -0.021167324855923653, - 0.01479765772819519, - 0.0019122912781313062, - -0.003664645366370678, - 0.0013081810902804136, - -0.0073779672384262085, - -0.009756161831319332, - 0.04044322296977043, - 0.028760859742760658, - -0.010931352153420448, - 0.03379540145397186, - -0.02347598224878311, - -0.014164863154292107, - -0.008594879880547523, - 0.050623565912246704, - -0.022015687078237534, - -0.01973484642803669, - -0.009658808819949627, - 0.01101479772478342, - 0.03913591057062149, - 9.242287887900602e-06, - 0.010924397967755795, - 0.033517248928546906, - -0.015270514413714409, - -0.057076677680015564, - 0.019832199439406395, - -0.02421308308839798, - -0.005145801696926355, - -0.011438978835940361, - 0.045422133058309555, - 0.040220700204372406, - 0.017606986686587334, - 0.00143421848770231, - 0.023309091106057167, - 0.047063227742910385, - 0.020708376541733742, - 0.00021361162362154573, - -0.00010360054875491187, - 0.000568037445191294, - 0.022724973037838936, - -0.007656118832528591, - -0.019039466977119446, - -0.010312465019524097, - 0.03835708647966385, - 0.011925743892788887, - -0.020082535222172737, - -0.011209503747522831, - 0.021946148946881294, - 0.03613187372684479, - -0.001794076873920858, - 0.010778368450701237, - 0.03755044564604759, - 0.020611023530364037, - 0.04467112198472023, - -0.05387793481349945, - 0.012732382863759995, - 0.029122456908226013, - -0.011098243296146393, - 0.0016124092508107424, - 0.03323910012841225, - -0.0023938410449773073, - 0.007565719541162252, - -0.05418390408158302, - 0.030958257615566254, - -0.021153418347239494, - 0.0031292038038372993, - -0.027926405891776085, - -0.042195577174425125, - -0.023072663694620132, - 0.010187297128140926, - 0.0009291996830143034, - 0.033183466643095016, - -0.018274551257491112, - -0.005086694844067097, - -0.048064570873975754, - 0.014742027036845684, - -0.01888648420572281, - 0.03499145433306694, - 0.02867741510272026, - -0.016410935670137405, - -0.006310561206191778, - -0.015590389259159565, - 0.030624475330114365, - 0.007579626981168985, - -0.025506488978862762, - -0.011230365373194218, - -0.0038176286034286022, - 0.00954059511423111, - 0.0033239098265767097, - 0.0016089322743937373, - -0.004565160721540451, - 0.014053601771593094, - 0.038774311542510986, - -0.0077951946295797825, - 0.006314037833362818, - 0.02236337773501873, - -0.024449512362480164, - 0.003310002386569977, - 0.03031850792467594, - -0.018900390714406967, - 0.0132261011749506, - 0.0024825017899274826, - 0.02230774611234665, - 0.009554502554237843, - -0.01433870755136013, - -0.04341944307088852, - -0.018663963302969933, - 0.022405099123716354, - 0.02663300186395645, - 0.001187358982861042, - -0.0017332312418147922, - 0.0037133218720555305, - 0.014296984300017357, - -0.00421051774173975, - 0.016661271452903748, - -0.02901119738817215, - -0.02211304008960724, - -0.008149837143719196, - -0.006122808903455734, - -0.009130321443080902, - -0.022335560992360115, - 0.00034051822149194777, - 0.005142325069755316, - -0.0352696031332016, - -0.04817583039402962, - 0.0003770256007555872, - -0.0243382528424263, - 0.013803265988826752, - -0.005830749869346619, - 0.021946148946881294, - -0.01617450639605522, - -0.044087003916502, - -0.023865394294261932, - -0.010771415196359158, - 0.011362486518919468, - 0.001699331565760076, - 0.014004925265908241, - -0.00973530113697052, - 0.03488019108772278, - -0.043641962110996246, - -0.04369759187102318, - 0.0053474619053304195, - -0.025631656870245934, - -0.007593534886837006, - 0.005107556004077196, - -0.0022356424015015364, - 0.01565992645919323, - -0.011529377661645412, - 0.002618100494146347, - -0.0029866511467844248, - 0.009686624631285667, - 0.002233903855085373, - 0.012294294312596321, - -0.03546430915594101, - -0.009651855565607548, - -0.009331981651484966, - -0.026493925601243973, - 0.018789131194353104, - 0.010541940107941628, - -0.01216912642121315, - -0.021403754130005836, - 0.005194478202611208, - 0.012210848741233349, - 0.014658581465482712, - -0.013017487712204456, - 0.012718475423753262, - 0.009053830057382584, - -0.01901165209710598, - 0.006724311504513025, - -0.022850142791867256, - -0.00041831372072920203, - 0.008045530878007412, - -0.009491918608546257, - -0.002993605099618435, - 0.000760135764721781, - -0.021097788587212563, - -0.019637493416666985, - -0.020346779376268387, - -0.0010256834793835878, - 0.010409818030893803, - -0.023907117545604706, - 0.02735619619488716, - -0.003588153747841716, - -0.018205013126134872, - 0.007329290732741356, - 0.02150110714137554, - -0.018636146560311317, - 0.0008979076519608498, - -0.0076213497668504715, - -0.0005002379766665399, - 0.014296984300017357, - -0.007725656498223543, - -0.005166663322597742, - -0.030902625992894173, - 0.03666036203503609, - 0.0455055795609951, - 0.07276441901922226, - -0.001255158451385796, - -0.0033673709258437157, - 0.00728756794705987, - 0.02414354681968689, - 0.031737081706523895, - 0.013698958791792393, - 0.014241354539990425, - 0.015868540853261948, - -0.032015230506658554, - -0.0028319295961409807, - 0.0014724642969667912, - 0.05001163110136986, - 0.014700304716825485, - 0.017078498378396034, - 0.018316272646188736, - -0.027008505538105965, - -0.02940060943365097, - 0.007760425563901663, - -0.02539522759616375, - 0.050373226404190063, - 0.02691115252673626, - 0.0027015460655093193, - -0.01973484642803669, - 0.02590980753302574, - -0.019122911617159843, - 0.025019723922014236, - -0.013100933283567429, - 0.0013977111084386706, - -0.001366419019177556, - 0.026201866567134857, - -0.025562118738889694, - 0.01841362565755844, - 0.030235063284635544, - -0.01479765772819519, - -0.006546990014612675, - 0.006383575964719057, - -0.016953330487012863, - 0.009130321443080902, - 0.021431569010019302, - 0.004154887516051531, - 0.01677253283560276, - -0.0011169519275426865, - -0.001858399366028607, - 0.00728756794705987, - 0.022780604660511017, - -0.013066164217889309, - 0.002190442755818367, - -0.03730010986328125, - -0.00815679132938385, - 0.026215774938464165, - -0.022474637255072594, - -0.003908027894794941, - -0.021431569010019302, - 0.01476984191685915, - -0.026396572589874268, - 0.026674725115299225, - 0.027022413909435272, - 0.024769386276602745, - 0.03104170225560665, - -0.04124986007809639, - -0.003480370156466961, - -0.01128599513322115, - 0.0050727869383990765, - -0.0057299197651445866, - -0.0014620336005464196, - -0.014185723848640919, - 0.006491359323263168, - 0.0018862145952880383, - -0.010514125227928162, - -0.03343380615115166, - -0.000815331470221281, - 0.0037133218720555305, - 0.011432024650275707, - -0.0014455183409154415, - 0.022975310683250427, - 0.01698114536702633, - -0.029428424313664436, - -0.023893209174275398, - 0.008219375275075436, - -0.01717585138976574, - -0.013497299514710903, - -0.01750963367521763, - -0.02184879593551159, - -0.0015298329526558518, - -0.03190397098660469, - 0.013935388065874577, - 0.0038489208091050386, - -0.01309398002922535, - 0.022474637255072594, - -0.0039706118404865265, - 0.016327491030097008, - 0.0019835676066577435, - 0.04386448487639427, - 0.02059711515903473, - 0.011313810013234615, - 0.004074918571859598, - 0.00575773511081934, - -0.010952213779091835, - -0.027119766920804977, - -0.009304165840148926, - 0.001772346324287355, - 0.026591278612613678, - 0.02920590341091156, - -0.03415699675679207, - -0.01670299470424652, - -0.002233903855085373, - -0.023698503151535988, - -0.007023324258625507, - 0.018566610291600227, - 0.019526232033967972, - 0.00013407769438344985, - 0.011578054167330265, - -0.010973074473440647, - 0.0029605745803564787, - 0.013552929274737835, - -0.03131985291838646, - -0.0009170305565930903, - 0.005337031092494726, - -0.01874740794301033, - 0.007047662511467934, - 0.007224984001368284, - -0.014700304716825485, - -0.01967921480536461, - -0.02354552038013935, - -0.0005615182453766465, - 0.04341944307088852, - -0.024185268208384514, - -0.001260373741388321, - 0.02967876009643078, - 0.012468138709664345, - 0.037522632628679276, - -0.00263026962056756, - 0.017078498378396034, - 0.0232812762260437, - -0.0052431547082960606, - -0.008275005966424942, - -0.002301703207194805, - -0.010952213779091835, - -0.008142883889377117, - -0.025868084281682968, - -0.004780727904289961, - 0.006734741851687431, - -0.010319419205188751, - 0.02742573246359825, - 0.023976655676960945, - 0.010027360171079636, - -0.024491235613822937, - -0.015771187841892242, - -0.00199052132666111, - 0.033684141933918, - -0.028788674622774124, - 0.008963430300354958, - -0.002571162534877658, - -0.006133239716291428, - -0.015576481819152832, - -0.010722738690674305, - -0.00529530830681324, - 0.02407400868833065, - 0.002040936378762126, - 0.0003146588278468698, - -0.005218816455453634, - -0.002925805514678359, - -0.01075055357068777, - 0.022321654483675957, - 0.004293962847441435, - -0.0039706118404865265, - 0.009624040685594082, - 0.007767379283905029, - 0.025089260190725327, - 0.008935615420341492, - -0.006873817648738623, - -0.0039462735876441, - -0.010479356162250042, - 0.02051367051899433, - -0.05176398530602455, - 0.032460276037454605, - 0.010493263602256775, - -0.011466793715953827, - -0.00242687133140862, - -0.015562573447823524, - 0.023587243631482124, - -0.027773423120379448, - -0.021556736901402473, - -0.013156563974916935, - 0.022585898637771606, - -0.01342080719769001, - -0.0071206772699952126, - 0.042584989219903946, - -0.03257153555750847, - -0.027203211560845375, - -0.009478011168539524, - 0.0050588794983923435, - -0.0015011485666036606, - 0.016494380310177803, - 0.02743964083492756, - -0.020875265821814537, - -0.009318073280155659, - -0.012593306601047516, - 0.024560773745179176, - 0.008532295934855938, - -0.0059315795078873634, - -0.0006545251235365868, - -0.0097005320712924, - -0.031737081706523895, - -0.017328836023807526, - -0.01585463248193264, - 0.01828845776617527, - -0.007426643744111061, - -0.009554502554237843, - -0.017857322469353676, - -0.041277676820755005, - -0.010945259593427181, - -0.02546476572751999, - -0.022905772551894188, - -0.010089944116771221, - -0.024519050493836403, - 0.020026905462145805, - -0.020305056124925613, - -0.0030596659053117037, - 0.010368095710873604, - -0.015103624202311039, - -0.0026076699141412973, - 0.003887166501954198, - -0.012899274006485939, - 0.0005254455027170479, - 0.03412918373942375, - -0.0027693454176187515, - 0.011751898564398289, - 0.008747863583266735, - -0.021334215998649597, - 0.019053375348448753, - -0.002605931367725134, - 0.03735573962330818, - -0.025311782956123352, - -0.006063701584935188, - -0.012892319820821285, - 0.0026719924062490463, - -0.026410480961203575, - 0.002190442755818367, - 0.0009231151198036969, - 0.03412918373942375, - 0.01479765772819519, - 0.005496968049556017, - -0.0003724621783476323, - -0.003148326650261879, - 0.015506943687796593, - -0.02283623442053795, - -0.018274551257491112, - 0.0074961818754673, - -0.033461619168519974, - 0.0132261011749506, - 0.007989900186657906, - -0.027342287823557854, - 0.03165363520383835, - -0.042279019951820374, - 0.009450195357203484, - 0.003369109472259879, - -0.028051573783159256, - 0.010006498545408249, - 0.01737055741250515, - -0.023865394294261932, - -0.01127904187887907, - 0.000571948941797018, - 0.02624358981847763, - -0.006981601472944021, - -0.03257153555750847, - 0.018928205594420433, - -0.01698114536702633, - -0.007899501360952854, - 0.009512779302895069, - -0.022794511169195175, - -0.011000890284776688, - 0.00038897740887477994, - -0.019192449748516083, - 0.0010569755686447024, - 0.010465448722243309, - -0.02664690837264061, - 0.005875949282199144, - -0.03590935096144676, - -0.006772988010197878, - -0.008511434309184551, - -0.002984912833198905, - 0.0068320948630571365, - 0.011209503747522831, - 0.015187069773674011, - -0.0409160777926445, - 0.05791113153100014, - 0.04061011224985123, - 0.038051117211580276, - -0.002110474044457078, - 0.02671644650399685, - 0.025047538802027702, - -0.027787329629063606, - 0.017746062949299812, - -0.01913681998848915, - 0.012892319820821285, - -0.006571328267455101, - 0.012071773409843445, - 0.00815679132938385, - 0.021417662501335144, - 0.009290258400142193, - 0.03538086637854576, - 0.018246734514832497, - -0.0015220099594444036, - -0.01036114152520895, - 0.023809764534235, - 0.0212507713586092, - -0.005041494965553284, - 0.007593534886837006, - -0.001640224363654852, - -0.01841362565755844, - 0.01770433969795704, - -0.007398828864097595, - -0.0017923384439200163, - -0.008073345758020878, - 0.03565901517868042, - -0.017328836023807526, - -0.0027606531511992216, - 0.013831080868840218, - 0.024964092299342155, - 0.0070546162314713, - 0.02170972153544426, - -0.03813456371426582, - 0.02906682714819908, - -0.007982946932315826, - 0.006001117639243603, - -0.004798112437129021, - 0.02848270907998085, - -0.02881649136543274, - 0.016271859407424927, - 0.02347598224878311, - 0.030680105090141296, - 0.03310002386569977, - 0.0035429541021585464, - 0.012913181446492672, - 0.00726670678704977, - -0.017022868618369102, - 0.018956022337079048, - 0.014477782882750034, - 0.009199859574437141, - 0.0019070758717134595, - -0.00506235659122467, - -0.0019487986573949456, - -0.010986982844769955, - 0.027856867760419846, - -0.006901632994413376, - -0.03916372358798981, - 0.02716149017214775, - 0.027745608240365982, - 0.04887121170759201, - 0.015242699533700943, - -0.032738424837589264, - 0.010847906582057476, - -0.02013816498219967, - 0.008608787320554256, - -0.012614168226718903, - 0.01735665090382099, - -0.0006719095981679857, - 0.018330181017518044, - 0.00017916865181177855, - 0.032988760620355606, - 0.01994345895946026, - -0.01933152601122856, - 0.012468138709664345, - -0.0028545293025672436, - -0.00027402263367548585, - -0.054573316127061844, - 0.012023096904158592, - -0.0020722283516079187, - -0.003348248079419136, - 0.02394884079694748, - 0.034045737236738205, - -0.03079136647284031, - 0.0010986982379108667, - -0.03577027842402458, - -0.012704567983746529, - 0.010771415196359158, - -0.020277241244912148, - -0.012287340126931667, - 0.0023329954128712416, - -0.05421171709895134, - 0.021236862987279892, - -0.002445994410663843, - -0.00028162833768874407, - -0.013991017825901508, - -0.02197396568953991, - -0.028051573783159256, - 0.01762089505791664 - ], - "how_to_create_self_fueling_mining_system": [ - -0.027902094647288322, - -0.010697975754737854, - 0.04547780752182007, - -0.00978529080748558, - -0.028449706733226776, - -0.022165216505527496, - 0.011956177651882172, - 0.02195660211145878, - -0.003696375759318471, - -0.033169593662023544, - 0.022047869861125946, - -0.0072754062712192535, - 0.025868110358715057, - -0.015802495181560516, - 0.03994954004883766, - 0.025907225906848907, - -0.03979308158159256, - 0.011793198995292187, - -0.02150025963783264, - 0.010306824930012226, - 0.023573359474539757, - -0.04169668257236481, - 0.009446293115615845, - -0.02288232557475567, - 0.01299272757023573, - 2.463792043272406e-05, - 0.025059731677174568, - 0.03392581641674042, - -0.05176229774951935, - -0.0005231642862781882, - 0.0112977409735322, - -0.024264391511678696, - -0.019505389034748077, - -0.01635010540485382, - -0.0018905624747276306, - -0.02432958409190178, - 0.004472158383578062, - 0.02315613068640232, - 0.030979149043560028, - 0.010482843033969402, - -0.00274294544942677, - -0.017914708703756332, - -0.041983526200056076, - -0.006897293496876955, - -0.010019981302320957, - 0.0363248772919178, - -0.042948365211486816, - 0.03533396124839783, - 0.020796187222003937, - 0.01431612204760313, - -0.009817887097597122, - 0.018592704087495804, - -0.027980325743556023, - -0.043756742030382156, - -0.0061638858169317245, - -0.04435650631785393, - 0.004847011063247919, - -0.02062668837606907, - -0.010202518664300442, - 0.0036344435065984726, - 0.008012073114514351, - -0.0009501706226728857, - 0.03822847828269005, - 0.020809225738048553, - -0.0024104672484099865, - 0.010202518664300442, - -0.04232252389192581, - 0.03536003828048706, - 0.00578903267160058, - 0.0059226760640740395, - -0.01228213682770729, - 0.041227299720048904, - -0.020209461450576782, - -0.0019410861423239112, - 0.039532314985990524, - -0.08287183195352554, - -0.0004571575846057385, - 0.03611626476049423, - -0.05762955918908119, - -0.016767334192991257, - -0.03389974310994148, - -0.06461812555789948, - 0.005890080239623785, - -0.029492774978280067, - -0.0070602730847895145, - -0.04339166730642319, - -0.027849940583109856, - 0.004853530321270227, - -0.011030454188585281, - -0.10008246451616287, - -0.03371720388531685, - -0.024212239310145378, - 0.032048292458057404, - 0.029179854318499565, - 0.04341774433851242, - 0.0014016239438205957, - 0.03439519926905632, - 0.006046540569514036, - 0.015411344356834888, - 0.015541727654635906, - -0.0022980112116783857, - -0.0181624386459589, - -0.00795340072363615, - -0.042348600924015045, - 0.04777256026864052, - 0.016011109575629234, - -0.029023393988609314, - 0.02315613068640232, - -0.034212663769721985, - -0.013103554025292397, - -0.06028938665986061, - 0.018618781119585037, - 0.01623276062309742, - 0.02118733897805214, - -0.0033801954705268145, - 0.016324030235409737, - 0.04586895927786827, - -0.005352247506380081, - 0.0060106851160526276, - -0.020209461450576782, - -0.031631067395210266, - -0.010411132127046585, - -0.0041364203207194805, - -0.0089834313839674, - -0.0180450938642025, - 0.013390397652983665, - 0.013097034767270088, - -0.01771913468837738, - -0.04143591597676277, - 0.031031301245093346, - -0.03987131267786026, - 0.03483850508928299, - 0.013233937323093414, - 0.02352120541036129, - -0.0015760120004415512, - -0.03575119003653526, - -0.060758765786886215, - -0.0016159419901669025, - 0.004540609661489725, - 0.04349597543478012, - -0.0201442688703537, - -0.01638922095298767, - -0.03363897278904915, - -0.022725865244865417, - -0.03603803366422653, - 0.0078034596517682076, - -0.06279275566339493, - -0.002596263773739338, - 0.018657896667718887, - -0.013123111799359322, - -0.014889809302985668, - -0.016324030235409737, - -0.004097305238246918, - -0.035985879600048065, - -0.031187761574983597, - -0.036507412791252136, - -0.036090187728405, - 0.05940277874469757, - 0.006910332012921572, - -0.041461993008852005, - -0.03468204289674759, - -0.014237891882658005, - -0.023260438814759254, - 0.023821087554097176, - -0.05783817544579506, - -0.023312591016292572, - -0.030118616297841072, - -0.014250929467380047, - -0.0451127327978611, - 0.030587997287511826, - 0.013807625509798527, - -0.012047446332871914, - -0.01691075600683689, - 0.01889258623123169, - -0.006812544073909521, - 0.003226994536817074, - -0.037028949707746506, - -0.022647634148597717, - -0.004759002011269331, - -0.010997858829796314, - 0.003559472970664501, - -0.012158272787928581, - 0.02195660211145878, - -0.008618357591331005, - 0.013390397652983665, - 0.02641572244465351, - -0.03387366607785225, - 0.0405232310295105, - 0.010202518664300442, - 0.019075123593211174, - -0.013481666333973408, - 0.008285879157483578, - 0.008103341795504093, - 0.03004038706421852, - -0.0021725171245634556, - -0.013136149384081364, - 0.02315613068640232, - -0.005140374414622784, - 0.07609187811613083, - 0.000849938252940774, - 0.01760178804397583, - 0.03137030079960823, - 0.030744457617402077, - -0.013338244520127773, - -0.018097246065735817, - -0.013083996251225471, - -0.03885431960225105, - 0.06576550006866455, - 0.04373066499829292, - -0.011186914518475533, - -0.009152930229902267, - -0.029258085414767265, - 0.011239068582654, - 0.003751788754016161, - 0.006995081435889006, - 0.013964085839688778, - -0.03934977576136589, - 0.03374328091740608, - -0.014798540621995926, - 0.006154106929898262, - -0.0203398447483778, - 0.05051061511039734, - 0.028814779594540596, - -0.010300305671989918, - -0.017940785735845566, - 0.04422612488269806, - 0.030144693329930305, - -0.032126523554325104, - 0.09090346097946167, - 0.031552836298942566, - -0.021030878648161888, - -0.005886820610612631, - 0.04858093708753586, - -0.003160173073410988, - -0.005723841022700071, - -0.0016803189646452665, - -0.03322174772620201, - 0.005687985569238663, - -0.0032970758620649576, - 0.0004767151258420199, - -0.0582554005086422, - -0.0006555851432494819, - -0.045529961585998535, - -0.03207436949014664, - 0.02782386541366577, - 0.019244622439146042, - -0.00032453297171741724, - -0.006695198826491833, - 0.006910332012921572, - 0.033769357949495316, - 0.03069230355322361, - -0.03476027399301529, - -0.00815549585968256, - 0.03674210608005524, - -0.01226257998496294, - -0.043235208839178085, - -0.04349597543478012, - 0.002061690902337432, - 0.004847011063247919, - -0.027797788381576538, - -0.00573036028072238, - 0.059194162487983704, - -0.06639134138822556, - 0.032048292458057404, - 0.012034407816827297, - -0.005260979291051626, - 0.0451127327978611, - -0.012614615261554718, - -0.01504626963287592, - -0.03225690871477127, - 0.019505389034748077, - 0.030718380585312843, - 0.04065361246466637, - -0.07129376381635666, - -0.031631067395210266, - -0.02537265233695507, - 0.03048369102180004, - 0.05051061511039734, - 0.011323817074298859, - -0.011382490396499634, - -0.05251852422952652, - 0.020039962604641914, - 0.041227299720048904, - 0.0724932923913002, - -0.04435650631785393, - -0.010717533528804779, - -0.01675429567694664, - 0.01916639320552349, - 0.007425347343087196, - 0.0003104759962297976, - 0.010124288499355316, - 0.008898681960999966, - 0.041748836636543274, - 4.609264578903094e-05, - 0.017380136996507645, - -0.03293490409851074, - 0.013651165179908276, - -0.03736794739961624, - 0.03726363927125931, - -0.010261191055178642, - 0.00014994115917943418, - 0.0717109888792038, - 0.03742009773850441, - 0.04513880982995033, - -0.03374328091740608, - -0.05019769445061684, - 0.022491173818707466, - -0.05663864687085152, - -0.007092868909239769, - 0.007588326930999756, - -0.0036865968722850084, - 0.013755472376942635, - 0.05622141808271408, - -0.01904904656112194, - 0.028084632009267807, - 0.015932878479361534, - 0.011128242127597332, - 0.016441375017166138, - -0.030196847394108772, - -0.004628618713468313, - -0.03053584322333336, - -0.00876177940517664, - 0.031996142119169235, - -0.02980569563806057, - 0.023182207718491554, - -0.007757825311273336, - 0.021852295845746994, - -0.010952224023640156, - -0.027641328051686287, - -0.01619364507496357, - -0.009478889405727386, - -0.019479313865303993, - -0.007014638744294643, - -0.00882045179605484, - -0.035985879600048065, - 0.0034356084652245045, - 0.02340386062860489, - 0.02151329815387726, - 0.028423629701137543, - 0.06399228423833847, - -0.011304260231554508, - 0.012471193447709084, - 0.032439444214105606, - 0.019140316173434258, - 0.006753871683031321, - 0.033404283225536346, - 0.01174104493111372, - 0.013599012047052383, - -0.003996258135885, - 0.05830755457282066, - 0.02030072920024395, - -0.001413847436197102, - -0.011369451880455017, - 0.02315613068640232, - -0.019361967220902443, - -0.003621404990553856, - -0.003820240031927824, - 0.002694051479920745, - -0.015320075675845146, - 0.0042896210215985775, - -0.03556865081191063, - 0.06044584512710571, - 0.006995081435889006, - -0.0004506383847910911, - -0.02118733897805214, - 0.023182207718491554, - 0.003412791294977069, - -0.0015882354928180575, - -0.021930525079369545, - 0.04268759861588478, - 0.05317044258117676, - 0.058464016765356064, - -0.016454413533210754, - -0.003918027970939875, - -0.07624834030866623, - 0.006708237342536449, - 0.025229230523109436, - 0.030718380585312843, - 0.024512121453881264, - 0.00762092275545001, - 0.015606919303536415, - -0.042635444551706314, - 0.00930287130177021, - 0.0038267592899501324, - -0.023495128378272057, - -0.02606368623673916, - 0.05924631655216217, - 0.04187921807169914, - -0.07113730162382126, - -0.038880396634340286, - 0.07473589479923248, - -0.03496888652443886, - 0.04965008422732353, - 0.017367098480463028, - -0.022582443431019783, - -0.008514050394296646, - 0.06352289766073227, - 0.0157894566655159, - -0.00891823973506689, - 0.046494800597429276, - 0.02380804903805256, - 0.004716627299785614, - -8.979153062682599e-05, - 0.0058379266411066055, - 0.020887456834316254, - 0.012960132211446762, - 0.04743356257677078, - 0.0010072134900838137, - -0.031839679926633835, - -0.036194492131471634, - 0.07061576843261719, - -0.037993788719177246, - 0.03504711762070656, - -0.030066462233662605, - 0.003204177599400282, - -0.016063261777162552, - 0.013599012047052383, - -0.04539957642555237, - -0.020026924088597298, - 0.032804518938064575, - -0.0318136028945446, - -0.00843582022935152, - 0.0006543627823702991, - -0.0036344435065984726, - -0.02678079530596733, - 0.025424806401133537, - 0.04273975268006325, - -0.024068815633654594, - 0.024029701948165894, - -0.00859879981726408, - 0.0026516770012676716, - -0.0027054601814597845, - 0.03966269642114639, - 0.0588812418282032, - 0.015919839963316917, - -0.0317353717982769, - -0.021278606727719307, - -0.029910001903772354, - -0.014329159632325172, - 0.04659910500049591, - -0.002514773979783058, - 0.00691685127094388, - 0.04772040620446205, - 0.009928712621331215, - -0.063314288854599, - 0.005371805280447006, - -0.021969640627503395, - -0.006072617135941982, - -0.01357293501496315, - 0.002723387908190489, - 0.005642351228743792, - -0.06550472974777222, - 0.011023934930562973, - 0.03483850508928299, - 0.0049643563106656075, - 0.014172699302434921, - 0.039975617080926895, - -0.0076926336623728275, - 0.03241336718201637, - 0.01631099171936512, - 0.05575203523039818, - 0.046494800597429276, - -0.02070491947233677, - -0.008585761301219463, - -0.03379543498158455, - 0.03859355300664902, - -0.02114822342991829, - 0.050484538078308105, - 0.023664627224206924, - -0.014681195840239525, - -0.02090049535036087, - -0.03689856454730034, - -0.03431696817278862, - 0.0034453871194273233, - -0.01526792161166668, - -0.01401623897254467, - -0.0807335376739502, - 0.028084632009267807, - -0.058776937425136566, - -0.06420089304447174, - -0.007073311600834131, - -0.014146623201668262, - -0.01286886353045702, - 0.0055738999508321285, - 0.03483850508928299, - 0.0948149710893631, - -0.021043917164206505, - -0.028580090031027794, - -0.03462988883256912, - -0.030718380585312843, - 0.007542692590504885, - 0.006235596723854542, - 0.021930525079369545, - -0.015215768478810787, - 0.015541727654635906, - -0.043313439935445786, - -0.06107168644666672, - -0.0403667688369751, - 0.01619364507496357, - 0.0317353717982769, - 0.01824066787958145, - 0.03194398805499077, - -0.017210638150572777, - 0.006740833166986704, - -0.03314351662993431, - -0.02988392673432827, - -0.027980325743556023, - 0.015320075675845146, - -0.012510308064520359, - 0.0025245528668165207, - -0.03476027399301529, - -0.009857001714408398, - -0.01178016047924757, - 0.014902847819030285, - 0.005440256558358669, - 0.03807201609015465, - 0.015254884026944637, - 0.008455378003418446, - 0.028527935966849327, - -0.0006258413777686656, - -0.02876262739300728, - -0.0006132104899734259, - -0.011232549324631691, - 0.00443956209346652, - 0.011441162787377834, - -0.012190868146717548, - -0.04000169411301613, - -0.013403436169028282, - -0.008064227178692818, - -0.009941751137375832, - -0.026937255635857582, - -0.01646745204925537, - 0.010202518664300442, - 0.0033899741247296333, - -0.04425220191478729, - 0.020678842440247536, - -0.04555603861808777, - -0.004749223589897156, - 0.00616062618792057, - 0.0028293246868997812, - -0.013585973531007767, - 0.0628449022769928, - -0.017210638150572777, - 0.016975946724414825, - -0.027902094647288322, - 0.0074514239095151424, - -0.0024365438148379326, - -0.004579724743962288, - 0.03752440586686134, - -0.005384843330830336, - 0.014955000951886177, - -0.02444692887365818, - -0.0402885377407074, - -0.05301398038864136, - 2.9794695365126245e-05, - 0.010958743281662464, - -0.0005985423340462148, - -0.04910247027873993, - 0.018944740295410156, - 0.003875653026625514, - -0.004266804084181786, - 0.007679595146328211, - -0.010182960890233517, - -0.008996469900012016, - 0.013612049631774426, - 0.05538696050643921, - 0.01663695089519024, - -0.029258085414767265, - -0.007321040146052837, - -0.024785926565527916, - -0.02907554805278778, - -0.0411490723490715, - 0.03742009773850441, - -0.006806024815887213, - 0.008109861053526402, - 0.002306160284206271, - 0.0033101141452789307, - 0.037680868059396744, - 0.011610661633312702, - -0.05006730929017067, - -0.02315613068640232, - -0.06133245676755905, - -0.01655871979892254, - -0.011017415672540665, - -0.03186575695872307, - 0.004745963960886002, - -0.004345034249126911, - 0.010300305671989918, - 0.03210044652223587, - -0.012256060726940632, - -0.027537019923329353, - 0.0010919627966359258, - 0.02610280178487301, - -0.012334290891885757, - -0.02517707645893097, - -0.03256982937455177, - -0.027797788381576538, - 0.01299272757023573, - -0.002967857290059328, - 0.007999035529792309, - 0.013103554025292397, - -0.008246763609349728, - -0.004755742382258177, - 0.041175149381160736, - -0.02030072920024395, - -0.0494675450026989, - -0.015293998643755913, - -0.019753118976950645, - -0.07729141414165497, - 0.0147203104570508, - -0.0493893139064312, - -0.017301905900239944, - -0.0072558484971523285, - -0.01917942985892296, - 0.021317722275853157, - -0.01744532771408558, - 0.016324030235409737, - 0.032204754650592804, - -0.0028749587945640087, - -0.019401082769036293, - -0.005238161887973547, - -0.020274652168154716, - -0.0001650167687330395, - 0.013990162871778011, - -0.0022800834849476814, - 0.019022969529032707, - -6.391853094100952e-05, - 0.010417651385068893, - -0.031083455309271812, - 0.019401082769036293, - 0.001413847436197102, - 0.0022295599337667227, - -0.004475418012589216, - -0.01752355881035328, - -0.014589927159249783, - -0.013638126663863659, - 0.03932369872927666, - 0.006969004403799772, - 0.026559144258499146, - 0.010091692209243774, - -0.011415085755288601, - 0.007849094457924366, - 0.022491173818707466, - -0.042270369827747345, - -0.015007155016064644, - 0.06659995019435883, - 0.01526792161166668, - 0.043600283563137054, - 0.0037387502379715443, - -0.035829417407512665, - 0.0058183688670396805, - -0.017262792214751244, - 0.02891908772289753, - -0.021291645243763924, - 0.007738268002867699, - -0.007575288414955139, - -0.00012824451550841331, - -0.06060230731964111, - -0.03971485048532486, - -0.0013266532914713025, - -0.030014310032129288, - -0.014185737818479538, - -0.024707695469260216, - 0.01941412128508091, - -0.01663695089519024, - -0.0037159333005547523, - 0.0019867203664034605, - 0.04357420653104782, - 0.027928171679377556, - 0.007542692590504885, - -0.003709414042532444, - -0.003709414042532444, - -0.02722409926354885, - 0.022973593324422836, - -0.0044623794965445995, - 0.014355236664414406, - -0.020105155184864998, - -0.051136456429958344, - 0.014303083531558514, - 0.03718540817499161, - -0.01142160501331091, - -0.022934479638934135, - -0.04120122268795967, - 0.052622828632593155, - 0.04688594862818718, - 0.014081431552767754, - -0.0317353717982769, - -0.014889809302985668, - 0.012790633365511894, - -0.0012590168043971062, - -0.012027889490127563, - 0.012047446332871914, - 0.018149400129914284, - -0.010150364600121975, - -0.0055967168882489204, - -0.006336643826216459, - 0.04297444224357605, - 0.005710802506655455, - -0.024838080629706383, - -0.045008424669504166, - 0.009016027674078941, - 0.005655389744788408, - 0.021656719967722893, - -0.017288867384195328, - -0.04521704092621803, - -0.011930101551115513, - -0.010606708005070686, - 0.004263544455170631, - 0.014459543861448765, - 0.02928416058421135, - -0.016206683591008186, - -0.007184137590229511, - -0.051527608186006546, - 0.020757071673870087, - -0.03408227860927582, - 0.02774563431739807, - -0.004759002011269331, - -0.030822688713669777, - 0.024394774809479713, - 0.01081532146781683, - 0.005593457259237766, - -0.005912897177040577, - -0.003950623795390129, - -0.027771711349487305, - -0.014146623201668262, - 0.04357420653104782, - 0.0049415393732488155, - 0.014902847819030285, - 0.009733137674629688, - -0.026611296460032463, - 0.011675853282213211, - 0.027015486732125282, - 0.01957058161497116, - 0.040053848177194595, - -0.004152718465775251, - 0.014994116500020027, - -0.030666228383779526, - 0.03210044652223587, - 0.008911720477044582, - 0.02795424871146679, - -0.0091790072619915, - -0.02517707645893097, - 0.03890647366642952, - -0.00817505270242691, - -0.011082608252763748, - 0.019440198317170143, - 0.004045151639729738, - 0.038802165538072586, - -0.0037974228616803885, - 0.027354484423995018, - -0.03992346301674843, - 0.009817887097597122, - -0.018110284581780434, - 0.015346151776611805, - 0.010404612869024277, - -0.014107507653534412, - 0.015580842271447182, - -0.0054695927537977695, - -0.016128454357385635, - -0.00013323576422408223, - 0.0002124845632351935, - -4.079581412952393e-05, - 0.007907766848802567, - 0.0157112255692482, - -0.003455166006460786, - 0.01103697344660759, - -0.025033654645085335, - 0.005296834744513035, - -0.011017415672540665, - 0.01638922095298767, - 0.04805940389633179, - -0.004133160691708326, - 0.03890647366642952, - -0.0405232310295105, - 0.03468204289674759, - -0.03105737827718258, - -0.00950496643781662, - 0.0015898653073236346, - -0.01916639320552349, - -0.07989908009767532, - -0.011858390644192696, - -0.006023723166435957, - -0.00651592155918479, - 0.05971569940447807, - 0.009459331631660461, - 0.012529865838587284, - -0.01659783534705639, - 0.03851532191038132, - 0.02236079052090645, - -0.023834126070141792, - -0.06107168644666672, - -0.02774563431739807, - -0.01254942361265421, - -0.005655389744788408, - 0.023273475468158722, - -0.01872308738529682, - 0.002376241609454155, - -0.10279444605112076, - -0.054708968847990036, - 0.01779736392199993, - -0.009661426767706871, - -0.0318918339908123, - 0.03825455531477928, - 0.03801986575126648, - 0.023247400298714638, - -0.028658319264650345, - -0.028162863105535507, - -0.009635349735617638, - 0.0038267592899501324, - -0.018188515678048134, - 0.014589927159249783, - -0.009811367839574814, - 0.03833278641104698, - -0.006792986765503883, - 0.02388628013432026, - 0.032282985746860504, - -0.006532219238579273, - 0.003865874372422695, - -0.008416262455284595, - -0.006036761682480574, - 0.03710717707872391, - -0.024029701948165894, - 0.0078556127846241, - 0.0028619205113500357, - 0.003755048383027315, - 0.0028146563563495874, - 0.04245290532708168, - 0.008201129734516144, - 0.02049630507826805, - 0.004993692506104708, - 0.04281798005104065, - -0.010580630972981453, - -0.01081532146781683, - 0.0016672805650159717, - 0.02419920079410076, - -0.0002041318512056023, - 0.02328651398420334, - 0.024759849533438683, - 0.014616004191339016, - -0.011160838417708874, - 0.023977547883987427, - 0.018358014523983, - 0.03483850508928299, - -0.01113476138561964, - 0.0017487703589722514, - 0.006307307630777359, - 0.035907648503780365, - 0.013559896498918533, - -0.021982679143548012, - -0.005599976517260075, - -0.006548517383635044, - 0.0012712402967736125, - 0.025724688544869423, - -0.02150025963783264, - -0.007457943167537451, - 0.002275194274261594, - -0.008207648992538452, - 0.030561920255422592, - 0.037993788719177246, - -0.019101200625300407, - 0.010730572044849396, - -0.00468403147533536, - 0.0015923100290820003, - -0.010104730725288391, - 0.0007167024887166917, - 0.008787856437265873, - 0.0043939282186329365, - 0.01787559501826763, - -0.01623276062309742, - -0.016102377325296402, - 0.010378535836935043, - 0.001397549407556653, - -0.007862132042646408, - -0.029414545744657516, - -0.01281019113957882, - 0.026194069534540176, - -0.04380889609456062, - 0.014707272872328758, - 0.05731663852930069, - -0.010893551632761955, - 0.019361967220902443, - -0.003911508712917566, - -0.03113560937345028, - -0.0050262887962162495, - 0.015072346664965153, - 0.016415297985076904, - 0.011369451880455017, - 0.010808802209794521, - 0.018019016832113266, - 0.012080042622983456, - -0.027980325743556023, - -0.0090421037748456, - 0.024264391511678696, - 0.009902635589241982, - -0.031109532341361046, - 0.01675429567694664, - 0.008468416519463062, - -0.0072754062712192535, - 0.010847916826605797, - 0.001609422848559916, - -0.007405789569020271, - 0.01977919600903988, - 0.044643353670835495, - 0.011389009654521942, - -0.005502189043909311, - -0.0022556367330253124, - -0.02288232557475567, - 0.023990586400032043, - 9.671816223999485e-05, - 0.00013374506670515984, - 0.01731494441628456, - -0.03559472784399986, - -0.014629042707383633, - -0.03319567069411278, - -0.015228806994855404, - 0.0021594788413494825, - -0.0011620440054684877, - -0.004358072765171528, - 0.04832017049193382, - -0.011004378087818623, - -0.0043091787956655025, - -0.011701930314302444, - -0.025711650028824806, - 0.04949362203478813, - -0.004286361392587423, - -0.04451296851038933, - -0.023208284750580788, - 0.03264806047081947, - 0.05030200257897377, - -0.02392539381980896, - 0.005446775816380978, - -0.012438597157597542, - -0.010287268087267876, - 0.026559144258499146, - 0.01415966171771288, - -0.032439444214105606, - -0.00015921062731649727, - -0.014237891882658005, - -0.023834126070141792, - -0.0407579205930233, - -0.014459543861448765, - 0.004459119867533445, - 0.038802165538072586, - 0.009609272703528404, - -0.0146029656752944, - -0.014329159632325172, - -0.02307790145277977, - 0.021096069365739822, - -0.03160499036312103, - 0.0032514415215700865, - 0.00968750286847353, - -0.05118861049413681, - 0.01820155419409275, - -0.01603718474507332, - -0.03861963003873825, - -0.010033019818365574, - 0.016297953203320503, - -0.01524184551090002, - 0.024707695469260216, - 0.000702441786415875, - -0.02234775200486183, - -0.021487221121788025, - -0.012040927074849606, - 0.01679341122508049, - -0.0058183688670396805, - 0.0451909638941288, - -0.025151001289486885, - -0.016897717490792274, - 0.04010600224137306, - -0.00107484997715801, - 0.015215768478810787, - 0.027484867721796036, - 0.007268887013196945, - -0.017249753698706627, - -0.055804189294576645, - -0.024616427719593048, - 0.03395189344882965, - -0.010026500560343266, - -0.02396450936794281, - 0.00869658775627613, - 0.004667733795940876, - 0.04047107696533203, - -0.014746387489140034, - -0.016219722107052803, - 0.03455166146159172, - 0.02988392673432827, - 0.021813180297613144, - 0.038045939058065414, - 0.01281019113957882, - 0.013781548477709293, - -0.008898681960999966, - 0.0019443457713350654, - 0.0021236231550574303, - 0.023912355303764343, - 0.02440781332552433, - -0.0005472037591971457, - -0.002403947990387678, - 0.020561497658491135, - -0.02203483134508133, - 0.004361331928521395, - 0.010000423528254032, - 0.0021757767535746098, - 0.007086349651217461, - 0.013012285344302654, - -0.009452812373638153, - -0.04313090071082115, - 0.017406214028596878, - -0.018501436337828636, - -0.01739317551255226, - -0.017327982932329178, - -0.013951047323644161, - -0.0019573841709643602, - 0.02400362491607666, - -0.008677029982209206, - 0.04779863730072975, - -0.01048936229199171, - -0.03256982937455177, - 0.010424170643091202, - -0.04725102335214615, - 0.03528180718421936, - 0.02280409447848797, - -0.008898681960999966, - 0.028527935966849327, - 0.0022817132994532585, - 0.013110073283314705, - -0.01945323683321476, - 0.028006400913000107, - -0.002444692887365818, - 0.01482461765408516, - -0.00356925162486732, - -0.009400659240782261, - 0.03387366607785225, - -0.0073014828376472, - 0.014511696994304657, - -0.007021158002316952, - -0.0052283830009400845, - -0.005423958413302898, - 0.0008882384281605482, - 0.002343645552173257, - 0.01087399385869503, - -0.01190402451902628, - 0.0011628589127212763, - 0.024473005905747414, - 0.012979689054191113, - 0.01405535452067852, - 0.010854436084628105, - -0.0022866027429699898, - -0.0034616850316524506, - -0.010984820313751698, - -0.029988233000040054, - -0.008853048086166382, - 0.04007992520928383, - -0.02299967035651207, - 0.03713325411081314, - -0.013585973531007767, - 0.010945704765617847, - -0.013612049631774426, - -0.00950496643781662, - 0.042791903018951416, - 0.024720733985304832, - -0.012093081139028072, - -0.003891951171681285, - -0.014146623201668262, - -0.015124499797821045, - 0.009094257839024067, - 0.022086985409259796, - -0.0065126619301736355, - 0.007588326930999756, - -0.017771286889910698, - -0.00616062618792057, - 0.007308002095669508, - 0.012412521056830883, - 0.012940574437379837, - 0.022217368707060814, - -0.017067216336727142, - -0.0029743763152509928, - -0.0364813357591629, - -0.007868651300668716, - -0.030822688713669777, - 0.0364813357591629, - 0.018840434029698372, - 0.0018009237246587873, - 0.00924419891089201, - 0.01646745204925537, - -0.02473377250134945, - 0.0013706578174605966, - 0.009074700064957142, - 0.007457943167537451, - 0.01520272996276617, - 0.03303920850157738, - -0.018710048869252205, - 0.017327982932329178, - -0.009518004022538662, - -0.019753118976950645, - 0.0009966198122128844, - -0.005968310404568911, - -0.018501436337828636, - 0.01607630029320717, - -0.013338244520127773, - -0.014185737818479538, - -0.001609422848559916, - 0.004579724743962288, - -0.017627865076065063, - 0.03447343036532402, - -0.021161261945962906, - -0.010704495012760162, - 0.002601153217256069, - -0.031709298491477966, - 0.015776418149471283, - 0.026194069534540176, - 0.014837656170129776, - -0.01877524144947529, - 0.02105695568025112, - 0.04409573972225189, - 0.0030118615832179785, - -0.02151329815387726, - 0.024981502443552017, - -0.010345940478146076, - 0.017497481778264046, - 0.006955966353416443, - -0.0014260708121582866, - 0.0020339845214039087, - -0.027771711349487305, - -0.020717957988381386, - -0.014994116500020027, - 0.026676489040255547, - 0.007607884239405394, - -0.0028863674961030483, - 0.011930101551115513, - -0.011812755838036537, - -0.0180450938642025, - -0.03512534871697426, - -0.03434304520487785, - -0.059872157871723175, - 0.030900917947292328, - -0.027797788381576538, - 0.004257025197148323, - 0.0501716174185276, - 0.018266744911670685, - -0.03755048289895058, - -0.029675312340259552, - -0.01876220293343067, - 0.016480490565299988, - 0.0019916098099201918, - 0.02388628013432026, - 0.042270369827747345, - 0.008461897261440754, - 0.0731191337108612, - 0.010274229571223259, - -0.06524396687746048, - -0.013083996251225471, - 0.036272723227739334, - -0.0011970846680924296, - 0.015254884026944637, - -0.029492774978280067, - 0.007888209074735641, - -0.003911508712917566, - -0.0181624386459589, - -0.031318146735429764, - 0.05030200257897377, - 0.006747352425009012, - 0.02018338441848755, - -0.036090187728405, - 0.016324030235409737, - -0.037993788719177246, - 0.0182797834277153, - 0.02174798771739006, - 0.03329997509717941, - 0.012718922458589077, - 0.007066792342811823, - 0.00751009676605463, - 0.009029066190123558, - 0.0023403859231621027, - -0.009537561796605587, - -0.040940456092357635, - -0.004723146557807922, - 0.04837232455611229, - -0.021852295845746994, - -0.007118945941329002, - 0.036272723227739334, - 0.01502019353210926, - -0.002193704480305314, - 0.001994869438931346, - -0.020196422934532166, - -0.02243902161717415, - -0.006988562177866697, - 0.010104730725288391, - -0.03588157147169113, - 0.02758917398750782, - -0.0013356172712519765, - -0.007203694898635149, - -0.0010495882015675306, - 0.0031243176199495792, - 0.02722409926354885, - -0.0223999060690403, - -0.04310482367873192, - 0.004948058631271124, - 0.05095392093062401, - -0.024068815633654594, - 0.021200377494096756, - -0.013207861222326756, - -0.011819275096058846, - -0.06795594096183777, - -0.006669122260063887, - 0.020887456834316254, - 0.0037289715837687254, - 0.018540550023317337, - -0.032595906406641006, - -0.031083455309271812, - 0.024759849533438683, - 0.0027559837326407433, - 0.005124076269567013, - -0.01502019353210926, - -0.029910001903772354, - 0.0008458637166768312, - 0.0010552924359217286, - 0.015189691446721554, - -0.03478635102510452, - 0.0012337550288066268, - 0.002739685820415616, - -0.005371805280447006, - 0.0032547011505812407, - -0.027641328051686287, - -0.005544563289731741, - -0.01989654079079628, - 0.011773641221225262, - -0.013442551717162132, - -0.0011905654100701213, - -0.01837105304002762, - -0.0359337255358696, - 0.03246552124619484, - -0.0023534244392067194, - 0.003412791294977069, - 0.037315793335437775, - 0.004592763260006905, - -0.010906590148806572, - 0.011877947486937046, - -0.02637660689651966, - 0.04018423333764076, - 0.020887456834316254, - -0.011023934930562973, - -0.009811367839574814, - 0.012523346580564976, - -0.026011532172560692, - 0.006199741270393133, - -0.031396377831697464, - -0.040575381368398666, - 0.021213416010141373, - -0.005583678372204304, - 0.04414789378643036, - -0.00589985866099596, - -0.035021040588617325, - 0.020770110189914703, - 0.023090939968824387, - -0.028580090031027794, - 0.021030878648161888, - 0.04451296851038933, - 0.01405535452067852, - -0.027537019923329353, - 0.02500757947564125, - -0.031005224213004112, - 0.0006726980209350586, - 0.00376156740821898, - -0.0057694753631949425, - 0.006183443125337362, - -0.010684938170015812, - -0.0002868439769372344, - 0.020000847056508064, - -0.0027755412738770247, - 0.00815549585968256, - -0.009165968745946884, - 0.0089834313839674, - -0.004736185073852539, - 0.005498929414898157, - -0.026885103434324265, - 0.015059308148920536, - 0.013064438477158546, - 0.03032723069190979, - 0.013898894190788269, - 0.02996215596795082, - 0.0014863732503727078, - -0.028162863105535507, - -0.0007533728494308889, - -0.005319651681929827, - -0.0034877618309110403, - 0.014785503037273884, - 0.022047869861125946, - -0.057890329509973526, - -0.003852836089208722, - -0.013716356828808784, - 0.020248576998710632, - 0.04401751235127449, - 0.019831348210573196, - 0.009211602620780468, - -0.019987808540463448, - -0.012888421304523945, - -0.0008955724770203233, - 0.017067216336727142, - -0.016623912379145622, - -0.0022523771040141582, - -0.036064110696315765, - -0.017341021448373795, - 0.0034356084652245045, - -0.020066039636731148, - -0.05244029313325882, - 0.00011235401325393468, - -0.02057453617453575, - 0.008044669404625893, - -0.011630219407379627, - 0.023130053654313087, - -0.0227910578250885, - 0.009596234187483788, - -0.016089338809251785, - 0.01760178804397583, - -0.011415085755288601, - 0.00032982981065288186, - 0.0056488704867661, - -0.009824405424296856, - -0.0022963816300034523, - -0.04070576652884483, - -0.008168533444404602, - -0.023651588708162308, - -0.0204180758446455, - 0.007334078662097454, - 0.010358978994190693, - -0.012158272787928581, - -0.013990162871778011, - -0.01848839782178402, - 0.019909579306840897, - 0.01103697344660759, - -0.0018367792945355177, - -0.03084876388311386, - 0.03755048289895058, - 0.009609272703528404, - -0.013246975839138031, - 0.027928171679377556, - -0.013097034767270088, - -0.022126100957393646, - 0.011382490396499634, - -0.005551082547754049, - -0.021565450355410576, - 0.023064862936735153, - -0.020730996504426003, - -0.03749832883477211, - -0.02328651398420334, - -0.02602457068860531, - 0.007751306053251028, - 0.012875382788479328, - -0.013546857982873917, - 0.019805271178483963, - -0.00872266385704279, - -0.01216479204595089, - 0.025633420795202255, - 0.004403706640005112, - 0.011128242127597332, - 0.0019476052839308977, - -0.014407389797270298, - -0.06279275566339493, - -0.03327390179038048, - 0.0019573841709643602, - -0.027119792997837067, - 0.015854649245738983, - 0.006216038949787617, - -0.01020903792232275, - 0.008937797509133816, - 0.027041563764214516, - 0.03275236487388611, - 0.017823440954089165, - -0.005300094373524189, - 0.015333114191889763, - 0.026520028710365295, - -0.011219510808587074, - 0.026806872338056564, - 0.0036051070783287287, - 0.0014733349671587348, - 0.024590350687503815, - -0.02367766574025154, - -0.009915674105286598, - -0.004273323342204094, - -0.019948694854974747, - 0.04253113642334938, - -0.016532642766833305, - -0.0032253647223114967, - 0.007901247590780258, - -0.0052903154864907265, - 0.005834667012095451, - -0.007151541765779257, - -0.01020903792232275, - 0.025685572996735573, - -0.016819486394524574, - -0.01760178804397583, - 0.008311956189572811, - 0.0026109321042895317, - -0.012881902046501637, - -0.018618781119585037, - 0.0007607069564983249, - -0.008201129734516144, - 0.0038397975731641054, - 0.01619364507496357, - 0.004426524043083191, - -0.025111885741353035, - 0.021565450355410576, - 0.0181624386459589, - -0.008950836025178432, - -0.013924970291554928, - -0.03343036025762558, - -0.00724932923913002, - -0.02468162029981613, - -0.008963873609900475, - 0.0036931161303073168, - -0.005583678372204304, - 0.0006079136510379612, - -0.018957778811454773, - -0.015724264085292816, - 0.04894601181149483, - 0.019870463758707047, - -0.0010903329821303487, - -0.007053753826767206, - -0.02980569563806057, - 0.01482461765408516, - -0.010293787345290184, - -0.02186533249914646, - 0.021004801616072655, - -0.030509768053889275, - -0.029101625084877014, - -0.0004180424730293453, - -0.032882750034332275, - 0.01933589018881321, - -0.03032723069190979, - -0.026598257943987846, - -0.002640268299728632, - 0.00863791536539793, - -0.016454413533210754, - -0.05163191258907318, - 0.04704241082072258, - 0.02774563431739807, - 0.00022470802650786936, - 0.03666387498378754, - -0.009863520972430706, - 0.013136149384081364, - 0.005629312712699175, - 0.017145445570349693, - -0.018149400129914284, - 0.025281384587287903, - -0.008064227178692818, - -0.014459543861448765, - -0.0007350376690737903, - 0.004654695279896259, - -0.0061638858169317245, - -0.026728643104434013, - 0.019870463758707047, - 0.00015696966147515923, - 0.00752313481643796, - 0.011408566497266293, - 0.023247400298714638, - 0.005580419208854437, - -0.0054435161873698235, - -0.04474765807390213, - -0.0062127793207764626, - -0.009941751137375832, - -0.014642080292105675, - 0.00891823973506689, - -0.037915557622909546, - 0.004224429372698069, - -0.013820664025843143, - -0.0006543627823702991, - 0.0052903154864907265, - -0.003412791294977069, - -0.01151939295232296, - 0.0205354206264019, - -0.020026924088597298, - -0.002796728629618883, - -0.03940192982554436, - -0.019075123593211174, - -0.021565450355410576, - -0.006040021311491728, - -0.0003444979665800929, - 0.028527935966849327, - 0.030509768053889275, - 0.0407579205930233, - -0.003976700361818075, - 0.013233937323093414, - -1.88190424523782e-05, - -0.016297953203320503, - -0.010241633281111717, - 0.008298917673528194, - -0.0030689043924212456, - -0.009576677344739437, - -0.001371472724713385, - -0.020352883264422417, - 0.007308002095669508, - 0.026037609204649925, - 0.022412944585084915, - -0.012249541468918324, - 0.0020437631756067276, - 0.03533396124839783, - 0.022543327882885933, - 0.027380559593439102, - 0.002544110408052802, - -0.02155241183936596, - -0.01872308738529682, - -0.03588157147169113, - -0.013057919219136238, - 0.014955000951886177, - 0.0318918339908123, - -0.01303184311836958, - 0.04187921807169914, - -0.0135338194668293, - -0.0017080254619941115, - -0.010606708005070686, - -0.015372228808701038, - 0.006300788372755051, - 0.02573772706091404, - -0.00353991542942822, - -0.02359943464398384, - -0.007288444321602583, - -0.022608520463109016, - -0.03329997509717941, - -0.0058183688670396805, - 0.028058554977178574, - -0.011362932622432709, - 0.041461993008852005, - -0.021161261945962906, - -0.020952647551894188, - 0.0017080254619941115, - 0.018983855843544006, - -0.005733619909733534, - 0.05377020686864853, - -0.010847916826605797, - 0.01872308738529682, - -0.006480066105723381, - 0.007927324622869492, - 0.011493315920233727, - -0.04532134532928467, - -0.02691117860376835, - 0.013123111799359322 - ], - "how_to_launch_a_rocket": [ - -0.01556536927819252, - -0.015353435650467873, - 0.013234095647931099, - -0.05147639662027359, - -0.004721416626125574, - -0.008589210920035839, - 0.051994454115629196, - -0.01012573204934597, - 0.0011435601627454162, - 0.04297548905014992, - 0.002042807638645172, - -0.03767714276909828, - -0.01876792684197426, - -0.04292839393019676, - -0.04803835600614548, - 0.01650729775428772, - -0.036170054227113724, - 0.01921534165740013, - 0.006664144340902567, - -0.024678528308868408, - 0.07464783638715744, - -0.023089023306965828, - -0.03138976916670799, - 0.013010388240218163, - 0.003349733306095004, - -0.04325806722044945, - 0.033815234899520874, - 0.06000084802508354, - -0.03873681277036667, - 0.004792061634361744, - 0.05076994746923447, - -0.013716834597289562, - -0.021334681659936905, - -0.014988438226282597, - -0.03423910215497017, - -0.025950131937861443, - 0.0072822850197553635, - 0.015577143058180809, - 0.0009617973701097071, - -0.012975065968930721, - -0.010320005007088184, - 0.019945336505770683, - -0.037559401243925095, - -0.03541651368141174, - -0.04193936660885811, - 0.02635045163333416, - -0.053878311067819595, - -0.016919391229748726, - -0.007405912969261408, - 0.0005636853748001158, - -0.016672134399414062, - 0.03817165270447731, - -2.7043652153224684e-05, - -0.013987638987600803, - 0.016189396381378174, - -0.05477314442396164, - -0.01438795868307352, - -0.0038030364084988832, - -0.018132124096155167, - -0.009825492277741432, - -0.018061479553580284, - -0.0060989875346422195, - -0.0010523108066990972, - 0.02167613059282303, - 0.04789706692099571, - -0.010584921576082706, - -0.04742610082030296, - 0.009001304395496845, - 0.022947734221816063, - 0.050864141434431076, - 0.005492620635777712, - 0.03518103063106537, - -7.906129030743614e-05, - -0.0328497588634491, - 0.031460411846637726, - -0.04457676783204079, - -0.03301459550857544, - 0.06791304796934128, - 0.013186999596655369, - -0.02354821376502514, - -0.05025188624858856, - -0.06018923223018646, - 0.014764729887247086, - -0.028752367943525314, - -0.03247298672795296, - -0.011827089823782444, - -0.019203567877411842, - 0.019921788945794106, - -0.03711198270320892, - -0.06800723820924759, - -0.03442748636007309, - 0.012692486867308617, - -0.009554687887430191, - 0.03367394581437111, - 0.08350196480751038, - -0.025432070717215538, - 0.053313154727220535, - 0.04321097210049629, - 0.03645263612270355, - 0.029882682487368584, - 0.05656280741095543, - -0.0454009547829628, - -0.03993777185678482, - -0.046554818749427795, - 0.056233134120702744, - 0.00407678447663784, - -0.01989823952317238, - 0.0343097485601902, - -0.009395737200975418, - -0.053689926862716675, - -0.07516589760780334, - 0.0007660528062842786, - 0.012774906121194363, - 0.05053446441888809, - 0.019674532115459442, - -0.006246163509786129, - 0.028681723400950432, - 0.02653883583843708, - -0.023194991052150726, - -0.022488543763756752, - -0.035110387951135635, - -0.04288129508495331, - -0.02569110132753849, - 0.006934948731213808, - 0.01614230126142502, - -0.017037132754921913, - 0.0710214152932167, - -0.023689502850174904, - 0.03153105825185776, - 0.06932593882083893, - 0.0008447921718470752, - -0.03414490818977356, - 0.01097935438156128, - -0.03814810514450073, - 0.010861613787710667, - 0.025573359802365303, - -0.03894874453544617, - -0.042528074234724045, - -0.018426477909088135, - 0.02335982769727707, - 0.004544805269688368, - -0.04542450234293938, - 0.011220723390579224, - 0.010896936058998108, - -0.016471974551677704, - -0.002872881945222616, - -0.04344645515084267, - 0.006781885400414467, - -0.037182629108428955, - -0.028940754011273384, - -0.005001051817089319, - -0.015883270651102066, - -0.022618059068918228, - -0.02905849553644657, - 0.04883899539709091, - -0.034380391240119934, - -0.03715908154845238, - 0.029835587367415428, - 0.008871789090335369, - -0.020769523456692696, - 0.03421555459499359, - 0.005972415674477816, - 0.01857954077422619, - -0.01575375534594059, - -0.039042938500642776, - -0.02418401464819908, - 0.012150878086686134, - 0.0010832177940756083, - -0.0572221577167511, - -0.009766621515154839, - 0.020180819556117058, - 0.004689037799835205, - -0.015188598074018955, - 0.02101678028702736, - 0.03442748636007309, - 0.005769312381744385, - -0.041962917894124985, - -0.030589129775762558, - 0.025149492546916008, - 0.020816620439291, - 0.01670745760202408, - -0.026209162548184395, - -0.04558934271335602, - -0.023136120289564133, - 0.022676929831504822, - 0.028469789773225784, - -0.02484336495399475, - 0.009725412353873253, - -0.011291367933154106, - -0.024984654039144516, - -0.03153105825185776, - -0.00030999016598798335, - -0.025620456784963608, - 0.012774906121194363, - 0.013916994445025921, - 0.013210548087954521, - 0.012315715663135052, - -0.012810228392481804, - 0.06033052131533623, - -0.01933308318257332, - -0.010749759152531624, - 0.03480425849556923, - 0.04452967271208763, - -0.03715908154845238, - 0.048791900277137756, - -0.018885666504502296, - -0.051146719604730606, - 0.04528321325778961, - 0.015353435650467873, - 0.01792019046843052, - -0.009295657277107239, - -0.00857743714004755, - 0.01680164970457554, - 0.016012785956263542, - -0.06066019833087921, - -0.01101467665284872, - -0.03730037063360214, - 0.04949834570288658, - -0.05279509350657463, - -0.015365209430456161, - -0.03866616636514664, - 0.027268830686807632, - 0.003493966069072485, - -0.04191581904888153, - 0.03449813276529312, - 0.05783441290259361, - 0.05877634137868881, - -0.06899626553058624, - 0.05806989595293999, - -0.007417687214910984, - -0.02165258303284645, - 0.025714648887515068, - -0.004044405650347471, - 0.007747362367808819, - -0.00863630697131157, - 0.008383164182305336, - -0.00017743946227710694, - -0.009348641149699688, - 0.011356125585734844, - -0.010938145220279694, - -0.016636813059449196, - -0.04836802929639816, - -0.004385854583233595, - -0.053030576556921005, - 0.046649012714624405, - -0.023277409374713898, - -0.024984654039144516, - -0.05872924625873566, - 0.006434549577534199, - -0.02474917285144329, - 0.060518909245729446, - -0.018697282299399376, - 0.04045582935214043, - 0.021593712270259857, - 0.005781086627393961, - -0.05632732808589935, - -0.019486146047711372, - 0.00024118521832861006, - 0.00778268463909626, - -0.00867162924259901, - -0.02345401979982853, - 0.0199806597083807, - -0.0984315350651741, - 0.024078048765659332, - -0.016448426991701126, - -0.0018338171066716313, - -0.007894538342952728, - -0.0050452048890292645, - -0.019074052572250366, - -0.023983854800462723, - -0.015800850465893745, - -0.0005302027566358447, - 0.0015674280002713203, - -0.01959211379289627, - -0.033909428864717484, - 0.017366807907819748, - 0.015000212006270885, - -0.0077885715290904045, - -0.02061646059155464, - -0.013516674749553204, - -0.024254659190773964, - 0.008459695614874363, - -0.016825199127197266, - 0.027716247364878654, - 0.006917287595570087, - 0.008659855462610722, - 0.02111097425222397, - 0.008241875097155571, - 0.01172112300992012, - -0.024395950138568878, - 0.05632732808589935, - -0.0015468233032152057, - 0.0016321855364367366, - 0.006970271002501249, - 0.01922711543738842, - -0.004188638646155596, - 0.020015981048345566, - -0.031272027641534805, - -0.019180020317435265, - 0.03800681605935097, - 0.0029508855659514666, - 0.03647618368268013, - 0.05288928747177124, - -0.007152769714593887, - 0.015871495008468628, - -0.016389556229114532, - 0.019521469250321388, - -0.05496152862906456, - -0.03602876514196396, - 0.00359698967076838, - 0.06282663345336914, - 0.04062066972255707, - 0.007040916010737419, - -0.05821118503808975, - 0.03979647904634476, - 0.036334894597530365, - -0.02073420211672783, - 0.04716707020998001, - 0.019015181809663773, - 0.024513689801096916, - 0.014576343819499016, - -0.030047520995140076, - 0.03421555459499359, - -0.016177622601389885, - -0.013822801411151886, - -0.035204578191041946, - 0.010637905448675156, - 0.008759935386478901, - 0.007553089410066605, - 0.005383710376918316, - 0.023418698459863663, - -0.03374458849430084, - 0.013563770800828934, - 0.011038225144147873, - 0.017107777297496796, - -0.020310334861278534, - 0.04014970362186432, - -0.006664144340902567, - 0.0314839631319046, - 0.02268870361149311, - -0.006416887976229191, - 0.008430260233581066, - -0.014105379581451416, - 0.023760147392749786, - -0.03518103063106537, - 0.028540434315800667, - 0.010337665677070618, - -0.020204367116093636, - -0.006093100178986788, - 0.0041121067479252815, - 0.011632817797362804, - 0.015400531701743603, - -0.048156097531318665, - 0.022676929831504822, - -0.00670535396784544, - 0.013022162020206451, - 0.008306632749736309, - -0.02071065455675125, - -0.020592913031578064, - -0.020180819556117058, - 0.005945923738181591, - 0.07681427150964737, - 0.016483750194311142, - 0.023100797086954117, - -0.035039741545915604, - 0.050958335399627686, - 0.024866914376616478, - -0.016931165009737015, - -0.0433051660656929, - 0.005304235033690929, - 0.03772423788905144, - 0.032308150082826614, - 0.038972292095422745, - 0.02814011462032795, - -0.06315630674362183, - 0.027033349499106407, - 0.02569110132753849, - 0.00288171274587512, - -0.0298120379447937, - -0.01699003577232361, - 0.04052647575736046, - -0.012916195206344128, - -0.007352929562330246, - -0.005419032648205757, - -0.013234095647931099, - -0.0015468233032152057, - 0.017484549432992935, - -0.005460241809487343, - -0.031460411846637726, - -0.021122748032212257, - 0.0012399606639519334, - -0.07168076187372208, - 0.045989662408828735, - 0.015459402464330196, - 0.03927842155098915, - 0.014446829445660114, - 0.006416887976229191, - 0.0199806597083807, - 0.038689713925123215, - 0.016106978058815002, - 0.05759892985224724, - -0.026279807090759277, - -0.008082924410700798, - -0.025267232209444046, - 0.012174426577985287, - -0.015365209430456161, - 0.0482267402112484, - -0.004415289964526892, - -0.02062823437154293, - 0.0007303625461645424, - 0.0770968496799469, - 0.0012988311937078834, - 0.03282621130347252, - -0.0395374521613121, - 0.01969808153808117, - -0.007541315164417028, - 0.01270426157861948, - 0.0015218033222481608, - -0.027975277975201607, - 0.026091421023011208, - -0.02877591736614704, - -0.04109163209795952, - 0.03346201032400131, - -0.008759935386478901, - -0.021617259830236435, - 0.03711198270320892, - 0.04408225417137146, - -0.009825492277741432, - 0.027339475229382515, - -0.027056897059082985, - -0.027363024652004242, - -0.03720617666840553, - 0.04071485996246338, - 0.040550023317337036, - 0.023277409374713898, - -0.028281403705477715, - -0.06442791223526001, - 0.005778142716735601, - -0.023112570866942406, - 0.02587948739528656, - 0.016636813059449196, - -0.02974139340221882, - 0.03084816038608551, - 0.045612890273332596, - -0.039160680025815964, - -0.039419710636138916, - -0.02503175102174282, - -0.040550023317337036, - -0.02974139340221882, - 0.00938396342098713, - -0.013422481715679169, - -0.009854927659034729, - 0.011038225144147873, - 0.014234894886612892, - 0.021169843152165413, - -0.0392313227057457, - 0.0006144611979834735, - -0.017037132754921913, - 0.04259871691465378, - 0.037276823073625565, - 0.005683950148522854, - 0.037653595209121704, - -0.036523278802633286, - -0.012810228392481804, - 0.004965729545801878, - 0.015259242616593838, - 0.006081325933337212, - 0.02259451150894165, - -0.042151302099227905, - 0.0007351458189077675, - -0.011697575449943542, - -0.05194735899567604, - -0.02127581089735031, - -0.013434255495667458, - -0.0040797279216349125, - 0.000807998061645776, - -0.055573783814907074, - 0.03638198971748352, - -0.0010052144061774015, - 0.006917287595570087, - -0.03186073154211044, - 0.03485135734081268, - -0.00370590016245842, - 0.003467474365606904, - 0.010425971820950508, - 0.0543963722884655, - -0.006269712001085281, - -0.014034735038876534, - -0.043564196676015854, - 0.027998825535178185, - -0.015153275802731514, - 0.030424291267991066, - 0.005095244850963354, - -0.010867500677704811, - 0.04097389057278633, - -0.06843110918998718, - -0.02449014224112034, - -0.015011985786259174, - 0.0250552985817194, - 0.014340861700475216, - 0.012080233544111252, - -0.010337665677070618, - 0.004485934507101774, - 0.047214169055223465, - -0.02927042916417122, - -0.054537661373615265, - -0.04452967271208763, - 0.03890164941549301, - 0.02625625766813755, - 0.045824822038412094, - -0.009784283116459846, - 0.0032261053565889597, - 0.01642487943172455, - -0.020816620439291, - 0.015624240040779114, - 0.001641016104258597, - -0.0008580380235798657, - 0.009849040769040585, - 0.018155673518776894, - -0.002569698728621006, - -0.017390355467796326, - 0.035675544291734695, - -0.006522855255752802, - 0.02401917800307274, - -0.03383878245949745, - 0.009896136820316315, - -0.0418451763689518, - -0.03788907453417778, - -0.00597830256447196, - 0.004759682808071375, - -0.016248267143964767, - -0.015918591991066933, - 0.004459443036466837, - 0.015247467905282974, - -0.018603088334202766, - 0.02224128693342209, - -0.03209621459245682, - -0.015117953531444073, - -0.04292839393019676, - -0.037841979414224625, - -0.02896430343389511, - 0.030801063403487206, - 0.0062167285941541195, - -0.0020766581874340773, - -0.011915395967662334, - 0.015223920345306396, - 0.006581725552678108, - 0.03388587757945061, - 0.03551070764660835, - -0.0013282664585858583, - 0.00754720252007246, - -0.014752956107258797, - 0.015518272295594215, - -0.016566168516874313, - -0.00043049079249612987, - 0.0022105886600911617, - -0.03993777185678482, - -0.03414490818977356, - 0.02625625766813755, - -0.03426264971494675, - 0.010685001499950886, - 0.007841555401682854, - 0.0022326649632304907, - 0.0019294817466288805, - -0.017873093485832214, - 0.007435348350554705, - 0.015624240040779114, - -0.025761745870113373, - -0.013092806562781334, - -0.009119045920670033, - -0.030871707946062088, - -0.033532656729221344, - 0.001860308926552534, - 0.01623649336397648, - 0.0018588370876386762, - -0.010060974396765232, - 0.01727261394262314, - 0.011962492018938065, - 0.001074387226253748, - -0.019368406385183334, - -0.006923174951225519, - -0.0487448014318943, - -0.01177410688251257, - 0.008530340157449245, - -0.07483622431755066, - 0.006169632077217102, - -0.019474372267723083, - 0.02325385995209217, - -0.004115050192922354, - 0.020098399370908737, - -0.008177117444574833, - -0.011226611211895943, - 0.06103697046637535, - 0.041209373623132706, - -0.014599892310798168, - -0.0037853752728551626, - 0.020310334861278534, - 0.007017367519438267, - 0.0005511753843165934, - 0.014364410191774368, - 0.004945124965161085, - 0.006793659646064043, - -0.029505912214517593, - 0.017967287451028824, - 0.0005585341714322567, - -0.011002902872860432, - 0.004382911138236523, - -0.002481393050402403, - -0.029223332181572914, - 0.017861319705843925, - -0.033509109169244766, - 0.008742274716496468, - -0.039725836366415024, - -0.02757495827972889, - 0.00796518288552761, - 0.0031083642970770597, - -0.0007355137495324016, - 0.08929482847452164, - -0.013716834597289562, - -0.05524411052465439, - 0.0298120379447937, - 0.03367394581437111, - -0.0022547414992004633, - 0.01932130940258503, - 0.02127581089735031, - -0.04511837661266327, - -0.009172028861939907, - -0.00012601973139680922, - -0.013481352478265762, - 0.02167613059282303, - 0.03471006825566292, - 0.008783483877778053, - 0.008553888648748398, - -0.004006139934062958, - -0.013481352478265762, - 0.03383878245949745, - 0.02334805391728878, - -0.007341155782341957, - 0.012339264154434204, - 0.02372482605278492, - -0.01054371241480112, - -0.016295364126563072, - 0.00835372880101204, - -0.024160467088222504, - -0.013493126258254051, - 0.05373702198266983, - 0.007847442291676998, - 0.05698667839169502, - 0.03162525221705437, - -0.03927842155098915, - -0.013599093072116375, - -0.005257138516753912, - 0.03405071794986725, - -0.040856149047613144, - 0.03682940453290939, - 0.0166839100420475, - -0.04888609051704407, - 0.01510617882013321, - -0.0401732511818409, - -0.008883563801646233, - -0.02418401464819908, - 4.783230906468816e-05, - -0.02757495827972889, - 0.04455322027206421, - -0.0069055138155817986, - 0.04817964509129524, - -0.011185401119291782, - -0.012810228392481804, - -0.003985535353422165, - -0.015541820786893368, - -0.05660990625619888, - 0.0036970695946365595, - -0.04172743484377861, - 0.006711240857839584, - -0.012115555815398693, - 0.004256339743733406, - 0.011008789762854576, - -0.04893318936228752, - 0.026138516142964363, - 0.038030363619327545, - -0.033626850694417953, - -0.02006307803094387, - -0.01922711543738842, - 0.021817419677972794, - 0.029482362791895866, - -0.054349277168512344, - -0.015035534277558327, - 0.004574240650981665, - 0.006781885400414467, - -0.0060342298820614815, - -0.009866701439023018, - -0.008477357216179371, - 0.0024122202303260565, - 0.007935747504234314, - -0.0020442793611437082, - 0.008453808724880219, - 0.02298305556178093, - -0.02748076431453228, - -0.02138177864253521, - -0.09287415444850922, - -0.01388167217373848, - 0.00990202371031046, - 0.005180607084184885, - -0.007199866231530905, - -0.023030152544379234, - -0.01228039339184761, - -0.014223121106624603, - 0.0025535093154758215, - -0.0027669151313602924, - -0.009772508405148983, - -0.008730500005185604, - 0.017578741535544395, - -0.01959211379289627, - -0.02587948739528656, - -0.033344268798828125, - 0.011815316043794155, - -0.030071068555116653, - -0.042787104845047, - 0.00834195502102375, - -0.011933057568967342, - -0.0033055804669857025, - -0.00023327449162025005, - -0.005657458212226629, - 0.02503175102174282, - -0.0487448014318943, - -0.006387453060597181, - 0.027268830686807632, - 0.025997227057814598, - 0.01093225833028555, - -0.0189327634871006, - 0.017366807907819748, - 0.02026323787868023, - -0.020793072879314423, - 0.012657164596021175, - 0.003564610844478011, - -0.02326563559472561, - -0.0425751693546772, - 0.02118161879479885, - 0.02325385995209217, - 0.007900425232946873, - -0.03800681605935097, - 0.0029759055469185114, - -0.01724906638264656, - 0.02148774452507496, - 0.014788278378546238, - -0.03421555459499359, - 0.020687105134129524, - 0.013104581274092197, - -0.004909802693873644, - 0.01003742590546608, - -0.0250552985817194, - 0.0074235741049051285, - -0.006487532984465361, - -0.010337665677070618, - 0.02738657221198082, - -0.010072748176753521, - 0.012457004748284817, - 0.015047308057546616, - -0.006363904569298029, - 0.00796518288552761, - -0.03275556489825249, - -0.017566967755556107, - -0.01933308318257332, - -0.019545016810297966, - -0.022370802238583565, - -0.02964720129966736, - 0.034286197274923325, - -0.00719397934153676, - 0.021911611780524254, - 0.018497122451663017, - 0.015977462753653526, - -0.017001809552311897, - -0.008653968572616577, - -0.0026432869490236044, - -0.008453808724880219, - -0.020286785438656807, - -0.014599892310798168, - 0.031083641573786736, - -0.004989277571439743, - -0.03697069361805916, - -0.0012502629542723298, - -0.015447627753019333, - -0.007841555401682854, - -0.0015438797418028116, - 0.01961566135287285, - 0.031272027641534805, - -0.02138177864253521, - 0.04226904362440109, - 0.018355833366513252, - -0.03233169764280319, - -0.026279807090759277, - -0.022853542119264603, - -0.008665742352604866, - -0.028069470077753067, - 0.011285481043159962, - 0.027739794924855232, - 0.010320005007088184, - -0.07964006066322327, - -0.04125646874308586, - 0.01744922623038292, - -0.02814011462032795, - 0.0057251593098044395, - -0.0027433668728917837, - 0.011609269306063652, - 0.010773307643830776, - -0.0004948804271407425, - -0.02802237495779991, - 0.028352048248052597, - -0.02016904577612877, - -0.03461587429046631, - 0.0066818054765462875, - 0.005772255826741457, - 0.009531139396131039, - 0.00626382464542985, - 0.0076060728169977665, - 0.011785880662500858, - -0.02738657221198082, - -0.014258443377912045, - -0.038124557584524155, - 0.006511081010103226, - -0.009060175158083439, - -0.005745763890445232, - -0.02729238010942936, - 0.015153275802731514, - -0.004856818821281195, - 0.02015727013349533, - 0.005869392305612564, - 0.0314839631319046, - 0.02165258303284645, - -0.003255540505051613, - 0.007982844486832619, - 0.0033968298230320215, - 0.002521130722016096, - 0.01121483650058508, - 0.011532737873494625, - 0.01894453726708889, - 0.028823012486100197, - 0.02992977946996689, - -0.005828182678669691, - 0.02157016284763813, - -0.01790841668844223, - 0.06546403467655182, - 0.007229301612824202, - -0.04530676454305649, - 0.018920989707112312, - 0.015306338667869568, - 0.02898785099387169, - 0.013340063393115997, - -0.017778901383280754, - -0.012975065968930721, - -0.010537825524806976, - 0.0373474657535553, - 0.04820319265127182, - -0.05204155296087265, - -0.01388167217373848, - -0.01670745760202408, - -0.011632817797362804, - 0.01054371241480112, - 0.03817165270447731, - 0.01753164455294609, - -0.03339136764407158, - -0.01510617882013321, - 0.012716035358607769, - -0.012174426577985287, - 0.010178714990615845, - -0.022994831204414368, - 0.01022581197321415, - 0.03129557520151138, - 0.01514150109142065, - -0.01298683974891901, - 0.013292966410517693, - 0.017107777297496796, - 0.008942433632910252, - -0.008842354640364647, - -0.016825199127197266, - -0.013799252919852734, - -0.013622641563415527, - -0.03704134002327919, - 0.01537698321044445, - 0.011403222568333149, - 0.027221735566854477, - -0.042433880269527435, - 0.009743073023855686, - -0.0060342298820614815, - 0.013351837173104286, - -0.0029243938624858856, - 0.02569110132753849, - 0.008483244106173515, - -0.023489343002438545, - 0.004388798493891954, - -0.02943526767194271, - -0.001346663455478847, - 0.008683403953909874, - -0.0040797279216349125, - -0.02550271525979042, - 0.027810439467430115, - -0.028563983738422394, - 0.010296456515789032, - 0.030730418860912323, - -0.014599892310798168, - -0.008047602139413357, - -0.05745764076709747, - 0.03920777514576912, - 0.014505699276924133, - 0.0011796182952821255, - -0.011656365357339382, - 0.0037765447050333023, - 0.01435263641178608, - 0.0022311932407319546, - -0.003046550089493394, - 0.061743415892124176, - 0.017331484705209732, - 0.03854842483997345, - -0.004067953675985336, - -0.010143392719328403, - 0.01883857138454914, - 0.0040031964890658855, - -0.03209621459245682, - 0.04241033270955086, - -0.028540434315800667, - 0.02109919860959053, - -0.029953327029943466, - 0.007040916010737419, - -0.001707245479337871, - 0.03181363642215729, - -0.035392966121435165, - -0.019168246537446976, - 0.0373474657535553, - 0.03047138825058937, - -0.03252008184790611, - 0.006151970941573381, - -0.03751230239868164, - 0.002632984658703208, - 0.03301459550857544, - -0.012268619611859322, - -0.026562385261058807, - -0.0032467099372297525, - -0.012786679901182652, - 0.014458603225648403, - -0.0487448014318943, - -0.013210548087954521, - 0.007341155782341957, - 0.03920777514576912, - 0.025855937972664833, - -0.007800345774739981, - -0.028823012486100197, - -0.017684709280729294, - 0.01223329734057188, - 0.004032631404697895, - 0.02109919860959053, - 0.023030152544379234, - -0.03744165971875191, - -0.008471469394862652, - -0.013763930648565292, - -0.01630713790655136, - -0.041774529963731766, - 0.01772003062069416, - -0.008830579929053783, - 0.05138220265507698, - 0.009042513556778431, - 0.01256297156214714, - 0.03885455057024956, - 0.017979061231017113, - -0.002990623004734516, - 0.002603549277409911, - -0.01190950907766819, - -0.034922000020742416, - -0.0122921671718359, - -0.00017127646424341947, - 0.004447668790817261, - 0.003738278988748789, - -0.011279594153165817, - 0.009878475219011307, - -0.045636437833309174, - -0.030612677335739136, - -0.0709272176027298, - 0.03685295581817627, - -0.011026451364159584, - 0.0045212567783892155, - -0.0022370803635567427, - 0.03569909185171127, - 0.02755141071975231, - -0.010143392719328403, - -0.009054288268089294, - 0.025290781632065773, - 0.03131912276148796, - 0.017955513671040535, - 0.0010493672452867031, - -0.011032338254153728, - -0.007688491605222225, - -0.004591901786625385, - -0.04615449905395508, - 0.019639210775494576, - -0.008683403953909874, - 0.001319435890763998, - -0.018532443791627884, - -0.016271814703941345, - 0.022582735866308212, - 0.017672933638095856, - -0.014458603225648403, - 0.014140701852738857, - 0.023889662697911263, - -0.0073058330453932285, - -0.01556536927819252, - 0.011903622187674046, - -0.05279509350657463, - -0.019921788945794106, - 0.004335814621299505, - -0.05538539960980415, - 0.007258736994117498, - 0.042339686304330826, - -0.016931165009737015, - 0.00436230655759573, - -0.04846222326159477, - -0.005442580673843622, - -0.013752156868577003, - -0.031012997031211853, - -0.04259871691465378, - -0.06536984443664551, - -0.015047308057546616, - 0.03572263941168785, - 0.005786973517388105, - 0.02305370196700096, - -0.054914433509111404, - -0.010908709838986397, - 0.011891847476363182, - 0.01865018531680107, - -0.013540223240852356, - 0.008330180309712887, - 0.003897229442372918, - -0.011785880662500858, - 0.0033379592932760715, - -0.017508096992969513, - 0.0011229554656893015, - 0.011597495526075363, - 0.018603088334202766, - -0.009819605387747288, - 0.009631219319999218, - -0.0017101890407502651, - -0.008218326605856419, - -0.020275011658668518, - 0.0018146842485293746, - 0.03536941856145859, - 0.041020989418029785, - 0.020463397726416588, - -0.014929567463696003, - 0.024607883766293526, - 0.006764224264770746, - -0.017884867265820503, - -0.012339264154434204, - -0.040008414536714554, - 0.03433329612016678, - -0.013528448529541492, - 0.013151677325367928, - 0.01050839014351368, - -0.02936462312936783, - -0.030447840690612793, - -0.011297255754470825, - 0.00215613329783082, - 0.011362013407051563, - -0.00597830256447196, - 0.018061479553580284, - -0.026279807090759277, - -0.037841979414224625, - 0.009931459091603756, - 0.02625625766813755, - -0.0027742739766836166, - -0.0006843699375167489, - -0.0227004773914814, - 0.005065809469670057, - 0.015341660939157009, - -0.013787479139864445, - -0.005633910186588764, - 0.005807578098028898, - -0.045895468443632126, - -0.005633910186588764, - -0.015400531701743603, - -0.013434255495667458, - 0.023783694952726364, - -0.014034735038876534, - 0.011232498101890087, - -0.011138305068016052, - -0.021817419677972794, - 0.020192593336105347, - -0.026091421023011208, - -0.006781885400414467, - 0.042339686304330826, - 0.028752367943525314, - -0.0003088863450102508, - 0.01724906638264656, - -0.025667551904916763, - 0.0008102057036012411, - 0.009489930234849453, - 0.0038501329254359007, - 0.02167613059282303, - -0.007235188502818346, - -0.025149492546916008, - -0.040008414536714554, - -0.032496534287929535, - 0.0006497835274785757, - -0.004588958341628313, - 0.0075295413844287395, - -0.032402340322732925, - 0.022653382271528244, - -0.03536941856145859, - -0.009160255081951618, - -0.022559188306331635, - 0.01392876822501421, - -0.024819817394018173, - 0.019262438639998436, - 0.006363904569298029, - 0.013081032782793045, - 0.00705857714638114, - 0.03482780605554581, - 0.003349733306095004, - 0.013234095647931099, - -0.003829528111964464, - -0.010214037261903286, - 0.02738657221198082, - -0.010714436881244183, - -0.012598293833434582, - -0.006004794500768185, - -0.006128422450274229, - -0.024348853155970573, - 0.016165848821401596, - 0.02373659983277321, - 0.0026123798452317715, - 0.005572095979005098, - -0.006269712001085281, - -0.009813717566430569, - -0.021122748032212257, - -0.023583535104990005, - -0.012197975069284439, - -0.013493126258254051, - -0.009024852886795998, - -0.05076994746923447, - 0.03591102734208107, - -0.008748161606490612, - -0.022476769983768463, - -0.025761745870113373, - -0.0045948452316224575, - 0.02917623706161976, - 0.00389134231954813, - -0.011750558391213417, - -0.013198773376643658, - 0.010661453939974308, - 0.03346201032400131, - 0.07356461882591248, - -0.021252263337373734, - -0.017661159858107567, - -0.01837938092648983, - 0.021346455439925194, - 0.0030347760766744614, - 0.01633068546652794, - 0.014493925496935844, - 0.009154368191957474, - -0.010255247354507446, - -0.03247298672795296, - -0.022464996203780174, - 0.020769523456692696, - -0.00035727056092582643, - 0.048791900277137756, - -0.026680126786231995, - 0.028728820383548737, - -0.014705859124660492, - 0.03056558035314083, - -0.02373659983277321, - 0.03682940453290939, - 0.015730205923318863, - 0.010443632490932941, - -0.0328497588634491, - -0.02635045163333416, - -0.014423280954360962, - 0.02449014224112034, - 9.088138904189691e-05, - -0.003944325726479292, - 0.02776334434747696, - 0.020557589828968048, - 0.024443045258522034, - -0.0010648207971826196, - 0.014482151716947556, - 0.007152769714593887, - -0.008112359791994095, - 0.015117953531444073, - -0.027786891907453537, - 0.005157058592885733, - 0.004686094354838133, - -0.018897442147135735, - 0.02512594312429428, - 0.005681006703525782, - -0.017884867265820503, - -0.0030097560957074165, - -0.004138598684221506, - -0.020687105134129524, - -0.026138516142964363, - -0.0009632690926082432, - -0.008112359791994095, - 0.030141713097691536, - 0.016460200771689415, - -0.02165258303284645, - -0.013128128834068775, - 0.006069552153348923, - -0.008424373343586922, - 0.008889450691640377, - 0.008330180309712887, - 0.015282790176570415, - 0.01696648821234703, - -0.02644464373588562, - -0.055573783814907074, - -0.007982844486832619, - 0.02597367949783802, - -0.03383878245949745, - -0.011603382416069508, - -0.023171441629529, - 0.012457004748284817, - -0.001822042977437377, - 0.000254615064477548, - -0.04921576753258705, - 0.015282790176570415, - -0.010608470067381859, - 0.03393297642469406, - -0.03186073154211044, - 0.02710399404168129, - 0.014976663514971733, - -0.010184602811932564, - -0.01199781522154808, - 0.04097389057278633, - -0.018155673518776894, - 0.014281991869211197, - 0.014964889734983444, - -0.0022047015372663736, - -0.0009743073605932295, - 0.022288383916020393, - 0.047308359295129776, - 0.03002397157251835, - -0.0028669950552284718, - 0.01485892292112112, - -0.019957110285758972, - 0.0003719881933648139, - 0.008424373343586922, - -0.007458896841853857, - 0.0053601618856191635, - 0.023512890562415123, - -0.017508096992969513, - -0.0010339136933907866, - 9.78722600848414e-05, - -0.031931377947330475, - 0.016283590346574783, - 0.013787479139864445, - 0.021063877269625664, - 0.0002599502040538937, - -0.039160680025815964, - -0.03927842155098915, - -0.025361426174640656, - -0.026609480381011963, - 0.009695976972579956, - -0.0029140913393348455, - -0.005975359119474888, - -0.010997015982866287, - 0.025432070717215538, - -0.028823012486100197, - 0.006899626459926367, - 0.015506498515605927, - -0.024984654039144516, - -6.995475268922746e-05, - 0.028210759162902832, - -0.025078848004341125, - 0.04344645515084267, - -0.0071409959346055984, - 0.006187293212860823, - -0.027315927669405937, - -0.00501871295273304, - 0.02804592251777649, - -0.004268113523721695, - -0.011362013407051563, - 0.021735001355409622, - -0.017684709280729294, - 0.0019206511788070202, - 0.03376813977956772, - -0.02823430858552456, - -0.03461587429046631, - 0.028352048248052597, - 0.0009169085533358157, - -0.010072748176753521, - 0.026279807090759277, - 0.003617594251409173, - 0.010667340829968452, - -0.023948533460497856, - 0.0026712503749877214, - -0.00886001531034708, - -0.018508896231651306, - 0.012256844900548458, - -0.000868340372107923, - 0.005898827686905861, - -0.023877888917922974, - -0.01933308318257332, - -0.003994365688413382, - 0.007588411681354046, - -0.001345191732980311, - 0.02333628013730049, - 0.012951517477631569, - 0.006575838662683964, - -0.01874437741935253, - -0.03770069032907486, - -0.028540434315800667, - 0.011626929976046085, - -0.03423910215497017, - 0.030353646725416183, - -0.012480553239583969, - -0.008077037520706654, - 0.006393339950591326, - 0.009548800997436047, - 0.023854339495301247, - 0.005919432267546654, - -0.004683150909841061, - 0.008159455843269825, - -0.01106766052544117, - 0.0195096954703331, - -0.025008203461766243, - -0.013092806562781334, - 0.007093899417668581, - 0.021534841507673264, - -0.01458811853080988, - 0.0010258191032335162, - 0.033226530998945236, - -0.02729238010942936, - -0.0010339136933907866, - -0.004179807845503092, - -0.01660148985683918, - -0.05044027417898178, - -0.010072748176753521, - 0.02157016284763813, - 0.031083641573786736, - -0.014800052158534527, - -0.014270217157900333, - -0.002453429391607642, - -0.0068407561630010605, - -0.008259535767138004, - 0.0179908350110054, - -0.006411001086235046, - -0.01817922107875347, - 0.010637905448675156, - 0.01303393580019474, - -0.013940542005002499, - -0.01176233310252428, - 0.02420756407082081, - -0.021440647542476654, - 0.0045860144309699535, - -0.007770910393446684, - 0.032779112458229065, - -0.02005130425095558, - 0.006917287595570087, - 0.012445230968296528, - 0.010861613787710667, - 0.013245870359241962, - 0.006552290637046099, - 0.0245843343436718, - -0.0018367606680840254, - -0.0015747867291793227, - -0.03499264642596245, - -0.026868510991334915, - 0.01345780398696661, - -7.036868191789836e-05, - -0.010896936058998108, - 0.023501116782426834, - 0.0316958948969841, - 0.02185274288058281, - -0.021040329709649086, - -0.013775705359876156, - 0.023512890562415123, - -0.011020563542842865, - -0.020757749676704407, - 0.02971784584224224, - 0.01595391519367695, - 0.003935495391488075, - -0.00896009523421526, - -0.004006139934062958, - -0.003985535353422165, - 0.010096296668052673, - -0.0007016632007434964, - 0.01886211894452572, - 0.009407510980963707, - -0.030518485233187675, - 0.005012826062738895, - 0.011885960586369038, - 0.002537319902330637, - -0.012315715663135052, - 0.00383247178979218, - 0.005472016055136919, - -0.03626424819231033, - 0.026468191295862198, - 0.014646988362073898, - 0.016165848821401596, - 0.016848746687173843, - -0.009966781362891197, - -0.045165471732616425, - -0.008053489029407501, - 0.02578529343008995, - -0.026750771328806877, - 0.00894832145422697, - -0.053124770522117615, - 0.023100797086954117, - -0.012068459764122963, - 0.016895843669772148, - -0.025290781632065773, - -0.00811824668198824, - 0.050204791128635406, - -0.01912114955484867, - -0.00033041086862795055, - 0.0069584972225129604, - -0.011650478467345238, - -0.008365502581000328, - -0.018402928486466408, - 0.001582145574502647, - -0.006169632077217102, - 0.025549812242388725, - 0.030047520995140076, - -0.018544217571616173, - -0.05076994746923447, - 0.016660360619425774, - -0.009454607963562012, - -0.03857197239995003, - 0.013245870359241962, - 0.014070057310163975, - -0.02023969031870365, - 0.002839031396433711, - -0.00412682443857193, - -0.006670031696557999, - -0.009548800997436047, - -0.011491527780890465, - -0.013116355054080486, - -0.004012026824057102, - 0.0066818054765462875, - -0.02371305041015148, - 0.020428074523806572, - 0.011032338254153728, - 0.03292040154337883, - 0.027268830686807632, - 0.028634628280997276, - 0.012421682476997375, - -0.01482360064983368, - 0.0042946054600179195, - -0.011815316043794155, - 0.016530845314264297, - 0.0011472395854070783, - -0.001792607712559402, - 0.051523491740226746, - 0.005901771131902933, - 0.034474585205316544, - -0.000748023740015924, - 0.02559690736234188, - 0.01397586427628994, - 0.02297128178179264, - 0.0008801145013421774, - -0.010031539015471935, - 0.00670535396784544, - 0.02054581604897976, - -0.019391953945159912, - -0.005937093403190374, - -0.027151091024279594, - -0.0011406166013330221, - 0.005878222640603781, - -0.017861319705843925, - -0.028069470077753067, - -0.042716458439826965, - -0.01968630589544773, - 0.028940754011273384, - -0.00039884785655885935, - 0.01810857653617859, - 0.03555780276656151, - -0.01770825684070587, - -0.007299946155399084, - 0.025832390412688255, - 0.03000042401254177, - -0.03273201733827591, - 0.003920777700841427, - -0.038077462464571, - 0.02185274288058281, - 0.04137421026825905, - 0.016448426991701126, - -0.004038518760353327, - -0.0125276492908597, - 0.012916195206344128, - 0.01345780398696661, - -0.007700265850871801, - 0.02540852315723896, - -0.008288971148431301, - 0.018143897876143456, - 0.0063344696536660194, - -0.010102183558046818, - 0.007623733952641487, - -0.0010375931160524487, - 0.013022162020206451, - 0.03113073855638504, - -0.018085027113556862, - -0.03235524520277977, - 0.02352466620504856, - 0.009725412353873253, - -0.0011921282857656479, - 0.009578235447406769, - -0.0036381990648806095, - -0.043093230575323105, - 0.00788276456296444, - -0.012256844900548458, - 0.010549599304795265, - -0.027221735566854477, - -0.004839157685637474, - -0.009719525463879108, - 0.00896009523421526, - -0.01763761229813099, - 0.036240700632333755, - 0.032779112458229065, - 0.008571549318730831, - 0.013775705359876156, - -0.03256718069314957, - 0.005430806893855333, - -0.033509109169244766, - 0.013245870359241962, - -0.010614356957376003, - 0.053595732897520065, - -0.024537239223718643, - -0.020498719066381454, - -0.03918422758579254, - 0.004371137358248234, - -0.022382577881217003, - -0.023948533460497856, - 0.012351037934422493, - 0.01487069670110941, - -0.021452423185110092, - 0.017390355467796326, - -0.020392753183841705, - 0.01228039339184761, - -0.0010250831255689263, - -0.004347588866949081, - -0.0470728799700737, - -0.0044123465195298195 - ], - "how_to_setup_chemical_plants": [ - -0.018428655341267586, - 0.005811972077935934, - 0.024206819012761116, - -0.012029645033180714, - 0.0006873095408082008, - 0.027169663459062576, - 0.003230239497497678, - -0.012392316944897175, - -0.03963574394583702, - -0.02069074474275112, - 0.030759502202272415, - -0.01164238527417183, - 0.014949462376534939, - -0.01904335245490074, - 0.015379751101136208, - -0.0344231054186821, - -0.0022129137068986893, - 0.06299427896738052, - 0.015084696002304554, - 0.011925146915018559, - 0.040668439120054245, - -0.004579502157866955, - 0.005037452559918165, - -0.0025494610890746117, - -0.003955583553761244, - -0.027636835351586342, - 0.05256899818778038, - 0.04103725776076317, - -0.01308077946305275, - -0.024501873180270195, - 0.048782456666231155, - -0.021059563383460045, - -0.05074949190020561, - 0.0092819444835186, - 0.010351519100368023, - -0.0199654009193182, - 0.02332165278494358, - 0.004216830246150494, - 0.013117661699652672, - 0.010621986351907253, - -0.012945545837283134, - 0.017506606876850128, - -0.014506879262626171, - 0.024526461958885193, - -0.011439534835517406, - -0.0033562525641173124, - -0.028817055746912956, - 0.04460250586271286, - 0.049913499504327774, - -0.028694115579128265, - 0.02011292800307274, - 0.003116520354524255, - -0.01200505718588829, - -0.08989347517490387, - 0.0013077706098556519, - -0.03602131828665733, - -0.03909480944275856, - 0.016867320984601974, - -0.026628728955984116, - -0.03909480944275856, - 0.0343739278614521, - 0.014838816598057747, - 0.03577544167637825, - 0.040275029838085175, - -0.039586570113897324, - -0.009380295872688293, - -0.04002915322780609, - 0.020703038200736046, - 0.021993905305862427, - -0.013793829828500748, - 0.015674805268645287, - 0.022608602419495583, - -0.019289232790470123, - 0.007941901683807373, - 0.012490669265389442, - -0.041233960539102554, - -0.008224663324654102, - 0.0564538910984993, - -0.05625718832015991, - -0.04565978795289993, - -0.05119207128882408, - -0.04371734336018562, - 0.01852700673043728, - -0.03675895556807518, - -0.009023770689964294, - -0.0475284717977047, - -0.02370276488363743, - -0.006706358399242163, - -0.06756763160228729, - -0.04910209774971008, - -0.018428655341267586, - 0.011789913289248943, - -0.0006350601906888187, - 0.008876243606209755, - 0.05468355864286423, - 0.013117661699652672, - 0.029898924753069878, - 0.021366912871599197, - -0.007093618158251047, - 0.020678449422121048, - 0.030071040615439415, - -0.04843822494149208, - -0.04091431573033333, - -0.01131659559905529, - 0.04312723129987717, - 0.017445137724280357, - 0.016068212687969208, - 0.02487069182097912, - -0.020703038200736046, - -0.03732448071241379, - -0.028571175411343575, - -0.01942446641623974, - 0.03223477676510811, - 0.0038357172161340714, - 0.006583418697118759, - -0.010290049016475677, - -0.003041219664737582, - -0.0062883635982871056, - 0.01952281780540943, - 0.005944132339209318, - -0.05271652340888977, - 0.0019040278857573867, - 0.008593481965363026, - -0.00878403801470995, - 0.027415543794631958, - 0.005587607156485319, - 0.018539300188422203, - -0.0295792818069458, - -0.002111488487571478, - 0.014469997957348824, - -0.0261369701474905, - 0.0020008429419249296, - 0.00452725263312459, - -0.047848112881183624, - 0.009761408902704716, - -0.013793829828500748, - -0.0067247990518808365, - 0.004219903610646725, - 0.010947776027023792, - 0.012773429974913597, - 0.04922503978013992, - -0.024182230234146118, - -0.013388128951191902, - 0.038750581443309784, - -0.03587379306554794, - 0.009447912685573101, - -0.011593209579586983, - -0.06968219578266144, - -0.0007875821902416646, - 0.009275796823203564, - -0.014728170819580555, - 0.025989443063735962, - -0.008304573595523834, - -0.04624990001320839, - 0.05040526017546654, - -0.028964582830667496, - -0.011248978786170483, - 0.03493944928050041, - 0.018822060897946358, - -0.027489306405186653, - 0.01086786575615406, - -0.001922468887642026, - -0.03808670490980148, - -0.019264644011855125, - -0.017641840502619743, - -0.01735907979309559, - -0.05615883320569992, - -0.00829228013753891, - -0.0619615875184536, - 0.011525592766702175, - -0.028571175411343575, - 0.00048176979180425406, - -0.000236850930377841, - 0.03769329935312271, - -0.008716421201825142, - -0.012195614166557789, - -0.016965672373771667, - -0.021121032536029816, - 0.011150626465678215, - 0.044676270335912704, - 0.03319370746612549, - 0.0075362008064985275, - -0.05984702333807945, - -0.04293052852153778, - 0.04155360534787178, - 0.0048929983749985695, - -0.03427557647228241, - 0.02311265468597412, - -0.00845824833959341, - 0.019719520583748817, - -0.024563344195485115, - 0.022645484656095505, - 0.015465809032320976, - 0.0009005329920910299, - -0.0007276490796357393, - -0.0010772587265819311, - 0.04565978795289993, - -0.0015859216218814254, - 0.0605354867875576, - -0.05148712918162346, - 0.02657955326139927, - 0.024796929210424423, - 0.022915951907634735, - -0.024120761081576347, - -0.027022136375308037, - -0.01735907979309559, - -0.031029969453811646, - 0.013990532606840134, - 0.013658596202731133, - 0.011199803091585636, - -0.007788227405399084, - -0.02265777811408043, - 0.009029917418956757, - 0.045905668288469315, - -0.038332585245370865, - -0.003675895743072033, - -0.0729769766330719, - 0.052372295409440994, - -0.017641840502619743, - -0.043028879910707474, - -0.05414262413978577, - 0.0016304871533066034, - 0.050995368510484695, - -0.023124950006604195, - -0.001750353374518454, - 0.058027517050504684, - -0.00968149770051241, - -0.04787270352244377, - 0.0716492310166359, - -0.0006915355916135013, - -0.014162648469209671, - 0.0020269674714654684, - -0.00623304070904851, - -0.026628728955984116, - 0.017309904098510742, - -0.03761953487992287, - -0.013203718699514866, - -0.0021622010972350836, - -0.012281672097742558, - -0.007800521329045296, - -0.02236272394657135, - -0.011470270343124866, - -0.03221018984913826, - -0.03493944928050041, - 0.04774976149201393, - 0.00898074172437191, - -0.01230625994503498, - -0.07243604212999344, - 0.048856221139431, - 0.012687372975051403, - 0.006193085107952356, - 0.0033562525641173124, - 0.026923784986138344, - -0.022313548251986504, - 0.0033009296748787165, - -0.07622258365154266, - -0.051683831959962845, - -0.02223978377878666, - 0.015392044559121132, - 0.016215739771723747, - 0.008206222206354141, - 0.020371101796627045, - -0.06358438730239868, - 0.016203446313738823, - 0.01176532544195652, - 0.002700062235817313, - 0.007702169474214315, - 0.05606048181653023, - -0.052814874798059464, - -0.055273670703172684, - 0.01221405528485775, - 0.01040069479495287, - 0.01679355651140213, - -0.026874609291553497, - -0.048782456666231155, - -0.02697296068072319, - 0.008046400733292103, - 0.018305715173482895, - -0.011126038618385792, - 0.029087522998452187, - -0.07056736201047897, - -0.04312723129987717, - 0.029554693028330803, - 0.032529834657907486, - -0.03865222632884979, - 0.00878403801470995, - 0.0033132238313555717, - -0.010185550898313522, - 0.02916128560900688, - -0.013289776630699635, - 0.02401011437177658, - 0.025091983377933502, - 0.03127584978938103, - -0.010683456435799599, - 0.0165230892598629, - 0.03179219365119934, - -0.008040253072977066, - 0.009386442601680756, - 0.020875154063105583, - -0.04283217713236809, - 0.00729646859690547, - 0.032161012291908264, - 0.04502050206065178, - 0.03137420117855072, - -0.025497684255242348, - -0.02849741280078888, - 0.035013213753700256, - -0.053601689636707306, - 0.018686827272176743, - 0.014642112888395786, - 0.046323660761117935, - -0.03277571126818657, - 0.07814044505357742, - -0.054831087589263916, - 0.009472500532865524, - 0.020604686811566353, - 0.04445498064160347, - 0.03786541521549225, - -0.03919316083192825, - -0.019510524347424507, - -0.005821192637085915, - -0.027169663459062576, - 0.0756324753165245, - -0.035849202424287796, - -0.003343958640471101, - -0.02532556839287281, - -0.02933340147137642, - -0.020100634545087814, - -0.014334764331579208, - 0.027194252237677574, - -0.005071260966360569, - -0.008654952049255371, - -0.0016566119156777859, - -0.008034106343984604, - -0.015502690337598324, - 0.004597943276166916, - 0.03454604372382164, - 0.011826794594526291, - 0.06623988598585129, - 0.03068573772907257, - -0.013412716798484325, - 0.008070988580584526, - -0.01877288520336151, - 0.026382850483059883, - 0.01029619574546814, - -0.006423597224056721, - 0.013535656034946442, - 0.035849202424287796, - 0.034619808197021484, - 0.028571175411343575, - -0.007314909715205431, - 0.030784089118242264, - -0.07622258365154266, - 0.003961730282753706, - 0.0035775438882410526, - 0.004302888177335262, - -0.02903834730386734, - 0.01439623348414898, - -0.06176488474011421, - -0.01948593556880951, - -0.007234998978674412, - 0.041627366095781326, - -0.01167312078177929, - -0.003875672584399581, - -0.011507151648402214, - 0.024895280599594116, - -0.03110373392701149, - 0.01844094879925251, - 0.018281126394867897, - 0.04556143656373024, - 0.04856116324663162, - 0.025571448728442192, - 0.029702220112085342, - 0.03872599080204964, - -0.03715236485004425, - 0.002567901974543929, - 7.698135596001521e-05, - 0.017248433083295822, - -0.020518628880381584, - 0.0316200777888298, - 0.01562562957406044, - 0.0268500205129385, - 0.017555782571434975, - 0.0003667059354484081, - -0.002761532086879015, - -0.0251165721565485, - -0.011298154480755329, - 0.026751669123768806, - -0.050159379839897156, - 0.005083554890006781, - 0.05055278539657593, - -0.05669976770877838, - 0.03609508275985718, - 0.021932434290647507, - 0.01225708331912756, - 0.0254485085606575, - 0.060486309230327606, - 0.0009174371953122318, - 0.023960938677191734, - 0.025128865614533424, - 0.02221519500017166, - -0.029259638860821724, - -0.017986072227358818, - 0.00577816367149353, - 0.013166837394237518, - -0.0005032842163927853, - -0.008341455832123756, - -0.004130772314965725, - -0.004087743349373341, - -0.011802206747233868, - 0.05074949190020561, - -0.02805482968688011, - 0.02906293421983719, - -0.007099765352904797, - 0.007874284870922565, - -0.030734913423657417, - 0.02244878187775612, - 0.02726801484823227, - -0.02628449909389019, - 0.003571396926417947, - 0.018551593646407127, - 0.0021176356822252274, - 0.03486568480730057, - -0.009693792089819908, - -0.03820964694023132, - 0.023899469524621964, - 0.03744741901755333, - -0.021207090467214584, - -0.017863132059574127, - -0.04895457252860069, - -0.0213423240929842, - 0.036685194820165634, - -0.0038080557715147734, - 0.014211824163794518, - 0.050946194678545, - -0.02290365844964981, - -0.005357095506042242, - -0.03525909408926964, - -0.030193978920578957, - -0.011414946988224983, - -0.014826522208750248, - -0.016510795801877975, - 0.07312450557947159, - 0.004874557256698608, - -0.07194428890943527, - -0.01252755057066679, - -0.005652150604873896, - -0.019977694377303123, - -0.010486752726137638, - 0.01810901053249836, - 0.001099541550502181, - 0.022104550153017044, - -0.010603545233607292, - 0.05478191003203392, - -0.013105367310345173, - 0.031325023621320724, - 0.04585649073123932, - -0.01898188330233097, - 0.027317192405462265, - -0.00615312997251749, - 0.024747753515839577, - 0.06791186332702637, - 0.025792740285396576, - 0.01273654866963625, - -0.023063478991389275, - 0.026407437399029732, - 0.003927921876311302, - -0.000781050999648869, - 0.007769786287099123, - -0.04639742523431778, - -0.005811972077935934, - -0.056208010762929916, - -0.00435513723641634, - -0.01595756784081459, - -0.01729760877788067, - -0.022166019305586815, - 0.004115405026823282, - 0.05079866573214531, - -0.028571175411343575, - -0.03911940008401871, - -0.01396594475954771, - 0.020002281293272972, - -0.025005925446748734, - 0.009079094044864178, - 0.010609691962599754, - 0.08886078000068665, - 0.03176760673522949, - -0.046323660761117935, - -0.07258357107639313, - 0.002146833809092641, - -0.01248452253639698, - -0.005037452559918165, - 0.01739596202969551, - -0.012785724364221096, - 0.009214327670633793, - -0.048659514635801315, - -0.04723341763019562, - -0.04290594160556793, - -0.00016577643691562116, - -0.00186714599840343, - 0.028866231441497803, - -0.004591796081513166, - -0.014900286681950092, - 0.04497132450342178, - -0.023075774312019348, - -0.05409345030784607, - 0.027587659657001495, - 0.02056780457496643, - 0.014052002690732479, - 0.013056191615760326, - 0.004601016640663147, - -0.00155672337859869, - -0.00711820600554347, - 0.021723438054323196, - -0.011144479736685753, - 0.011851382441818714, - 0.006700211204588413, - 0.005191126838326454, - 0.010824836790561676, - 0.03663601726293564, - 0.009656909853219986, - -0.0026739374734461308, - -0.020543215796351433, - 0.050036441534757614, - -0.006254555191844702, - -0.007413261104375124, - -0.006663329433649778, - -0.029898924753069878, - 0.0020730700343847275, - -0.03552956134080887, - 0.03235771879553795, - -0.0043827989138662815, - -0.002733870642259717, - 0.04767599701881409, - -0.05679812282323837, - 0.011248978786170483, - -0.06486295908689499, - -0.026481201872229576, - -0.006964531727135181, - -0.00853201188147068, - -0.025669800117611885, - 0.022338135167956352, - -0.023309359326958656, - 0.03867681697010994, - -0.01349877379834652, - 0.004392019007354975, - 0.005209567956626415, - 0.00872871559113264, - 0.03373464196920395, - 0.020063752308487892, - 0.0018271906301379204, - -0.05133960023522377, - -0.02709590084850788, - -0.0413077250123024, - -0.022829893976449966, - -0.002955161966383457, - -0.019805578514933586, - -0.029357990249991417, - 0.027636835351586342, - -0.032136425375938416, - -0.0006788574391975999, - -0.019203174859285355, - 0.023026596754789352, - -0.001548271276988089, - 0.005563019309192896, - 0.05901103466749191, - 0.06673164665699005, - -0.010259314440190792, - 0.005369389429688454, - -0.0017165449680760503, - -0.019977694377303123, - -0.040545497089624405, - 0.02820235677063465, - -0.07081323862075806, - -0.003725071670487523, - 0.012244789861142635, - -0.0016335606342181563, - -0.013720065355300903, - 0.009687645360827446, - -0.020223572850227356, - -0.01658456027507782, - -0.06319098174571991, - 0.021993905305862427, - 0.010062610730528831, - -0.0419715978205204, - -0.02520263008773327, - 0.00043144135270267725, - 0.016596853733062744, - 0.01248452253639698, - -0.040963493287563324, - -0.03705401346087456, - -0.0026524229906499386, - -0.010081051848828793, - -0.006070145405828953, - -0.008144752122461796, - 0.006466625723987818, - 0.001376924104988575, - 0.023776529356837273, - -0.014015120454132557, - 0.002237501787021756, - -0.02726801484823227, - 0.023629002273082733, - -0.015392044559121132, - 0.044381216168403625, - -0.03260359540581703, - -0.008925419300794601, - -0.006140836048871279, - -0.013584831729531288, - -0.04229124262928963, - 0.02413305453956127, - -0.034742746502161026, - 0.012207907624542713, - -0.020666155964136124, - -0.02401011437177658, - -0.012171026319265366, - 0.013523362576961517, - -0.004960615187883377, - 0.022350428625941277, - -0.0061746444553136826, - -0.034619808197021484, - -0.021649673581123352, - 0.028399061411619186, - -0.023002009838819504, - -0.017137788236141205, - 0.002149907173588872, - -0.01149485819041729, - -0.006632594391703606, - 0.0009489404619671404, - -0.03329205885529518, - 0.007622258737683296, - 0.03053821064531803, - 0.00632524536922574, - -0.017248433083295822, - 0.009472500532865524, - -0.020752213895320892, - -0.0034423102624714375, - 0.02999727614223957, - 0.024710871279239655, - 0.005141951143741608, - 0.01802295446395874, - 0.0027415542863309383, - -0.012896370142698288, - 0.05601130798459053, - -0.012250936590135098, - 0.0018010659841820598, - 0.03484109789133072, - -0.01981787197291851, - 0.040815964341163635, - 0.031079145148396492, - -0.019387584179639816, - -0.030661150813102722, - 0.028964582830667496, - 0.026948371902108192, - 0.004994423594325781, - -0.000606630346737802, - -0.0154903968796134, - -0.013142249546945095, - -0.03742283210158348, - -0.056503064930438995, - 0.0012947082286700606, - -0.05173300579190254, - 0.003102689515799284, - -0.005544578656554222, - 0.017801662907004356, - -0.0061592767015099525, - 0.0053079198114573956, - 0.026899196207523346, - 0.00419224239885807, - 0.00888853706419468, - 0.01796148344874382, - -0.04241418093442917, - 0.014015120454132557, - 0.022141432389616966, - 0.0004010906268376857, - -0.018367184326052666, - 0.0008452101610600948, - -0.002712356159463525, - -0.03410346060991287, - 0.0024972117971628904, - 0.022805307060480118, - -0.01451917365193367, - 0.0076652877032756805, - -0.03498862683773041, - 0.013683184050023556, - 0.02490757405757904, - -0.04084055498242378, - -0.03744741901755333, - 0.023186419159173965, - -0.02257172018289566, - 0.011322742328047752, - 0.00021476020629052073, - -0.0025694388896226883, - -0.026087794452905655, - -0.007560788653790951, - 0.02328477054834366, - -0.014347057789564133, - 0.01486340444535017, - 0.0206538625061512, - -0.01804754137992859, - -0.07509154081344604, - 0.010917041450738907, - -0.04005374014377594, - 0.0024311316665261984, - -0.03314452990889549, - -0.030464446172118187, - -0.0037711740005761385, - -0.011009246110916138, - 0.0026278351433575153, - 0.02864493988454342, - 0.0010104102548211813, - -0.009644616395235062, - 0.012564432807266712, - -0.03754577040672302, - 0.025645213201642036, - -0.02298971638083458, - 0.00773905124515295, - -0.0024080805014818907, - -0.03329205885529518, - 0.016596853733062744, - -0.017998365685343742, - -0.005639856681227684, - 0.0037435125559568405, - -0.026407437399029732, - 0.028448237106204033, - -0.01858847588300705, - 0.016203446313738823, - 0.014359352178871632, - 0.009042211808264256, - 0.0022421120665967464, - 0.0110153928399086, - -0.008341455832123756, - -7.722146983724087e-05, - 0.018121305853128433, - -0.0031072997953742743, - -0.018895825371146202, - 0.011789913289248943, - -0.04221747815608978, - 0.0005735903396271169, - 0.024194523692131042, - -0.007228851784020662, - -0.023542944341897964, - -0.012318553403019905, - 0.0055322847329080105, - -0.0026432026643306017, - 0.0036328667774796486, - -0.018305715173482895, - -0.02879246696829796, - 0.062404170632362366, - -0.04275841265916824, - -0.018072130158543587, - -0.03321829438209534, - 0.008409072645008564, - -0.013597126118838787, - -0.0014307101955637336, - 0.007960342802107334, - 0.002958235563710332, - 0.011507151648402214, - 0.0038910401053726673, - -0.014605231583118439, - 0.009718379937112331, - -0.030218567699193954, - 0.04017667844891548, - -0.01990392990410328, - -0.004130772314965725, - 0.00306427082978189, - -0.0017472798936069012, - 0.015453514643013477, - -0.027587659657001495, - -0.02305118553340435, - -0.013707771897315979, - 0.013535656034946442, - -0.04005374014377594, - 0.01679355651140213, - 0.014187236316502094, - -0.008956153877079487, - -0.03693107143044472, - -0.0161911528557539, - -0.021440675482153893, - -0.003964804112911224, - -0.01939987763762474, - 0.018699122592806816, - -0.02916128560900688, - -0.003983244765549898, - 0.048143170773983, - 0.04499591514468193, - -0.0017349858535453677, - -0.009072946384549141, - 0.028128594160079956, - -0.005427785683423281, - -0.07607506215572357, - -0.048143170773983, - -0.018699122592806816, - 0.022264372557401657, - 0.011205949820578098, - 0.013203718699514866, - 0.00033750777947716415, - -0.014469997957348824, - -0.10680997371673584, - -0.013375834561884403, - 0.012908663600683212, - -0.0405946746468544, - -0.019768696278333664, - -0.011789913289248943, - 0.010886306874454021, - 0.010369960218667984, - 0.023960938677191734, - -0.05601130798459053, - 0.025153454393148422, - -0.01571168750524521, - -0.010591251775622368, - 0.016510795801877975, - -0.0030980792362242937, - 0.016596853733062744, - 0.046741656959056854, - -0.008765597827732563, - 0.03169384226202965, - -0.006060924846678972, - -0.006392862182110548, - -0.02227666601538658, - 0.01362171396613121, - -0.012539844959974289, - -0.03316912055015564, - 0.009570851922035217, - -0.004419680684804916, - 0.007800521329045296, - 0.014924874529242516, - 0.01685502752661705, - 0.01969493366777897, - 0.05674894526600838, - -0.014125766232609749, - 0.015601042658090591, - -0.020198985934257507, - -0.024182230234146118, - 0.021121032536029816, - 0.040397971868515015, - 0.0003786157176364213, - 0.029751397669315338, - 0.03410346060991287, - 0.018748298287391663, - 0.029013758525252342, - 0.01451917365193367, - 0.030907029286026955, - 0.004136919509619474, - -0.04101267084479332, - -0.008034106343984604, - -0.010812542401254177, - 0.019793285056948662, - 0.02628449909389019, - -0.015379751101136208, - 0.05330663546919823, - 0.01227552443742752, - 0.028817055746912956, - 0.03936527669429779, - -0.04447956755757332, - -0.018760591745376587, - -0.029382577165961266, - -0.014125766232609749, - 0.013302071020007133, - 0.012423052452504635, - -0.002002379624173045, - -0.0209857989102602, - -0.0049483212642371655, - -0.002140686847269535, - -0.033365823328495026, - -0.016117388382554054, - -0.021748024970293045, - -0.009447912685573101, - -0.0007445532828569412, - 0.00883321464061737, - -0.021428382024168968, - 0.022756129503250122, - -0.0030980792362242937, - 0.025067396461963654, - 0.00888853706419468, - -0.020580098032951355, - 0.02248566225171089, - -0.036119669675827026, - 0.030734913423657417, - 0.0392177514731884, - -0.007431702222675085, - 0.012761136516928673, - -0.021182503551244736, - 0.005888809449970722, - -0.016781263053417206, - 0.050700314342975616, - 0.029898924753069878, - 0.040693026036024094, - 0.02987433597445488, - 0.012638196349143982, - -0.021502146497368813, - -0.021366912871599197, - -0.010105639696121216, - 0.020825978368520737, - -0.018723709508776665, - -0.03292324021458626, - 0.011488710530102253, - -0.0015090842498466372, - 0.0012263230746611953, - 0.03154631704092026, - -0.008144752122461796, - 0.007837402634322643, - 0.0316200777888298, - 0.052323117852211, - 0.035972144454717636, - -0.0022083036601543427, - -0.030095627531409264, - -0.031570903956890106, - -0.01173458993434906, - -0.03688189759850502, - 0.010369960218667984, - 0.04861034080386162, - -0.034201811999082565, - -0.008077135309576988, - -0.011863676831126213, - -0.013203718699514866, - -0.0024634033907204866, - -0.0015905317850410938, - -0.0027953404933214188, - 0.015932979062199593, - -0.032529834657907486, - 0.015342868864536285, - 0.0028445161879062653, - -0.013129955157637596, - -0.002229817910119891, - 0.0096261752769351, - -0.03348876163363457, - -0.011968175880610943, - -0.0036666751839220524, - 0.011703855358064175, - -0.035455796867609024, - 0.02053092233836651, - -0.025546859949827194, - -0.020457157865166664, - 0.026923784986138344, - 0.001273962203413248, - -0.008169339969754219, - 0.006896914914250374, - -0.021625084802508354, - -0.033513348549604416, - -0.014814228750765324, - -2.083010804199148e-05, - 0.013142249546945095, - 0.01790001429617405, - -0.009411030448973179, - 0.008808626793324947, - -0.024354346096515656, - -0.05315910652279854, - 0.0016427811933681369, - 0.001959350658580661, - 0.005304845981299877, - 0.040373384952545166, - -0.08045171201229095, - 0.018883531913161278, - -0.001570554100908339, - -0.05325745791196823, - 0.008335309103131294, - 0.013302071020007133, - -0.04900374636054039, - 0.028448237106204033, - 0.026210734620690346, - -0.0018471683142706752, - -0.020973505452275276, - -0.026210734620690346, - -0.017678722739219666, - 0.005141951143741608, - 0.034619808197021484, - -0.03262818604707718, - -0.021932434290647507, - -0.009742967784404755, - 0.002924427157267928, - 0.01047445833683014, - -0.0021867891773581505, - 0.0110153928399086, - 0.05271652340888977, - -0.0351361520588398, - -0.028939995914697647, - 0.027046725153923035, - -0.017506606876850128, - 0.0033193707931786776, - -0.03975868597626686, - 0.013031603768467903, - 0.02795647829771042, - -0.029505517333745956, - 0.017715604975819588, - 0.025042807683348656, - 0.026948371902108192, - 0.006890767719596624, - 0.02778436243534088, - 0.022805307060480118, - -0.004628677852451801, - -0.0016412443947046995, - -0.002886008471250534, - 0.024046996608376503, - 0.00960773415863514, - 0.00640515610575676, - 0.01228781882673502, - 0.008993036113679409, - 0.041209373623132706, - -0.006823150906711817, - 0.03525909408926964, - -0.007966489531099796, - 0.004702441859990358, - -0.006589565426111221, - -0.019768696278333664, - -0.02397323213517666, - -0.020813683047890663, - 0.046446602791547775, - 0.04349604994058609, - -0.0199408121407032, - -0.01210955623537302, - 0.042315829545259476, - -0.025964856147766113, - 0.008599628694355488, - -0.004431974608451128, - -0.01210955623537302, - -0.018895825371146202, - -0.009472500532865524, - 0.01439623348414898, - -0.05035608261823654, - -0.04189783334732056, - 0.0047239563427865505, - -0.0154781024903059, - 0.03294782713055611, - 0.009509382769465446, - -0.00543393287807703, - 0.015232223086059093, - 0.010800248943269253, - -0.01694108545780182, - 0.013314364477992058, - 0.006927649490535259, - -0.0015628703404217958, - 0.008857802487909794, - -0.028817055746912956, - 0.04738094285130501, - 0.01086786575615406, - -0.0034330899361521006, - -0.020039163529872894, - 0.0016074359882622957, - -0.02059239149093628, - 0.03112832084298134, - 0.005009790882468224, - -0.0072534396313130856, - 0.02699754759669304, - 0.008279985748231411, - 0.002116098767146468, - 0.0213423240929842, - 0.0040262737311422825, - -0.02053092233836651, - 0.0017380593344569206, - -0.0004030115669593215, - -0.01667061820626259, - 0.039979975670576096, - -0.009779850021004677, - 0.02353065088391304, - 0.017973776906728745, - -0.013646301813423634, - -0.012011204846203327, - 0.0011725369840860367, - 0.036414727568626404, - 0.04145525023341179, - 0.023223301395773888, - -0.01660914719104767, - 0.0037435125559568405, - -0.040275029838085175, - -0.007487025111913681, - 0.03961115702986717, - -0.028866231441497803, - -0.013449598103761673, - 0.004856116604059935, - 0.017322197556495667, - -0.0028122446965426207, - 0.01804754137992859, - -0.0026416657492518425, - 0.006528095807880163, - -0.032161012291908264, - -0.00799107737839222, - -0.03248065710067749, - -0.03951280564069748, - 0.016977965831756592, - -0.011083009652793407, - 0.02559603564441204, - 0.011918999254703522, - 0.0003632482548709959, - -0.009558558464050293, - -0.012115702964365482, - -0.001451456337235868, - 0.007683728355914354, - 0.028325296938419342, - 0.0350869782269001, - 0.027046725153923035, - -0.04981514811515808, - -0.0033285911194980145, - -0.008255397900938988, - -0.020076045766472816, - -0.01622803509235382, - -0.023223301395773888, - -0.01466670073568821, - 0.032554421573877335, - -0.020604686811566353, - 0.016387855634093285, - 0.011599356308579445, - 0.005781237501651049, - -0.03690648451447487, - 0.005855001043528318, - -0.03892269358038902, - 0.015969861298799515, - -0.020580098032951355, - -0.010290049016475677, - 0.008716421201825142, - 0.02532556839287281, - 0.02697296068072319, - -0.04187324643135071, - 0.03248065710067749, - 0.01595756784081459, - 0.01568710058927536, - -0.009656909853219986, - 0.004416607320308685, - 0.004699368495494127, - -0.004865336697548628, - 0.03471815958619118, - -0.003565249964594841, - -0.035431209951639175, - 0.0046071638353168964, - 0.008347602561116219, - -0.020789096131920815, - 0.005830413196235895, - 0.0151461660861969, - 0.009810584597289562, - 0.008230810053646564, - -0.037644121795892715, - -0.01342501025646925, - -0.05202806368470192, - 0.03673436865210533, - -0.010050317272543907, - -0.04777435213327408, - -0.0025971003342419863, - 0.0060271164402365685, - 0.01670749858021736, - 0.0003838022530544549, - -0.02257172018289566, - -0.00995196495205164, - -0.01121209654957056, - -0.003047366626560688, - -0.008704127743840218, - 0.016424737870693207, - 0.02409617230296135, - 0.01967034488916397, - 0.06540389358997345, - 0.0003446152259130031, - -0.038627639412879944, - -0.0038295702543109655, - 0.02795647829771042, - 0.0034330899361521006, - 0.016363268718123436, - -0.0012562896590679884, - -0.03326747193932533, - -0.05217558890581131, - -0.018699122592806816, - 0.01883435621857643, - 0.04661871865391731, - -0.0111936554312706, - 0.00969993881881237, - 0.003897187067195773, - -0.03658684343099594, - -0.009816731326282024, - 0.00883321464061737, - -0.007450143340975046, - 0.015072401612997055, - -0.00017874273180495948, - -0.015072401612997055, - 0.014150354079902172, - 0.0330461785197258, - 0.004336696583777666, - 0.031202085316181183, - -0.00854430627077818, - 0.014138060621917248, - 0.011507151648402214, - -0.0005221093306317925, - -0.045241791754961014, - 0.05822421982884407, - 0.01754348911345005, - -0.013228306546807289, - -0.008986888453364372, - 0.006116247735917568, - -0.021243972703814507, - -0.017285315319895744, - 0.02313724346458912, - -0.02215372584760189, - 0.0343739278614521, - 0.0027307970449328423, - 0.01873600296676159, - 0.026456613093614578, - 0.030464446172118187, - 0.03289865329861641, - -0.002523336559534073, - -0.022743836045265198, - -0.005470814649015665, - 0.02589109167456627, - -0.009915083646774292, - 0.02562062442302704, - -0.032849475741386414, - 0.006644888315349817, - -0.031718432903289795, - -0.018367184326052666, - -0.023395417258143425, - 0.01781395636498928, - 0.01521992962807417, - -0.025792740285396576, - -0.003279415424913168, - -0.005166538991034031, - 0.0019024912035092711, - 0.00047485443064942956, - 0.007585376966744661, - 0.010708044283092022, - 0.006380568258464336, - -0.025091983377933502, - -0.0041983891278505325, - -0.005894956644624472, - -0.006982972379773855, - -0.004468856379389763, - 0.0357508510351181, - 0.0032394600566476583, - 0.009515529498457909, - -0.0010349982185289264, - -0.023813411593437195, - -0.02023586817085743, - -0.005068187136203051, - -0.026628728955984116, - -0.03326747193932533, - -0.03761953487992287, - 0.006067072041332722, - 0.0007011402049101889, - 0.01694108545780182, - 0.027882713824510574, - 0.004628677852451801, - -0.013314364477992058, - -0.000966613064520061, - -0.027710597962141037, - -0.0022789938375353813, - 0.03316912055015564, - 0.008341455832123756, - 0.014998638071119785, - 0.010369960218667984, - -0.021452970802783966, - 0.02338312193751335, - -0.030489034950733185, - -0.005713620688766241, - 0.026259910315275192, - -0.03894728422164917, - 0.021711142733693123, - 0.0063867149874567986, - -0.02751389518380165, - 0.0151338716968894, - -0.0378900021314621, - -0.006236114073544741, - -0.004926806781440973, - 0.006921502761542797, - 0.0025771225336939096, - -0.02173573151230812, - 0.050183966755867004, - 0.009767555631697178, - -0.020137514919042587, - 0.014297882094979286, - -0.02008833922445774, - -0.0010019581532105803, - 0.0066141532734036446, - -0.021637380123138428, - -0.005181906279176474, - 0.0047208829782903194, - 0.015010932460427284, - -0.005885736085474491, - -0.003949436359107494, - 0.010124080814421177, - -0.005126583855599165, - -0.0009712232858873904, - -0.024501873180270195, - -0.020125221461057663, - 0.030931618064641953, - 0.016178859397768974, - -0.01601903699338436, - -0.011710002087056637, - 0.008900831453502178, - -0.02876788005232811, - -0.013720065355300903, - 0.010830983519554138, - -0.014162648469209671, - 0.012220202013850212, - 0.0005766638205386698, - 0.011267419904470444, - 1.3674635738425422e-05, - -0.00953397061675787, - 0.04101267084479332, - 0.003728145034983754, - -0.009435618296265602, - -0.028399061411619186, - -0.014469997957348824, - -0.00020880531519651413, - 0.010081051848828793, - -0.013609419576823711, - -0.00042183668119832873, - 0.01625262200832367, - 0.012576727196574211, - -0.0196088757365942, - -0.011230537667870522, - -0.009742967784404755, - 0.010560516268014908, - -0.03265277296304703, - 0.01156862173229456, - -0.008212368935346603, - 0.007234998978674412, - -0.012177173048257828, - -0.008058694191277027, - 0.026063207536935806, - -0.011371918022632599, - -0.015859216451644897, - 0.0048346021212637424, - -0.004997496958822012, - -0.001839484553784132, - -0.014088884927332401, - -0.007880431599915028, - 0.0029321108013391495, - 0.009042211808264256, - -0.008255397900938988, - 0.003506853710860014, - 0.045340146869421005, - -0.048143170773983, - -0.013929063454270363, - -0.0020761433988809586, - 0.022067667916417122, - 0.005458520725369453, - -0.002716966439038515, - -0.03565249964594841, - 0.010105639696121216, - -0.013326658867299557, - 0.0021099518053233624, - 0.014076590538024902, - -0.0158100388944149, - -0.02603861875832081, - 0.007782080210745335, - 0.0010680382838472724, - -0.024563344195485115, - 0.04229124262928963, - 0.015846921131014824, - -0.01308077946305275, - 0.008925419300794601, - -0.00968149770051241, - -0.0018932707607746124, - 0.010996952652931213, - -0.017949189990758896, - -0.0302923321723938, - -0.03961115702986717, - -0.0031810635700821877, - -0.007204263936728239, - -0.001124897855333984, - 0.021981609985232353, - 0.012084968388080597, - 0.0006911513628438115, - -0.02140379324555397, - -0.019055645912885666, - -0.002374272095039487, - -0.0015628703404217958, - -0.020899740979075432, - 0.012189466506242752, - -0.042463358491659164, - 0.006595712620764971, - 0.01279801782220602, - 0.011630091816186905, - 0.0007349486113525927, - 0.004788499791175127, - 0.056650593876838684, - 0.0364639014005661, - -0.008193927817046642, - 0.016006743535399437, - 0.009447912685573101, - -0.02793188951909542, - 0.0015590285183861852, - -0.008575040847063065, - 0.009146710857748985, - 0.020039163529872894, - -0.030316919088363647, - 0.036537665873765945, - 0.003937142435461283, - -0.010210138745605946, - 0.016117388382554054, - -0.023960938677191734, - -0.022817600518465042, - 0.009872054681181908, - -0.009245062246918678, - 0.008034106343984604, - -0.021157914772629738, - 0.0011256661964580417, - 0.00035191475762985647, - -0.030611975118517876, - 0.014900286681950092, - -0.01265049073845148, - 0.007825109176337719, - -0.02200619876384735, - -0.004398166202008724, - 0.005996381863951683, - -0.0018056761473417282, - -0.019326113164424896, - -0.0034945597872138023, - -0.0018348743906244636, - 0.006989119574427605, - -0.026923784986138344, - -0.00027411701739765704, - -0.017469724640250206, - -0.0026862313970923424, - 0.00872871559113264, - -0.04322558268904686, - -0.02107185684144497, - 0.0008959227707237005, - 0.013756947591900826, - -0.004379725083708763, - 0.018342597410082817, - -0.0019762548618018627, - 0.003844937775284052, - 0.013265188783407211, - 0.0023281697649508715, - -0.007351791486144066, - 0.011353476904332638, - -0.034226398915052414, - 0.005879588890820742, - 0.021170208230614662, - -0.021354617550969124, - 0.021305441856384277, - -0.034767333418130875, - 0.023665884509682655, - -0.04715965315699577, - 0.008525865152478218, - -0.009214327670633793, - 0.024194523692131042, - -0.008931566029787064, - -0.016412444412708282, - 0.033955931663513184, - 0.007511612959206104, - 0.02820235677063465, - 0.02879246696829796, - -0.011580915190279484, - -0.0018702194793149829, - -0.01493716798722744, - 0.022608602419495583, - 0.009908935986459255, - 0.023014303296804428, - -0.023493768647313118, - 0.010197844356298447, - -0.004315182100981474, - 0.015527278184890747, - 0.008138605393469334, - 0.02697296068072319, - 0.018145892769098282, - 0.008255397900938988, - 0.02236272394657135, - 0.019018765538930893, - 0.014052002690732479, - -0.02415764331817627, - 0.011156774125993252, - -0.0001316799025516957, - 0.002484917873516679, - -0.025350157171487808, - -0.01598215475678444, - -0.016326386481523514, - -0.0096261752769351, - -0.015256810933351517, - -0.011968175880610943, - -0.011169067583978176, - 0.02834988385438919, - 0.029800573363900185, - -0.013929063454270363, - 0.028571175411343575, - -0.03068573772907257, - 0.017260728403925896, - -0.0041000377386808395, - -0.0050804815255105495, - -0.009835172444581985, - -0.0016443178756162524, - -0.020321926102042198, - 0.030857853591442108, - 0.019498229026794434, - 0.02251025103032589, - -0.0025310202036052942, - -0.0013984385877847672, - -0.03811129182577133, - -0.0028276119846850634, - -0.02461251989006996, - 0.008402925916016102, - -0.00883321464061737, - -0.011648532003164291, - -0.005166538991034031, - -0.040668439120054245, - 0.0244281105697155, - 0.010554369539022446, - 0.010019581764936447, - 0.04278299957513809, - -0.0017273022094741464, - 0.006202305667102337, - 0.02388717606663704, - 0.032972414046525955, - 0.010124080814421177, - -0.013056191615760326, - 0.006989119574427605, - -0.0358000285923481, - -0.006060924846678972, - -0.02137920632958412, - 0.012761136516928673, - -0.00013648222375195473, - 0.02876788005232811, - 0.033783815801143646, - 0.03112832084298134, - 0.01424870640039444, - -0.0036236464511603117, - 0.02469857782125473, - -0.0003363552095834166, - 0.02353065088391304, - -0.0770585760474205, - 0.00409389054402709, - -0.015232223086059093, - 0.002019283827394247, - 0.02559603564441204, - 0.05763411149382591, - -0.02903834730386734, - 0.005679812282323837, - -0.019854754209518433, - -0.05143795162439346, - -0.017727898433804512, - -0.004318255465477705, - 0.01766642928123474, - 0.03314452990889549, - -0.02338312193751335, - -0.01272425428032875, - -0.010412989184260368, - 0.030857853591442108, - -0.009048358537256718, - -0.04848739877343178, - -0.02724342793226242, - 0.017285315319895744 - ], - "how_to_setup_crude_oil_production": [ - -0.05060022696852684, - 0.01827920787036419, - 0.028108475729823112, - 0.0020736525766551495, - 0.025399524718523026, - 0.0014313638675957918, - -0.009425411000847816, - -0.020366840064525604, - 0.01624128222465515, - -0.0026514793280512094, - 0.06869304180145264, - 0.0021047184709459543, - -0.03668268024921417, - 0.005480034742504358, - 0.03849693015217781, - 0.006008155643939972, - -0.03233344480395317, - 0.04612673074007034, - 0.014451882801949978, - 0.01871413178741932, - 0.028928617015480995, - -0.03056889958679676, - -0.010065369307994843, - -0.024778205901384354, - 0.02000647597014904, - -0.028754647821187973, - 0.03407314047217369, - 0.05880163982510567, - -0.00019076438911724836, - -0.010257978923618793, - 0.047617897391319275, - -0.01629098691046238, - -0.054029908031225204, - 0.046101879328489304, - 0.014687983319163322, - -0.031165366992354393, - 0.005473821423947811, - 0.014116370119154453, - 0.003117468673735857, - 0.013569609262049198, - -0.006530063692480326, - -0.02290182188153267, - -0.048512596637010574, - 0.010910363867878914, - -0.018614720553159714, - 0.021833153441548347, - -0.015955474227666855, - 0.011121612042188644, - 0.050475966185331345, - 0.051842864602804184, - -0.00859284307807684, - 0.011214809492230415, - -0.05900046229362488, - -0.04202602431178093, - 0.004759304225444794, - -0.04205087572336197, - -0.026940396055579185, - 0.006188338156789541, - -0.010636983439326286, - -0.034445930272340775, - 0.026965249329805374, - 0.024455120787024498, - 0.011003561317920685, - 0.01978280022740364, - -0.021261539310216904, - 0.010972495190799236, - -0.043691158294677734, - 0.04393968731164932, - -0.024256298318505287, - 0.025548642501235008, - -0.0021621903870254755, - 0.018813543021678925, - -0.016750764101743698, - 0.024144461378455162, - 0.02444269321858883, - -0.0417526438832283, - -0.035290926694869995, - 0.03583768755197525, - -0.027238629758358, - -0.03317844122648239, - -0.0338246114552021, - -0.04684746265411377, - -0.045405998826026917, - -0.03454534336924553, - 0.006617048289626837, - -0.044362183660268784, - -0.050898462533950806, - -0.013482624664902687, - -0.03034522570669651, - -0.051842864602804184, - -0.003342696698382497, - 0.038173846900463104, - 0.006349881179630756, - 0.05517313629388809, - 0.04046029970049858, - -0.01954669877886772, - 0.015334155410528183, - -0.020093459635972977, - 0.0006535500288009644, - 0.03886972367763519, - 0.02877950109541416, - -0.043641455471515656, - -0.030196107923984528, - -0.02616996131837368, - 0.05522284284234047, - 0.005029578227549791, - -0.013544756919145584, - 0.04515747353434563, - -0.019273318350315094, - -0.04525688290596008, - -0.06531306356191635, - -0.014700409956276417, - 0.035514600574970245, - 0.02927655726671219, - 0.006318815518170595, - 0.04252307862043381, - -0.00835674162954092, - 0.018179796636104584, - 0.0324825644493103, - -0.013693872839212418, - -0.0794791430234909, - -0.013892695307731628, - 0.015135333873331547, - -0.024952175095677376, - 0.04925817996263504, - -0.0120846563950181, - 0.014551293104887009, - 0.016005180776119232, - -0.01888810098171234, - 0.02572261169552803, - -0.0598454549908638, - 0.0241693127900362, - 0.04612673074007034, - -0.031115660443902016, - 0.008394021540880203, - -0.05164404585957527, - -0.013246523216366768, - 0.007598732598125935, - 0.013992106541991234, - 0.01496136374771595, - 0.02726348303258419, - -0.07083037495613098, - -0.032432857900857925, - 0.021944990381598473, - -0.03280564770102501, - 0.009661512449383736, - -0.038820017129182816, - -0.060143690556287766, - -0.00604232819750905, - -0.006505210883915424, - -0.020304707810282707, - -0.00826354417949915, - -0.030022138729691505, - -0.0333772636950016, - -0.01693715900182724, - -0.04137985408306122, - -0.015209891833364964, - 0.05651518702507019, - -0.024790631607174873, - -0.015185038559138775, - -0.038571491837501526, - -0.00015901886217761785, - -0.013072554022073746, - 0.00467853294685483, - -0.027014954015612602, - -0.016875026747584343, - -0.028058771044015884, - -0.015980327501893044, - -0.04647466912865639, - 0.0685439258813858, - -0.015619962476193905, - -0.00044812640408053994, - -0.0005875348579138517, - 0.029798464849591255, - -0.01917390711605549, - -0.01916148141026497, - -0.06635688245296478, - -0.001285353908315301, - 0.004746878053992987, - 0.003265031846240163, - 0.03501754626631737, - 0.013954827561974525, - -0.05661459639668465, - -0.04515747353434563, - 0.022616015747189522, - 0.01586849056184292, - -0.009133391082286835, - 0.044561006128787994, - 0.005921171046793461, - 0.01713598147034645, - 0.019310597330331802, - -0.006697820033878088, - -0.0032060067169368267, - -0.004989192355424166, - 0.017695168033242226, - 0.000948288303334266, - 0.022553883492946625, - 0.030071845278143883, - 0.072122722864151, - -0.01784428395330906, - 0.02443026751279831, - 0.04376571625471115, - 0.028332151472568512, - -0.020068606361746788, - -0.00924522802233696, - 0.018415898084640503, - 0.0022942207287997007, - 0.013159538619220257, - 0.03725429251790047, - -0.03494298830628395, - -0.00571302929893136, - -0.039913538843393326, - 0.028058771044015884, - 0.016117017716169357, - 0.01824192889034748, - -0.03253226727247238, - -0.011500616557896137, - 0.06501483172178268, - -0.0676492229104042, - -0.038571491837501526, - -0.0283570047467947, - 0.02858067862689495, - 0.0010438160970807076, - 0.009220375679433346, - 0.02532496675848961, - 0.03183639049530029, - 0.022081680595874786, - -0.03973957151174545, - 0.10597218573093414, - -0.007033332251012325, - -0.0021062716841697693, - 0.03556430712342262, - 0.01297314278781414, - -0.01718568615615368, - 0.03101624920964241, - -0.01365659385919571, - 0.007076824549585581, - 0.008070935495197773, - -0.02972390688955784, - -0.04560482129454613, - -0.003951589576900005, - -0.027014954015612602, - -0.047195401042699814, - -0.024306003004312515, - 0.012482301332056522, - 0.0035912245512008667, - -0.007573879789561033, - -0.04461071267724037, - 0.03434652090072632, - -3.3371631502632226e-07, - 0.035961948335170746, - -0.02507643960416317, - -0.01438975054770708, - 0.0038086860440671444, - 0.0035632650833576918, - -0.03409799188375473, - -0.012861305847764015, - 0.020130738615989685, - -0.026269372552633286, - 0.017906416207551956, - 0.04182720184326172, - 0.0471208430826664, - -0.07575122267007828, - 0.017906416207551956, - -0.025424377992749214, - -0.01693715900182724, - 0.04416336119174957, - -0.013606888242065907, - -0.01670105755329132, - -0.01374357845634222, - -0.009754709899425507, - 0.04314439743757248, - 0.035986803472042084, - -0.015346582047641277, - -0.037279147654771805, - 0.0006958774174563587, - 0.03583768755197525, - -0.0421999953687191, - -0.028655236586928368, - -0.0137311527505517, - -0.020578088238835335, - -0.029748758301138878, - 0.043492335826158524, - 0.0824117660522461, - -0.02922685071825981, - -0.012848879210650921, - -0.013842989690601826, - 0.0414295569062233, - 0.008872437290847301, - -0.012134362012147903, - 0.017968548461794853, - 0.007648438215255737, - 0.01539628766477108, - -0.009599380195140839, - 0.03978927433490753, - -0.0011494403006508946, - -0.017086274921894073, - -0.013507477007806301, - 0.017048995941877365, - -0.04247337579727173, - -0.011848554946482182, - 0.01778215356171131, - 0.012718401849269867, - 0.0017723127966746688, - -0.06600894033908844, - -0.03307902812957764, - 0.0480155423283577, - -0.08280941098928452, - 0.006598408799618483, - -0.030966544523835182, - 0.024243870750069618, - -0.012059804052114487, - 0.051146987825632095, - -0.04575394093990326, - 0.0015898002311587334, - 0.019024791195988655, - 0.01583121158182621, - 0.01673833653330803, - -0.041479263454675674, - -0.022367488592863083, - -0.04371601343154907, - -5.873407189938007e-06, - 0.041678085923194885, - -0.021609477698802948, - -0.0018328913720324636, - -0.04393968731164932, - -0.022491751238703728, - -0.01891295425593853, - -0.030419783666729927, - 0.032681386917829514, - -0.0001105753835872747, - 0.04137985408306122, - -0.009872760623693466, - 0.005613618064671755, - -0.030270667746663094, - -0.007263220380991697, - 0.013072554022073746, - 0.01365659385919571, - 0.027661126106977463, - -0.024939749389886856, - -0.057956647127866745, - 0.0009110091486945748, - 0.03012154996395111, - -0.0035477320197969675, - 0.011115399189293385, - -0.0028316618409007788, - 0.02681613340973854, - 0.025548642501235008, - -0.010469227097928524, - 0.020528383553028107, - 0.021671609953045845, - 0.04406395182013512, - -0.05571989715099335, - 0.027412598952651024, - -0.004051000811159611, - 0.02265329472720623, - -0.014215781353414059, - 0.005017151590436697, - -0.03986383229494095, - -0.003802472958341241, - -0.026915544643998146, - 0.044585857540369034, - -0.017670314759016037, - -0.011960392817854881, - -0.016402823850512505, - 0.014986217021942139, - -0.021186981350183487, - -0.02684098482131958, - 0.002548961667343974, - 0.02636878378689289, - 0.05696253478527069, - 0.05880163982510567, - 0.023709537461400032, - 0.005539059638977051, - -0.0439893938601017, - -0.006853149738162756, - -0.008039869368076324, - 0.02748715691268444, - 0.003386189229786396, - 0.05298609286546707, - 0.027586568146944046, - 0.006536277011036873, - 0.008338102139532566, - 0.008636335842311382, - -0.023013660684227943, - 0.005194227676838636, - 0.03735370561480522, - -0.018291635438799858, - -0.022479325532913208, - 0.013619314879179, - 0.018353765830397606, - -0.06098868325352669, - 0.016551941633224487, - 0.010251765139400959, - 0.010873083956539631, - -0.021671609953045845, - 0.04538114741444588, - 0.008157920092344284, - 0.017471494153141975, - 0.05388079211115837, - -0.005318491719663143, - -0.0002807585697155446, - -0.02421901933848858, - -0.010170993395149708, - 0.0378507599234581, - 0.03302932530641556, - -5.9365098422858864e-05, - -0.027188925072550774, - -0.026468193158507347, - -0.015570256859064102, - 0.017496345564723015, - -0.027362894266843796, - 0.027984213083982468, - -0.014203354716300964, - 0.03581283241510391, - -0.0008783898665569723, - 0.04239881783723831, - -0.022479325532913208, - -0.02203197591006756, - 0.01955912634730339, - -0.01846560463309288, - 0.008108214475214481, - 0.013880268670618534, - -0.0082324780523777, - 0.0006982073537074029, - 0.052489038556814194, - 0.05017773061990738, - -0.035763129591941833, - -0.015011069364845753, - -0.04687231406569481, - 0.01297314278781414, - 0.002830108627676964, - -0.039913538843393326, - 0.021261539310216904, - 0.05601813271641731, - -0.02179587446153164, - 0.017297523096203804, - 0.011457124724984169, - -0.04421306774020195, - 0.00622251071035862, - -0.005414796061813831, - -0.006834510248154402, - 0.01244502142071724, - 0.006691606715321541, - -0.07719268649816513, - 0.024542104452848434, - 0.017732447013258934, - -0.028207886964082718, - -0.05303579941391945, - 0.05517313629388809, - 0.006940134335309267, - -0.006946347653865814, - -0.008126853965222836, - 0.03123992495238781, - -0.00527189252898097, - -0.0015043688472360373, - 0.03196065500378609, - 0.002072099130600691, - 0.004091386217623949, - -0.01507320161908865, - 0.014687983319163322, - 0.03163756802678108, - -0.001266714301891625, - 0.03690635412931442, - 0.009984598495066166, - 0.03173698112368584, - -0.013470198027789593, - 0.02768597938120365, - -0.012556859292089939, - -0.0035756914876401424, - 0.0009366385638713837, - -0.038795165717601776, - 0.0025738144759088755, - 0.0005661770119331777, - 0.0017956122756004333, - -0.03322814777493477, - 0.021820727735757828, - 0.0339488759636879, - -0.03894428163766861, - -0.05676371231675148, - -0.016875026747584343, - -0.008437513373792171, - -0.05164404585957527, - 0.013594462536275387, - 0.024306003004312515, - 0.04997890815138817, - 0.022131387144327164, - -0.011587601155042648, - -0.0665557011961937, - -0.015943048521876335, - -0.01762061007320881, - 0.006029902026057243, - 0.05010317265987396, - -0.012811600230634212, - 0.03300447016954422, - -0.02354799397289753, - -0.034868426620960236, - -0.039515893906354904, - 0.030196107923984528, - 0.04046029970049858, - 0.005607404746115208, - -0.009344639256596565, - -0.01419092807918787, - 0.010363603010773659, - 0.0035694781690835953, - -0.033327557146549225, - 0.02131124585866928, - 0.038397520780563354, - 0.018552588298916817, - 0.006135526113212109, - -0.0022880076430737972, - 0.009170670062303543, - 0.0117802107706666, - 0.012935863807797432, - 0.007145169656723738, - 0.03690635412931442, - -0.0015043688472360373, - 0.000996440532617271, - 0.050227437168359756, - 0.024517251178622246, - 0.009158243425190449, - -0.01340806670486927, - 0.007542814128100872, - 0.03342696651816368, - -0.021696463227272034, - -0.018776264041662216, - -0.05194227769970894, - -0.005753415171056986, - 0.02400777116417885, - -0.02703980728983879, - 0.018428325653076172, - -0.012345611117780209, - 0.03849693015217781, - 0.033750053495168686, - -0.04316925257444382, - 0.002753996988758445, - -0.04749363288283348, - -0.05219080671668053, - -0.012923437170684338, - -0.00527189252898097, - -0.019273318350315094, - 0.020130738615989685, - -0.05964663624763489, - 0.0009529481758363545, - -0.019273318350315094, - 0.0338246114552021, - 0.017098702490329742, - -0.007232154253870249, - 0.005765841342508793, - 0.024765780195593834, - 0.029301408678293228, - -0.006623261608183384, - -0.04272190108895302, - -0.007803767919540405, - -0.006778591312468052, - 0.0035663717426359653, - -0.01297314278781414, - -0.03235829994082451, - 0.021646758541464806, - -0.019062070176005363, - 0.01962125673890114, - 0.021870432421565056, - 0.036434151232242584, - -0.008126853965222836, - 0.01253200601786375, - 0.08867466449737549, - 0.03432166576385498, - 0.006933921482414007, - 0.023684684187173843, - -0.039292220026254654, - 0.017980974167585373, - -0.018999937921762466, - 0.0043585533276200294, - -0.03365064412355423, - 0.03079257532954216, - 0.013184391893446445, - 0.017682742327451706, - -0.00018260956858284771, - 0.031538158655166626, - 0.010444373823702335, - -0.027014954015612602, - -0.051097285002470016, - 0.004162838216871023, - -0.003954696003347635, - -0.02328704111278057, - -0.01564481481909752, - -0.0005743318470194936, - 0.006054754834622145, - 0.005082390271127224, - -0.03782590851187706, - -0.0430946946144104, - -0.005933597683906555, - -0.031090809032320976, - -0.004162838216871023, - -0.04197631776332855, - 0.04391483590006828, - -0.009220375679433346, - 0.002155977301299572, - -0.027139218524098396, - -0.011575175449252129, - -0.04987949877977371, - -0.008425086736679077, - -0.01624128222465515, - 0.030867133289575577, - -0.006523850839585066, - -0.024243870750069618, - -0.013669020496308804, - -0.0041255587711930275, - -0.031314484775066376, - 0.009263867512345314, - 0.0019757947884500027, - -0.030693164095282555, - -0.005470714531838894, - 0.0008543137810193002, - 0.004162838216871023, - 0.011450910940766335, - -0.006092033814638853, - 0.03588739037513733, - 0.004743771627545357, - -0.05062508210539818, - -0.03148845210671425, - -0.008294610306620598, - -0.025548642501235008, - 0.03360093757510185, - 0.00017930881585925817, - 0.020279856398701668, - -0.013867842964828014, - 0.013954827561974525, - -0.0024883830919861794, - 0.01494893804192543, - 0.01779457926750183, - 0.02577231638133526, - -0.01673833653330803, - 0.013147111982107162, - -0.019869785755872726, - -0.013333507813513279, - 0.020081033930182457, - -0.00666054105386138, - 0.022839689627289772, - -0.020578088238835335, - -0.03459504619240761, - 0.0065114242024719715, - 0.03342696651816368, - -0.0048928880132734776, - 0.01057485118508339, - 0.04751848429441452, - -0.026269372552633286, - 0.046946872025728226, - 0.03725429251790047, - -0.02793450653553009, - -0.010257978923618793, - 0.0351666621863842, - 0.029823318123817444, - -0.013333507813513279, - 0.025548642501235008, - -0.01519746519625187, - -0.025921432301402092, - -0.022603590041399002, - -0.06412012875080109, - 0.009941105730831623, - -0.040609415620565414, - 0.03648385778069496, - -0.024977028369903564, - -0.014874379150569439, - -0.013880268670618534, - 0.009854121133685112, - 0.001905896351672709, - 0.003609864041209221, - 0.015657242387533188, - 0.006561129819601774, - -0.0062038712203502655, - 0.0009708111174404621, - -0.006337455008178949, - 0.006213190965354443, - 0.0195964053273201, - 0.011898260563611984, - -0.013060127384960651, - -0.0549246110022068, - 0.003136108163744211, - 0.035315778106451035, - -0.02460423670709133, - 0.005750308278948069, - -0.03034522570669651, - 0.026294223964214325, - 0.022143812850117683, - -0.013669020496308804, - -0.020515957847237587, - 0.01827920787036419, - -0.02489004284143448, - -0.000326386681990698, - -0.017198113724589348, - 0.009823055006563663, - 0.006492784712463617, - -0.007368844468146563, - 0.025188276544213295, - 0.028978323563933372, - 0.0006842276779934764, - 0.012128149159252644, - -0.03715488314628601, - -0.07590034604072571, - 0.0026840984355658293, - -0.022156238555908203, - -0.0019897744059562683, - -0.01851530931890011, - -0.049804940819740295, - 0.010835804976522923, - 0.016452530398964882, - 0.02269057370722294, - 0.03586253896355629, - -0.007828621193766594, - -0.02111242339015007, - 0.003021164098754525, - -0.0414295569062233, - 0.029574789106845856, - -0.008773026056587696, - 0.03678208962082863, - -0.029997287318110466, - -0.03780105337500572, - 0.016191575676202774, - -0.008555564098060131, - 0.02285211719572544, - -0.002994758076965809, - -0.03670753166079521, - 0.01673833653330803, - -0.03616077080368996, - -0.006641901098191738, - 0.012184067629277706, - -0.011513043195009232, - -0.0078161945566535, - 0.02526283450424671, - -0.0003568701504264027, - -0.003501133294776082, - 0.020988158881664276, - -0.005703709553927183, - 0.0020379265770316124, - -0.00041667211917228997, - -0.035116955637931824, - 0.010487866587936878, - 0.015570256859064102, - -0.006306388881057501, - -0.003010291140526533, - -0.010717754252254963, - 0.02639363519847393, - -0.00936327874660492, - 0.03297961875796318, - -0.010295257903635502, - 0.018341340124607086, - 0.030966544523835182, - -0.006722672842442989, - -0.0018235716270282865, - -0.020764485001564026, - 0.008785451762378216, - -0.007101677358150482, - 0.010183420032262802, - 0.01001566369086504, - -0.0026701188180595636, - 0.01057485118508339, - 0.0038086860440671444, - -0.02245447225868702, - -0.01297314278781414, - -0.019509419798851013, - 0.027536863461136818, - -0.03012154996395111, - 0.0006399586563929915, - 0.007915605790913105, - -0.00903397984802723, - 0.0031407680362462997, - 0.002752443542703986, - 0.018825968727469444, - -0.032855354249477386, - 0.02223079837858677, - 0.0083443159237504, - 0.023920785635709763, - 0.0013389426749199629, - -0.008164132945239544, - -0.02306336537003517, - 0.022094108164310455, - -0.009512395597994328, - -0.010686689056456089, - -0.038596343249082565, - -0.003367549506947398, - -0.024355709552764893, - -0.016638925299048424, - 0.03725429251790047, - 0.025150997564196587, - -0.0083443159237504, - -0.019907064735889435, - 0.026294223964214325, - -0.018117664381861687, - -0.026940396055579185, - 0.007797554600983858, - -0.044088803231716156, - 0.02179587446153164, - 0.022379914298653603, - 0.04538114741444588, - -0.00654870318248868, - 0.0055111004039645195, - -0.09856606274843216, - -0.019198760390281677, - 0.0106618357822299, - -0.02748715691268444, - -0.013457772321999073, - 0.02352314069867134, - -0.010394669137895107, - 0.024330856278538704, - 0.027213776484131813, - -0.03867090120911598, - -0.0048959944397211075, - -0.022367488592863083, - -0.03849693015217781, - 0.02641848847270012, - 0.009487543255090714, - -0.0025054693687707186, - 0.023697109892964363, - 0.009344639256596565, - 0.007213514763861895, - -0.011115399189293385, - -0.0016713483491912484, - -0.029525084421038628, - 0.024529678747057915, - 0.005691282916814089, - -0.01892537996172905, - 0.032035212963819504, - 0.036583270877599716, - -0.01580635830760002, - -0.0042001171968877316, - 0.024914896115660667, - 0.0204911045730114, - 0.024542104452848434, - 0.012786746956408024, - 0.00616348534822464, - -0.011767784133553505, - 0.002079865662381053, - -0.007076824549585581, - 0.02795935980975628, - 0.010823379270732403, - -0.006266003008931875, - -0.013867842964828014, - 0.005371303763240576, - 0.016353119164705276, - 0.03360093757510185, - 0.05263815447688103, - 0.046101879328489304, - -0.011693225242197514, - -0.012786746956408024, - -0.03320329263806343, - 0.036409299820661545, - 0.04955641180276871, - -0.039491042494773865, - 0.023361599072813988, - 0.009922466240823269, - 0.012010098434984684, - 0.02815818227827549, - -0.013482624664902687, - -0.016166722401976585, - -0.012401529587805271, - -0.03389916941523552, - 0.019086923450231552, - 0.019745521247386932, - -0.0021202515345066786, - -0.016551941633224487, - -0.006554916501045227, - 0.011320434510707855, - 0.0022755812387913465, - -0.0213236715644598, - -0.002388971857726574, - -0.022578736767172813, - 0.0013397192815318704, - -0.0117802107706666, - 0.013283802196383476, - 0.020093459635972977, - 0.00545207504183054, - -0.012177854776382446, - 0.01625370793044567, - -0.02503916062414646, - 0.020366840064525604, - -0.03258197382092476, - 0.0037496609147638083, - 0.018627146258950233, - 0.0016775615513324738, - 0.015582683496177197, - 0.0029667988419532776, - -0.006996053270995617, - -0.013283802196383476, - 0.007188661955296993, - 0.02532496675848961, - 0.028307298198342323, - 0.01671348325908184, - 0.008971847593784332, - -0.015309303067624569, - -0.04304498806595802, - -0.0054986742325127125, - -0.010021877475082874, - -0.0006721896352246404, - -0.009605593048036098, - 0.00036735492176376283, - 0.0016573687316849828, - -0.011283154599368572, - 0.013830563053488731, - 0.003976442385464907, - 0.024479972198605537, - -0.015955474227666855, - 0.049158766865730286, - 0.03916795551776886, - 0.001394861377775669, - 0.0023610126227140427, - -0.04155382141470909, - 0.007002266589552164, - -0.005141415633261204, - -0.0032308592926710844, - 0.021013012155890465, - -0.0164649561047554, - -0.008928355760872364, - -0.020068606361746788, - -0.0031236817594617605, - -0.028878912329673767, - 0.013470198027789593, - 0.002493042964488268, - 0.026045696809887886, - -0.013258949853479862, - 0.01583121158182621, - -0.00346385408192873, - -0.01978280022740364, - 0.022069254890084267, - 0.04252307862043381, - -0.024343281984329224, - 0.0184780303388834, - 0.023461010307073593, - 0.004218756686896086, - -0.05830458551645279, - 0.021075144410133362, - -0.03939163312315941, - -0.008157920092344284, - 0.05263815447688103, - 0.024293577298521996, - 0.0008403341053053737, - -0.030022138729691505, - -0.022504178807139397, - -0.03514180704951286, - -0.01580635830760002, - 0.04110647365450859, - -0.014315192587673664, - 0.01916148141026497, - -0.0005075400695204735, - 0.031563010066747665, - -0.02684098482131958, - -0.041230734437704086, - -0.004137985408306122, - -0.0052035474218428135, - -0.01133907400071621, - 0.007449616212397814, - -0.06819598376750946, - -0.004765517544001341, - -0.02726348303258419, - -0.02113727666437626, - 0.004656786564737558, - 0.020727206021547318, - -0.007629798725247383, - 0.013606888242065907, - 0.003948483150452375, - 9.552781557431445e-05, - 0.01888810098171234, - -0.024529678747057915, - 0.014526440761983395, - 0.012451235204935074, - 0.014799821190536022, - -0.04466041922569275, - -0.022367488592863083, - 0.028207886964082718, - -0.005703709553927183, - 0.010369815863668919, - 0.0016729016788303852, - -0.006033008452504873, - 0.042995281517505646, - -0.024939749389886856, - -0.040137212723493576, - 0.0015230084536597133, - -0.0019183227559551597, - 0.016663778573274612, - -0.01340806670486927, - 0.008940782397985458, - 0.03675723820924759, - -0.012066016905009747, - 0.011531682685017586, - 0.023274613544344902, - -0.0018173584248870611, - 0.015122907236218452, - 0.03325299918651581, - 0.04597761482000351, - 0.02310064435005188, - -0.014215781353414059, - -0.008630122058093548, - 0.0369560606777668, - -0.009655298665165901, - 0.009537247940897942, - -0.016837747767567635, - 0.028033917769789696, - 0.0326068252325058, - 0.0022880076430737972, - 0.03315358608961105, - -0.0007191768963821232, - 0.010226912796497345, - -0.022702999413013458, - -0.012097083032131195, - 0.005914957728236914, - -0.032905060797929764, - 0.030270667746663094, - 0.003743447596207261, - 0.0017195006366819143, - -0.020590515807271004, - 0.0027213776484131813, - -0.03186124563217163, - -0.00719487527385354, - -0.0036999552976340055, - -0.021435508504509926, - -0.012861305847764015, - -0.047642748802900314, - -0.00488667469471693, - -0.05062508210539818, - -0.025138571858406067, - -0.020739631727337837, - -0.0014888359000906348, - 0.044734977185726166, - 0.018602294847369194, - -0.009462689980864525, - 0.02352314069867134, - -0.0058932118117809296, - -0.010313897393643856, - 0.014464308507740498, - -0.011140251532196999, - 0.028282444924116135, - 0.022268077358603477, - -0.017856711521744728, - 0.021174555644392967, - 0.007331565488129854, - 0.007542814128100872, - -0.036831796169281006, - 0.010668049566447735, - -0.013470198027789593, - 0.026667015627026558, - -0.023237334564328194, - 0.008394021540880203, - 0.022578736767172813, - 0.038198698312044144, - -0.004849395714700222, - 0.04418821632862091, - -0.016589220613241196, - -0.044983502477407455, - 0.016104592010378838, - 0.015706947073340416, - -0.03986383229494095, - 0.04155382141470909, - -0.023585272952914238, - 0.013234096579253674, - -0.023274613544344902, - -0.044585857540369034, - -0.015060774981975555, - -0.001867063925601542, - 0.03054404817521572, - 0.027785390615463257, - 0.009593167342245579, - 0.007797554600983858, - 0.00272603752091527, - -0.02246689982712269, - -0.010226912796497345, - 0.017471494153141975, - -0.03941648453474045, - 0.025871727615594864, - -0.026120254769921303, - -0.011966605670750141, - 0.024368135258555412, - 0.010096435435116291, - -0.019869785755872726, - -0.0019757947884500027, - -0.02269057370722294, - -0.012208920903503895, - -0.04200117290019989, - -0.004405152518302202, - -0.015135333873331547, - -0.006474145222455263, - 0.004858715459704399, - -0.020540809258818626, - -0.01849045604467392, - 0.010394669137895107, - -0.009388132020831108, - 0.008443726226687431, - 0.018316486850380898, - 0.024542104452848434, - 0.04381542280316353, - 0.024939749389886856, - -0.03601165488362312, - -0.03161271661520004, - -0.011258302256464958, - -0.01519746519625187, - -0.004955019801855087, - -0.02659245766699314, - -0.024293577298521996, - 0.013457772321999073, - -0.023672258481383324, - -0.010394669137895107, - 0.006996053270995617, - -0.0006057861028239131, - 0.009928679093718529, - 0.0016729016788303852, - -0.00789696630090475, - 0.0003788104804698378, - -0.022777559235692024, - -0.017048995941877365, - 0.009170670062303543, - 0.037080325186252594, - 0.031985506415367126, - 0.012003885582089424, - 0.02112484909594059, - -0.04229940474033356, - -0.0002784286334645003, - -0.04242366924881935, - -0.0073564182966947556, - -0.004392725881189108, - 0.00577205466106534, - 0.062380436807870865, - -0.013693872839212418, - 0.002300434047356248, - -0.03670753166079521, - -0.009108537808060646, - 0.006530063692480326, - 0.012494727037847042, - 0.030618606135249138, - 0.009847908280789852, - 0.0016014500288292766, - -0.03280564770102501, - -0.003061549970880151, - -0.047841571271419525, - 0.018316486850380898, - -0.0024775099009275436, - -0.0053868368268013, - -0.012786746956408024, - 0.0030071844812482595, - 0.018627146258950233, - 0.01716083288192749, - -0.00923280231654644, - -0.018577441573143005, - -0.034843575209379196, - -0.006592195946723223, - -0.0035570519976317883, - -0.026766426861286163, - 0.055769603699445724, - 0.01528444979339838, - 0.07311683148145676, - -0.020739631727337837, - -0.03389916941523552, - -0.0064368657767772675, - -0.0013847649097442627, - -0.02114970237016678, - 0.028878912329673767, - -0.013308655470609665, - 0.0025940071791410446, - -0.04973038285970688, - -0.015185038559138775, - 0.012488514184951782, - 0.050699640065431595, - 0.005290532018989325, - 0.008114427328109741, - -0.03790046647191048, - -0.04033603519201279, - -0.0014166075270622969, - 0.017956122756004333, - -0.011680799536406994, - 0.014464308507740498, - 0.008816517889499664, - 0.00789696630090475, - -0.013544756919145584, - -0.004923954140394926, - -0.0012441915459930897, - 0.004725131671875715, - -0.02290182188153267, - 0.007977737113833427, - 0.003320950549095869, - 0.011233449913561344, - -0.01650223508477211, - 0.059248991310596466, - 0.005933597683906555, - 0.009419198147952557, - 0.009226588532328606, - 0.018105238676071167, - -0.02994758076965809, - -0.022578736767172813, - 0.027760537341237068, - -0.018540162593126297, - 0.036806944757699966, - 0.0242314450442791, - -0.02287697046995163, - 0.030022138729691505, - 0.00981062836945057, - 0.04287101700901985, - -0.01738450862467289, - -0.011239662766456604, - 0.010059156455099583, - 0.027238629758358, - 0.02114970237016678, - -0.0025241088587790728, - -0.027387745678424835, - 0.001963368384167552, - -0.04861200600862503, - -0.02288939617574215, - 0.0027058448176831007, - -0.011084333062171936, - 0.01805553399026394, - -0.0339488759636879, - 0.01199145894497633, - -0.004709599073976278, - 0.0215473473072052, - 0.005101029761135578, - -0.02329946681857109, - -0.012382890097796917, - 0.005243933293968439, - 0.007219728082418442, - 0.01585606299340725, - 0.007772702258080244, - 0.02198226936161518, - 0.009835481643676758, - 0.03347667306661606, - 0.014464308507740498, - -0.024504825472831726, - 0.0018561908509582281, - -0.025896580889821053, - -0.009096112102270126, - -0.00815170630812645, - -0.03481872379779816, - -0.033501528203487396, - -0.039913538843393326, - 0.008064721710979939, - 0.00048812382738105953, - 0.018552588298916817, - 0.03869575262069702, - 0.01671348325908184, - 0.02265329472720623, - -0.016638925299048424, - 0.0009607146494090557, - -0.0012783640995621681, - 0.0301464032381773, - 0.005722349043935537, - 0.007536600809544325, - 0.012544432654976845, - -0.009046406485140324, - 0.027586568146944046, - -0.04928303137421608, - -0.00692770816385746, - 0.03235829994082451, - -0.014476735144853592, - 0.027810243889689445, - 0.01713598147034645, - -0.004799690097570419, - 0.003818006021901965, - 0.0007036438910290599, - 0.005427222233265638, - 0.021708888933062553, - 0.037726495414972305, - 0.01507320161908865, - -0.0019897744059562683, - 0.034396227449178696, - -0.0310411024838686, - -0.0015121353790163994, - -0.0018204649677500129, - -0.03633474186062813, - 0.0193727295845747, - -0.003072422929108143, - -0.02641848847270012, - -0.004492137115448713, - 0.029748758301138878, - 0.0173596553504467, - -0.0029217530973255634, - -0.016564367339015007, - -0.012401529587805271, - 0.03613591939210892, - -0.009823055006563663, - -0.004169051069766283, - 0.005958450026810169, - 0.055073726922273636, - 0.04140470549464226, - -0.019459715113043785, - -0.02177102118730545, - 0.003895670874044299, - -0.00015882469597272575, - -0.04200117290019989, - 0.015893341973423958, - 0.00429642153903842, - -0.0001335836132057011, - -0.018776264041662216, - 0.010444373823702335, - 0.00461640115827322, - -0.011239662766456604, - 0.052936386317014694, - -0.00846857950091362, - 0.01867685280740261, - -0.030295519158244133, - -0.022504178807139397, - 0.020205296576023102, - 0.02880435436964035, - -0.005734775215387344, - 0.006182125303894281, - 0.01650223508477211, - 0.005287425592541695, - -0.025474082678556442, - -0.025237983092665672, - -0.010289044119417667, - 0.044536154717206955, - -0.045629676431417465, - 0.009630446322262287, - -0.013929974287748337, - 0.013818137347698212, - 0.00790939200669527, - -0.012563072144985199, - 0.0023516928777098656, - 0.03360093757510185, - 0.026791280135512352, - -0.00793424528092146, - -0.019857358187437057, - -0.010624556802213192, - -0.005188014358282089, - -0.01244502142071724, - 0.0028704942669719458, - 0.025250408798456192, - -0.018863247707486153, - 0.020988158881664276, - 0.015259597450494766, - -0.047170545905828476, - -0.008033656515181065, - -0.01916148141026497, - 0.01232697069644928, - 0.02444269321858883, - -0.016340693458914757, - -0.020515957847237587, - 0.04644981771707535, - 0.017744874581694603, - 0.001472526346333325, - 0.03613591939210892, - -0.003069316502660513, - -0.041678085923194885, - -0.012457448057830334, - 0.01783185824751854, - -0.015669668093323708, - 0.013780857436358929, - -0.0016791148809716105, - -0.003435894614085555, - -0.021895285695791245, - -0.003126788418740034, - 0.017558477818965912, - 0.00022911142150405794, - -0.0233367457985878, - -0.02950023114681244, - -0.00835052877664566, - -0.0006189891719259322, - -0.019049644470214844, - 0.004905314184725285, - 0.002803702373057604, - -0.0023314999416470528, - -0.006405800115317106, - -0.04550541192293167, - -0.002561388071626425, - -0.008176559582352638, - 0.013184391893446445, - -0.01507320161908865, - -0.01340806670486927, - -0.02616996131837368, - 0.008735747076570988, - 4.744839316117577e-05, - 0.017682742327451706, - -0.011301795020699501, - -0.006964987143874168, - 0.03347667306661606, - 0.021708888933062553, - -0.000560352171305567, - 0.021286392584443092, - 0.052489038556814194, - -0.00015668891137465835, - 0.000474144151667133, - -0.018316486850380898, - -0.011655946262180805, - 0.0078099812380969524, - -0.02728833444416523, - 0.038596343249082565, - 0.003998188301920891, - -0.016228854656219482, - -0.0024138246662914753, - 0.008810305036604404, - -0.0004419132019393146, - 0.007505534682422876, - 0.003541518934071064, - 0.009661512449383736, - 0.016800468787550926, - 0.007884539663791656, - 0.018130091950297356, - -0.008785451762378216, - 0.03054404817521572, - -0.02067749947309494, - 0.0011913793860003352, - -0.02397049032151699, - 0.022939100861549377, - 0.022814838215708733, - 0.0093508530408144, - -0.028456415981054306, - 0.004094493109732866, - 0.0013940847711637616, - 0.030196107923984528, - -0.021013012155890465, - -0.016812894493341446, - -0.018415898084640503, - -0.017707593739032745, - 0.021634330973029137, - 0.007598732598125935, - 0.003473173826932907, - -0.01716083288192749, - -0.0030056312680244446, - 0.0064989980310201645, - 0.03755252808332443, - -0.01099113468080759, - 0.0063436683267354965, - -0.0014771862188354135, - -0.03255712240934372, - -0.0010562425013631582, - 0.018540162593126297, - -0.015098053961992264, - 0.040385741740465164, - 0.0250640120357275, - -0.01850288361310959, - 0.014899232424795628, - -0.029997287318110466, - -0.006517637521028519, - -0.04195146635174751, - 0.008033656515181065, - 0.0009172223508358002, - 0.035514600574970245, - -0.011152678169310093, - -0.045654527842998505, - 0.04376571625471115, - 0.029649347066879272, - 0.010680475272238255, - 0.04110647365450859, - -0.0028596213087439537, - -0.012295905500650406, - -0.025474082678556442, - 0.02329946681857109, - -0.005486247595399618, - 0.01887567527592182, - -0.006244257092475891, - 0.002635946264490485, - -0.007306712679564953, - 0.023038512095808983, - -0.010879297740757465, - 0.0027772963512688875, - 0.018304061144590378, - 0.01609216444194317, - -0.00013096242037136108, - 0.011575175449252129, - 0.013271376490592957, - -0.011593814939260483, - 0.0069712004624307156, - 0.007188661955296993, - -0.0409822091460228, - 0.017459066584706306, - 0.011134038679301739, - 0.00044463149970397353, - -0.01012128870934248, - -0.0004096822813153267, - -0.025138571858406067, - -0.030071845278143883, - 0.0028316618409007788, - 0.03849693015217781, - -0.011742930859327316, - 0.03894428163766861, - -0.006722672842442989, - 0.012370463460683823, - -0.03688150271773338, - -0.011469550430774689, - -0.029375966638326645, - -0.014998643659055233, - -0.03954074904322624, - 0.041653234511613846, - 0.012047377415001392, - 0.009468902833759785, - -0.003087955992668867, - 0.017061423510313034, - -0.02152249403297901, - -0.0008403341053053737, - -0.008300823159515858, - 0.011276941746473312, - -0.003417255124077201, - -0.003991975449025631, - -0.004336807411164045, - 0.020515957847237587, - -0.008717106655240059, - 0.031115660443902016, - -0.007455829530954361, - 0.03188609704375267, - 0.009369492530822754, - 0.024803059175610542, - -0.004880461376160383, - 0.021746167913079262, - -0.007791341748088598, - -0.020528383553028107, - 0.03141389414668083, - -0.010997348465025425, - -0.012718401849269867, - -0.001261277822777629, - 0.008984274230897427, - 0.011631093919277191, - 0.008884862996637821, - -0.012693549506366253, - 0.036384448409080505, - -0.01808038540184498, - -0.0006201541400514543, - 0.03889457508921623, - 0.017670314759016037, - 0.017968548461794853, - -0.032656531780958176, - -0.002510129241272807, - -0.0382981114089489, - -0.0215473473072052, - 0.002713611116632819, - 0.06948833167552948, - -0.006828296929597855, - 0.024989454075694084, - -0.018825968727469444, - -0.015943048521876335, - 0.011152678169310093, - 0.0072073014453053474, - -0.012612777762115002, - 0.018154945224523544, - -0.03648385778069496, - -0.006909068673849106, - -0.007573879789561033, - 0.028307298198342323, - 0.009816842153668404, - -0.05169374868273735, - -0.016390398144721985, - 0.019646110013127327 - ], - "how_to_setup_oil_refineries": [ - -0.04332489147782326, - 0.009703230112791061, - 0.021400701254606247, - -0.016277994960546494, - -0.013984616845846176, - 0.02911592274904251, - -0.014096792787313461, - -0.005290971137583256, - -0.014719992876052856, - 0.0013367647770792246, - 0.052298977971076965, - -0.02064039744436741, - 0.0017979331314563751, - 0.005459235515445471, - 0.024180175736546516, - -0.013249239884316921, - -0.00468023493885994, - 0.07822411507368088, - 0.02629905566573143, - 0.024678735062479973, - 0.045842621475458145, - -0.044022876769304276, - -0.02639876864850521, - 0.004533782601356506, - -0.002416459610685706, - -0.0214131660759449, - 0.04659046232700348, - 0.04988095909357071, - -0.028592433780431747, - -0.03150901198387146, - 0.024491775780916214, - -0.026099631562829018, - -0.038588568568229675, - 0.007515796460211277, - -0.01337388064712286, - -0.03479950875043869, - 0.023943359032273293, - -0.011173983104526997, - 0.01840933971107006, - 0.02831822633743286, - -0.008861909620463848, - 0.011242534965276718, - -0.014695065096020699, - 0.02515236847102642, - -0.011423262767493725, - 0.029614482074975967, - -0.027744881808757782, - 0.027719954028725624, - 0.058331556618213654, - -0.0053844512440264225, - 0.00518502714112401, - -0.008718573488295078, - -0.022734349593520164, - -0.10419910401105881, - -0.012650967575609684, - -0.05155113711953163, - -0.03425109386444092, - 0.020378652960062027, - -0.008089140988886356, - -0.02255985327064991, - 0.021039245650172234, - 0.021974045783281326, - 0.04073237627744675, - 0.04182920977473259, - -0.04452143609523773, - -0.006861436180770397, - -0.02441699057817459, - 0.04594233259558678, - 0.016888730227947235, - 0.010793830268085003, - 0.0029321578331291676, - 0.026249200105667114, - -0.007166804280132055, - 0.013286632485687733, - 0.02709675207734108, - -0.04010917618870735, - -0.017761211842298508, - 0.056038178503513336, - -0.03968540206551552, - -0.048235710710287094, - -0.05972752347588539, - -0.05065372586250305, - 0.011759791523218155, - -0.03966047242283821, - 0.013685480691492558, - -0.0370679572224617, - -0.03487429395318031, - -0.006780420430004597, - -0.04671509936451912, - -0.045842621475458145, - -0.024716127663850784, - 0.006085551809519529, - 0.005864315666258335, - 0.019630812108516693, - 0.060226086527109146, - -0.02237289398908615, - 0.018608763813972473, - 0.008637557737529278, - 0.009628445841372013, - 0.028592433780431747, - 0.011354710906744003, - -0.04292604327201843, - -0.0460171177983284, - 6.942841719137505e-05, - 0.05135171115398407, - 0.017025833949446678, - 0.017998026683926582, - 0.029539698734879494, - -0.01673916168510914, - -0.042327769100666046, - -0.04260198026895523, - -0.01681394688785076, - 0.05249840021133423, - 0.0009028615895658731, - 0.008232477121055126, - 0.017599178478121758, - -0.012520095333456993, - -0.01792324334383011, - 0.010694118216633797, - -0.0220488291233778, - -0.06336701661348343, - -0.02233550138771534, - 0.008681181818246841, - -0.0035335461143404245, - 0.037915512919425964, - 0.005213071126490831, - 0.013810120522975922, - -0.006291207857429981, - -0.011903127655386925, - 0.018770795315504074, - -0.0357966311275959, - 0.023245373740792274, - 0.01744960993528366, - -0.04930761456489563, - -0.014208968728780746, - -0.02560107223689556, - -0.01806034706532955, - 0.0010929376585409045, - 0.030187826603651047, - 0.005213071126490831, - 0.03285512328147888, - -0.051301855593919754, - -0.04576783627271652, - 0.020789964124560356, - -0.029489843174815178, - 0.008170156739652157, - -0.029764050617814064, - -0.07647915184497833, - 0.001514376956038177, - -0.011516743339598179, - -0.01163515169173479, - 0.006942452397197485, - -0.027719954028725624, - -0.05090300738811493, - 0.043025754392147064, - -0.010775134898722172, - -0.01196544710546732, - 0.028816785663366318, - -0.012052695266902447, - 0.010806295089423656, - -0.007758844643831253, - 0.013673016801476479, - -0.05170070379972458, - 0.003120675915852189, - -0.014233896508812904, - -0.008905533701181412, - -0.048011358827352524, - -0.017624106258153915, - -0.07024715095758438, - 0.03709288686513901, - -0.010488462634384632, - -0.00011879757221322507, - 0.005817575845867395, - 0.03013797104358673, - 0.0011825227411463857, - -0.020254012197256088, - -0.008999013341963291, - 0.002117323223501444, - 0.006493748165667057, - 0.0159788578748703, - 0.026598192751407623, - -0.00792710855603218, - -0.047537725418806076, - -0.06491255015134811, - 0.015368121676146984, - 0.005378219299018383, - -0.028268368914723396, - 0.03093566745519638, - 0.0005686703370884061, - 0.031010450795292854, - 0.011940519325435162, - 0.011865735054016113, - -0.011865735054016113, - 0.011198910884559155, - -0.0025987455155700445, - 0.021774621680378914, - 0.02153780497610569, - 0.010743974708020687, - 0.03754159063100815, - -0.037566520273685455, - 0.030088115483522415, - 0.017885850742459297, - 0.038239575922489166, - -0.006425195839256048, - -0.009672069922089577, - -0.0039510903880000114, - -0.015031592920422554, - -0.004907703027129173, - 0.018097739666700363, - -0.005437423475086689, - 0.0005636068526655436, - -0.05404393747448921, - 0.032356563955545425, - 0.05658659338951111, - 0.004409142769873142, - -0.037217527627944946, - -0.032705556601285934, - 0.03958568722009659, - -0.03300469368696213, - -0.054791778326034546, - -0.05658659338951111, - 0.04678988456726074, - 0.03003825806081295, - -0.021076636388897896, - 0.012975032441318035, - 0.044720858335494995, - 0.017773674800992012, - -0.04205356165766716, - 0.07099498808383942, - 0.008020589128136635, - -0.014371001161634922, - 0.017823530361056328, - 0.01843426749110222, - -0.023320158943533897, - 0.054692067205905914, - -0.017075691372156143, - 0.012407919391989708, - -0.010519622825086117, - -0.02413031831383705, - -0.01467013731598854, - -0.03512357547879219, - -0.019406460225582123, - -0.026997040957212448, - -0.036768823862075806, - 0.0033590500243008137, - -0.010874846950173378, - -0.006668244022876024, - -0.060226086527109146, - 0.03198264539241791, - -0.01182211097329855, - 0.0029524117708206177, - 0.01665191352367401, - 0.01639017090201378, - -0.002145367441698909, - 0.008220013231039047, - -0.0687016099691391, - -0.05643702670931816, - -0.0028916497249156237, - -0.007328836712986231, - 0.02272188663482666, - 0.01604117825627327, - 0.03215714171528816, - -0.0680534839630127, - 0.02243521437048912, - -0.005646195728331804, - -0.013186920434236526, - 0.014096792787313461, - 0.05813213065266609, - -0.03946105018258095, - -0.03686853498220444, - 0.0014302448835223913, - 0.026024848222732544, - 0.02186186984181404, - -0.015455369837582111, - -0.0568857304751873, - -0.006394036114215851, - 0.012875320389866829, - 0.005484163295477629, - -0.011890663765370846, - -0.003842030419036746, - -0.03958568722009659, - -0.04307560995221138, - 0.03499893471598625, - 0.06341686844825745, - -0.026697903871536255, - -0.005643079522997141, - -0.010494694113731384, - -0.004452766850590706, - 0.019157180562615395, - -0.010887310840189457, - 0.020852284505963326, - 0.0038357984740287066, - 0.052298977971076965, - -0.01359823253005743, - 0.0332290455698967, - 0.013049815781414509, - 0.01331156026571989, - -0.01943138800561428, - 0.024055534973740578, - -0.031459156423807144, - 0.03661925345659256, - 0.03223192319273949, - 0.005228651221841574, - 0.027844592928886414, - -0.04843513295054436, - -0.0367438942193985, - 0.030462034046649933, - -0.08216273784637451, - 0.019929949194192886, - -0.006624619942158461, - 0.03843899816274643, - -0.02543903887271881, - 0.059577956795692444, - -0.08345899730920792, - 0.003648838261142373, - 0.011485583148896694, - 0.05052908882498741, - 0.018546443432569504, - -0.04798642918467522, - -0.017399754375219345, - -0.026922257617115974, - -0.020079515874385834, - 0.06526154279708862, - -0.014258825220167637, - 0.0019225731957703829, - -0.040857017040252686, - -0.02480337582528591, - -0.011984143406152725, - -0.03664418309926987, - 0.04197877645492554, - 0.0007458929903805256, - 0.03003825806081295, - -0.0215751975774765, - 0.01818498782813549, - -0.03297976404428482, - 0.016477419063448906, - 0.012457775883376598, - 0.019693132489919662, - 0.060226086527109146, - 0.030013330280780792, - -0.03868827968835831, - -0.0003698304935824126, - -0.011242534965276718, - 0.00856277346611023, - 0.027246320620179176, - -0.011367174796760082, - 0.002938389778137207, - 0.03529806807637215, - 0.019954876974225044, - 0.02722139284014702, - -0.01238299161195755, - 0.03876306489109993, - -0.0664580911397934, - 0.008974085561931133, - 0.002899439772590995, - 0.01955602876842022, - -0.02744574472308159, - 0.017586715519428253, - -0.04915804788470268, - -0.006225771736353636, - -0.048111069947481155, - 0.049706462770700455, - -0.006923756096512079, - -0.007652900647372007, - -0.03891263157129288, - 0.024367135018110275, - -0.029539698734879494, - -0.010114542208611965, - 0.00010808631486725062, - 0.0523986890912056, - 0.062070757150650024, - 0.05394422635436058, - 0.0171006191521883, - 0.04339967668056488, - -0.04292604327201843, - -0.004786178935319185, - 0.00668694032356143, - 0.01006468664854765, - -0.013348951935768127, - 0.02968926727771759, - 0.018870508298277855, - 0.010257878340780735, - -0.001432581921108067, - -0.006923756096512079, - -0.021101566031575203, - -0.0158168263733387, - -0.01892036385834217, - 0.009834102354943752, - -0.023120734840631485, - -0.0009161045891232789, - 0.03966047242283821, - -0.05902954190969467, - 0.0308359544724226, - 0.005057271104305983, - 0.03422616422176361, - -0.001523724989965558, - 0.053445667028427124, - 0.0063192518427968025, - 0.028816785663366318, - 0.042552120983600616, - 0.012439079582691193, - -0.016789019107818604, - -0.011940519325435162, - -0.01410925667732954, - 0.012314439751207829, - 0.02000473253428936, - -0.0006668244022876024, - -0.006228887941688299, - 0.0020051472820341587, - 0.0006387804169207811, - 0.04581769183278084, - -0.040857017040252686, - 0.024878159165382385, - -0.007864789105951786, - 0.03150901198387146, - -0.01732497103512287, - 0.035173431038856506, - -0.016477419063448906, - -0.032580915838479996, - 0.0031876699067652225, - 0.009254525415599346, - 0.018459195271134377, - 0.00315183587372303, - -0.012426615692675114, - -0.014557961374521255, - 0.029066065326333046, - 0.046066973358392715, - -0.03265570104122162, - -0.01812266744673252, - -0.04880905523896217, - -0.017312506213784218, - 0.027944305911660194, - -0.025750640779733658, - 0.026772689074277878, - 0.0495319664478302, - -0.025974992662668228, - -0.0005156983388587832, - -0.020540684461593628, - -0.03816479071974754, - 0.003689346369355917, - -0.018845580518245697, - -0.005590107291936874, - 0.030536819249391556, - -0.013386344537138939, - -0.06496240943670273, - 0.012975032441318035, - 0.002447619568556547, - -0.015779433771967888, - -0.012937639839947224, - 0.03275541216135025, - 0.007615508511662483, - 0.012545024044811726, - 0.017649034038186073, - 0.032481204718351364, - -0.00560880359262228, - -0.004783063195645809, - 0.043923161923885345, - -0.008967853151261806, - 0.007740148808807135, - 0.004094426520168781, - 0.009734390303492546, - 0.043599098920822144, - 0.013573304750025272, - 0.024554096162319183, - 0.0005153088131919503, - 0.018097739666700363, - -0.017935706302523613, - -0.0003600929630920291, - 0.00976555049419403, - -0.04397301748394966, - -0.019668204709887505, - -0.054143648594617844, - 0.0034930382389575243, - 0.0033465861342847347, - -0.033154260367155075, - -0.02697211317718029, - 0.008631325326859951, - 0.028193585574626923, - -0.037217527627944946, - -0.04905833303928375, - -0.03255598992109299, - 0.007983196526765823, - -0.026772689074277878, - 0.022996094077825546, - -0.0010952746961265802, - 0.07762584090232849, - 0.020976925268769264, - -0.032132212072610855, - -0.10748960077762604, - -0.011410798877477646, - -0.009827869944274426, - 0.014196504838764668, - 0.013012424111366272, - -0.013174456544220448, - 0.01636524125933647, - -0.045493628829717636, - -0.06546096503734589, - -0.05294710397720337, - -0.00020662987662944943, - 0.016277994960546494, - 0.011915591545403004, - 0.00835711695253849, - -0.008712341077625751, - 0.038613494485616684, - -0.007684060838073492, - -0.02956462651491165, - 0.02176215685904026, - 0.023943359032273293, - 1.6565933037782088e-05, - 0.028019089251756668, - -0.022185934707522392, - 0.0021282292436808348, - 0.007241588551551104, - 0.029315346851944923, - -0.0025893975980579853, - 0.026697903871536255, - 0.015729578211903572, - 0.002136019291356206, - 0.04118108004331589, - 0.021076636388897896, - 0.01594146527349949, - -0.017723819240927696, - -0.005546483676880598, - 0.051750559359788895, - -0.0054467711597681046, - -0.0027374078053981066, - -0.03300469368696213, - -0.013112136162817478, - 0.016190746799111366, - -0.0393114797770977, - 0.030636530369520187, - 0.0013048257678747177, - 0.019481243565678596, - 0.03464994207024574, - -0.053046815097332, - -0.0015439789276570082, - -0.04908326268196106, - -0.04659046232700348, - 0.012407919391989708, - -0.03038725070655346, - -0.019020074978470802, - 0.017599178478121758, - -0.033278901129961014, - 0.027121681720018387, - -0.016253065317869186, - 0.020029660314321518, - -0.006450124084949493, - -0.009890190325677395, - 0.02092706970870495, - 0.04988095909357071, - 0.016888730227947235, - -0.03492414951324463, - -0.027570385485887527, - -0.021300990134477615, - -0.016340313479304314, - -0.004795527085661888, - -0.0025551216676831245, - -0.028293296694755554, - 0.028293296694755554, - -0.019580956548452377, - 0.02956462651491165, - 0.004991834983229637, - 0.023257838562130928, - 0.00021052488591521978, - 0.005294087342917919, - 0.07114455848932266, - 0.06331715732812881, - -0.013124600052833557, - 0.007684060838073492, - -0.014794777147471905, - 0.001668618991971016, - -0.04963167756795883, - 0.036195479333400726, - -0.06052521988749504, - 0.025650927796959877, - 0.012632272206246853, - 0.0032811500132083893, - 0.003904350334778428, - 0.021450556814670563, - -0.01908239535987377, - -0.018297163769602776, - -0.05032966285943985, - 0.00992135051637888, - -0.014358537271618843, - -0.019381532445549965, - -0.026348913088440895, - -0.005770835559815168, - 0.01722525805234909, - 0.028068944811820984, - -0.01620320975780487, - -0.04693945497274399, - 0.0013281957944855094, - -0.01468260120600462, - -0.02086474932730198, - -0.024903086945414543, - 0.023145662620663643, - -0.01444578543305397, - 0.024840766564011574, - -0.015542617999017239, - 0.011547903530299664, - -0.03026260994374752, - 0.015318265184760094, - -0.03153393790125847, - 0.04828556627035141, - -0.03933640941977501, - -0.027071824297308922, - -0.009385397657752037, - -0.003221946069970727, - -0.03138437122106552, - 0.0017558670369908214, - -0.029041137546300888, - -0.01462028082460165, - -0.020827356725931168, - -0.00987149402499199, - -0.008163925260305405, - 0.011722398921847343, - -0.002368161454796791, - 0.028866641223430634, - 0.002245079493150115, - -0.03559720516204834, - -0.029439985752105713, - 0.0231705904006958, - -0.019132252782583237, - -0.0005729548283852637, - 0.0032437581103295088, - -0.0008156134863384068, - 0.006506212055683136, - 0.016003785654902458, - -0.019182108342647552, - 0.016415098682045937, - 0.040981657803058624, - 0.02991361916065216, - -0.004742554854601622, - -0.00798942893743515, - -0.00898031797260046, - 0.014844633638858795, - 0.03380239009857178, - 0.030511891469359398, - 0.014769849367439747, - 0.0033497021067887545, - -0.02687240019440651, - -0.00808290857821703, - 0.04900847747921944, - -0.006618387997150421, - -0.004480810835957527, - 0.04639103636145592, - -0.025463968515396118, - 0.044022876769304276, - 0.027919378131628036, - -0.03173336386680603, - -0.023606831207871437, - 0.030088115483522415, - 0.03412645310163498, - 0.0010391866089776158, - 0.02000473253428936, - 0.0020705831702798605, - -0.005574527662247419, - -0.02533932775259018, - -0.05449264124035835, - -0.011697471141815186, - -0.04467100277543068, - 0.03332875669002533, - -0.020017197355628014, - -0.007752612698823214, - -0.008344653062522411, - 0.01933167688548565, - 0.012058927677571774, - 0.007110716309398413, - 0.01661452278494835, - 0.016190746799111366, - -0.01281300000846386, - -0.002732733730226755, - 0.009746854193508625, - 0.00201293732970953, - -0.015580009669065475, - -0.0018836231902241707, - -0.005995187908411026, - -0.06401514261960983, - -0.012775608338415623, - 0.016377706080675125, - -0.008251173421740532, - 0.006278743967413902, - -0.037915512919425964, - 0.00654360419139266, - 0.03330382704734802, - -0.042552120983600616, - -0.034525301307439804, - 0.00977801438421011, - -0.023382479324936867, - 0.017848460003733635, - -0.007428548764437437, - 0.01716293953359127, - -0.0002860879176296294, - -0.003832682268694043, - 0.027021968737244606, - 0.02515236847102642, - 0.01281300000846386, - 0.013585768640041351, - -0.01904500462114811, - -0.07483389973640442, - 0.018172523006796837, - -0.013423736207187176, - 0.009734390303492546, - -0.0367438942193985, - -0.03928655385971069, - -0.010937166400253773, - 0.014545497484505177, - -0.004296966828405857, - 0.04048309847712517, - -0.010694118216633797, - -0.01718786731362343, - 0.005773951765149832, - -0.026373840868473053, - 0.019256891682744026, - -0.022933773696422577, - 0.02521468698978424, - -0.005356407258659601, - -0.025700783357024193, - 0.021076636388897896, - -0.001057882676832378, - 0.01215863972902298, - -0.003941742237657309, - -0.030013330280780792, - 0.019256891682744026, - -0.017013370990753174, - -0.0015003549633547664, - 0.006736796349287033, - -0.0024990334641188383, - -0.007684060838073492, - 0.016402633860707283, - -0.0008584585157223046, - 0.014308680780231953, - 0.007004772312939167, - -0.007017236202955246, - -0.031907860189676285, - 0.010762671008706093, - -0.03766623139381409, - 0.00013544870307669044, - 0.02307087741792202, - -0.000997899565845728, - -0.0242923516780138, - -0.021425629034638405, - 0.02572571113705635, - -0.02846779301762581, - 0.0013406598009169102, - -0.022310573607683182, - -0.010108310729265213, - 0.058331556618213654, - -0.029988402500748634, - -0.0018649271223694086, - -0.018546443432569504, - 0.008569004945456982, - -0.006724331993609667, - 0.014134184457361698, - 0.01738729141652584, - -0.013797656632959843, - 0.0067430282942950726, - -0.007110716309398413, - -0.03534792736172676, - 0.011049343273043633, - -0.012987496331334114, - 0.02958955429494381, - -0.03617054969072342, - -0.006749260239303112, - 0.002439829520881176, - 0.00776507705450058, - 0.010675422847270966, - -0.0035553581546992064, - 0.0001011726853903383, - -0.011124126613140106, - 0.030736243352293968, - -0.014296216890215874, - 0.014046936295926571, - -0.015368121676146984, - -0.007316372357308865, - -0.03744187951087952, - -0.012482703663408756, - -0.006855204235762358, - -0.015293337404727936, - -0.01796063594520092, - -0.004259574692696333, - -0.03135944530367851, - -0.011878198944032192, - 0.03492414951324463, - 0.045044925063848495, - -0.012887784279882908, - -0.015006665140390396, - 0.020939532667398453, - -0.004028990399092436, - -0.04656553268432617, - -0.027844592928886414, - -0.037117816507816315, - 0.03544763848185539, - 0.012825463898479939, - 0.024392062798142433, - -0.007216660305857658, - -0.024790911003947258, - -0.10330169647932053, - -0.011716167442500591, - 0.01706322655081749, - -0.02664804831147194, - -0.010201790370047092, - 0.0067679560743272305, - 0.010606870986521244, - 0.008494221605360508, - 0.00807044468820095, - -0.03455023095011711, - 0.009622214362025261, - -0.01796063594520092, - -0.023095807060599327, - 0.02192419022321701, - 0.015168697573244572, - 0.012065159156918526, - 0.04055787995457649, - 0.012152407318353653, - 0.019381532445549965, - 0.011018183082342148, - 0.0016748510533943772, - -0.01738729141652584, - 0.029888691380620003, - -0.010170630179345608, - -0.03427601978182793, - 0.038139864802360535, - 0.022609710693359375, - -0.002276239451020956, - 0.003789058420807123, - 0.016602057963609695, - 0.033927030861377716, - 0.04850991815328598, - 0.017275115475058556, - 0.001036849687807262, - 0.005920403636991978, - -0.025264544412493706, - 0.009510037489235401, - 0.03522328659892082, - -0.007042164448648691, - 0.043000828474760056, - 0.005911055486649275, - 0.00510401139035821, - 0.009977438487112522, - 0.021276060491800308, - 0.043349817395210266, - 0.012825463898479939, - -0.01712554693222046, - -0.0010127006098628044, - -0.01789831556379795, - 0.028766930103302002, - 0.019468780606985092, - -0.027844592928886414, - 0.029963474720716476, - 0.0008896185318008065, - 0.02135084569454193, - 0.059677667915821075, - -0.015430441126227379, - -0.03671896830201149, - -0.014084328897297382, - -0.042452409863471985, - 0.00593598373234272, - 0.01223965547978878, - -0.013822584412992, - -0.03437573462724686, - -0.003017847891896963, - 0.0066308518871665, - -0.02070271596312523, - -0.02684747241437435, - -0.014944345690310001, - -0.015168697573244572, - 0.004153630696237087, - -0.008855677209794521, - -0.01201530359685421, - 0.018546443432569504, - -0.011485583148896694, - 0.02115142159163952, - 0.009865262545645237, - -0.018808187916874886, - 0.022634638473391533, - -0.04260198026895523, - 0.009927581995725632, - -0.00124016881454736, - -0.005057271104305983, - 0.015991322696208954, - -0.021998973563313484, - -0.0029524117708206177, - -0.01923196390271187, - 0.020091980695724487, - 0.04639103636145592, - 0.03210728242993355, - 0.028193585574626923, - 0.013747800141572952, - -0.0242923516780138, - -0.04599218815565109, - -0.011971679516136646, - 0.02572571113705635, - -0.026348913088440895, - -0.03106030821800232, - 0.014184040948748589, - -0.008307261392474174, - -0.006045043934136629, - 0.020976925268769264, - -0.029614482074975967, - 0.006475051864981651, - 0.01949370838701725, - 0.05339580774307251, - 0.040183961391448975, - -0.004792410880327225, - -0.014582889154553413, - -0.045393917709589005, - -0.011080502532422543, - -0.03649461641907692, - 0.012975032441318035, - 0.035971127450466156, - -0.017474539577960968, - 0.007272748742252588, - -0.013573304750025272, - -0.02697211317718029, - -0.024205103516578674, - 0.019057467579841614, - -0.011959215626120567, - -0.0006586448871530592, - -0.022709421813488007, - 0.030885811895132065, - 0.005643079522997141, - -0.02709675207734108, - -7.093773456290364e-05, - 0.02051575668156147, - -0.0110244145616889, - 0.013673016801476479, - 0.010245414450764656, - 0.013747800141572952, - -0.07154340296983719, - 0.01904500462114811, - -0.03150901198387146, - 0.007939573377370834, - 0.03826450556516647, - 0.019344139844179153, - -0.008431901223957539, - -0.016539737582206726, - -0.038015224039554596, - -0.041206009685993195, - 0.0005016762879677117, - 0.01266966387629509, - 0.006811580155044794, - 0.025127438828349113, - -0.010606870986521244, - -0.007883484475314617, - -0.02552628703415394, - -0.049482110887765884, - 0.0037952903658151627, - 0.002073699375614524, - 0.002112649381160736, - 0.014022008515894413, - -0.07682814449071884, - 0.0018213031580671668, - -0.011753559112548828, - -0.05115228891372681, - 0.004022758454084396, - 0.012538791634142399, - -0.014283753000199795, - 0.03534792736172676, - 0.021487949416041374, - -0.009927581995725632, - 0.0109433988109231, - -0.026448624208569527, - 0.00036457221722230315, - -0.004296966828405857, - 0.03651954233646393, - -0.051501281559467316, - -0.01824730820953846, - 0.0032873819582164288, - -0.016826409846544266, - 0.003153393976390362, - 0.002958643948659301, - -0.0006995424628257751, - 0.036669109016656876, - -0.02662312053143978, - -0.040059320628643036, - 0.032805267721414566, - 0.0032499900553375483, - -0.00784609280526638, - -0.01703829877078533, - 0.004318778868764639, - 0.026498479768633842, - -0.0236442219465971, - 0.011541671119630337, - 0.032032500952482224, - 0.0018119551241397858, - 0.018646156415343285, - 0.04172949865460396, - 0.038239575922489166, - 0.0042564584873616695, - 0.004331242758780718, - -0.008456829003989697, - 0.03589634224772453, - 0.022709421813488007, - 0.007727684918791056, - -0.009790478274226189, - 0.01728757843375206, - 0.043599098920822144, - -0.0014255709247663617, - 0.03230670839548111, - 0.008394509553909302, - 0.014271289110183716, - -0.02345726266503334, - -0.026348913088440895, - -0.02956462651491165, - -0.03831436112523079, - 0.02607470378279686, - 0.025463968515396118, - -0.019157180562615395, - -0.016701770946383476, - 0.020590540021657944, - -0.0188580434769392, - -0.010775134898722172, - -0.006431427784264088, - -0.017748747020959854, - -0.01196544710546732, - -0.01872093975543976, - 0.0041941385716199875, - -0.06496240943670273, - -0.03684360533952713, - 0.00264081172645092, - -0.004726974759250879, - 0.03437573462724686, - 0.008612629026174545, - -0.0015689069405198097, - 0.008799589239060879, - 0.009915118105709553, - -0.009703230112791061, - 0.028044017031788826, - -0.02041604556143284, - -0.00030049943597987294, - 0.028193585574626923, - -0.026697903871536255, - 0.02846779301762581, - 0.007634204812347889, - 0.0013461128110066056, - -0.04023381695151329, - 0.009198437444865704, - -0.020665325224399567, - 0.013623160310089588, - -0.005219303071498871, - -0.0068302764557302, - 0.022023901343345642, - 0.038389142602682114, - 0.01808527484536171, - 0.03307947516441345, - -0.010906007140874863, - -0.029215633869171143, - 0.010937166400253773, - -0.003913698252290487, - -0.02936520241200924, - 0.03776594251394272, - -0.021226204931735992, - 0.018970219418406487, - -0.0009721926180645823, - -0.023058414459228516, - -0.02489062398672104, - -0.009104957804083824, - 0.046291325241327286, - 0.037367094308137894, - 0.011909359134733677, - 0.0020690253004431725, - 0.0011061807163059711, - -0.03888770565390587, - -0.014046936295926571, - 0.029963474720716476, - -0.04870934411883354, - 0.01639017090201378, - -0.022472605109214783, - 0.013510984368622303, - -0.004103774670511484, - 0.019406460225582123, - -0.00392304640263319, - 0.010326430201530457, - -0.03071131557226181, - -0.010257878340780735, - -0.03923669457435608, - -0.02409292757511139, - 0.005412495229393244, - -0.009460181929171085, - 0.019381532445549965, - -0.0040726144798099995, - -0.0015689069405198097, - -0.003969786688685417, - -0.002492801519110799, - -0.0012666548136621714, - 0.015068985521793365, - 0.03135944530367851, - 0.03856363892555237, - 0.03447544574737549, - -0.062170471996068954, - -0.005178795196115971, - -0.004624146968126297, - -0.01926935650408268, - -0.00560880359262228, - -0.008251173421740532, - -0.02176215685904026, - 0.03863842412829399, - -0.016215674579143524, - 0.0034182542003691196, - 0.000279855914413929, - 0.007559420540928841, - -0.011030646972358227, - 0.015380585566163063, - -0.02441699057817459, - 0.01949370838701725, - -0.027171537280082703, - -0.012950103729963303, - -0.007067092228680849, - 0.02911592274904251, - 0.02441699057817459, - -0.024055534973740578, - 0.03786565735936165, - 0.005415611434727907, - 0.012675896286964417, - -0.030013330280780792, - 0.00654360419139266, - 0.008020589128136635, - -0.0048142229206860065, - 0.03410152345895767, - 0.002287145471200347, - -0.026274127885699272, - -0.013797656632959843, - 0.002762335818260908, - -0.005907939746975899, - 0.00813276506960392, - 0.02259724587202072, - 0.003080167807638645, - 0.001964639173820615, - -0.038015224039554596, - -0.014732456766068935, - -0.04955689609050751, - 0.035173431038856506, - -0.008967853151261806, - -0.025389183312654495, - -0.004306314513087273, - 0.007945804856717587, - 0.01681394688785076, - 0.018496587872505188, - -0.007796236779540777, - -0.013411272317171097, - -0.008762197569012642, - -0.0015611170092597604, - 0.011498047038912773, - 0.0013437758898362517, - 0.045717980712652206, - 0.018608763813972473, - 0.07657886296510696, - -0.004150514490902424, - -0.03716767206788063, - 0.01065672654658556, - 0.014782313257455826, - 0.0011240977328270674, - 0.02854257822036743, - 0.006344180088490248, - -0.010912238620221615, - -0.07264024019241333, - -0.014607816934585571, - 0.013585768640041351, - 0.04741308465600014, - 0.0025037075392901897, - 0.006718100048601627, - -0.00864378921687603, - -0.046091899275779724, - 0.013573304750025272, - 0.008294797502458096, - 0.0055184392258524895, - 0.028766930103302002, - -0.0028916497249156237, - -0.00472074281424284, - 0.011840807273983955, - 0.01974298804998398, - -0.006506212055683136, - 0.0031829960644245148, - -0.028592433780431747, - 0.015044057741761208, - 0.015068985521793365, - 0.0005881453398615122, - -0.040532954037189484, - 0.07099498808383942, - 0.025451503694057465, - -0.007148108445107937, - 0.013573304750025272, - 0.019755452871322632, - -0.009522502310574055, - -0.021712301298975945, - 0.02335754968225956, - -0.008101604878902435, - 0.030885811895132065, - 0.02968926727771759, - 0.0026797617319971323, - 0.027919378131628036, - 0.023095807060599327, - 0.04048309847712517, - -0.0071294126100838184, - -0.02233550138771534, - -0.012139943428337574, - 0.025925135239958763, - -0.004938863217830658, - 0.014582889154553413, - -0.025900207459926605, - 0.0159788578748703, - -0.033503253012895584, - -0.02074010856449604, - -0.012713287957012653, - -0.004502622876316309, - 0.022161005064845085, - -0.03846392780542374, - -0.0018618111498653889, - 0.017848460003733635, - 0.022360429167747498, - -0.008319725282490253, - -0.016801482066512108, - 0.00705462833866477, - 0.009242061525583267, - -0.0074472445994615555, - 0.025202224031090736, - 0.003427602117881179, - -0.0017044530250132084, - 0.0007599149830639362, - 0.03594619780778885, - 0.003567822277545929, - 0.00496067525818944, - 0.001230820780619979, - -0.019219499081373215, - -0.014695065096020699, - -0.007391156628727913, - -0.02217346988618374, - -0.01622813753783703, - -0.03821464627981186, - 0.010201790370047092, - 0.00481733912602067, - 0.01824730820953846, - 0.022933773696422577, - 0.01093093492090702, - 0.00018014386296272278, - 0.016464954242110252, - -0.01945631578564644, - 0.007640436757355928, - 0.031234802678227425, - 0.002805959666147828, - 0.023594366386532784, - 0.016701770946383476, - -0.010014830157160759, - 0.02294623851776123, - -0.04167964309453964, - -0.00017917010700330138, - 0.034849364310503006, - -0.030412178486585617, - 0.034300949424505234, - 0.02844286523759365, - -0.024230031296610832, - 0.0008927345625124872, - -0.023507118225097656, - -0.0024117855355143547, - 0.01246400736272335, - 0.028941426426172256, - -0.006016999948769808, - -0.0065747639164328575, - 0.03539778292179108, - -0.014433320611715317, - -0.01812266744673252, - 0.009036405943334103, - -0.01587914675474167, - -0.0037454343400895596, - 0.0069486843422055244, - -0.0082262447103858, - 0.004396678879857063, - 0.009291918016970158, - 0.03016289882361889, - -0.015505225397646427, - -0.014221432618796825, - 0.002823097864165902, - 0.0158168263733387, - -0.004683350678533316, - -0.01840933971107006, - -0.01043237466365099, - 0.06431428343057632, - 0.0345003716647625, - -0.023594366386532784, - -0.016639450564980507, - 0.007771308999508619, - -0.015081449411809444, - -0.0246039517223835, - 0.014533032663166523, - -0.004103774670511484, - 0.01209631934762001, - 0.003530430141836405, - 0.011697471141815186, - 0.007260284386575222, - -0.009528733789920807, - 0.04275154694914818, - -0.013336488045752048, - 0.003387094009667635, - -0.014308680780231953, - -0.010712814517319202, - 0.0006313798949122429, - 0.027046896517276764, - -0.0070110042579472065, - -0.0028324457816779613, - 0.007833628915250301, - 0.008731037378311157, - -0.035198356956243515, - -0.02869214490056038, - -0.014981737360358238, - 0.016602057963609695, - -0.042003706097602844, - 0.019281819462776184, - -0.016975978389382362, - 0.000588924391195178, - 0.007116948254406452, - -0.012196031399071217, - 0.024117855355143547, - 0.008375813253223896, - 0.004480810835957527, - -0.002580049680545926, - 0.006537372246384621, - 0.003617678303271532, - 0.0007065534591674805, - -0.012644736096262932, - 0.006711868103593588, - 0.01281300000846386, - -0.013959689065814018, - 0.014470713213086128, - 0.047089021652936935, - -0.036095768213272095, - -0.008755965158343315, - -0.011292391456663609, - 0.02010444365441799, - 0.0038389144465327263, - -0.004745671059936285, - -0.03400181233882904, - 0.021774621680378914, - -0.014433320611715317, - 0.006350412033498287, - 0.017437146976590157, - -0.01945631578564644, - -0.029963474720716476, - 0.0030443340074270964, - 0.002531751524657011, - -0.018683547154068947, - 0.02722139284014702, - 0.019256891682744026, - 0.00018072810780722648, - 0.002614325610920787, - -0.009622214362025261, - -0.005733443424105644, - 0.0029726659413427114, - -0.015330729074776173, - -0.026997040957212448, - -0.03158379718661308, - -0.02552628703415394, - -0.011055574752390385, - -0.006418963894248009, - 0.01789831556379795, - -0.00855030957609415, - -0.0031970180571079254, - -0.038488857448101044, - -0.021300990134477615, - -0.008388277143239975, - -0.0004790852835867554, - -0.005658659618347883, - 0.01569218561053276, - -0.02323291078209877, - 0.0005312783177942038, - 0.017561787739396095, - 0.026049776002764702, - 0.0014271289110183716, - -0.004390446934849024, - 0.033054549247026443, - 0.020403580740094185, - 0.0029321578331291676, - 0.02572571113705635, - 0.014857097528874874, - -0.018783260136842728, - -0.009316845797002316, - -0.012245887890458107, - 0.010363822802901268, - 0.010993254370987415, - -0.030736243352293968, - 0.024591486901044846, - -0.003895002417266369, - -0.007441012654453516, - 0.01108673494309187, - 0.0005912613705731928, - -0.009080030024051666, - 0.008793357759714127, - -0.0006804569275118411, - 0.009048869833350182, - -0.008375813253223896, - 0.013872440904378891, - -0.010457302443683147, - -0.03300469368696213, - 0.015953930094838142, - -0.0062101916410028934, - 0.007154340390115976, - -0.015542617999017239, - 0.01228951197117567, - 0.02351958304643631, - 0.007235356606543064, - -0.019194571301341057, - -0.018558908253908157, - -0.0012206938117742538, - 0.02425495907664299, - -0.031209874898195267, - -0.01648988202214241, - -0.014258825220167637, - -0.0016031829873099923, - 0.016602057963609695, - -0.0322817787528038, - -0.009709461592137814, - -0.004954442847520113, - 0.004636610858142376, - 0.016789019107818604, - 0.023045949637889862, - -0.01490695308893919, - -0.0017324971267953515, - 0.011273695155978203, - -0.022123614326119423, - -0.019805308431386948, - 0.019481243565678596, - -0.020765036344528198, - 0.021512877196073532, - 0.017399754375219345, - -0.018172523006796837, - 0.007640436757355928, - -0.029415057972073555, - 0.019007612019777298, - -0.025202224031090736, - 0.021899262443184853, - -0.00044091427116654813, - 0.023507118225097656, - -0.00044364077621139586, - -0.014582889154553413, - 0.04429708421230316, - 0.017748747020959854, - 0.015567545779049397, - 0.03809000924229622, - -0.005689819343388081, - -0.014794777147471905, - -0.024753520265221596, - 0.03719259798526764, - 0.012277048081159592, - 0.005269159097224474, - -0.013249239884316921, - 0.007067092228680849, - -0.001271328772418201, - 0.028642289340496063, - 0.012040231376886368, - 0.02709675207734108, - 0.014470713213086128, - 0.009198437444865704, - 0.013810120522975922, - 0.0007891274872235954, - 0.005072851199656725, - -0.010581942275166512, - 0.007553188595920801, - 0.0009231155854649842, - -0.012912712059915066, - -0.015330729074776173, - -0.0072540524415671825, - -0.005783299449831247, - -0.015779433771967888, - -0.010644262656569481, - -0.02262217365205288, - -0.028143730014562607, - 0.014894489198923111, - 0.0308359544724226, - -0.007278980687260628, - 0.042801402509212494, - -0.015555081889033318, - 0.01865861937403679, - -0.01546783372759819, - -0.004050802439451218, - -0.017848460003733635, - 0.0016094150487333536, - -0.027794737368822098, - 0.03357803821563721, - 0.008319725282490253, - 0.04756265506148338, - -0.012495167553424835, - 0.006892596371471882, - -0.022123614326119423, - -0.01610349863767624, - -0.015293337404727936, - -0.005166331306099892, - -0.0018244191305711865, - -0.007416084408760071, - -0.006724331993609667, - -0.009435254149138927, - 0.006992308422923088, - 0.011516743339598179, - -0.005854967515915632, - 0.03288005292415619, - 0.00958482176065445, - 0.020951997488737106, - 0.012862855568528175, - 0.04093180224299431, - 0.01738729141652584, - -0.009821638464927673, - 0.015318265184760094, - -0.027744881808757782, - -0.0017418450443074107, - -0.025065120309591293, - -0.000269534153630957, - -0.004430954810231924, - 0.02351958304643631, - 0.02108910121023655, - 0.01636524125933647, - 0.009136117994785309, - -0.009946278296411037, - 0.025875279679894447, - 0.020789964124560356, - 0.014470713213086128, - -0.06411485373973846, - -0.002075257245451212, - -0.027844592928886414, - -0.01280053611844778, - 0.0036955783143639565, - 0.057633571326732635, - -0.02437959983944893, - 0.005823807790875435, - -0.02396828681230545, - -0.01936906762421131, - 0.0002786874247249216, - 0.007017236202955246, - 0.010251645930111408, - 0.039411190897226334, - -0.018484123051166534, - -0.020216621458530426, - -0.015293337404727936, - 0.044047802686691284, - -0.01468260120600462, - -0.05743414908647537, - -0.00898031797260046, - 0.016888730227947235 - ], - "how_to_setup_storage_tanks": [ - -0.022672390565276146, - -8.475728100165725e-05, - 0.02086423523724079, - 0.002015095204114914, - 0.02489149011671543, - 0.005186705384403467, - -0.023012885823845863, - 0.002518502064049244, - -0.039192356169223785, - -0.03900449350476265, - 0.027004918083548546, - -0.00602914160117507, - -0.003777753096073866, - -0.026276959106326103, - 0.007872520945966244, - -0.008136698976159096, - -0.041423194110393524, - 0.05790793523192406, - -0.013068032450973988, - 0.016155986115336418, - 0.05828365683555603, - -0.011154205538332462, - -0.011934999376535416, - -0.005603520665317774, - -0.009328437969088554, - -0.03766598924994469, - 0.03334520384669304, - 0.055653613060712814, - -0.02947058528661728, - -0.023435572162270546, - 0.04828009754419327, - -0.023682139813899994, - -0.002917705336585641, - 0.013173703104257584, - 0.023130299523472786, - 0.019560953602194786, - -0.011189429089426994, - 0.018011106178164482, - 0.007285457104444504, - 0.02065289206802845, - -0.017717573791742325, - 0.03151356428861618, - -0.028695659711956978, - 0.018433792516589165, - 0.015568922273814678, - 0.05297660455107689, - -0.017318371683359146, - 0.02401089482009411, - 0.016308622434735298, - 0.002025368856266141, - 0.026652680709958076, - -0.009968336671590805, - -0.012504450976848602, - -0.09115920960903168, - -0.003994966857135296, - -0.051990337669849396, - -0.04677721485495567, - 0.005902922712266445, - -0.01205828320235014, - -0.033838335424661636, - -0.01091350894421339, - 0.01216395478695631, - 0.020735081285238266, - 0.01277450006455183, - -0.014007333666086197, - 0.0028545958921313286, - -0.03482460230588913, - 0.047152936458587646, - -0.04813920333981514, - 0.019044337794184685, - -0.0007719884160906076, - 0.014054298400878906, - -0.018081553280353546, - 0.007872520945966244, - 0.013925144448876381, - -0.021486520767211914, - -0.02385825850069523, - 0.03712589293718338, - -0.027826806530356407, - -0.04992387443780899, - -0.04259732365608215, - -0.03712589293718338, - 0.00022326756152324378, - -0.013185444287955761, - -0.0016701954882591963, - -0.02141607366502285, - -0.014500467106699944, - 1.1253960110479966e-05, - -0.03156052902340889, - -0.04325483366847038, - -0.020770303905010223, - 0.033673956990242004, - 0.012833206914365292, - 0.02161567471921444, - 0.06279230117797852, - -0.024233978241682053, - 0.044640302658081055, - -0.03141963481903076, - -0.022508012130856514, - 0.01455917302519083, - -0.008588737808167934, - -0.02864869497716427, - -0.032969482243061066, - -0.0038100415840744972, - 0.04548567533493042, - -0.019056079909205437, - -0.004414717201143503, - 0.035928282886743546, - -0.02625347673892975, - -0.0270284004509449, - -0.01774105615913868, - -0.02156870998442173, - 0.04257383942604065, - 0.0038981011603027582, - 0.0009525103960186243, - -0.015510216355323792, - -0.0010978085920214653, - 0.02554900012910366, - -0.0063226730562746525, - 0.016461258754134178, - -0.028977451846003532, - -0.022402340546250343, - 0.025149798020720482, - -0.04405324161052704, - 0.029587997123599052, - -0.005263023544102907, - 0.014324347488582134, - -0.06711309403181076, - -0.012844948098063469, - 0.03700847923755646, - -0.02468014694750309, - 0.004247404169291258, - 0.01998363994061947, - -0.010713907890021801, - 0.001929971040226519, - -0.04360707104206085, - 0.009357791393995285, - 0.01142425462603569, - 0.025431588292121887, - -0.013291115872561932, - 0.04874974861741066, - -0.04445244371891022, - 0.02489149011671543, - 0.028014667332172394, - -0.03916887193918228, - 0.005312924273312092, - -0.03503594547510147, - -0.016449516639113426, - 0.011952611617743969, - -0.030574264004826546, - -0.015392803587019444, - 0.01596812531352043, - -0.019337870180606842, - -0.05358714982867241, - 0.008653314784169197, - -0.019960157573223114, - 0.0033315850887447596, - 0.04940725862979889, - 0.011482960544526577, - -0.013948626816272736, - -0.04057782515883446, - -0.010672813281416893, - -0.02846083603799343, - 0.006416603457182646, - -0.0038100415840744972, - -0.019772296771407127, - -0.028014667332172394, - -0.000687598017975688, - -0.05452645197510719, - 0.026018651202321053, - -0.01744752563536167, - -0.0022323087323457003, - -0.01606205478310585, - 0.009492815472185612, - 0.006175907328724861, - -0.0198897086083889, - -0.026394372805953026, - -0.018598169088363647, - 0.022566718980669975, - 0.008741374127566814, - 0.007989933714270592, - -0.0056827738881111145, - -0.06913258880376816, - -0.01938483491539955, - 0.035763904452323914, - 0.03942717984318733, - -0.03508291020989418, - 0.03738420084118843, - 0.0033668088726699352, - 0.03470718860626221, - -0.047458209097385406, - 0.03482460230588913, - 0.0413057841360569, - 0.05114496499300003, - 0.005671032704412937, - -0.03080908954143524, - 0.014124746434390545, - 0.004203374031931162, - 0.05945778638124466, - -0.03830001875758171, - 0.03538818284869194, - 0.019009113311767578, - 0.010543659329414368, - -0.028061632066965103, - -0.019443541765213013, - -0.01926742121577263, - -0.00971589982509613, - 0.028672177344560623, - -0.03137267008423805, - -0.02350601926445961, - -0.022731095552444458, - -0.021956171840429306, - -0.019243938848376274, - 0.018269414082169533, - -0.027051882818341255, - -0.021592192351818085, - -0.059269923716783524, - 0.044288065284490585, - -0.04414717108011246, - -0.025455070659518242, - -0.0362100712954998, - 0.04992387443780899, - 0.04400627315044403, - -0.03120829164981842, - -0.02120473049581051, - 0.02268413081765175, - 0.009481074288487434, - -0.06138335168361664, - 0.06025619059801102, - 0.0062874495051801205, - -0.020476773381233215, - 0.007790331728756428, - -0.017048321664333344, - -0.03397923335433006, - 0.014441760256886482, - -0.02156870998442173, - -0.010126844048500061, - -0.009328437969088554, - 0.021028611809015274, - -0.0034372564405202866, - -0.006580980960279703, - -0.011160075664520264, - -0.006269837263971567, - -0.04813920333981514, - 0.014394795522093773, - 0.014653103426098824, - -0.014465242624282837, - -0.06617379188537598, - 0.08143743872642517, - 0.01060823630541563, - -0.010713907890021801, - -0.006874512881040573, - 0.011617985554039478, - 0.010719778016209602, - -0.0069449604488909245, - -0.06744185090065002, - -0.02655874937772751, - -0.006164166145026684, - -0.0005771567230112851, - -0.014336088672280312, - 0.03660927712917328, - 0.01775279827415943, - -0.04496905952692032, - 0.0061700367368757725, - -0.0012027461780235171, - -0.032617244869470596, - 0.021791795268654823, - 0.032006699591875076, - -0.02728670835494995, - -0.01973707228899002, - 0.021850500255823135, - 0.031584013253450394, - -0.0050663575530052185, - -0.030409885570406914, - -0.06246354803442955, - -0.0053716301918029785, - 0.014981858432292938, - 0.011641467921435833, - 0.0006831950740888715, - 0.04245642572641373, - -0.06011529639363289, - -0.06617379188537598, - 0.00785490870475769, - 0.03869922086596489, - -0.02559596486389637, - 0.01836334355175495, - -0.031278740614652634, - 0.01575678214430809, - 0.01865687593817711, - 0.004628994967788458, - 0.06777060031890869, - 0.03726678714156151, - 0.007091726176440716, - -0.011952611617743969, - 0.044546373188495636, - 0.028179043903946877, - -0.015240166336297989, - -0.005483172368258238, - 0.031184809282422066, - -0.03203018009662628, - -0.020664632320404053, - 0.020969904959201813, - 0.025314174592494965, - 0.025783825665712357, - -0.01891518384218216, - -0.04677721485495567, - 0.027145812287926674, - -0.04017862305045128, - 0.0005676169530488551, - 0.018011106178164482, - 0.014242159202694893, - -0.02951755002140999, - 0.08289335668087006, - -0.05400983616709709, - 0.010708036832511425, - -0.01871558278799057, - 0.04508647322654724, - 0.05729738995432854, - -0.021380851045250893, - -0.01667260192334652, - -0.0066162049770355225, - -0.023365125060081482, - 0.05875330790877342, - -0.05593540519475937, - 0.03203018009662628, - -0.05053441971540451, - -0.04123533517122269, - -0.02615954726934433, - -0.02998720109462738, - 0.029494067654013634, - -0.008013416081666946, - 0.001888876548036933, - 0.0066279461607337, - -0.007297198288142681, - -0.0047933729365468025, - 0.005533072631806135, - 0.040977027267217636, - 0.00736764632165432, - 0.05067531391978264, - 0.009903759695589542, - -0.019725332036614418, - 0.03099694848060608, - -0.019091302528977394, - 0.05415073037147522, - 0.019971897825598717, - 0.03487156704068184, - 0.04245642572641373, - 0.04400627315044403, - 0.0014911411562934518, - 0.0068686422891914845, - -0.004300239495933056, - 0.05466734617948532, - -0.04874974861741066, - -0.02942361868917942, - -0.011694303713738918, - 0.029353171586990356, - -0.009416497312486172, - -0.026229994371533394, - -0.03996727988123894, - -0.0028164368122816086, - -0.022214479744434357, - 0.013490717858076096, - -0.008318688720464706, - 0.00602914160117507, - -0.0026476560160517693, - 0.014676585793495178, - -0.0021574581041932106, - -0.031701426953077316, - -0.012281366623938084, - 0.02263716608285904, - 0.06002136692404747, - 0.029141828417778015, - 0.034143608063459396, - 0.026652680709958076, - -0.01162385568022728, - 0.003642728552222252, - 0.00785490870475769, - 0.020523738116025925, - -0.03764250874519348, - 0.032969482243061066, - 0.020465031266212463, - 0.022190997377038002, - 0.03790081664919853, - 0.04177543520927429, - -0.009404756128787994, - 0.005641679745167494, - -0.023470796644687653, - 0.03895752876996994, - -0.030362920835614204, - 0.01662563718855381, - 0.013925144448876381, - -0.04534478113055229, - -0.0075261532329022884, - 0.03167794272303581, - -0.02507934905588627, - 0.016402551904320717, - 0.05884723737835884, - 0.009369532577693462, - 0.013889920897781849, - 0.017964141443371773, - 0.06316802650690079, - -0.0067101349122822285, - -0.04426458105444908, - -0.013772508129477501, - 0.04309045523405075, - 0.011524055153131485, - 0.03585783392190933, - 0.0059381467290222645, - -0.0012027461780235171, - -0.033415649086236954, - 0.03242938220500946, - -0.06762970983982086, - 0.029564514756202698, - -0.006510533392429352, - 0.013173703104257584, - -0.0033756147604435682, - -0.01667260192334652, - 0.015357579104602337, - -0.02916531078517437, - -0.0004575425700750202, - 0.020159758627414703, - 0.020523738116025925, - 0.01973707228899002, - -0.03440191596746445, - -0.01292713638395071, - 0.053775008767843246, - 0.030362920835614204, - -0.021040353924036026, - -0.0039421310648322105, - -0.09045473486185074, - -0.03395574912428856, - 0.016285140067338943, - -0.03846439719200134, - 0.028977451846003532, - 0.018093295395374298, - -0.02239059843122959, - 0.006234613712877035, - -0.022508012130856514, - -0.03705544397234917, - -0.03050381690263748, - -0.04226856678724289, - -0.030480332672595978, - 0.07143387943506241, - -0.018187224864959717, - -0.05537182465195656, - -0.015169719234108925, - 0.0020855427719652653, - -0.024797558784484863, - -0.02222622185945511, - 0.013267633505165577, - 0.01627339795231819, - 0.022472787648439407, - -0.07260800898075104, - 0.07180959731340408, - -0.020382842049002647, - 0.015474991872906685, - 0.018750805407762527, - -0.03055078163743019, - 0.02820252813398838, - 0.006269837263971567, - 0.03487156704068184, - 0.060913700610399246, - 0.010479082353413105, - 0.010702166706323624, - 0.001802284736186266, - -0.011606244370341301, - 0.029846305027604103, - 0.016449516639113426, - 0.010396893136203289, - -0.06875687092542648, - -0.012340073473751545, - -0.0474112443625927, - 0.021192990243434906, - -0.022144032642245293, - -0.017964141443371773, - -0.02498541958630085, - -0.019056079909205437, - 0.048420991748571396, - -0.007326551713049412, - -0.041329264640808105, - 0.03369744122028351, - 0.07082333415746689, - -0.05114496499300003, - 0.01340852864086628, - -0.009322566911578178, - 0.059880468994379044, - 0.042198117822408676, - -0.021592192351818085, - -0.08937453478574753, - -0.01851597987115383, - -0.01529887318611145, - -0.016296880319714546, - 0.03559952601790428, - -0.011336195282638073, - 0.007925356738269329, - -0.03961503878235817, - -0.03813564032316208, - -0.07157477736473083, - 0.03869922086596489, - 0.0011154204839840531, - 0.03583435341715813, - -0.0066749113611876965, - -0.0004923994420096278, - 0.04114140570163727, - -0.018222449347376823, - -0.031795356422662735, - 0.027263225987553596, - 0.0032523314002901316, - 0.027803324162960052, - 0.010549529455602169, - -0.004511582665145397, - -0.03491853177547455, - -0.003528251312673092, - 0.01320892758667469, - 0.022825026884675026, - -0.0041329264640808105, - 0.009598487056791782, - 0.0016437775921076536, - 0.006804065313190222, - 0.025924721732735634, - -0.01042624656111002, - -0.009956595487892628, - -0.0010787290520966053, - 0.03858180716633797, - -0.016543447971343994, - -0.010936991311609745, - -0.04353662580251694, - -0.026276959106326103, - 0.0377364382147789, - -0.027169296517968178, - 0.027662428095936775, - -0.022778062149882317, - 0.0063226730562746525, - 0.041329264640808105, - -0.037149373441934586, - 0.009968336671590805, - -0.041634537279605865, - -0.015204942785203457, - -0.027850288897752762, - -0.027451086789369583, - -0.018891701474785805, - 0.017200957983732224, - -0.02951755002140999, - 0.047552138566970825, - -0.016836978495121002, - 0.015392803587019444, - 0.003284619888290763, - -0.00017813706654123962, - 0.03146659955382347, - 0.04496905952692032, - 0.01927916333079338, - -0.04926636442542076, - -0.03334520384669304, - -0.036327484995126724, - 0.018739065155386925, - -0.005359889008104801, - -0.021545227617025375, - -0.032758139073848724, - -0.0046524778008461, - -0.011641467921435833, - -0.021756570786237717, - -0.001086067408323288, - 0.032617244869470596, - -0.0316309779882431, - 0.005867699161171913, - 0.06692523509263992, - 0.03848787769675255, - 0.0035253160167485476, - -0.017658868804574013, - -0.02463318221271038, - 0.008406748063862324, - 0.0050458102487027645, - 0.02106383629143238, - -0.020617667585611343, - -0.003680887632071972, - 0.004476358648389578, - 0.009874407202005386, - 0.0067688412964344025, - 0.007907744497060776, - -0.008805951103568077, - -0.010038784705102444, - -0.055606648325920105, - -0.010713907890021801, - 0.006745358929038048, - -0.019032595679163933, - -0.016613895073533058, - -0.01769409142434597, - 0.01662563718855381, - 0.018469015136361122, - -0.07617735117673874, - -0.037712953984737396, - -0.022871991619467735, - -0.023987412452697754, - -0.018128518015146255, - 0.01560414582490921, - 0.00016593714826740324, - 0.0058177984319627285, - 0.016437776386737823, - -0.024233978241682053, - 0.021592192351818085, - -0.022871991619467735, - 0.032617244869470596, - -0.020711597055196762, - 0.016508223488926888, - -0.03764250874519348, - -0.022261444479227066, - -0.004262080416083336, - -0.0037572060246020555, - -0.03390878438949585, - 0.0247271116822958, - -0.013138479553163052, - -0.018539464101195335, - -0.03522380441427231, - -0.023834776133298874, - 0.003264072583988309, - 0.010666942223906517, - -0.025877756997942924, - 0.032053664326667786, - -0.012304849922657013, - -0.041117921471595764, - -0.012657087296247482, - 0.023799551650881767, - -0.023388607427477837, - -0.011113110929727554, - 0.0012056814739480615, - 0.01856294646859169, - -0.009175801649689674, - -0.008477196097373962, - -0.025525517761707306, - 0.0055682966485619545, - 0.014723550528287888, - -0.015686335042119026, - 0.006522274576127529, - 0.016907427459955215, - -0.01744752563536167, - -0.00961022824048996, - 0.01886821910738945, - 0.0387696698307991, - -0.0016907426761463284, - 0.009281473234295845, - 0.013725543394684792, - -0.018175484612584114, - 0.04884367808699608, - -0.019196974113583565, - 0.021134283393621445, - 0.04931332916021347, - -0.03759554401040077, - 0.05945778638124466, - 0.02681705728173256, - -0.021603934466838837, - -0.004664218984544277, - 0.003974419552832842, - 0.0321241095662117, - 0.0040536727756261826, - -0.008923363871872425, - -0.0068275476805865765, - -0.021239954978227615, - -0.02550203539431095, - -0.034495849162340164, - -0.00517496420070529, - -0.023118557408452034, - 0.010696295648813248, - -0.020007122308015823, - 0.026488302275538445, - -0.032922517508268356, - 0.005964564625173807, - 0.0158037468791008, - -0.025572482496500015, - 0.023893481120467186, - -0.006528145167976618, - -0.024445321410894394, - 0.00383645948022604, - 0.010314704850316048, - -0.0020092246122658253, - -0.0036368579603731632, - -0.006081977393478155, - -0.0062287431210279465, - -0.022425822913646698, - -0.018339861184358597, - 0.021803535521030426, - -0.015334096737205982, - 0.016296880319714546, - -0.03639793395996094, - 0.005494913551956415, - 0.007109337951987982, - -0.03907494246959686, - -0.05480824038386345, - 0.03651534393429756, - -0.012633604928851128, - 0.028625212609767914, - -0.015052306465804577, - 0.002955864416435361, - -0.002239647088572383, - 0.008582867681980133, - 0.022871991619467735, - -0.0033844206482172012, - 0.04553264006972313, - -0.0064400858245790005, - 0.010297092609107494, - -0.05654595047235489, - -0.0066749113611876965, - -0.03820608928799629, - -0.03282858803868294, - -0.028366904705762863, - -0.029541032388806343, - 0.011811716482043266, - 0.0030556651763617992, - 0.007866649888455868, - 0.02519676275551319, - 0.005089839920401573, - -0.036891065537929535, - -0.013326340354979038, - -0.030926501378417015, - 0.016155986115336418, - -0.04323134943842888, - 0.01083719078451395, - -0.03677365183830261, - -0.029259242117404938, - 0.019513988867402077, - -0.009980078786611557, - 0.010637589730322361, - -0.009680676274001598, - -0.035059429705142975, - 0.05217819660902023, - -0.019314387813210487, - -0.012328332290053368, - 0.0025551936123520136, - -0.0033374556805938482, - 0.011095498688519001, - 0.004044867120683193, - 0.006099589169025421, - 0.005216058809310198, - -0.013795990496873856, - -0.01932612806558609, - 0.008418489247560501, - 0.0072737159207463264, - -0.04778696224093437, - -0.0076611777767539024, - 0.015510216355323792, - -0.00945759192109108, - -0.03799474611878395, - -0.03512987494468689, - 0.01586245372891426, - -0.015169719234108925, - 0.03639793395996094, - -0.012011317536234856, - -0.02864869497716427, - 0.06077280640602112, - -0.021556969732046127, - 0.0009488412761129439, - -0.02274283766746521, - 0.006939089857041836, - -0.0002467501035425812, - -0.008958588354289532, - 0.004526258911937475, - -0.01851597987115383, - 0.004012578632682562, - 0.01651996560394764, - -0.008635703474283218, - 0.005383371841162443, - -0.0033110377844423056, - 0.008970329537987709, - -0.038981013000011444, - 0.0038393947761505842, - -0.0016848720842972398, - 0.014629621058702469, - 0.003469544928520918, - -0.0010574479820206761, - -0.0229424387216568, - -0.018739065155386925, - 0.01440653670579195, - -0.03294600173830986, - -0.0020429808646440506, - 0.019361352548003197, - -0.016637377440929413, - -0.027568498626351357, - -0.027615463361144066, - -0.014042557217180729, - 0.003014570800587535, - -0.034495849162340164, - -0.006375508848577738, - -0.020476773381233215, - 0.010737390257418156, - 0.032405901700258255, - 0.03707892820239067, - 6.434765964513645e-05, - 0.004511582665145397, - 0.0063226730562746525, - -0.013338081538677216, - -0.06955527514219284, - -0.029400136321783066, - -0.014793998561799526, - 0.020218465477228165, - 0.01998363994061947, - 0.025384623557329178, - 0.020476773381233215, - 0.002336512552574277, - -0.08655663579702377, - -0.015181460417807102, - 0.009651322849094868, - -0.04687114432454109, - -0.010085749439895153, - 0.012844948098063469, - -0.0022352440282702446, - 0.005207252688705921, - 0.010414505377411842, - -0.0657980665564537, - 0.01030296366661787, - -0.033110376447439194, - -0.030926501378417015, - 0.020018862560391426, - -0.0054714311845600605, - 0.02554900012910366, - 0.02698143571615219, - -0.004511582665145397, - 0.022249704226851463, - 0.0057414802722632885, - -0.0033697441685944796, - -0.00938127376139164, - 0.03430798649787903, - 0.013572906143963337, - -0.025361141189932823, - 0.028437351807951927, - 0.01384295616298914, - 0.011629726737737656, - -0.0022455176804214716, - 0.021427815780043602, - 0.019513988867402077, - 0.05776704102754593, - 0.03642141446471214, - 0.022601941600441933, - -0.028719143941998482, - -0.0413057841360569, - 0.01845727488398552, - 0.02794422022998333, - 0.01775279827415943, - 0.04482816532254219, - 0.004972427152097225, - 0.004549741744995117, - 0.01953747123479843, - 0.0397794172167778, - 0.04710597172379494, - 0.0009627840481698513, - -0.03503594547510147, - -0.0025317110121250153, - -0.00032086684950627387, - 0.007185656577348709, - 0.010162067599594593, - -0.02135736681520939, - 0.056733809411525726, - 0.03369744122028351, - 0.04252687469124794, - 0.027709394693374634, - -0.01570981740951538, - -0.022660648450255394, - -0.03512987494468689, - -0.003419644432142377, - 0.008935105055570602, - 0.015275390818715096, - -0.015381062403321266, - -0.00014639894652646035, - 0.00859460886567831, - 0.011923258192837238, - -0.005864763632416725, - -0.016555188223719597, - 0.0040595438331365585, - -0.016613895073533058, - -0.00655162800103426, - 0.006716005504131317, - -0.01729488931596279, - 0.021239954978227615, - 0.016332104802131653, - 0.018175484612584114, - 0.003478350816294551, - -0.01841031014919281, - 0.006240484304726124, - -0.001570394728332758, - 0.003381485352292657, - 0.05170854553580284, - -0.01983100362122059, - 0.006269837263971567, - -0.005574167240411043, - -0.027216261252760887, - -0.026488302275538445, - 0.029353171586990356, - 0.016907427459955215, - 0.027239743620157242, - 0.04144667834043503, - -0.003448997624218464, - 0.010074008256196976, - -0.020030604675412178, - 0.011741268448531628, - 0.018739065155386925, - -0.033321719616651535, - -0.03646837919950485, - 0.025008901953697205, - -0.008060380816459656, - 0.00851829070597887, - 0.02259020134806633, - -0.019901450723409653, - 0.02197965420782566, - 0.014864446595311165, - 0.024492286145687103, - 0.01993667334318161, - -0.010115102864801884, - -0.011295100674033165, - -0.050863176584243774, - -0.0031525306403636932, - -0.02855476550757885, - 0.0024187013041228056, - 0.020265430212020874, - -0.01978403702378273, - -0.001298877876251936, - -0.01216395478695631, - -0.031043915078043938, - -0.032405901700258255, - -0.003419644432142377, - -0.021956171840429306, - -0.0020870105363428593, - -0.014124746434390545, - -0.009093612432479858, - 0.0009906695922836661, - 0.009058388881385326, - -0.01065520104020834, - 0.023893481120467186, - -0.032053664326667786, - -0.002566934796050191, - -0.008201275952160358, - 0.014793998561799526, - -0.051990337669849396, - 0.023905223235487938, - -0.016684342175722122, - 0.012856689281761646, - 0.013854697346687317, - 0.025361141189932823, - 0.024515768513083458, - 0.0028942227363586426, - -0.008923363871872425, - -0.02416353113949299, - -0.020359359681606293, - -0.0026021585799753666, - -0.0034049679525196552, - 0.02080552838742733, - -0.022296668961644173, - -0.0017259664600715041, - -0.01601509004831314, - -0.05189640820026398, - -0.021709606051445007, - 0.0027768099680542946, - 0.006956701632589102, - 0.021451298147439957, - -0.04931332916021347, - 0.016132503747940063, - 0.010520176962018013, - -0.02763894572854042, - -0.009739382192492485, - 0.0048696910962462425, - -0.015122754499316216, - 0.04100051149725914, - 0.019654883071780205, - -0.0018653940642252564, - -0.01042624656111002, - -0.014523949474096298, - 0.0007110805599950254, - 0.02773287706077099, - -0.003754270728677511, - -0.025008901953697205, - -0.02707536518573761, - -0.013983851298689842, - -0.012539674527943134, - 0.02386999875307083, - -0.02243756502866745, - -0.010185550898313522, - 0.044029757380485535, - -0.02315378189086914, - -0.018844736739993095, - 0.029705408960580826, - 0.01231659110635519, - -0.0110896285623312, - -0.00228807982057333, - 0.013608130626380444, - 0.03254679590463638, - -0.031490083783864975, - 0.0043882993049919605, - 0.0193730928003788, - 0.00715043256059289, - -0.00379830040037632, - 0.01647300086915493, - 0.021392591297626495, - 0.008753116242587566, - 0.008318688720464706, - 0.01886821910738945, - 0.02585427276790142, - 0.015874195843935013, - 0.0067688412964344025, - 0.018786029890179634, - 0.013432011008262634, - 0.04205722361803055, - -0.013009325601160526, - 0.04818616807460785, - -0.0021075578406453133, - 0.02391696348786354, - 0.002499422524124384, - -0.021756570786237717, - -0.02855476550757885, - -0.022813284769654274, - 0.03743116557598114, - 0.04243294522166252, - -0.0110896285623312, - 0.011124852113425732, - 0.010179679840803146, - -0.022883731871843338, - 0.0069038658402860165, - 0.009011424146592617, - 0.0005844950210303068, - -0.035153359174728394, - -0.021275179460644722, - -0.005923470016568899, - -0.06922651827335358, - -0.07514411956071854, - -0.010866544209420681, - -0.01336156390607357, - 0.04201025888323784, - 0.010778484866023064, - -0.0018331055762246251, - -0.0041740210726857185, - -0.0010185550199821591, - -0.02890700288116932, - 0.032053664326667786, - 0.0015131559921428561, - 0.02300114557147026, - 0.014723550528287888, - 0.0013553827302530408, - 0.03334520384669304, - 0.022003136575222015, - 0.003768947208300233, - -0.024093084037303925, - 0.010332316160202026, - -0.015510216355323792, - 0.033227790147066116, - -0.00859460886567831, - -0.03080908954143524, - 0.01943179965019226, - 0.02446880377829075, - 0.004611383192241192, - 0.002559596672654152, - 0.01738881878554821, - -0.023365125060081482, - 0.026840539649128914, - -0.01195848174393177, - -0.025408105924725533, - 0.06979010254144669, - -0.009575004689395428, - 0.011177687905728817, - -0.0002962835715152323, - -0.0494542233645916, - -0.035458631813526154, - -0.0010457067983224988, - 0.02876610867679119, - 0.0438653789460659, - 0.02937665395438671, - -0.008582867681980133, - 0.0025918851606547832, - -0.030268991366028786, - -0.03470718860626221, - 0.012997584417462349, - -0.006745358929038048, - -0.00897619966417551, - -0.010508435778319836, - 0.03738420084118843, - -0.0017773344879969954, - -0.0023379800841212273, - -0.018469015136361122, - 0.040507376194000244, - -0.020629409700632095, - -0.016296880319714546, - -0.03440191596746445, - -0.02641785517334938, - 0.012017188593745232, - -0.009809830226004124, - -0.0019417123403400183, - -0.020676374435424805, - -0.015064047649502754, - -0.009222766384482384, - 0.01440653670579195, - 0.014206934720277786, - 0.013091514818370342, - 0.02089945785701275, - 0.024187013506889343, - 0.03639793395996094, - -0.03447236493229866, - -0.017776280641555786, - 0.00025298763648606837, - -0.018985630944371223, - -0.018445532768964767, - -0.023776069283485413, - -0.035012464970350266, - 0.011946740560233593, - -0.008242370560765266, - 0.0018360408721491694, - 0.0051015811040997505, - 0.010755002498626709, - -0.015944642946124077, - 0.0017655933042988181, - -0.007027149200439453, - 0.019314387813210487, - -0.012762758880853653, - 0.005442078225314617, - 0.018445532768964767, - 0.023282935842871666, - 0.04017862305045128, - -0.04043693095445633, - 0.044640302658081055, - 0.0009194880840368569, - 0.007590730208903551, - -0.016555188223719597, - 0.005553619936108589, - -0.009070130065083504, - 0.003886359976604581, - 0.01993667334318161, - -0.021533487364649773, - -0.029447101056575775, - 0.008312818594276905, - 0.018598169088363647, - -0.002926511224359274, - 0.011101369746029377, - 0.026957953348755836, - 0.03797126188874245, - 0.024034377187490463, - -0.04635452851653099, - -0.004376558121293783, - -0.052647847682237625, - 0.00046891692909412086, - -0.019924933090806007, - -0.027498051524162292, - -0.005788445472717285, - 0.011841069906949997, - 0.026183029636740685, - -0.013009325601160526, - -0.02554900012910366, - 0.0023379800841212273, - -0.027521533891558647, - 0.013878179714083672, - -0.018985630944371223, - 0.0037601413205266, - 0.02468014694750309, - 0.04313741996884346, - 0.05898813530802727, - -0.0024187013041228056, - -0.05053441971540451, - -0.0015160912880674005, - 0.022050103172659874, - 0.021897466853260994, - 0.027662428095936775, - 0.0010435052681714296, - -0.019643142819404602, - -0.046683285385370255, - -0.0018580558244138956, - 0.02406960166990757, - 0.016743049025535583, - 0.0017817375482991338, - 0.019560953602194786, - -0.04461682215332985, - -0.01662563718855381, - 0.027310190722346306, - 0.019666625186800957, - -0.023059852421283722, - 0.04431154951453209, - -0.020124534144997597, - -0.03677365183830261, - -0.006504662800580263, - 0.002392283407971263, - 0.017705833539366722, - 0.02947058528661728, - -0.030175060033798218, - 0.012551416642963886, - 0.01590941846370697, - 0.01667260192334652, - -0.037454646080732346, - 0.03421405702829361, - 0.03252331539988518, - 0.0072561041451990604, - -0.011359677650034428, - 0.0004245202580932528, - -0.011371418833732605, - -0.00797819159924984, - 0.022601941600441933, - -0.02024194784462452, - 0.009428238496184349, - 0.031584013253450394, - 0.023282935842871666, - 0.04278518259525299, - 0.008494808338582516, - 0.02120473049581051, - -0.03257028013467789, - -0.0046994430013000965, - -0.008506549522280693, - 0.02529069222509861, - -0.016144244000315666, - 0.005524266976863146, - -0.030315956100821495, - -0.0019020854961127043, - -0.016355587169528008, - 0.025877756997942924, - -0.00818366464227438, - 0.0050047156400978565, - -0.008612220175564289, - -0.031184809282422066, - -0.03996727988123894, - 0.010772613808512688, - -0.00983918271958828, - -0.02089945785701275, - 0.006469439249485731, - -0.0020327072124928236, - 0.016496483236551285, - -0.02411656640470028, - -0.011940870434045792, - 0.006410732865333557, - -0.009498686529695988, - -0.011829327791929245, - 0.010743260383605957, - 0.018281156197190285, - 0.011101369746029377, - -0.009351920336484909, - -0.00948694534599781, - -0.020406324416399002, - -0.015780264511704445, - -0.0059352112002670765, - -0.04569701850414276, - -0.033110376447439194, - 0.011770621873438358, - -0.01425390038639307, - 0.004121185280382633, - 0.02820252813398838, - 0.002034174744039774, - 0.014911411330103874, - 0.010050525888800621, - -0.013584648258984089, - 0.01460613775998354, - 0.01815200224518776, - 0.0006942024920135736, - -0.0014294994762167335, - 0.02876610867679119, - 0.0015234296442940831, - 0.03660927712917328, - -0.017917176708579063, - -0.009222766384482384, - 0.005888246465474367, - -0.011952611617743969, - 0.010167938657104969, - 0.020641149953007698, - -0.018527721986174583, - 0.0070623732171952724, - -0.01106614526361227, - 0.003789494512602687, - -0.009416497312486172, - -0.00922863744199276, - 0.007162173744291067, - -0.021451298147439957, - 0.06330891698598862, - 0.0060350121930241585, - -0.007244362961500883, - 0.0247271116822958, - -0.0065398868173360825, - -0.012645346112549305, - -0.01549847424030304, - -0.01748274825513363, - 0.013784249313175678, - 0.02136910893023014, - 0.030268991366028786, - -0.0065751103684306145, - 0.0034167091362178326, - 0.016449516639113426, - 0.026300441473722458, - -0.01880951225757599, - -0.028883520513772964, - -0.030315956100821495, - 0.023365125060081482, - 0.005864763632416725, - -0.002094348892569542, - -0.012187437154352665, - 0.01876254752278328, - -0.0031231774482876062, - -0.020981647074222565, - 0.0029705408960580826, - 0.015439768321812153, - -0.001491874922066927, - 0.007608341984450817, - 0.024046117439866066, - 0.01310325600206852, - -0.009980078786611557, - 0.023494279012084007, - 0.009193412959575653, - 0.013032807968556881, - -0.028272975236177444, - 0.0037572060246020555, - 8.085881563602015e-05, - 0.00844197254627943, - -0.021146025508642197, - 0.0022044233046472073, - 0.013161961920559406, - 0.026323923841118813, - -0.011025051586329937, - -0.017153993248939514, - -0.0247271116822958, - 0.012786241248250008, - -0.018398568034172058, - 0.013091514818370342, - 0.0004641470150090754, - 0.004590835887938738, - 0.002916237572208047, - -0.006897995248436928, - 0.021791795268654823, - 0.024914972484111786, - -0.011295100674033165, - 0.0007008069660514593, - -0.0066749113611876965, - 0.005380436312407255, - -0.019103044643998146, - -0.006880383472889662, - 0.01295061968266964, - 0.027216261252760887, - -0.0037131761200726032, - 0.013749025762081146, - 0.03146659955382347, - -0.037196338176727295, - -0.028672177344560623, - -0.005641679745167494, - 0.015322355553507805, - 0.014195193536579609, - 0.0009260925580747426, - -0.015897678211331367, - 0.0014595864340662956, - -0.037548575550317764, - -0.020723339170217514, - 0.01897389069199562, - -0.015240166336297989, - -0.025619449093937874, - 0.005638744216412306, - 0.00042708864202722907, - -0.010332316160202026, - 0.03156052902340889, - 0.013702060095965862, - -0.0024187013041228056, - 0.011465349234640598, - 0.017400560900568962, - -0.007091726176440716, - 0.017212700098752975, - -0.013913403265178204, - -0.017459265887737274, - -0.04661283642053604, - 0.0012056814739480615, - -0.008471325039863586, - -0.008036898449063301, - 0.0068862540647387505, - 0.0068862540647387505, - -0.013948626816272736, - -0.0387696698307991, - -0.0155571810901165, - -0.0057238684967160225, - -0.01410126406699419, - -0.039497628808021545, - -0.01295061968266964, - -0.03447236493229866, - -0.002227905672043562, - 0.002442183904349804, - 0.014136487618088722, - 0.019795779138803482, - 0.008559385314583778, - 0.03442540019750595, - 0.01926742121577263, - -0.012105247937142849, - 0.016649119555950165, - 0.0026212381199002266, - -0.026934470981359482, - 0.023318160325288773, - -0.0055125257931649685, - -0.013725543394684792, - 0.0026285764761269093, - -0.008571126498281956, - 0.02274283766746521, - -0.010179679840803146, - -0.0033491968642920256, - 0.015428027138113976, - -0.0013245618902146816, - -0.0032288488000631332, - 0.0073148105293512344, - -0.02161567471921444, - 0.0029822823125869036, - 0.0027474567759782076, - 0.00800754502415657, - 0.03865225613117218, - -0.039943795651197433, - -0.004141732584685087, - -0.01922045648097992, - 0.013326340354979038, - 0.004449940752238035, - 0.009205155074596405, - 0.010514305904507637, - 0.013114997185766697, - -0.031137844547629356, - 0.0077374959364533424, - -0.03090301901102066, - -0.0045790947042405605, - -0.0008952717180363834, - -0.024257460609078407, - -0.016707824543118477, - 0.009598487056791782, - 0.016649119555950165, - -0.01953747123479843, - -0.011876293458044529, - 0.01534583792090416, - 0.004147603176534176, - -0.023729104548692703, - 0.006669040769338608, - -0.010032913647592068, - -0.017001356929540634, - 0.008753116242587566, - -0.019243938848376274, - -0.010015302337706089, - -0.0012614525621756911, - -0.039802901446819305, - 0.0055272020399570465, - 0.022014878690242767, - -0.015838971361517906, - 0.02207358554005623, - -0.031067397445440292, - 0.034683708101511, - -0.023365125060081482, - 0.004725860431790352, - -0.016379069536924362, - 0.03834698349237442, - -0.02254323661327362, - -0.025924721732735634, - 0.016332104802131653, - 0.02794422022998333, - 0.03548211231827736, - 0.04973601549863815, - -0.011858681216835976, - 0.0087942099198699, - -0.0042914338409900665, - 0.035106394439935684, - 0.018292896449565887, - 0.0132558923214674, - -0.02641785517334938, - -0.01445350144058466, - 0.009122965857386589, - 0.017412301152944565, - 0.0056857094168663025, - 0.010091620497405529, - 0.018163742497563362, - -0.002597755752503872, - 0.0039626783691346645, - 0.014218675903975964, - 0.02799118496477604, - -0.024398356676101685, - 0.016813496127724648, - -0.0077962023206055164, - -0.015216683968901634, - -0.01626165769994259, - -0.016085537150502205, - 0.010361669585108757, - -0.03830001875758171, - 0.00722675072029233, - -0.0056651621125638485, - -0.0006002723821438849, - 0.020112793892621994, - 0.05241302400827408, - 0.00024344786652363837, - 0.04412368685007095, - -0.02014801651239395, - 0.019866226240992546, - -0.0004083760140929371, - 0.017717573791742325, - -0.011160075664520264, - -0.021239954978227615, - -0.011054404079914093, - 0.03940369933843613, - 0.006451827008277178, - 0.005870634224265814, - 0.0070212786085903645, - -0.003014570800587535, - -0.021439556032419205, - 0.02860173024237156, - -0.011400772258639336, - 0.009845053777098656, - -0.007209138944745064, - -0.027545016258955002, - -0.009833312593400478, - -0.03407316282391548, - 0.014582655392587185, - 0.021510004997253418, - 0.02253149449825287, - 0.02890700288116932, - -0.0018066876800730824, - 0.009070130065083504, - 0.006451827008277178, - 0.033110376447439194, - 0.004822725895792246, - -0.016954392194747925, - 0.0073500340804457664, - -0.03639793395996094, - -0.017881952226161957, - 0.020465031266212463, - -0.0025551936123520136, - -0.01009749062359333, - 0.00536575959995389, - 0.02998720109462738, - 0.01942005753517151, - 0.01616772636771202, - -0.0076611777767539024, - 0.012751017697155476, - -0.0055682966485619545, - 0.013079773634672165, - -0.06401339918375015, - -0.004702378064393997, - -0.016296880319714546, - -0.0191265270113945, - -0.003566410392522812, - 0.03982638195157051, - -0.03055078163743019, - -0.02886003814637661, - -0.03651534393429756, - -0.05161461606621742, - -0.010960474610328674, - -0.005791381001472473, - 0.004438199568539858, - 0.04320786893367767, - -0.020112793892621994, - -0.0063226730562746525, - -0.016754791140556335, - 0.03346261754631996, - 0.014218675903975964, - -0.04186936467885971, - -0.00797819159924984, - 0.02738063782453537 - ], - "how_to_set_up_multiple_drill_plate_mine": [ - -0.03293808922171593, - -0.019337177276611328, - 0.04030957818031311, - -0.016923274844884872, - -0.008740663528442383, - -0.014171943999826908, - 0.04020575433969498, - 0.010064416565001011, - -0.014820843003690243, - -0.004146461840718985, - 0.04311281815171242, - -0.024229871109128, - 0.02805837243795395, - -0.034547358751297, - 0.029849333688616753, - 0.02478792332112789, - 0.009006711654365063, - -0.020634973421692848, - -0.00021352818293962628, - 0.02293207496404648, - 0.05240504443645477, - 0.0019353398820385337, - -0.0011809953721240163, - -0.01304286066442728, - -0.010901495814323425, - 0.0028973319567739964, - 0.035689420998096466, - 0.05959484353661537, - -0.04617562144994736, - 0.011271367780864239, - 0.03693530336022377, - -0.012290138751268387, - -0.023035898804664612, - 0.026059765368700027, - -0.021206004545092583, - -0.0005629194783978164, - 0.03052418678998947, - 0.03132881969213486, - 0.019921185448765755, - 0.03607875853776932, - 0.05030261352658272, - -0.008688751608133316, - 0.0032818042673170567, - -0.049601804465055466, - -0.004328153096139431, - 0.04121803492307663, - -0.06514941155910492, - 0.02393137849867344, - 0.0249306820333004, - 0.04916055500507355, - 0.0014843554235994816, - 0.014055142179131508, - -0.0257872287184, - -0.0423600971698761, - -0.03387250378727913, - -0.04425488039851189, - -0.014145988039672375, - -0.01311423908919096, - 0.002564771566540003, - -0.016014816239476204, - 0.0064662741497159, - -0.013432200066745281, - 0.06769309937953949, - 0.0437617190182209, - -0.0044481996446847916, - 0.015041467733681202, - -0.05014687776565552, - 0.015923969447612762, - 0.02907065488398075, - 0.04269752278923988, - -0.048304006457328796, - 0.0356375090777874, - -0.0033969839569181204, - 0.015288049355149269, - 0.05699924752116203, - -0.07470119744539261, - -0.03358699008822441, - 0.04947202652692795, - -0.0703406035900116, - 0.008896399289369583, - -0.03382059186697006, - -0.037895675748586655, - 0.006005555856972933, - -0.002717262599617243, - -0.001035804278217256, - -0.044851865619421005, - -0.034832872450351715, - -0.0017536482773721218, - -0.061827052384614944, - -0.07724488526582718, - -0.018000446259975433, - -0.01949291303753853, - 0.01475595310330391, - 0.031536467373371124, - 0.06078881397843361, - 0.013289442285895348, - 0.03397632762789726, - -0.01025259681046009, - 0.007715403567999601, - 0.019778426736593246, - 0.005901732016354799, - -0.03509243205189705, - -0.02263358049094677, - -0.03187389671802521, - 0.006200225558131933, - -0.018000446259975433, - -0.00994761474430561, - 0.02402222342789173, - -0.0420486256480217, - -0.02707204781472683, - -0.07241708040237427, - 0.016235440969467163, - 0.014120032079517841, - 0.0250864177942276, - -0.0015760123496875167, - -0.0006132090929895639, - 0.022594647482037544, - 0.034209929406642914, - 0.023736707866191864, - 0.010356420651078224, - -0.017792798578739166, - 0.007241707760840654, - -0.004840783309191465, - -0.012802768498659134, - -0.015781212598085403, - -0.043242599815130234, - -0.002822708571329713, - -0.032834265381097794, - -0.01889592595398426, - 0.0177408866584301, - -0.01487275492399931, - 0.02966764196753502, - 0.020855600014328957, - 0.031770072877407074, - -0.015651432797312737, - -0.025878073647618294, - -0.0362604521214962, - 0.020310524851083755, - -0.008876931853592396, - 0.028577491641044617, - -0.016339264810085297, - -0.039504941552877426, - -0.027201827615499496, - -5.731725650548469e-06, - 0.002589105162769556, - 0.03885604441165924, - -0.08544696122407913, - 0.010207174345850945, - 0.0428273044526577, - -0.004889450501650572, - -0.033223606646060944, - -0.023126743733882904, - -0.014068120159208775, - -0.030861614271998405, - 0.013107750564813614, - -0.028863007202744484, - -0.00940902903676033, - 0.04716194421052933, - 0.00990868080407381, - -0.03786971792578697, - -0.05102938041090965, - -0.0055253710597753525, - -0.010317486710846424, - 0.025047482922673225, - -0.037739939987659454, - -0.011472526006400585, - -0.0343916229903698, - -0.012556186877191067, - -0.057622190564870834, - 0.040802739560604095, - 0.018467651680111885, - -0.04028362035751343, - -0.05757027864456177, - 0.01645606756210327, - 0.02341225929558277, - -0.01950589008629322, - -0.06473411619663239, - -0.039037737995386124, - 0.021439608186483383, - -0.005466970149427652, - 0.021751079708337784, - 0.008299412205815315, - -0.02133578434586525, - -0.005622705910354853, - 0.014301723800599575, - 0.026124654337763786, - -0.037065085023641586, - 0.00298168882727623, - -0.024969615042209625, - 0.01249778550118208, - -0.005327457096427679, - 0.012095469050109386, - 0.0029849333222955465, - 0.05975057929754257, - 0.0010528379352763295, - -0.007118416950106621, - 0.040880609303712845, - 0.017325591295957565, - 0.09255889058113098, - -0.02730565145611763, - 0.008747152052819729, - 0.06535705924034119, - 0.0362604521214962, - -0.013049349188804626, - -0.015106357634067535, - -0.04108825698494911, - -0.034443534910678864, - 0.03366485610604286, - 0.050588130950927734, - 0.006761522963643074, - 0.005139276385307312, - -0.029719553887844086, - 0.010434288531541824, - 0.004490377847105265, - -0.005194433033466339, - -0.03267852962017059, - -0.05100342631340027, - 0.0244634747505188, - -0.022620603442192078, - -0.018792102113366127, - -0.0039388141594827175, - 0.035689420998096466, - 0.029849333688616753, - 0.001932095387019217, - 0.002181921387091279, - 0.0437617190182209, - 0.0018850502092391253, - -0.07200178503990173, - 0.07900988310575485, - 0.025878073647618294, - -0.002665350679308176, - -0.014807865023612976, - 0.02278931625187397, - -0.035377949476242065, - 0.009512852877378464, - 0.014133010059595108, - -0.026488037779927254, - -0.0244634747505188, - -0.019324198365211487, - 0.012867658399045467, - -0.040024060755968094, - -0.019402066245675087, - -0.027513297274708748, - -0.03683147951960564, - 0.024658145383000374, - -0.002551793586462736, - -0.01025259681046009, - -0.018999749794602394, - 0.00300115579739213, - 0.045241206884384155, - 0.051522545516490936, - -0.04503355920314789, - -0.014496393501758575, - 0.029927201569080353, - -0.019259309396147728, - -0.05637630447745323, - -0.04290517047047615, - -0.0023895688354969025, - 0.03335338458418846, - -0.012685966677963734, - -0.0012377739185467362, - 0.050198789685964584, - -0.04747341573238373, - 0.06063307821750641, - 0.012050045654177666, - -0.0020894533954560757, - 0.04184097796678543, - 0.01597588136792183, - 0.0019710292108356953, - -0.06110028550028801, - -0.0037473891861736774, - 0.01841573975980282, - 0.03478096053004265, - -0.06302102655172348, - -0.046694740653038025, - -0.0023425237741321325, - 0.013256996870040894, - 0.032393015921115875, - 0.005574038252234459, - -0.007475311402231455, - -0.038674354553222656, - -0.008565460331737995, - 0.051055338233709335, - 0.044618263840675354, - -0.016183529049158096, - -0.0018039379501715302, - -0.026020832359790802, - 0.020219678059220314, - -0.016313308849930763, - -0.02608572132885456, - 0.034755006432533264, - 0.010304508730769157, - 0.01630033180117607, - -0.008539504371583462, - 0.035300079733133316, - -0.0005426413845270872, - -0.01903868280351162, - -0.007592112757265568, - 0.01927228644490242, - 0.02025861293077469, - -0.02935617044568062, - 0.038207147270441055, - 0.03857053071260452, - 0.05653204023838043, - -0.039427075535058975, - -0.04573436826467514, - -0.00921435933560133, - -0.0720536932349205, - 0.015197203494608402, - -0.004227573983371258, - -0.002201388357207179, - -0.008299412205815315, - 0.017040075734257698, - -0.006070445757359266, - 0.038051411509513855, - -0.007377976551651955, - 0.020985377952456474, - 0.005181455053389072, - -0.04711003229022026, - -0.03348316624760628, - 0.01811724714934826, - -0.0127378785982728, - 0.048537611961364746, - -0.051496587693691254, - -0.010810649953782558, - -0.025605536997318268, - 0.03127691149711609, - -0.022062551230192184, - -0.02224424108862877, - -0.014574261382222176, - -0.004613668657839298, - -0.02164725586771965, - -0.01811724714934826, - -0.02211446315050125, - -0.03317169472575188, - 0.004016682039946318, - -0.008078786544501781, - 0.0498613640666008, - 0.050354525446891785, - 0.03576728701591492, - -0.002628039103001356, - 0.012666499242186546, - 0.010667892172932625, - 0.005097098182886839, - -0.010875539854168892, - 0.008422703482210636, - -0.016936251893639565, - 0.05087364464998245, - -0.010453755035996437, - 0.054507479071617126, - 0.035066477954387665, - -0.01681945100426674, - -0.006787478923797607, - 0.01265352126210928, - 0.00906511303037405, - 0.0010755492839962244, - 0.005492926109582186, - -0.02018074505031109, - -0.017766842618584633, - -0.010207174345850945, - -0.058245133608579636, - 0.05102938041090965, - 0.003731166711077094, - 0.014729997143149376, - -0.03280831128358841, - 0.055857185274362564, - 0.009694544598460197, - -0.003672765800729394, - -0.029174478724598885, - 0.04197075590491295, - 0.0586085170507431, - 0.04085465148091316, - -0.007663491647690535, - 0.012523741461336613, - -0.07060015946626663, - 0.026046788319945335, - 0.0030465787276625633, - 0.041036345064640045, - 0.022438911721110344, - 0.017481327056884766, - 0.01988225057721138, - -0.03052418678998947, - 0.028110284358263016, - -0.013406244106590748, - -0.02805837243795395, - 0.0058692870661616325, - 0.018247026950120926, - 0.03319764882326126, - -0.06011395901441574, - -0.0704963356256485, - 0.07304001599550247, - -0.039271339774131775, - 0.05128894001245499, - 0.026656752452254295, - 0.003805789863690734, - -0.012913080863654613, - 0.053728800266981125, - 0.01996011845767498, - 0.0022451889235526323, - 0.010628958232700825, - 0.009577742777764797, - -0.029252346605062485, - -0.010700336657464504, - -0.01866232231259346, - -0.015106357634067535, - 0.004568245727568865, - 0.007663491647690535, - -0.009428495541214943, - -0.0025371932424604893, - -0.009817834943532944, - 0.0558052733540535, - -0.004149706102907658, - 0.04643518105149269, - -0.004474155604839325, - 0.001337542082183063, - -0.02086857706308365, - -0.02325652353465557, - -0.014288745820522308, - 0.015638455748558044, - 0.008799063973128796, - -0.004915406461805105, - -0.02034945785999298, - -0.00347160710953176, - -0.010687358677387238, - -0.0028162195812910795, - 0.01989522948861122, - 0.02922639064490795, - -0.028110284358263016, - 0.027720944955945015, - -0.03924538195133209, - -0.02263358049094677, - 0.009882724843919277, - 0.028863007202744484, - 0.04529311880469322, - -0.004019926302134991, - -0.006544141564518213, - -0.03228919208049774, - -0.05819322168827057, - 0.008279945701360703, - 0.014301723800599575, - -0.010752248577773571, - 0.016715627163648605, - 0.03306787088513374, - 0.018792102113366127, - -0.05497468262910843, - -0.005940665956586599, - -0.0586085170507431, - 0.009772412478923798, - -0.007780293468385935, - -0.011440081521868706, - 0.007923050783574581, - -0.02683844417333603, - -0.006145069375634193, - 0.05245695635676384, - 0.041503552347421646, - -0.0016757805133238435, - 0.0737667828798294, - -0.014301723800599575, - 0.02638421393930912, - 0.004016682039946318, - 0.04108825698494911, - 0.022049572318792343, - -0.024294761940836906, - -0.029485950246453285, - -0.014639151282608509, - 0.020310524851083755, - -0.03592302277684212, - 0.00011710591206792742, - 0.010421310551464558, - 0.012556186877191067, - -0.008507059887051582, - -0.03779185190796852, - 0.018454674631357193, - 0.021063245832920074, - -0.012134402990341187, - 0.014807865023612976, - -0.037662070244550705, - 0.028629403561353683, - -0.017844710499048233, - -0.03265257552266121, - 0.007708914577960968, - 0.007403932511806488, - -0.03195176273584366, - 0.005703818053007126, - 0.02072582021355629, - 0.06395544111728668, - -0.002259789267554879, - -0.024229871109128, - -0.040050018578767776, - 0.020829644054174423, - -0.017727907747030258, - -0.0003960308968089521, - 0.04228222742676735, - -0.014366613700985909, - 0.02034945785999298, - -0.05297607555985451, - -0.05331350490450859, - -0.04010193049907684, - -0.0038479682989418507, - 0.03234110400080681, - 0.04082869738340378, - -0.014288745820522308, - -0.01752026006579399, - 0.04474804177880287, - -0.03592302277684212, - -0.03402823954820633, - -0.0030984904151409864, - -0.030679922550916672, - -0.008130698464810848, - 0.025190241634845734, - 0.013302420265972614, - -0.023464171215891838, - 0.0020537639502435923, - 0.037662070244550705, - 0.0061645363457500935, - 0.034235887229442596, - 0.023204611614346504, - 0.005742751993238926, - 0.009052135050296783, - -0.010421310551464558, - -0.03080970235168934, - 0.02119302563369274, - -0.015586542896926403, - 0.0128157464787364, - 0.01487275492399931, - -0.018169159069657326, - -0.012711922638118267, - 0.004782382398843765, - -0.0047694044187664986, - -0.0029330214019864798, - -0.0017666262574493885, - -0.008039852604269981, - 0.0025144817773252726, - 0.014535327441990376, - -0.03963472321629524, - -0.007462333422154188, - -0.032626617699861526, - -0.013406244106590748, - 0.0022127439733594656, - -0.011024786159396172, - -0.013419222086668015, - 0.054870858788490295, - -0.02400924637913704, - 0.0246970783919096, - -0.05069195479154587, - 0.002407413674518466, - 0.008468125946819782, - 0.004957584664225578, - 0.01188782136887312, - 0.029537862166762352, - -0.009850279428064823, - -0.02522917464375496, - -0.05466321483254433, - -0.037584204226732254, - 0.0032250257208943367, - 0.010661402717232704, - 0.010843094438314438, - -0.010116328485310078, - 0.007747848518192768, - 0.00921435933560133, - 0.01296499278396368, - -0.01467808522284031, - -0.0021251426078379154, - -0.0008281567716039717, - 0.022348064929246902, - 0.03631236404180527, - 0.017104964703321457, - -0.015119335614144802, - 0.01674158312380314, - -0.022153396159410477, - -0.02630634605884552, - -0.03940111771225929, - 0.06841985881328583, - 0.008812041953206062, - 0.009110535494983196, - -0.003015755908563733, - 0.008533015847206116, - -0.0059958226047456264, - -0.0031666248105466366, - -0.05559762567281723, - -0.026254434138536453, - -0.04415105655789375, - -0.020972400903701782, - -0.010622468777000904, - -0.030628010630607605, - -0.00940902903676033, - -0.021777035668492317, - 0.02499557100236416, - 0.008455147966742516, - 0.0039225914515554905, - -0.0175072830170393, - 0.022348064929246902, - -0.019077617675065994, - -0.016339264810085297, - 0.01388642843812704, - -0.036675743758678436, - -0.006414362229406834, - 0.03096543811261654, - -0.015015511773526669, - 0.02478792332112789, - 0.0024528363719582558, - -0.010959896259009838, - -0.008189099840819836, - 0.030576098710298538, - -0.015236137434840202, - -0.007961984723806381, - -0.023918399587273598, - -0.0025777495466172695, - -0.0418928898870945, - -0.014626173302531242, - -0.05331350490450859, - 0.005690840072929859, - -0.0020456525962799788, - -0.014937644824385643, - 0.007851672358810902, - -0.011258389800786972, - 0.004026415292173624, - 0.04062104970216751, - 0.01691029593348503, - -0.019012726843357086, - 0.00921435933560133, - 0.016404155641794205, - -0.004451443906873465, - 0.013704736717045307, - -0.00024090358056128025, - 0.03052418678998947, - -0.016352243721485138, - 0.01620948500931263, - -0.029096610844135284, - 0.030005067586898804, - 0.0050549195148050785, - -0.01033046469092369, - 0.00024070079962257296, - -0.026708664372563362, - -0.016936251893639565, - -0.002469058847054839, - 0.024411562830209732, - -0.0028275754302740097, - 0.020167766138911247, - 0.006203469820320606, - -0.03218536823987961, - 0.005278789438307285, - 0.011102654039859772, - -0.022088507190346718, - -0.0012742745457217097, - 0.04887503758072853, - 0.029485950246453285, - 0.029693597927689552, - -0.0007803004700690508, - -0.05523424223065376, - 0.01548271905630827, - 0.0022143663372844458, - 0.04903077334165573, - -0.02447645366191864, - 0.030783746391534805, - -0.0127768125385046, - 0.005476703867316246, - -0.059542931616306305, - -0.0359489805996418, - -0.018753167241811752, - -0.03164029121398926, - 0.013263486325740814, - -0.03065396659076214, - 0.025813184678554535, - 0.019090594723820686, - -0.01150497142225504, - -0.00628782669082284, - 0.0044319769367575645, - 0.017091987654566765, - 0.005645417142659426, - -0.02278931625187397, - 0.017987467348575592, - -0.018675299361348152, - 0.013205084949731827, - -0.008305901661515236, - -0.021361740306019783, - -0.02111515775322914, - -0.03267852962017059, - -0.0028778649866580963, - -0.01180995348840952, - -0.0022030104883015156, - 0.002306834328919649, - -0.010142284445464611, - 0.042879216372966766, - 0.02922639064490795, - 0.0017049809684976935, - -0.010246108286082745, - -0.009298715740442276, - 0.01029153075069189, - -0.0011753174476325512, - -0.01296499278396368, - -0.010641936212778091, - 0.04762915149331093, - 0.010933940298855305, - 0.03589706867933273, - -0.051652323454618454, - 0.043476201593875885, - -0.010161750949919224, - -0.029537862166762352, - -0.06255382299423218, - 0.007092460989952087, - 0.021089201793074608, - 0.010408332571387291, - 0.015262093394994736, - -0.024139026179909706, - -0.01674158312380314, - -0.0428273044526577, - 0.03265257552266121, - 0.01373069267719984, - 0.0064662741497159, - -0.00932467170059681, - -0.037584204226732254, - -0.014885732904076576, - 0.024671122431755066, - -0.02699417993426323, - 0.0073195756413042545, - -0.02805837243795395, - -0.04586414992809296, - 0.01659882441163063, - -0.006936725229024887, - 0.018636366352438927, - -0.004610423929989338, - 0.015846101567149162, - -0.0364161878824234, - -0.017260700464248657, - 0.01844169571995735, - -0.006518186070024967, - -0.004545534495264292, - 0.01146603748202324, - -0.033301472663879395, - 0.00014437992649618536, - 0.009344139136373997, - 0.028733227401971817, - 0.01311423908919096, - 0.001865583355538547, - 0.024048179388046265, - -0.03241897001862526, - 0.03745442256331444, - -0.015236137434840202, - 0.013133706524968147, - 0.003591653425246477, - -0.012634054757654667, - 0.025268109515309334, - -0.010505666956305504, - 0.0035494749899953604, - 0.013341354206204414, - 0.010875539854168892, - 0.0493941567838192, - -0.01188782136887312, - 0.03677956759929657, - -0.04843378812074661, - 0.010693848133087158, - -0.03379463776946068, - 0.01919441856443882, - 0.010395354591310024, - -0.02676057629287243, - 0.003361294511705637, - 0.0060347565449774265, - 0.001012281747534871, - -0.02025861293077469, - -0.014120032079517841, - -0.00343267316929996, - 0.00890288781374693, - -0.00600231159478426, - 0.0007713781669735909, - -0.008812041953206062, - -0.015703344717621803, - 0.0028162195812910795, - -0.009357117116451263, - 0.042489875108003616, - 0.02164725586771965, - -0.014470437541604042, - 0.028577491641044617, - -0.00955827534198761, - 0.02127089351415634, - -0.015547608956694603, - -0.004912161733955145, - 0.025436822324991226, - -0.0127378785982728, - -0.05897190049290657, - -0.01384749449789524, - 0.0013067193794995546, - -0.011842397972941399, - 0.04067296162247658, - 0.020245634019374847, - 0.03327551856637001, - -0.015807168558239937, - 0.023464171215891838, - -0.007189795840531588, - -0.04664282873272896, - -0.03260066360235214, - -0.029330214485526085, - 0.011959199793636799, - 0.007254685740917921, - 0.002561527071520686, - -0.03249683976173401, - -0.01388642843812704, - -0.11150672286748886, - -0.03156242519617081, - 0.019674602895975113, - -0.004587712697684765, - -0.03971258923411369, - 0.02630634605884552, - 0.0498613640666008, - 0.029563818126916885, - -0.006342983338981867, - -0.024671122431755066, - -0.014275767840445042, - -0.019947141408920288, - -0.02829197607934475, - 0.010700336657464504, - -0.006063956767320633, - 0.02325652353465557, - 0.005814130883663893, - 0.014626173302531242, - 0.010453755035996437, - -0.011874843388795853, - -0.01912952959537506, - -0.025955941528081894, - -0.002316567813977599, - 0.01544378511607647, - -0.0420486256480217, - -0.005145765375345945, - -0.012101957574486732, - -0.00944147352129221, - 0.01759812794625759, - 0.043398335576057434, - 0.0005158743588253856, - -0.008422703482210636, - 0.00047329036169685423, - 0.04412510246038437, - -0.019311221316456795, - -0.011939733289182186, - 0.02141365222632885, - 0.010830116458237171, - 0.017338568344712257, - 0.04503355920314789, - 0.0013359198346734047, - 0.0254757571965456, - 0.004999763332307339, - -0.003993970341980457, - 0.01323753036558628, - 0.017027096822857857, - 0.010823627933859825, - 0.008150165900588036, - 0.0021170314867049456, - 0.012861168943345547, - 0.02417795918881893, - -0.03013484738767147, - -0.005463725887238979, - 0.0008378902566619217, - 0.010927451774477959, - 0.03374272584915161, - -0.03755824640393257, - 0.014392569661140442, - -0.002911932300776243, - -0.005285278428345919, - 0.021076224744319916, - 0.015262093394994736, - -0.008130698464810848, - -0.010700336657464504, - -0.013821538537740707, - 0.004139972850680351, - -0.00932467170059681, - 0.009084579534828663, - -0.0009814590448513627, - 0.02224424108862877, - 0.021517476066946983, - 0.008578438311815262, - -0.004980296362191439, - 0.01835085079073906, - 0.009318183176219463, - -0.0073195756413042545, - -0.009960592724382877, - 0.00871470756828785, - 0.026552928611636162, - -0.05819322168827057, - 0.014068120159208775, - 0.04864143580198288, - -0.002976821968331933, - 0.03340529650449753, - -0.0028389310464262962, - -0.03221132233738899, - 0.004694780800491571, - 0.004159439820796251, - 0.01767599582672119, - 0.03945302963256836, - 0.014042164199054241, - 0.0005061408737674356, - -0.009629654698073864, - -0.013289442285895348, - -0.00042867858428508043, - 0.02660484053194523, - -0.03478096053004265, - -0.03413206338882446, - 0.011076698079705238, - 0.025436822324991226, - -0.0025972165167331696, - 0.029771465808153152, - 0.01605374924838543, - 0.005486437119543552, - 0.005041941534727812, - 0.04383958503603935, - 0.04682451859116554, - -0.01658584736287594, - 0.022075528278946877, - -0.026202522218227386, - 0.013016904704272747, - -0.025294065475463867, - 0.0125432088971138, - 0.01597588136792183, - -0.03166624903678894, - -0.018143203109502792, - -0.022581668570637703, - -0.04326855391263962, - -0.0035786754451692104, - -0.0006253759493120015, - 0.0042632631957530975, - 0.031069261953234673, - -0.021517476066946983, - -0.016559891402721405, - -0.00298168882727623, - -0.012990948744118214, - 0.019687581807374954, - 0.027720944955945015, - -0.05834895744919777, - -0.023386303335428238, - 0.01605374924838543, - 0.07760826498270035, - -0.019531846046447754, - 0.016157573089003563, - -0.009649121202528477, - -0.010512156412005424, - 0.014781909063458443, - -0.02141365222632885, - -0.030420362949371338, - 0.005194433033466339, - 0.002561527071520686, - -0.04171120002865791, - -0.017325591295957565, - -0.04132185876369476, - -0.0017601372674107552, - 0.02982337772846222, - 0.0070016151294112206, - 0.020557105541229248, - -0.043554071336984634, - -0.024645166471600533, - 0.026358257979154587, - -0.008020386099815369, - 0.024489430710673332, - 0.01936313323676586, - -0.04565650224685669, - 0.0024398586247116327, - -0.020751776173710823, - -0.035066477954387665, - -0.002386324340477586, - 0.010933940298855305, - 0.010765226557850838, - 0.05276842787861824, - 0.004529311787337065, - -0.02172512374818325, - -0.007105438970029354, - -0.012634054757654667, - 0.03478096053004265, - -0.001616568537428975, - 0.027513297274708748, - -0.02149152010679245, - -0.01622246392071247, - -0.002277633873745799, - -0.01483382098376751, - 0.00011528088361956179, - 0.03527412563562393, - 0.019298242405056953, - 0.011187010444700718, - -0.04786275699734688, - -0.029849333688616753, - 0.04075082764029503, - -0.0011680173920467496, - -0.02188085950911045, - 0.006459785159677267, - 0.011602305807173252, - 0.025203218683600426, - -0.02255571261048317, - -0.0124653410166502, - 0.03036845102906227, - 0.037817806005477905, - 0.016702648252248764, - 0.017844710499048233, - 0.008338346146047115, - -0.011868353933095932, - -0.010830116458237171, - 0.023347370326519012, - -0.002900576451793313, - 0.01583312451839447, - 0.014898710884153843, - 0.006897791288793087, - -0.015145291574299335, - 0.0008833131287246943, - -0.027876680716872215, - -0.011459548026323318, - 0.02914852276444435, - -0.022218285128474236, - 0.017987467348575592, - 0.02938212640583515, - 0.001169639639556408, - -0.05850469321012497, - 0.01583312451839447, - 0.010317486710846424, - -0.024424541741609573, - 0.023892443627119064, - -0.011569861322641373, - -0.00913649145513773, - 0.026020832359790802, - -0.03825905919075012, - 0.026656752452254295, - -0.0009814590448513627, - -0.02761712111532688, - -0.028888963162899017, - -0.03963472321629524, - -0.0032282702159136534, - -0.004831049591302872, - -0.02141365222632885, - 0.03446948900818825, - -0.004603934939950705, - -0.03366485610604286, - -0.027331607416272163, - 0.017494304105639458, - -0.01582014560699463, - 0.008377280086278915, - 0.025566602125763893, - 0.001073927036486566, - 0.01498955674469471, - 0.010979363694787025, - 0.012030579149723053, - -0.0074493554420769215, - -0.005379369016736746, - -0.019311221316456795, - -0.00326882628723979, - -0.007163839880377054, - 0.0077738044783473015, - -0.00686534633859992, - -0.0077543375082314014, - -0.004474155604839325, - 0.018636366352438927, - 0.023035898804664612, - 0.008734174072742462, - 0.01495062280446291, - -0.007819227874279022, - -0.007981452159583569, - -0.013834516517817974, - -0.011472526006400585, - 0.025878073647618294, - -0.022010639309883118, - 0.012076001614332199, - -0.027928592637181282, - 0.012647032737731934, - -0.009928147308528423, - 0.0033775169868022203, - 0.03363890200853348, - 0.03371676802635193, - 0.01630033180117607, - -0.015872057527303696, - -0.027487341314554214, - -0.020388392731547356, - 0.0063170273788273335, - 0.029485950246453285, - -0.007098949979990721, - -0.019765449687838554, - 0.005320968106389046, - 0.0029557328671216965, - -0.001975896069779992, - 0.0064078732393682, - 0.005973110906779766, - 0.011018297635018826, - -0.018247026950120926, - -0.004182151053100824, - -0.019830338656902313, - -0.010564068332314491, - -0.007845182903110981, - 0.027513297274708748, - 0.015223159454762936, - -0.0007186551229096949, - -0.02599487639963627, - 0.0036403208505362272, - -0.00990219134837389, - 0.017027096822857857, - 0.03029058314859867, - 0.023230567574501038, - -0.0032444926910102367, - 0.01683242805302143, - -0.025060461834073067, - 0.01803937926888466, - 0.002272767247632146, - -0.02333439141511917, - -0.014431503601372242, - -0.0001137600265792571, - -0.03148455545306206, - 0.00656036427244544, - -0.001357009052298963, - -0.0003583136713132262, - 0.0023473904002457857, - -0.00656036427244544, - -0.012627565301954746, - 0.0005146576440893114, - -0.005914709996432066, - -0.010181218385696411, - 0.009577742777764797, - -0.0016563135432079434, - 0.018311915919184685, - 0.04412510246038437, - -3.792001007241197e-05, - -0.01051864493638277, - 0.011005319654941559, - 0.01659882441163063, - 0.002368479734286666, - -0.014223855920135975, - 0.015781212598085403, - -0.007060016039758921, - 0.017169855535030365, - 0.018402762711048126, - 0.01548271905630827, - 0.0033872504718601704, - -0.034755006432533264, - -0.023308435454964638, - -0.020544128492474556, - 0.03080970235168934, - 0.013484111987054348, - -0.0031568913254886866, - -0.0043930429965257645, - -0.0073001086711883545, - -0.029849333688616753, - -0.053884536027908325, - -0.025761272758245468, - -0.03164029121398926, - 0.008163143880665302, - -0.02324354648590088, - 0.021608320996165276, - 0.039427075535058975, - -0.006774500943720341, - -0.01811724714934826, - -0.0008314012666232884, - -0.025449801236391068, - 0.015430807135999203, - -0.0062067145481705666, - 0.0174294151365757, - 0.036520007997751236, - 0.02652697265148163, - 0.06577235460281372, - -0.006800456903874874, - -0.061671316623687744, - 0.016495000571012497, - 0.05144467577338219, - 0.02316567860543728, - 0.01380856055766344, - -0.02019372209906578, - 0.010680870153009892, - -0.042489875108003616, - -0.03228919208049774, - -0.021076224744319916, - 0.049134597182273865, - 0.0053923469968140125, - 0.03916751593351364, - -0.036052804440259933, - -0.011381680145859718, - -0.020764753222465515, - 0.0173515472561121, - 0.014483415521681309, - 0.032990001142024994, - 0.005100342445075512, - -0.005165232345461845, - 0.02652697265148163, - 0.012874146923422813, - -0.01257565338164568, - 0.007429888471961021, - -0.031017350032925606, - -0.004947851411998272, - 0.04077678546309471, - -0.030031023547053337, - -0.019999053329229355, - 0.0554938018321991, - 0.016313308849930763, - -0.015275071375072002, - 0.032548751682043076, - 0.011232433840632439, - -0.031250953674316406, - 0.013977274298667908, - -0.019402066245675087, - -0.03252279385924339, - 0.012212270870804787, - 0.003216914599761367, - 0.0024187692906707525, - -0.0019256063969805837, - 0.007871138863265514, - 0.03327551856637001, - -0.0030822681728750467, - -0.01827298291027546, - 0.006780989933758974, - 0.01897379383444786, - -0.009396051056683064, - 0.016183529049158096, - -0.0013553868047893047, - -0.02951190620660782, - -0.06395544111728668, - -0.016624780371785164, - 0.012517252936959267, - 0.02361990697681904, - 0.018324894830584526, - -0.05183401703834534, - -0.003581919940188527, - 0.026968223974108696, - 0.01653393544256687, - -0.005424791947007179, - 0.004756426438689232, - -0.02194574847817421, - -0.018065335229039192, - 0.007339042611420155, - -0.0020294301211833954, - -0.012523741461336613, - -8.841242379276082e-05, - 0.008727685548365116, - 0.02088155411183834, - 0.005369635298848152, - -0.0017877154750749469, - 0.0035981424152851105, - -0.024593254551291466, - -0.009045645594596863, - -0.008747152052819729, - 0.005483192857354879, - -0.010765226557850838, - -0.03332743048667908, - 0.016417132690548897, - 0.0019612957257777452, - -0.020751776173710823, - 0.025216197595000267, - 0.010285042226314545, - -0.021141113713383675, - 0.0347030945122242, - -0.017792798578739166, - 0.04926437884569168, - 0.035974934697151184, - -0.017247723415493965, - -0.0011120499111711979, - -0.01471701916307211, - -0.020388392731547356, - -0.009454451501369476, - -0.030238671228289604, - -0.01388642843812704, - 0.008545993827283382, - 0.009532319381833076, - 0.02630634605884552, - 0.011180521920323372, - -0.009837301447987556, - 0.001520044868811965, - 0.0014389324933290482, - -0.0033645390067249537, - 0.010680870153009892, - 0.01304286066442728, - 0.012166847474873066, - -0.04290517047047615, - -0.00048342940863221884, - -0.011258389800786972, - 0.002655617194250226, - 0.016884339973330498, - -0.013127217069268227, - -0.006800456903874874, - 0.019389089196920395, - -0.017727907747030258, - 0.005369635298848152, - -0.005619461182504892, - 0.022698471322655678, - -0.005402080249041319, - -0.019934162497520447, - -0.004568245727568865, - -0.0181302260607481, - -0.05949101969599724, - 0.01659882441163063, - -1.837700983742252e-05, - -0.00609964644536376, - 0.03029058314859867, - 0.024891747161746025, - 0.008500570431351662, - 0.001797448960132897, - 0.0019434511195868254, - -0.02471005730330944, - -0.029771465808153152, - 0.020907510071992874, - 0.004513089545071125, - -0.07028868794441223, - 0.008487592451274395, - 0.015962904319167137, - 0.020128833130002022, - 0.025358954444527626, - 0.03592302277684212, - -0.0011607172200456262, - -0.04306090623140335, - 0.023269502446055412, - -0.015729300677776337, - 0.027669033035635948, - -0.011939733289182186, - -0.01957077905535698, - -0.018065335229039192, - -0.028343887999653816, - 0.007072994019836187, - -0.02914852276444435, - -0.02088155411183834, - 0.015534630976617336, - -0.01691029593348503, - 0.03029058314859867, - -0.0015030112117528915, - 0.015846101567149162, - -0.02569638192653656, - 0.03324956074357033, - -0.006690144073218107, - 0.01752026006579399, - 0.002392813330516219, - -0.0007223052089102566, - -0.04137377068400383, - 0.00940253958106041, - 0.001946695614606142, - -0.016806472092866898, - 0.006352716591209173, - -0.0024009246844798326, - -0.03838883712887764, - 0.01989522948861122, - 0.007741359528154135, - -0.022854207083582878, - -0.000450578925665468, - -0.024723034352064133, - 0.026059765368700027, - 0.021932771429419518, - 0.005168477073311806, - -0.03350912034511566, - 0.033535078167915344, - 0.004925139714032412, - -0.0064273402094841, - 0.028188152238726616, - -0.006709611043334007, - -0.03410610556602478, - 0.0030984904151409864, - 3.193797601852566e-05, - -0.028162196278572083, - 0.03195176273584366, - -0.012588631361722946, - -0.045085471123456955, - 0.002027807990089059, - -0.03249683976173401, - 0.02714991569519043, - 0.014107054099440575, - -0.0256314929574728, - 0.0029313992708921432, - 0.0036857437808066607, - -0.007527222856879234, - 0.010103350505232811, - 0.026864400133490562, - 0.02140067331492901, - 0.001625490840524435, - 0.0064468071796, - -0.028343887999653816, - -0.050276659429073334, - 0.0026961734984070063, - -0.024139026179909706, - 0.006420851219445467, - 0.00011670035019051284, - -0.026656752452254295, - 0.010752248577773571, - -0.011245411820709705, - 0.04435870423913002, - 0.02339928224682808, - -0.002133253961801529, - -0.014210877940058708, - 0.006391650531440973, - -0.008124209940433502, - 0.025761272758245468, - 0.007592112757265568, - 0.006761522963643074, - 0.011414125561714172, - -0.014976578764617443, - -0.013172640465199947, - -0.018532542511820793, - -0.006755033973604441, - 0.05362497642636299, - 0.001284819096326828, - -0.02086857706308365, - 0.02064795233309269, - -0.014353635720908642, - 0.006586320232599974, - -0.014081098139286041, - 0.007222240790724754, - 0.025981897488236427, - -0.015949925407767296, - 0.0017763597425073385, - 0.008013896644115448, - -0.0010001148330047727, - 0.012088979594409466, - -0.014704041182994843, - 0.008805553428828716, - -0.0014843554235994816, - -0.002861642511561513, - 0.027409473434090614, - 0.013613891787827015, - -0.010680870153009892, - 0.017494304105639458, - 0.014288745820522308, - -0.007682958617806435, - -0.03296404704451561, - -0.02179001271724701, - -0.010946918278932571, - 0.002464192220941186, - -0.004253529943525791, - -0.015132313594222069, - -0.007760826498270035, - -0.004876472521573305, - -0.024580277502536774, - -0.031095217913389206, - 0.03374272584915161, - 0.01622246392071247, - 0.004000459332019091, - -0.0021948993671685457, - -0.028577491641044617, - -0.010103350505232811, - -0.009383073076605797, - -0.029459994286298752, - 0.0015419451519846916, - -0.011290834285318851, - -0.025800205767154694, - -0.0025355711113661528, - -0.03218536823987961, - 0.03753229230642319, - -0.030991394072771072, - -0.011212966404855251, - -0.019402066245675087, - 0.016611803323030472, - -0.017494304105639458, - -0.05128894001245499, - 0.039868324995040894, - 0.030342495068907738, - 0.009733478538691998, - 0.03771398216485977, - -0.008357813581824303, - 0.016339264810085297, - 0.029485950246453285, - 0.041192080825567245, - -0.018000446259975433, - 0.012037067674100399, - -0.014483415521681309, - 0.0013456533197313547, - 0.023957334458827972, - -0.001826649415306747, - 0.0175851508975029, - -0.004590956959873438, - 0.011771019548177719, - 0.013756648637354374, - 0.009882724843919277, - 0.001946695614606142, - 0.00905862357467413, - -0.026059765368700027, - -0.012679477222263813, - -0.010317486710846424, - 0.0011436836794018745, - -0.02914852276444435, - -0.02599487639963627, - -0.023347370326519012, - -0.025761272758245468, - 0.01479488704353571, - -0.0023652352392673492, - -0.02186788059771061, - 0.009389561600983143, - 0.021893836557865143, - -0.009739967063069344, - 0.02486579120159149, - -0.0016100795473903418, - 0.01376962661743164, - -0.023736707866191864, - 0.014522349461913109, - -0.025878073647618294, - -0.008189099840819836, - 0.0030417118687182665, - 0.07163839787244797, - 0.031224997714161873, - 0.03901178017258644, - -0.0031763582956045866, - 0.013717714697122574, - 0.019402066245675087, - 0.008883421309292316, - 0.012147380970418453, - 0.010427800007164478, - -0.011855375953018665, - 0.009162447415292263, - -0.0034780960995703936, - -0.020310524851083755, - 0.018156182020902634, - 0.004623401910066605, - 0.004649357870221138, - 0.016546912491321564, - 0.020063942298293114, - 0.0174294151365757, - 0.0348588302731514, - 0.04544885456562042, - 0.018934858962893486, - -0.011109142564237118, - -0.014094076119363308, - -0.03693530336022377, - -0.013549001887440681, - 0.03174411505460739, - 0.020557105541229248, - 0.001241018413566053, - 0.023658839985728264, - -0.0253200214356184, - 0.008993733674287796, - -0.006433829199522734, - -0.0174294151365757, - -0.009739967063069344, - 0.00311471289023757, - 0.010473222471773624, - -0.02624145708978176, - 0.002704284619539976, - -0.017546216025948524, - -0.03005697950720787, - -0.0005398024804890156, - 0.006362450309097767, - -0.01158283930271864, - 0.022776339203119278, - -0.04762915149331093, - -0.03363890200853348, - -0.014742975123226643, - 0.013036372140049934, - -0.0002202199393650517, - 0.036597877740859985, - -0.005768707953393459, - 0.011608795262873173, - 0.0009400917333550751, - 0.02249082364141941, - 0.012147380970418453, - -0.06390352547168732, - -0.040050018578767776, - 0.04700620844960213 - ], - "how_to_set_up_raw_resource_burner_mine": [ - -0.03136128932237625, - -0.02553161233663559, - 0.06638695299625397, - -0.010987158864736557, - -0.0031111447606235743, - -0.009821223095059395, - 0.026959288865327835, - 0.007072946522384882, - 0.003765496425330639, - -0.014455222524702549, - 0.02329491823911667, - 0.03233686834573746, - 0.01587100140750408, - -0.00010038349137175828, - 0.059105802327394485, - 0.03316967934370041, - -0.03716717287898064, - 0.007162176538258791, - -0.01671571098268032, - -0.013015649281442165, - 0.05049215257167816, - 0.008411393500864506, - -0.0013644719729200006, - -0.03114713914692402, - 0.008804003708064556, - -0.016406381502747536, - 0.04111707955598831, - 0.038404494524002075, - -0.04178332909941673, - 0.03628677502274513, - -0.01829805225133896, - -0.015002499334514141, - -0.033812135457992554, - 0.016798991709947586, - 0.0005052635679021478, - -0.010701623745262623, - 0.0046399482525885105, - 0.013348774053156376, - 0.01570443995296955, - -0.0057791150175035, - 0.028363170102238655, - -0.025888530537486076, - -0.008054474368691444, - -0.008316215127706528, - -0.031623031944036484, - 0.022128982469439507, - -0.0564408041536808, - 0.006704130209982395, - 0.018869122490286827, - 0.024139627814292908, - -0.024556033313274384, - 0.015276136808097363, - -0.05986722931265831, - -0.07714211195707321, - 0.003518627258017659, - -0.031242316588759422, - 0.007661863230168819, - 0.0094226635992527, - 0.01054695900529623, - 0.007905757986009121, - -0.00292524928227067, - 0.018535997718572617, - 0.03842828795313835, - 0.027506563812494278, - 0.02705446630716324, - 0.0211058147251606, - -0.04678019508719444, - 0.00026118298410438, - 0.01147494837641716, - 0.0305284783244133, - -0.04225922003388405, - -0.01052316464483738, - 0.01784595474600792, - 0.004315746482461691, - 0.038404494524002075, - -0.049064476042985916, - -0.006139008328318596, - 0.047660596668720245, - -0.05177706107497215, - 0.000824631832074374, - -0.041164666414260864, - -0.059058211743831635, - -0.048445817083120346, - -0.008197241462767124, - -0.004538821056485176, - -0.049968671053647995, - -0.046827785670757294, - 0.019202247262001038, - -0.02441326528787613, - -0.05758294463157654, - -0.028529731556773186, - -0.014943012036383152, - 0.039475250989198685, - 0.031623031944036484, - 0.0018649022094905376, - -0.003001094562932849, - 0.046494659036397934, - -0.022854719310998917, - 0.014038817025721073, - 0.03326486051082611, - 0.026221655309200287, - -0.03578708693385124, - -0.005032558925449848, - -0.0006190315471030772, - 0.03457356244325638, - 0.017429549247026443, - -0.015299931168556213, - 0.004788664169609547, - -0.04982590302824974, - -0.03081401437520981, - -0.08056853711605072, - 0.00228725653141737, - 0.010160296224057674, - 0.014395736157894135, - 0.010838442482054234, - 0.009107385762035847, - 0.033812135457992554, - 0.03221789747476578, - 0.028030045330524445, - -0.016989348456263542, - -0.02334250882267952, - 0.042449574917554855, - 0.015204752795398235, - 0.005086096934974194, - 0.0121233519166708, - -0.029053213074803352, - -0.00451800087466836, - -0.03692922741174698, - 0.00101647584233433, - 0.0367150753736496, - -0.02924356982111931, - 0.024984335526823997, - 0.043234799057245255, - 0.036619897931814194, - -0.023378200829029083, - -0.016085153445601463, - -0.04523354396224022, - 0.002687303349375725, - 0.006246083881705999, - 0.032122716307640076, - -0.033479008823633194, - -0.023485274985432625, - -0.06476891785860062, - 0.022795232012867928, - -0.023556658998131752, - 0.003161708125844598, - -0.07871255278587341, - -0.0009138615569099784, - 0.02496054209768772, - 0.005847524385899305, - 0.0007090048748068511, - -0.025341255590319633, - -0.014467120170593262, - -0.0012752421898767352, - -0.006912332959473133, - -0.039189714938402176, - -0.02133186347782612, - 0.04275890812277794, - -0.006585157010704279, - -0.03669128194451332, - -0.02177206426858902, - 0.02222416177392006, - -0.018274256959557533, - 0.006014086771756411, - -0.026388218626379967, - -0.023413892835378647, - -0.03197994828224182, - -0.014407633803784847, - -0.054965540766716, - 0.01441953144967556, - 0.020011262968182564, - -0.0007755554397590458, - -0.012730114161968231, - 0.0361202098429203, - 0.010094861499965191, - -0.032122716307640076, - -0.06529239565134048, - 0.003554319264367223, - 0.008458982221782207, - -0.0033609881065785885, - -0.0006562105845659971, - -0.029600489884614944, - -0.018036311492323875, - 0.013289287686347961, - 0.037452708929777145, - 0.024151524528861046, - -0.010838442482054234, - -0.015442699193954468, - 0.01204007025808096, - -0.01396743394434452, - -0.009910453110933304, - -0.007768938783556223, - -0.011314335279166698, - 0.03205133229494095, - -0.001811364316381514, - -0.0031587339472025633, - 0.010707572102546692, - 0.042735110968351364, - 0.06700561195611954, - -0.027292413637042046, - 0.013372568413615227, - 0.06914712488651276, - 0.014157790690660477, - -0.006775513757020235, - -0.011463051661849022, - 0.009666558355093002, - -0.004714306443929672, - 0.0463280975818634, - 0.015061985701322556, - 0.01466937456279993, - 0.004333592485636473, - -0.016596738249063492, - 0.011403564363718033, - -0.020058851689100266, - 0.008226985111832619, - -0.010558856651186943, - -0.01431245543062687, - 0.04949278011918068, - -0.0424019880592823, - -0.010511266998946667, - -0.03780962899327278, - -0.002612945158034563, - -0.0027051493525505066, - 0.033740751445293427, - 0.01784595474600792, - 0.01441953144967556, - -0.007679708767682314, - -0.048564791679382324, - 0.10907447338104248, - -0.0037327788304537535, - -0.03314588591456413, - -0.03424043580889702, - 0.024817774072289467, - -0.019261732697486877, - 0.04689916968345642, - 0.00698371697217226, - -0.03590606153011322, - -0.006359108258038759, - -0.005202095489948988, - -0.006531619466841221, - -0.04647086560726166, - -0.011201310902833939, - -0.07514336705207825, - -0.017881646752357483, - 0.0073644304648041725, - 0.008940823376178741, - 0.002899967599660158, - 9.582905477145687e-05, - 0.03255102038383484, - 0.0056779878214001656, - 0.06362677365541458, - -0.031504057347774506, - -0.04816028103232384, - -0.015894796699285507, - -0.007072946522384882, - -0.05363304167985916, - -0.05667874962091446, - -0.0010053220903500915, - 0.0032955529168248177, - -0.01522854808717966, - -0.008060422725975513, - 0.02726861834526062, - -0.083043172955513, - 0.0282204020768404, - 0.02541263960301876, - -0.009089539758861065, - 0.040879134088754654, - -0.02103443071246147, - -0.020070750266313553, - -0.022795232012867928, - -0.01588289998471737, - 0.028244197368621826, - 0.05672634020447731, - -0.07876014709472656, - -0.014324353076517582, - 0.0119270458817482, - 0.031170932576060295, - 0.0072276112623512745, - -0.0021608476527035236, - -0.019166555255651474, - -0.01712021790444851, - 0.015561671927571297, - 0.051586706191301346, - 0.04887412115931511, - -0.020772689953446388, - 0.00447636004537344, - -0.016227921470999718, - 0.01043988298624754, - 0.020213518291711807, - -0.0021206941455602646, - 0.020570436492562294, - 0.028862856328487396, - 0.023806503042578697, - 0.009327485226094723, - 0.009880710393190384, - -0.04706573113799095, - -0.0016165460692718625, - -0.02373511902987957, - 0.012587346136569977, - -0.011355975642800331, - -0.019820906221866608, - 0.04737506061792374, - 0.04223542660474777, - 0.021236686035990715, - -0.02137945406138897, - -0.05672634020447731, - 0.02598370984196663, - -0.08485156297683716, - 0.017715083435177803, - 0.019939878955483437, - -0.012730114161968231, - -0.006793359760195017, - 0.01969003677368164, - -0.004690511617809534, - 0.024211011826992035, - -0.007596428040415049, - 0.023604249581694603, - 0.0281728133559227, - -0.022355031222105026, - -0.027340002357959747, - -0.005758294370025396, - -0.0005327761173248291, - 0.014360044151544571, - -0.04892170801758766, - -0.008649338968098164, - -0.046542249619960785, - 0.04635189101099968, - -0.013217903673648834, - -0.004758920986205339, - 0.0001414663711329922, - -0.011278643272817135, - -0.06652972102165222, - 0.01433624979108572, - -0.01570443995296955, - -0.012979957275092602, - 0.016989348456263542, - 0.04599497467279434, - 0.015061985701322556, - 0.012789600528776646, - 0.035668112337589264, - 0.005434093065559864, - 0.009720096364617348, - 0.0006748001324012876, - -0.016858479008078575, - 0.000833554775454104, - 0.014074509032070637, - -0.021177198737859726, - 0.07514336705207825, - -0.01090982649475336, - 0.03148026391863823, - 0.04775577411055565, - 0.016346894204616547, - -0.03145647048950195, - -0.010802751407027245, - -0.014907320030033588, - 0.016061358153820038, - -0.013027546927332878, - -0.03771445155143738, - 0.0041670300997793674, - -0.0005465323338285089, - -0.07033685594797134, - 0.039951141923666, - 0.02098684199154377, - 0.005957574583590031, - -0.003575139446184039, - 0.029838435351848602, - -0.006115213502198458, - 0.027625536546111107, - 0.0008395034237764776, - 0.018988095223903656, - 0.02755415253341198, - 0.05929615721106529, - -0.02344958484172821, - -0.0031914515420794487, - -0.03169441595673561, - 0.022259853780269623, - 0.03547775745391846, - 0.04471006244421005, - 0.030504684895277023, - 0.023152152076363564, - -0.012682524509727955, - -0.0360250324010849, - 0.02032059244811535, - 0.009690352715551853, - -0.010541010648012161, - -0.03345521539449692, - 0.025317460298538208, - 0.014098304323852062, - -0.04520975053310394, - -0.04861237853765488, - 0.04949278011918068, - -0.026745136827230453, - 0.036334361881017685, - 0.026792725548148155, - -0.027363795787096024, - -0.008887285366654396, - 0.008601750247180462, - 0.014847833663225174, - -0.010654035024344921, - 0.007989038713276386, - 0.035882264375686646, - -0.0019675164949148893, - -0.020118338987231255, - 0.015216650441288948, - 0.00028553526499308646, - 0.02800625003874302, - -0.03359798341989517, - -0.01396743394434452, - -0.031218523159623146, - -0.035311195999383926, - 0.05853473022580147, - -0.013539130799472332, - 0.062484633177518845, - -0.013015649281442165, - -0.017429549247026443, - -0.005865370389074087, - 0.012872881256043911, - -0.004161081742495298, - -0.026340628042817116, - -0.009226358495652676, - -0.021224787458777428, - -0.0018143387278541923, - -0.001850030617788434, - 0.012051967903971672, - 0.0075012496672570705, - 0.036619897931814194, - 0.033122092485427856, - -0.0353349894285202, - 0.036334361881017685, - -0.019559165462851524, - -0.019725728780031204, - 0.015323726460337639, - 0.03247963637113571, - 0.055298663675785065, - -0.005023635923862457, - -0.03378833830356598, - -0.043187208473682404, - -0.04106948897242546, - 0.003649497637525201, - 0.011873507872223854, - 0.02598370984196663, - 0.037952397018671036, - -0.003700061235576868, - 0.03799998387694359, - -0.04423417150974274, - -0.016453970223665237, - -0.03148026391863823, - -0.010285218246281147, - -0.011171567253768444, - -0.027530359104275703, - 0.026864109560847282, - -0.037000611424446106, - -0.006721976213157177, - 0.04068877547979355, - 0.021962421014904976, - -0.007774887606501579, - 0.04109328240156174, - 0.01751282997429371, - -0.04352033510804176, - 0.008911079727113247, - 0.019380705431103706, - 0.0113619240000844, - -0.009190666489303112, - 0.00024222164938692003, - -0.012141197919845581, - 0.025674380362033844, - -0.029648078605532646, - 0.039023153483867645, - 0.012004378251731396, - 0.007417968474328518, - -0.018988095223903656, - -0.024532238021492958, - -0.014490914531052113, - 0.0015317777870222926, - -0.018726354464888573, - 0.011213207617402077, - -0.022033805027604103, - 0.04442453011870384, - -0.037000611424446106, - -0.016787094995379448, - 0.036667488515377045, - 0.010225731879472733, - -0.012730114161968231, - -0.005121788941323757, - 0.051253579556941986, - 0.04835063964128494, - -0.0008714774157851934, - -0.01514526642858982, - -0.04549528658390045, - -0.01817907951772213, - -0.038856592029333115, - -0.002190590836107731, - 0.03559672832489014, - -0.01088603213429451, - 0.03238445892930031, - -0.028196608647704124, - -0.03940386697649956, - -0.01672760769724846, - 0.023128356784582138, - 0.019321219995617867, - 0.02722102962434292, - -0.0023110511247068644, - -0.004229491110891104, - 0.030219148844480515, - -0.042568549513816833, - -0.015073882415890694, - -0.012385092675685883, - 0.0037030354142189026, - 0.00032977835508063436, - -0.012456475757062435, - -0.0034145258832722902, - -0.0037982140202075243, - -0.007352533284574747, - 0.004818407818675041, - -0.007370379287749529, - 0.020844073966145515, - -0.005213993135839701, - -0.003307450097054243, - 0.011689100414514542, - -0.00499389274045825, - -0.0361202098429203, - -0.015728235244750977, - -0.014657476916909218, - 0.020939253270626068, - -0.0008171959780156612, - -0.01767939142882824, - -0.040926720947027206, - -0.020046954974532127, - 0.0033609881065785885, - 0.007132432889193296, - -0.02643580734729767, - -0.03669128194451332, - -0.0032925785053521395, - 0.015609261579811573, - -0.04768439009785652, - -0.003783342195674777, - -0.0485885851085186, - -0.016299305483698845, - 0.020891664549708366, - 0.0031706311274319887, - -0.010249526239931583, - 0.051586706191301346, - -0.027815893292427063, - 0.018619278445839882, - -0.040879134088754654, - 0.012551654130220413, - 0.01845271699130535, - 0.00497902138158679, - 0.0238540917634964, - -0.0064364406280219555, - -0.00973199401050806, - -0.025745762512087822, - -0.06919471174478531, - -0.03821413591504097, - 0.007298995275050402, - 0.03849967196583748, - -0.008685030974447727, - -0.02462741732597351, - 0.005740448832511902, - 0.015835309401154518, - -0.011772381141781807, - 0.017774570733308792, - -0.002156386151909828, - -0.004999841563403606, - 0.01733436994254589, - 0.0376906543970108, - 0.01710832118988037, - -0.021974317729473114, - -0.009190666489303112, - -0.02131996676325798, - -0.009202564135193825, - -0.02042766846716404, - 0.036167800426483154, - 0.014954909682273865, - 0.0029698642902076244, - -0.007816527970135212, - -0.035216014832258224, - -0.0019229016033932567, - 0.025460228323936462, - -0.02098684199154377, - -0.02698308229446411, - -0.04718470200896263, - -0.01840512827038765, - -0.024282395839691162, - -0.041997477412223816, - -0.013503438793122768, - -0.0036138056311756372, - 0.023747015744447708, - 0.025436433032155037, - -0.007245457265526056, - -0.0055887578055262566, - 0.024675006046891212, - 0.0012945752823725343, - -0.024389469996094704, - -0.02030869573354721, - -0.028030045330524445, - -0.0019675164949148893, - 0.04504318907856941, - -0.0059337797574698925, - 0.0133011844009161, - 0.02082028053700924, - 0.0026545857544988394, - -0.0076678115874528885, - 0.012242324650287628, - -0.02003505825996399, - 0.014728860929608345, - -0.02255728654563427, - -0.022866616025567055, - -0.030433300882577896, - 0.007358481641858816, - -0.06091419234871864, - -0.015002499334514141, - -0.009499995969235897, - -0.024365676566958427, - 0.0035602678544819355, - -0.0109931081533432, - 0.035763293504714966, - 0.04882653057575226, - 0.006103316321969032, - -0.011605818755924702, - 0.001985362498089671, - -0.011367873288691044, - -0.016227921470999718, - 0.03333624079823494, - -0.004868971183896065, - 0.020510949194431305, - -0.0063888514414429665, - 0.03226548433303833, - -0.048231665045022964, - -0.013170314021408558, - 0.0014440350933000445, - -0.038404494524002075, - 0.01671571098268032, - -0.007530992850661278, - -0.0439724326133728, - -0.03390731289982796, - 0.03754788637161255, - -0.0076678115874528885, - 0.018488408997654915, - 0.0025222282856702805, - 0.004479334689676762, - 0.01577582396566868, - 0.004625076428055763, - -0.03892797604203224, - -0.004538821056485176, - 0.025912325829267502, - 0.03433561697602272, - 0.03692922741174698, - -0.01744144596159458, - -0.024389469996094704, - 0.0029668898787349463, - 0.001638853456825018, - 0.031170932576060295, - -0.03949904441833496, - 0.016013769432902336, - -0.01632309891283512, - 0.018654970452189445, - -0.04870755970478058, - -0.04349653795361519, - -0.006739822216331959, - -0.056535981595516205, - -0.0063888514414429665, - -0.02462741732597351, - 0.027696920558810234, - -0.001839620410464704, - 0.0035632422659546137, - -0.043734487146139145, - 0.006454286631196737, - 0.025555405765771866, - 0.02888665162026882, - 0.0050385077483952045, - -0.013622411526739597, - -0.026078887283802032, - 0.006561362650245428, - 0.02714964561164379, - -9.104225318878889e-05, - -0.009238255210220814, - -0.03890417888760567, - -0.01102285087108612, - 0.028244197368621826, - 0.00044726423220708966, - -0.0141102010384202, - -0.01779836416244507, - 0.03090919367969036, - 0.027340002357959747, - -0.007994987070560455, - 0.02126047946512699, - -0.01828615367412567, - -0.0016343919560313225, - -0.008173447102308273, - -0.0019675164949148893, - -0.0086136469617486, - 0.04021288454532623, - 0.010285218246281147, - 0.012718216516077518, - -0.01133812963962555, - 0.03864243999123573, - -0.006716027390211821, - -0.03752409294247627, - -0.06691043078899384, - 0.020118338987231255, - 0.00793550070375204, - 0.04164056107401848, - -0.0029386337846517563, - -0.026507191359996796, - 0.014026920311152935, - -0.028101429343223572, - 0.0068706925958395, - 0.03188477084040642, - 0.03102816641330719, - 0.000645800493657589, - -0.019440192729234695, - -0.04061739146709442, - 0.025127103552222252, - -0.026340628042817116, - 0.015835309401154518, - -0.0038101112004369497, - -0.015668747946619987, - 9.206467802869156e-05, - -0.005826704204082489, - 0.02065371721982956, - 0.021807756274938583, - 0.01571633666753769, - -0.0219862163066864, - -0.02120099402964115, - -0.0026992005296051502, - 0.009137128479778767, - -0.009095488116145134, - -0.026887904852628708, - 0.00555306626483798, - -0.00475297262892127, - 0.0018128515221178532, - 0.016561046242713928, - 0.03328865393996239, - 0.008090166375041008, - -0.008572006598114967, - -0.02261677198112011, - 0.028363170102238655, - -0.00453287223353982, - 0.015311828814446926, - 0.018988095223903656, - -0.007037254516035318, - 0.044971805065870285, - -0.025888530537486076, - -0.008464930579066277, - 0.015169060789048672, - 0.009125230833888054, - 0.050920456647872925, - -0.01851220242679119, - 0.019844701513648033, - -0.02855352684855461, - 0.008143703453242779, - -0.027411386370658875, - 0.03490668535232544, - 0.0026397141627967358, - -0.021415144205093384, - -0.006442389450967312, - -0.010951466858386993, - -0.03207512944936752, - -0.022462107241153717, - -0.04002252593636513, - -0.00032698994618840516, - 0.013467746786773205, - 0.01052316464483738, - -0.02800625003874302, - -0.004467437043786049, - -0.01615653745830059, - -0.01021383423358202, - -0.010035375133156776, - 0.02805384062230587, - 0.020380079746246338, - -0.0028181737288832664, - 0.033693160861730576, - -0.01744144596159458, - 0.017322473227977753, - 0.0024731517769396305, - 0.01813148893415928, - 0.011831867508590221, - -0.015847207978367805, - -0.07285908609628677, - 0.0024939721915870905, - -0.006585157010704279, - -0.01032091025263071, - 0.06196115165948868, - 0.004086723551154137, - -0.014348147436976433, - -0.01363430917263031, - 0.042164042592048645, - 0.01338446605950594, - -0.004059954546391964, - -0.05268125608563423, - -0.04354412853717804, - -0.001305729034356773, - -0.008464930579066277, - 0.01396743394434452, - -0.04561425745487213, - -0.00996399112045765, - -0.09184718132019043, - -0.023128356784582138, - 0.00226643611676991, - -0.008970566093921661, - -0.03540637344121933, - -0.007376327645033598, - 0.030052587389945984, - 0.03990355506539345, - -0.020058851689100266, - -0.03190856799483299, - -0.04668501764535904, - -0.01509767770767212, - -0.031004371121525764, - 0.0021221814677119255, - -0.01941639743745327, - 0.016977451741695404, - 0.006484030280262232, - 0.021783960983157158, - -0.005654192995280027, - 0.0033312446903437376, - -0.028862856328487396, - -0.006787411402910948, - -0.0015600338811054826, - 0.03057606890797615, - -0.04723229259252548, - -0.01784595474600792, - 0.010731367394328117, - 0.008667184971272945, - 0.01728678122162819, - 0.0703844428062439, - 0.011950841173529625, - 0.01102285087108612, - 0.018869122490286827, - 0.035382580012083054, - -0.01633499749004841, - -0.002218846930190921, - 0.013896049931645393, - 0.041664354503154755, - 0.013753281906247139, - 0.009446458891034126, - 0.00642454344779253, - 0.023770811036229134, - 0.018714457750320435, - 0.01716780848801136, - 0.0188453271985054, - 0.02648339606821537, - 0.0021281300578266382, - -0.022402621805667877, - -0.03466873988509178, - 0.020189722999930382, - 0.033859722316265106, - 0.008417341858148575, - -0.0021117711439728737, - 0.020118338987231255, - 0.026959288865327835, - 0.024484649300575256, - -0.031099550426006317, - 0.02738759107887745, - -0.02249779924750328, - -0.01734626665711403, - 0.004776766989380121, - 0.020213518291711807, - 0.028291786089539528, - -4.772863394464366e-05, - -0.005883216392248869, - 0.001339190173894167, - -0.017857851460576057, - -0.004494206048548222, - 0.0064364406280219555, - 0.012349400669336319, - -0.0051426091231405735, - -0.008435187861323357, - -0.0007015690789557993, - 0.03771445155143738, - 0.008845645003020763, - -0.009892607107758522, - -0.015549775213003159, - 0.010511266998946667, - 0.031004371121525764, - -0.06481650471687317, - 0.001192704658024013, - 0.05453723669052124, - 0.018155284225940704, - 0.015918591991066933, - -0.00680525740608573, - -0.03657230734825134, - 0.0060854703187942505, - 0.0007056587492115796, - 0.004196773748844862, - 0.015811515972018242, - 0.017964927479624748, - 0.008209139108657837, - 0.012266119010746479, - -0.02603129856288433, - 0.0022352058440446854, - -0.0023512043990194798, - -0.028696294873952866, - -0.0423068106174469, - 0.0038458032067865133, - 0.03295552730560303, - 0.0006688514840789139, - -0.0017236217390745878, - 0.05610768124461174, - -0.001735519035719335, - 0.03233686834573746, - 0.06971819698810577, - 0.010332807898521423, - -0.046756401658058167, - 0.04511457309126854, - -0.04792233556509018, - 0.022140881046652794, - -0.017239192500710487, - 0.0025014078710228205, - -0.019559165462851524, - -0.05034938454627991, - 0.021296171471476555, - -0.02888665162026882, - -0.023889783769845963, - -0.014360044151544571, - 0.0013116776244714856, - 0.016846580430865288, - 0.013051341287791729, - -0.00017390510765835643, - -0.018809635192155838, - 0.027482770383358, - -0.011195361614227295, - 0.01464558020234108, - 0.03933248296380043, - -0.05648839473724365, - -0.002080540871247649, - 0.03788101300597191, - 0.04011770337820053, - -0.003105195937678218, - 0.03136128932237625, - -0.028981829062104225, - -0.013348774053156376, - 0.027197234332561493, - -0.0032628353219479322, - -0.04068877547979355, - -0.004999841563403606, - -0.003949904348701239, - -0.017191601917147636, - -0.03450217843055725, - -0.005365683697164059, - -0.03581088036298752, - 0.013420158065855503, - 0.013729487545788288, - 0.02631683461368084, - -0.05144393816590309, - -0.01588289998471737, - 0.026673752814531326, - -0.01919034868478775, - 0.03450217843055725, - 0.03626297786831856, - -0.04992108419537544, - 0.005392452701926231, - -0.015549775213003159, - -0.022140881046652794, - 0.024056347087025642, - -0.026673752814531326, - -0.0018292103195562959, - 0.014145893044769764, - 0.0057345000095665455, - -0.023996859788894653, - -0.005380555056035519, - -0.011641510762274265, - 0.056250449270009995, - -0.015204752795398235, - 0.00750719802454114, - -0.01660863496363163, - -0.01834564097225666, - 0.03669128194451332, - -0.028696294873952866, - 0.011326231993734837, - 0.014205379411578178, - 0.036881640553474426, - 0.0075012496672570705, - -0.06210391968488693, - -0.05510830506682396, - 0.03799998387694359, - -0.004812458995729685, - -0.011903251521289349, - 0.0013704205630347133, - 0.0018916710978373885, - 0.03742891550064087, - -0.006597054656594992, - -0.010231680236756802, - 0.02300938405096531, - 0.01974952220916748, - 0.005463836248964071, - -0.006900435779243708, - 0.012105505913496017, - -0.012527859769761562, - -0.01522854808717966, - 0.003319347510114312, - 0.002098386874422431, - 0.010082963854074478, - 0.013955536298453808, - -0.015478391200304031, - -0.04016529396176338, - -0.0013622412225231528, - -0.026554780080914497, - 0.014657476916909218, - 0.03247963637113571, - -0.02945772185921669, - 0.007358481641858816, - 0.02329491823911667, - -0.0014514710055664182, - -0.05020661652088165, - 0.02536504901945591, - 0.0037417018320411444, - 0.001668596756644547, - 0.005523323081433773, - -0.026911698281764984, - 0.0069242301397025585, - 0.011308385990560055, - -0.03321726992726326, - 0.027673127129673958, - -0.019975570961833, - -0.03483530133962631, - -0.00894677173346281, - -0.0470181405544281, - 0.0038785208016633987, - 0.004714306443929672, - -0.02193862572312355, - 0.032574813812971115, - 0.008417341858148575, - -0.03343142196536064, - -0.027411386370658875, - 0.015585466288030148, - 0.019285527989268303, - -0.003020427655428648, - 0.03590606153011322, - -0.008732620626688004, - 0.025555405765771866, - 0.01811959221959114, - 0.013063238933682442, - -0.020356284454464912, - 0.011046646162867546, - 0.0069242301397025585, - -0.021569810807704926, - 0.00976173672825098, - -0.002027002861723304, - -0.014681271277368069, - -0.016227921470999718, - 0.019178451970219612, - 0.019333116710186005, - -0.00950594525784254, - 0.0020344387739896774, - -0.0024939721915870905, - -0.020665615797042847, - 0.011242951266467571, - 0.00739417364820838, - 0.005312145687639713, - 0.010011580772697926, - -0.014847833663225174, - 0.016227921470999718, - -0.0023318713065236807, - 0.002584689063951373, - -0.01192109752446413, - -0.025674380362033844, - 0.05734499916434288, - 0.020677512511610985, - -0.008619596250355244, - 0.009024104103446007, - -0.0019184401025995612, - -0.01638258621096611, - 0.01237319502979517, - 0.01969003677368164, - -0.015407007187604904, - 0.00973794236779213, - -0.011956789530813694, - -0.0062698787078261375, - 0.009267998859286308, - 0.007334687281399965, - 0.013539130799472332, - 0.009642763994634151, - -0.03157544136047363, - -0.024437060579657555, - -0.042568549513816833, - 0.00836380384862423, - -0.02339009754359722, - 0.026126477867364883, - 0.03114713914692402, - -0.005002815742045641, - -0.015549775213003159, - -0.0024791003670543432, - -0.03264619782567024, - 0.023199740797281265, - 0.04080775007605553, - 0.015383212827146053, - 0.00709674134850502, - -0.006775513757020235, - -0.03854726254940033, - -0.0016046487726271152, - 0.0027229951228946447, - -0.02962428331375122, - 0.016751402989029884, - 0.0008499135728925467, - -0.008197241462767124, - -0.003744676010683179, - -0.003060581162571907, - -0.004083749372512102, - -0.004089697729796171, - -0.015752028673887253, - -0.022462107241153717, - 0.00045730257988907397, - -0.005380555056035519, - -0.00892297737300396, - -0.005181275308132172, - 0.003935032989829779, - 0.01728678122162819, - 0.01032091025263071, - -0.007043203338980675, - -0.01790544018149376, - -0.010683777742087841, - 0.01577582396566868, - -0.0032925785053521395, - -0.055013127624988556, - 0.01603756472468376, - 0.00017604290042072535, - 0.037452708929777145, - 0.034811507910490036, - -0.01441953144967556, - -0.0011570126516744494, - -0.029267365112900734, - -0.0337645448744297, - -0.024817774072289467, - 0.04085533693432808, - 0.012022224254906178, - -0.009862864390015602, - -0.002279820619150996, - -0.019785214215517044, - -0.017988722771406174, - -0.01947588473558426, - -0.008322163484990597, - -0.052205365151166916, - 0.007602376397699118, - -0.02772071585059166, - 0.032574813812971115, - 0.01952347345650196, - 0.0030754527542740107, - 0.013741385191679, - -0.013693795539438725, - -0.02738759107887745, - 0.03207512944936752, - 0.02205760031938553, - 0.0038309316150844097, - 0.028196608647704124, - 0.014241071417927742, - 0.06277017295360565, - -0.0033996542915701866, - -0.05491795018315315, - -0.001552597968839109, - 0.04756541550159454, - 0.006192546337842941, - 0.005663115996867418, - -0.014502812176942825, - 0.0160494614392519, - -0.030766425654292107, - 0.000676659110467881, - -0.026530984789133072, - 0.022010009735822678, - -0.002630791161209345, - 0.005460862070322037, - -0.04242578148841858, - -0.013598617166280746, - -0.039475250989198685, - 0.016787094995379448, - -0.009226358495652676, - -0.0030814013443887234, - -0.006531619466841221, - 0.024817774072289467, - 0.005065276753157377, - 0.022485902532935143, - -0.0016834683483466506, - -0.006418595090508461, - -0.03557293489575386, - 0.021926729008555412, - 0.020273003727197647, - -0.014966807328164577, - -0.01549028791487217, - 0.04052221402525902, - 0.035216014832258224, - -0.015252342447638512, - 0.01919034868478775, - 0.01355102751404047, - -0.032003745436668396, - 0.010398242622613907, - 6.706175190629438e-05, - -0.024092039093375206, - 0.03519222140312195, - 0.020725101232528687, - 0.006460235454142094, - -0.010767059400677681, - 0.003224169136956334, - 0.021676884964108467, - 0.008078268729150295, - 0.002221821341663599, - 0.0023779734037816525, - 0.04285408556461334, - -0.012325605377554893, - 0.034145258367061615, - -0.01952347345650196, - -0.03340762481093407, - -0.058154016733169556, - -0.0018857225077226758, - 0.015525979921221733, - 0.029648078605532646, - 0.029505310580134392, - -0.02003505825996399, - -0.03090919367969036, - 0.020736997947096825, - 0.02793486788868904, - 0.004425796680152416, - -0.004633999429643154, - -0.024484649300575256, - -0.0029594541992992163, - 0.005585783626884222, - 0.012587346136569977, - -0.022735746577382088, - 0.028077634051442146, - -0.0009361690026707947, - 0.001924388692714274, - 0.02121289074420929, - 0.006046804133802652, - 0.004042108543217182, - -0.025745762512087822, - 0.005386503878980875, - -0.011201310902833939, - 0.006017060950398445, - -0.014574196189641953, - -0.03145647048950195, - 0.013765179552137852, - 0.0008461956749670208, - -0.0031706311274319887, - 0.02941013313829899, - -0.011272694915533066, - 0.010969312861561775, - 0.022081393748521805, - -0.024841567501425743, - 0.03719097003340721, - 0.033812135457992554, - -0.009993734769523144, - -0.008435187861323357, - 0.021224787458777428, - -0.0018128515221178532, - 0.006858794949948788, - -0.02643580734729767, - -0.02486536279320717, - -0.006835000589489937, - 0.009006258100271225, - 0.0204157717525959, - 0.0022723849397152662, - -0.016513455659151077, - 0.01526423916220665, - 0.014597990550100803, - -0.018714457750320435, - 0.03864243999123573, - 0.010624291375279427, - 0.012539757415652275, - -0.013289287686347961, - -0.0030189405661076307, - -0.006365057080984116, - -0.00020560027041938156, - 0.014288661070168018, - -0.01377707626670599, - 0.006448338273912668, - -0.006882589776068926, - -0.030004998669028282, - 0.019368808716535568, - 0.020130235701799393, - 0.005764243192970753, - -0.017643699422478676, - -0.011005004867911339, - 0.014455222524702549, - -0.011207259260118008, - -0.03478771448135376, - 0.02441326528787613, - 0.026887904852628708, - 0.002010644180700183, - 0.006555413827300072, - 0.008322163484990597, - -0.009577328339219093, - -0.01043988298624754, - 0.0009012207156047225, - -0.01332497876137495, - -0.0018857225077226758, - 0.018000619485974312, - -0.010832494124770164, - -0.08475638180971146, - 0.03326486051082611, - 0.011302437633275986, - -0.0037773936055600643, - 0.016180332750082016, - 0.05196741968393326, - -0.01282529253512621, - -0.053157150745391846, - 0.04287787899374962, - -0.0004156620125286281, - 0.020891664549708366, - 0.016085153445601463, - 0.00847682822495699, - 0.00631151907145977, - -0.03426423296332359, - 0.009125230833888054, - -0.01239698939025402, - -0.05601250007748604, - 0.020796485245227814, - -0.023818399757146835, - 0.03921350836753845, - 0.009993734769523144, - 0.010237629525363445, - -0.02205760031938553, - 0.008798055350780487, - 0.0007235047523863614, - 0.018488408997654915, - 0.014931115321815014, - -0.0010350653901696205, - -0.030480889603495598, - 0.014157790690660477, - 0.011302437633275986, - -0.004955226555466652, - -0.016299305483698845, - -0.028529731556773186, - -0.014800244942307472, - 0.001120577217079699, - -0.024770185351371765, - -0.052824024111032486, - 0.01588289998471737, - -0.023663735017180443, - 0.02776830457150936, - 0.0012901137815788388, - -0.0008424777770414948, - -0.018595485016703606, - 0.03507325053215027, - 0.0004788664518855512, - -0.025602996349334717, - 0.03197994828224182, - -0.005130711942911148, - -0.040926720947027206, - -0.00280478922650218, - 0.04173573851585388, - -0.05258607864379883, - 0.028244197368621826, - 0.004925483372062445, - -0.03859484940767288, - -0.0018351589096710086, - -0.02503192611038685, - 0.01991608552634716, - -0.008732620626688004, - -0.0344545878469944, - -0.023021280765533447, - -0.008268625475466251, - 0.015728235244750977, - 0.01712021790444851, - 0.03036191686987877, - 0.01654914766550064, - 0.010850340127944946, - 0.012420783750712872, - -0.04444832354784012, - -0.06738632172346115, - 0.018393229693174362, - -0.010255474597215652, - -0.003917186986654997, - 0.024199113249778748, - -0.017417650669813156, - 0.012908573262393475, - 0.0044466168619692326, - 0.04611394554376602, - 0.01801251620054245, - -0.030671246349811554, - 0.005499528255313635, - -0.002813712228089571, - -0.02519848756492138, - 0.007840322330594063, - 0.005689885001629591, - 0.010576702654361725, - 0.0073168412782251835, - -0.037857215851545334, - -0.009517841972410679, - -0.01582341268658638, - 0.001772698131389916, - 0.03433561697602272, - -0.0035989340394735336, - -0.02300938405096531, - 0.010695675387978554, - -0.005029584746807814, - 0.005324042867869139, - -0.018155284225940704, - -0.005752346012741327, - 0.006430492270737886, - -0.016763299703598022, - -0.006864743772894144, - -0.00028553526499308646, - 0.014657476916909218, - -0.010820597410202026, - -0.017655597999691963, - 0.00995804276317358, - -0.014574196189641953, - 0.01571633666753769, - 0.025103308260440826, - 0.006793359760195017, - -0.020855972543358803, - 0.009928299114108086, - 0.02131996676325798, - 0.001087116077542305, - -0.030932987108826637, - -0.05134876072406769, - -0.026911698281764984, - 0.006228237878531218, - 0.0035216016694903374, - -0.006531619466841221, - -0.01332497876137495, - -0.009571379981935024, - -0.0025787404738366604, - -0.017144013196229935, - 0.04639948159456253, - 0.007977141998708248, - 0.007174073718488216, - -0.005544143263250589, - -0.046090152114629745, - 0.02783968858420849, - -0.013872255571186543, - -0.058725085109472275, - 0.028577322140336037, - 0.01433624979108572, - -0.01386035792529583, - 0.0023616147227585316, - -0.03002879209816456, - 0.032455842941999435, - -0.042568549513816833, - -0.0214984267950058, - -0.0383806973695755, - 0.009101436473429203, - -0.015811515972018242, - -0.05829678475856781, - 0.03871382400393486, - 0.03226548433303833, - 0.001148833311162889, - 0.02879147231578827, - -0.016763299703598022, - 0.003949904348701239, - 0.023925475776195526, - 0.01980900950729847, - -0.023532865568995476, - 0.01858358643949032, - 0.001287883031181991, - -0.01615653745830059, - 0.025484023615717888, - -0.0051901983097195625, - -0.015061985701322556, - -0.0014075996587052941, - -0.004470411688089371, - 0.029529105871915817, - -0.0014016509521752596, - 0.0012834215303882957, - 0.010790853761136532, - -0.02496054209768772, - -0.0019615679048001766, - -0.011980583891272545, - -0.010475574992597103, - -0.03233686834573746, - -0.027863483875989914, - 0.007905757986009121, - -0.007899808697402477, - 0.03281276300549507, - -0.005844550207257271, - 0.011576076038181782, - -0.014015022665262222, - 0.0047916388139128685, - -0.018809635192155838, - 0.011730740778148174, - -0.007043203338980675, - -0.0012098070001229644, - -0.04223542660474777, - -0.03585847094655037, - -0.02070130780339241, - -0.00347103807143867, - 0.0008224010816775262, - 0.06605382263660431, - 0.02406824380159378, - 0.04111707955598831, - 0.023747015744447708, - 0.00035413066507317126, - 0.01032091025263071, - 0.0029906844720244408, - 0.008875387720763683, - 0.0035216016694903374, - 3.6156645364826545e-05, - 0.019333116710186005, - 0.003120067762210965, - -0.00035152811324223876, - 0.01593048870563507, - 0.018750149756669998, - -0.023877887055277824, - 0.01408640667796135, - 0.020689409226179123, - 0.02941013313829899, - 0.02626924403011799, - 0.032907940447330475, - 0.009315588511526585, - -0.02945772185921669, - -0.003592985449358821, - -0.01514526642858982, - -0.005419221241027117, - 0.036500923335552216, - 0.03485909849405289, - -0.02900562435388565, - 0.014943012036383152, - -0.02053474448621273, - 0.016572942957282066, - -0.023497173562645912, - -0.009583277627825737, - -0.021415144205093384, - 0.022093292325735092, - 0.014716963283717632, - -0.012765806168317795, - -0.003649497637525201, - -0.0422116294503212, - -0.03271758183836937, - -0.005930805578827858, - 0.013027546927332878, - 0.012920470908284187, - 0.03609641641378403, - -0.023711323738098145, - -0.010600497014820576, - 0.008036628365516663, - 0.003488884074613452, - -0.03355039283633232, - 0.034145258367061615, - -0.012742011807858944, - 0.010427986271679401, - 0.01813148893415928, - 0.005368657875806093, - 0.022307442501187325, - -0.040308061987161636, - -0.03878520801663399, - 0.03269378840923309 - ], - "how_to_smelt_ores": [ - 0.02409088797867298, - 0.01775694079697132, - 0.008488583378493786, - -0.008030295372009277, - 0.00027894845698028803, - 0.0027634066063910723, - 0.012749975547194481, - -0.040219880640506744, - 0.02220301516354084, - -0.0016561630181968212, - 0.07370908558368683, - -0.0469231940805912, - -0.013105661608278751, - -0.023023828864097595, - 0.04158790409564972, - 0.0758432000875473, - -0.01101942639797926, - 0.03182021901011467, - -0.033106159418821335, - 0.011422992683947086, - 0.04987812414765358, - 0.01035593543201685, - 0.020752910524606705, - 0.02086235210299492, - -0.0265670083463192, - -0.0017057538498193026, - -0.0002479541872162372, - 0.017551736906170845, - -0.041396379470825195, - -0.03329768404364586, - 0.07288827002048492, - -0.014336882159113884, - -0.04290120676159859, - 0.0031892037950456142, - -0.021984132006764412, - 0.01164871733635664, - 0.03502139076590538, - 0.010998905636370182, - 0.030151229351758957, - -0.03890657797455788, - 0.011484554037451744, - -0.022230375558137894, - 0.0006498110014945269, - -0.016990847885608673, - -0.010951025411486626, - 0.05433787778019905, - -0.025540992617607117, - 0.001636497676372528, - -0.006453649140894413, - 0.042572878301143646, - 0.01274313498288393, - 0.010239653289318085, - -0.03978211060166359, - -0.04790816828608513, - 0.00455209705978632, - -0.015841707587242126, - -0.03343448415398598, - 0.013700751587748528, - -0.0007160746026784182, - 0.0075241271406412125, - -0.031081484630703926, - -0.004890682641416788, - 0.03934434428811073, - 0.06068550422787666, - 0.003919386304914951, - -0.008344940841197968, - -0.04588349536061287, - -0.004911202937364578, - 0.042572878301143646, - 0.029275694862008095, - -0.018933439627289772, - 0.018085265532135963, - 0.024296090006828308, - -0.024980101734399796, - -0.010930504649877548, - -0.02563675306737423, - 0.0019528530538082123, - 0.017551736906170845, - 0.0056123146787285805, - -0.0074899266473948956, - -0.0969654768705368, - -0.0414511002600193, - 0.020451946184039116, - 0.003998047672212124, - -0.023488957434892654, - 0.002517162589356303, - -0.07086359709501266, - 0.004056188743561506, - -0.046704310923814774, - -0.09663715213537216, - -0.005424211733043194, - 0.021642126142978668, - 0.020205700770020485, - -0.0005416516796685755, - 0.05931748077273369, - -0.029494578018784523, - 0.03734702989459038, - -0.012770496308803558, - -0.03135509043931961, - 0.05636255443096161, - 0.044679634273052216, - -0.004582877270877361, - -0.022476619109511375, - 0.004914623219519854, - 0.022627102211117744, - 0.010191772133111954, - -0.018782958388328552, - 0.026156602427363396, - -0.0812605768442154, - -0.0398641936480999, - -0.0688389241695404, - -0.02908417209982872, - 0.014295841567218304, - 0.0438041016459465, - -0.006056922487914562, - 0.03543179854750633, - -0.01320826355367899, - 0.03704606741666794, - 0.048428017646074295, - -0.0007220596889965236, - -0.012154885567724705, - 0.019029201939702034, - 0.011046786792576313, - -0.03805840387940407, - -0.03409113734960556, - -0.04697791486978531, - 0.0023119591642171144, - -0.02837279997766018, - 0.015075614675879478, - -0.016525719314813614, - 0.019056562334299088, - -0.015732266008853912, - 0.08350413292646408, - -0.0018143407069146633, - -0.018618794158101082, - 0.014131679199635983, - -0.01140931248664856, - -0.058989156037569046, - -0.017196049913764, - 0.0398641936480999, - -0.024802260100841522, - -0.028673764318227768, - -0.010951025411486626, - 0.009562481194734573, - -0.014829370193183422, - 0.0033516567200422287, - -0.0414237417280674, - 0.008844269439578056, - 0.03721022978425026, - 0.0265806894749403, - -0.0035705403424799442, - 0.014487365260720253, - -0.04363993927836418, - -0.0004762430617120117, - 0.04284648597240448, - -0.020192021504044533, - -0.017948463559150696, - 0.07622624933719635, - 0.0075788479298353195, - -0.023516317829489708, - -0.025992440059781075, - 0.006402348168194294, - -0.02242189832031727, - -0.018947120755910873, - -0.02510322444140911, - -0.023119591176509857, - -0.03953586891293526, - -0.014555766247212887, - -0.045774053782224655, - 0.07633569091558456, - 0.03187493979930878, - 0.026389166712760925, - -0.014432643540203571, - 0.011279351077973843, - 0.0032063042744994164, - -0.0006139003671705723, - -0.01797582395374775, - -0.011224629357457161, - -0.0010815933346748352, - 0.023584717884659767, - 0.011559795588254929, - -0.017948463559150696, - -0.045308925211429596, - -0.037483833730220795, - -0.0021426661405712366, - -0.005109566263854504, - -0.07097303867340088, - -0.01986369490623474, - -0.01790742203593254, - 0.010335414670407772, - -0.009966048412024975, - 0.021765246987342834, - -0.01751069538295269, - 0.03414585813879967, - 0.020055219531059265, - -0.02470649778842926, - 0.010780022479593754, - -0.03094468265771866, - 0.028263358399271965, - 0.022490300238132477, - -0.009993408806622028, - 0.0036423616111278534, - 0.024501293897628784, - -0.01704556867480278, - 0.011258830316364765, - -0.013167222961783409, - -0.019371207803487778, - 0.052723612636327744, - 0.029850265011191368, - -0.0024043007288128138, - -0.0254041887819767, - 0.013981196098029613, - 0.031382448971271515, - 0.023338474333286285, - -0.005971421021968126, - -0.0037620635703206062, - -0.035595960915088654, - 0.07518655061721802, - -0.007380484603345394, - 0.018112625926733017, - -0.013269823975861073, - 0.007428365759551525, - 0.04073973000049591, - -0.022380858659744263, - 0.015622824430465698, - 0.06128743663430214, - 0.04136902093887329, - -0.007585688028484583, - 0.05636255443096161, - -0.006439968943595886, - -0.03863297402858734, - -0.030671078711748123, - 0.027319421991705894, - -0.04188886657357216, - 0.011710277758538723, - -0.013769152574241161, - -0.029439857229590416, - 0.025349467992782593, - -0.000850739364977926, - 0.012592652812600136, - -0.01547234132885933, - -0.015116655267775059, - -0.035541240125894547, - -0.03997363522648811, - -0.011867600493133068, - 0.003710762830451131, - -0.027305740863084793, - -0.041943587362766266, - 0.03414585813879967, - 0.061725202947854996, - 0.011231469921767712, - -0.05723808705806732, - 0.024118248373270035, - -0.010697940364480019, - 0.00472651980817318, - -0.04705999419093132, - -0.020192021504044533, - -0.023023828864097595, - 0.017688538879156113, - -0.023242712020874023, - -0.05431051924824715, - 0.05975525081157684, - -0.07496766746044159, - 0.005205328110605478, - -0.03540444001555443, - 0.014665207825601101, - 0.034118495881557465, - 0.00878954865038395, - 0.021929411217570305, - -0.047880809754133224, - -0.029822904616594315, - 0.01435056235641241, - 0.03644413501024246, - -0.04426922649145126, - -0.043038006871938705, - -0.03321560099720955, - 0.024610735476017, - 0.05400955304503441, - -0.010013929568231106, - 0.007127400487661362, - -0.015745945274829865, - -0.010102850385010242, - 0.042791761457920074, - 0.0351855531334877, - 0.024802260100841522, - 0.02524002641439438, - 0.0010542328236624599, - 0.0010567979188635945, - 0.0005694396095350385, - -0.027004776522517204, - -0.004483695607632399, - 0.03444682061672211, - -0.006227925419807434, - 0.013693911023437977, - 0.03047955594956875, - 0.015773305669426918, - -0.01352290902286768, - 0.006751194130629301, - -0.011703438125550747, - -0.04941299557685852, - 0.006214245222508907, - 0.05849666893482208, - 0.011614516377449036, - 0.044132426381111145, - -0.0226681437343359, - -0.04322953149676323, - -0.0058004180900752544, - -0.044214505702257156, - -0.009637722745537758, - 0.03417321667075157, - 0.06468013674020767, - -0.024843299761414528, - 0.02446025423705578, - -0.022941747680306435, - 0.005400271154940128, - 0.024296090006828308, - 0.02221669629216194, - -0.0030489815399050713, - -0.03997363522648811, - -0.015677545219659805, - 0.04659486934542656, - -0.022558702155947685, - 0.026088200509548187, - 0.013974356465041637, - 0.01164187677204609, - -0.03291463479399681, - 0.006002201233059168, - -0.01262001320719719, - 0.0004101931699551642, - 0.006245025433599949, - -0.04424186795949936, - -0.022230375558137894, - 0.01352290902286768, - -0.05201223865151405, - -0.027305740863084793, - 0.0383320078253746, - 0.019891055300831795, - 0.03165605664253235, - 0.02023306116461754, - 0.0484553799033165, - -0.0035773804411292076, - -0.010273853316903114, - -0.04407770559191704, - 0.018181027844548225, - -0.006310006603598595, - 0.005519973114132881, - -0.018399911001324654, - 0.02415928803384304, - -0.01301673986017704, - 0.04511740431189537, - 0.037319671362638474, - 0.037401750683784485, - -0.005078786052763462, - -0.014172719791531563, - -0.021067555993795395, - -0.013071460649371147, - 0.021751567721366882, - -0.005372910760343075, - -0.03939906507730484, - -0.013618670403957367, - -0.029056811705231667, - 0.03351656720042229, - 0.042955927550792694, - 0.005567854270339012, - -0.03526763617992401, - 0.04935827478766441, - 0.009658243507146835, - -0.014159039594233036, - -0.041943587362766266, - 0.03548651933670044, - 0.05379066988825798, - 0.09548801183700562, - -0.025062182918190956, - 0.009015272371470928, - -0.051328226923942566, - 0.022572381421923637, - 0.008577505126595497, - 0.04027460142970085, - 0.033899612724781036, - 0.029521938413381577, - 0.025212666019797325, - -0.006251865532249212, - 0.02752462588250637, - 0.0007340299198403955, - 0.034829869866371155, - 0.010068650357425213, - 0.021313799545168877, - 0.00941883958876133, - -0.06736145913600922, - -0.04528156667947769, - 0.05346234515309334, - -0.03502139076590538, - 0.034665707498788834, - 0.012264327146112919, - 0.0034491282422095537, - -0.008228658698499203, - 0.004340053535997868, - 0.040219880640506744, - 0.02556835301220417, - 0.033735450357198715, - 0.06933141499757767, - 0.004723099991679192, - -0.027018455788493156, - 0.013673391193151474, - -0.02439185231924057, - -0.0073326039128005505, - -0.020123619586229324, - 0.040520843118429184, - -0.038578253239393234, - 0.023078549653291702, - 0.048811063170433044, - 0.0164162777364254, - 0.05422843620181084, - 0.0033140359446406364, - 0.020616108551621437, - -0.043038006871938705, - 0.019124962389469147, - 0.014063277281820774, - -0.018741916865110397, - -0.011142548173666, - -0.009138394147157669, - -0.017196049913764, - 0.039918914437294006, - -0.042490798979997635, - -0.003076341934502125, - 0.012927818112075329, - 0.018796637654304504, - -0.06347627192735672, - 0.0312730073928833, - -0.09056313335895538, - -0.022531339898705482, - 0.029494578018784523, - 0.0027907672338187695, - 0.04604765772819519, - -0.016758283600211143, - -0.019754253327846527, - -0.024884341284632683, - -0.043120089918375015, - -0.004025408066809177, - -0.007305243518203497, - -0.012257487513124943, - -0.024487614631652832, - 0.02963137999176979, - 0.031847577542066574, - -0.036717738956213, - -0.02704581804573536, - -0.04544572904706001, - -0.012011243030428886, - 0.026156602427363396, - -0.04470699653029442, - 0.029521938413381577, - -0.0414237417280674, - -0.012284847907721996, - 0.0034747787285596132, - 0.030506916344165802, - 0.010027609765529633, - 0.02321535162627697, - -0.021245399489998817, - 0.0036970824003219604, - 0.01586906798183918, - 0.009651402942836285, - 0.03026067093014717, - -0.004890682641416788, - -0.015828028321266174, - 0.018249427899718285, - 0.028591683134436607, - 0.014829370193183422, - 0.03956322744488716, - 0.020287783816456795, - -0.01551338192075491, - -0.0032798354513943195, - -0.050999902188777924, - -0.002096495358273387, - -0.011046786792576313, - 0.017100289463996887, - -0.012688414193689823, - -0.024022486060857773, - 0.03288727626204491, - -0.018878718838095665, - -0.00993184745311737, - 0.010547458194196224, - 0.03157397359609604, - 0.029439857229590416, - 0.006214245222508907, - 0.009521440602838993, - 0.07288827002048492, - -0.01813998632133007, - -0.01011653058230877, - -0.06577455252408981, - -0.01414535939693451, - -0.009165754541754723, - -0.013721272349357605, - 0.018085265532135963, - -0.0164162777364254, - 0.01625211536884308, - -0.044050343334674835, - 0.025609392672777176, - -0.04098597168922424, - 0.00703847873955965, - 0.031300369650125504, - 0.03296935558319092, - -0.0336260087788105, - -0.01227116771042347, - 0.046895831823349, - -0.04087653011083603, - -0.02979554422199726, - 0.017004527151584625, - 0.001764749875292182, - 0.02618396282196045, - 0.0009088803781196475, - 0.030862601473927498, - -0.014760969206690788, - 0.008297060616314411, - 0.019521689042448997, - -0.01658044010400772, - -0.020438265055418015, - 0.020588748157024384, - 0.03110884502530098, - -0.014117999002337456, - 0.03149189054965973, - -0.013160382397472858, - 0.007790891453623772, - -0.01689508557319641, - -0.001117503852583468, - 0.02134115993976593, - -0.02024674229323864, - -0.015321859158575535, - 0.0007041043718345463, - 0.007907173596322536, - 0.00535581074655056, - 0.00794137455523014, - -0.025828275829553604, - 0.009829246439039707, - -0.0175790973007679, - -0.03507611155509949, - 0.0406302884221077, - -0.03556860238313675, - -0.013864913955330849, - -0.018345190212130547, - -0.016470998525619507, - -0.011792358942329884, - 0.012838897295296192, - -0.021053876727819443, - -0.018194707110524178, - -0.014172719791531563, - -0.035459160804748535, - 0.030862601473927498, - 0.02102651447057724, - -0.029357776045799255, - -0.010882623493671417, - -0.00829022005200386, - -0.04596557840704918, - -0.01978161372244358, - -0.0281539149582386, - 0.013413466513156891, - -0.00860486552119255, - -0.01051325723528862, - -0.04410506412386894, - 0.0023273492697626352, - 0.016279475763440132, - 0.006050082389265299, - -0.02565043419599533, - -0.009911327622830868, - -0.026375485584139824, - -0.005879079457372427, - 0.013714431785047054, - 0.004134850110858679, - 0.008338101208209991, - -0.01435056235641241, - 0.016224754974246025, - -0.020670829340815544, - -0.01759277656674385, - 0.01673092320561409, - 0.00699743814766407, - -0.005304509773850441, - 0.002235007705166936, - 0.029987066984176636, - 0.0012278007343411446, - -0.005270309280604124, - -0.01238744892179966, - 0.00410406943410635, - -0.046321261674165726, - 0.0012235257308930159, - 0.03425529971718788, - -0.05037061125040054, - -0.0008195313275791705, - -0.023707840591669083, - 0.014925132505595684, - -0.01137511245906353, - -0.033653367310762405, - 0.0029515097849071026, - -0.011156228370964527, - 0.00036060233833268285, - 0.0018878718838095665, - 0.013215103186666965, - 0.0075788479298353195, - -0.033735450357198715, - 0.03682718425989151, - -0.03614317253232002, - 0.047798726707696915, - -0.0014501045225188136, - 0.0019545629620552063, - -0.020041538402438164, - 0.010998905636370182, - -0.023092230781912804, - 0.04016515985131264, - 0.00212898594327271, - -0.0007062419317662716, - 0.004398194141685963, - 0.019371207803487778, - -0.029521938413381577, - 0.013666550628840923, - -0.014336882159113884, - -0.0031960441265255213, - -0.012059124186635017, - -0.001817760756239295, - 0.028181277215480804, - 0.024952741339802742, - -0.020301463082432747, - -0.019576411694288254, - 0.0021854168735444546, - 0.031163565814495087, - 0.0014697698643431067, - 0.013447667472064495, - 0.007442045956850052, - 0.021122276782989502, - 0.01673092320561409, - 0.029056811705231667, - -0.05286041274666786, - 5.616376074613072e-05, - 0.004825701471418142, - -0.008851110003888607, - 0.008652746677398682, - 0.015732266008853912, - -0.025992440059781075, - -0.018249427899718285, - 0.01767485961318016, - -0.015841707587242126, - 0.01688140444457531, - 0.013926475308835506, - -0.010458536446094513, - -0.026238683611154556, - -0.006693053059279919, - -0.0066725327633321285, - -0.0031225127167999744, - 0.016457317396998405, - 0.016060590744018555, - 0.02242189832031727, - -0.0076814498752355576, - -0.056964483112096786, - -0.00601930171251297, - -0.019439607858657837, - -0.011717118322849274, - -0.01519873645156622, - 0.018878718838095665, - 0.015061934478580952, - -0.03644413501024246, - -0.04571933299303055, - -0.013030420057475567, - 0.020602427423000336, - -0.016087951138615608, - -0.0011859050719067454, - 0.005752537399530411, - 0.025472590699791908, - 0.018947120755910873, - 0.0020554547663778067, - -0.00197508349083364, - -0.005540493875741959, - 0.058824993669986725, - -0.006357887294143438, - -0.008365461602807045, - -0.0038578251842409372, - -0.02437817119061947, - -0.01868719607591629, - -0.030123868957161903, - -0.00019761521252803504, - 0.00363552151247859, - -0.04820913448929787, - -0.01231220830231905, - 0.0285369623452425, - -0.021477963775396347, - 0.009925007820129395, - -0.020342504605650902, - 0.00568413594737649, - 0.0001951570447999984, - -0.03258631005883217, - 0.027237340807914734, - 0.000574569683521986, - 0.012866257689893246, - 0.014172719791531563, - -0.005947480443865061, - -0.030862601473927498, - 0.021861009299755096, - 0.0017527795862406492, - -0.007202641572803259, - -0.012469531036913395, - 0.031929660588502884, - -0.040000997483730316, - -0.019261766225099564, - -0.06774450838565826, - -0.00040506309596821666, - -0.014364242553710938, - 0.05173863470554352, - 0.003974107094109058, - -0.028181277215480804, - -0.008427022024989128, - -0.029439857229590416, - -0.0059577408246695995, - 0.0195490512996912, - 0.021778928115963936, - -0.014377922751009464, - 0.005092466250061989, - -0.049604520201683044, - 0.0019648231100291014, - -0.023105910047888756, - 0.008112377487123013, - -0.024296090006828308, - -0.00922731589525938, - 0.022148294374346733, - 0.009487240575253963, - 0.009439359419047832, - 0.03978211060166359, - 0.005892759654670954, - -0.017004527151584625, - -0.012031763792037964, - 0.037401750683784485, - 0.006929037161171436, - 0.037018705159425735, - -0.0016219624085351825, - -0.01043801661580801, - -0.024282410740852356, - 0.017483334988355637, - 0.008468063548207283, - -0.0011183589231222868, - 0.0025564932730048895, - -0.014295841567218304, - -0.040602926164865494, - 0.01782534085214138, - 0.015308178961277008, - -0.005321609787642956, - -0.005923540331423283, - 0.012325888499617577, - -0.005677295848727226, - -0.02588299661874771, - 0.05433787778019905, - -0.004093809053301811, - -0.03316088020801544, - 0.04911202937364578, - -0.012517411261796951, - 0.03026067093014717, - -0.020834991708397865, - 0.01216172520071268, - -0.04238135740160942, - 0.02220301516354084, - 0.020369865000247955, - -0.04117749631404877, - 0.03299671784043312, - 0.039672669023275375, - -0.046950552612543106, - 0.031136205419898033, - -0.03305143862962723, - -0.01580066792666912, - -0.003209724323824048, - -0.0016288025071844459, - -0.030123868957161903, - -0.001829730928875506, - 0.022695504128932953, - 0.0053831711411476135, - -0.013611829839646816, - 0.04246343672275543, - 0.022380858659744263, - -0.037866879254579544, - 0.007619888987392187, - 0.011265669949352741, - 0.014159039594233036, - 0.0031327728647738695, - -0.031218288466334343, - 0.006932456977665424, - 0.0016193973133340478, - -0.037237588316202164, - 0.0026231843512505293, - 0.015650184825062752, - 0.004004887770861387, - 0.03901601955294609, - -0.003411507699638605, - 0.0036663019564002752, - 0.0048120212741196156, - 0.029521938413381577, - 0.0041827308014035225, - -0.03056163713335991, - -0.01783902198076248, - -0.02008257992565632, - -0.012264327146112919, - 0.015034574083983898, - -0.027565665543079376, - -0.03729230910539627, - 0.012469531036913395, - -0.08853845298290253, - -0.026019800454378128, - -0.0017596196848899126, - -0.019959457218647003, - -0.042873844504356384, - 0.01618371345102787, - -0.0059953611344099045, - 0.009220476262271404, - -0.008399661630392075, - -0.04801760986447334, - 0.01293465867638588, - -0.03578748553991318, - -0.012298528105020523, - -0.022326137870550156, - 0.017784301191568375, - 0.011758158914744854, - 0.00976768508553505, - 0.043038006871938705, - 0.01079370267689228, - 0.0022486879024654627, - -0.014104318805038929, - -0.01689508557319641, - -0.0046170782297849655, - 0.00848174374550581, - -0.04782608896493912, - -0.02954929880797863, - -0.01106046698987484, - -0.006121903657913208, - 0.004032248165458441, - 0.013830713927745819, - 0.013796512968838215, - 0.012031763792037964, - 0.04799025133252144, - -0.013495547696948051, - -0.04473435506224632, - 0.015431300736963749, - 0.019754253327846527, - 0.012565292418003082, - 0.0390981025993824, - 0.013003059662878513, - 0.01435056235641241, - 0.02697741612792015, - 0.020807631313800812, - 0.0009935267735272646, - 0.030616357922554016, - -0.006987178232520819, - -0.019124962389469147, - 0.032859914004802704, - -0.0035431799478828907, - 0.030041787773370743, - 0.022175654768943787, - -0.018865039572119713, - -0.022613422945141792, - -0.01074582152068615, - 0.0015082454774528742, - 0.04120485484600067, - -0.02250397950410843, - 0.0383046455681324, - -0.04035668075084686, - -0.013427146710455418, - 0.0018895819084718823, - -0.0012799566611647606, - 0.03846881166100502, - -0.02258606255054474, - 0.03422793745994568, - -0.006887996569275856, - -0.012401130050420761, - -0.007722490467131138, - -0.0030643718782812357, - 0.009733484126627445, - 0.03707342594861984, - -0.013050940819084644, - -0.0020554547663778067, - 0.004295592661947012, - 0.004107489250600338, - -0.00024154158018063754, - 0.007175281178206205, - -0.0140769574791193, - 0.020807631313800812, - -0.02548626996576786, - -0.0035021391231566668, - 0.03433737903833389, - 0.033270321786403656, - 0.01907024160027504, - -0.0065665110014379025, - -0.028345439583063126, - 0.008769027888774872, - 0.014323201961815357, - -0.01227116771042347, - 0.01414535939693451, - 0.005838038865476847, - 0.0030797619838267565, - -0.0065494105219841, - 0.0004148957668803632, - -0.0010456827003508806, - 0.03948114812374115, - -0.0422171950340271, - -0.03551388159394264, - 0.028947370126843452, - 0.011224629357457161, - 0.0003582510689739138, - 0.016539400443434715, - 0.036854542791843414, - -0.009740324690937996, - -0.0032558951061218977, - 0.023119591176509857, - 0.008844269439578056, - -0.046540144830942154, - -0.012715774588286877, - -0.011197268962860107, - 0.029521938413381577, - 0.0013765732292085886, - 0.03400905430316925, - 0.044132426381111145, - -0.030972043052315712, - 0.0009576161974109709, - 0.04856482148170471, - -0.024980101734399796, - -0.017086608335375786, - 0.015923788771033287, - 0.02212093397974968, - 0.01563650369644165, - 0.011792358942329884, - -0.006504950113594532, - -0.0025889838580042124, - -0.009124713949859142, - 0.016689881682395935, - 0.03540444001555443, - -0.03160133585333824, - -0.002243557944893837, - 0.022093573585152626, - 0.07288827002048492, - -0.02258606255054474, - 0.00829022005200386, - -0.002009283984079957, - -0.02377624250948429, - 0.020369865000247955, - -0.0476892851293087, - -0.01789374276995659, - -0.02023306116461754, - -0.00680249510332942, - -0.02409088797867298, - -0.04626654088497162, - -0.02392672374844551, - -0.01270209439098835, - 0.01767485961318016, - -0.00917943473905325, - -0.002477831905707717, - -0.0031977540347725153, - 0.0036936623509973288, - 0.024829620495438576, - -0.0036868222523480654, - 0.04626654088497162, - 0.030972043052315712, - -0.07206745445728302, - 0.01649835892021656, - -0.010800542309880257, - -0.009733484126627445, - 0.0033003557473421097, - 0.03329768404364586, - 0.006221085321158171, - 0.05576062202453613, - -0.013782832771539688, - -0.01570490561425686, - -0.00984976626932621, - 0.02454233542084694, - 0.0042887525632977486, - -0.004798341076821089, - 0.04251815751194954, - -0.03901601955294609, - -0.003974107094109058, - -0.02104019559919834, - 0.010951025411486626, - 0.0028865288477391005, - 0.023981444537639618, - -0.02744254469871521, - -0.017072929069399834, - -0.017880061641335487, - -0.0461023785173893, - 0.07004278153181076, - -0.0025667534209787846, - -0.013516068458557129, - -0.013427146710455418, - 0.00797557458281517, - 0.043886180967092514, - -0.035595960915088654, - -0.003871505381539464, - 0.0367451012134552, - 0.015048254281282425, - 0.0016347876517102122, - 0.02250397950410843, - 0.012216446921229362, - 0.014678888022899628, - 0.011286190710961819, - -0.024761218577623367, - 0.018550394102931023, - 0.042107753455638885, - 0.013392946682870388, - 0.017962142825126648, - -0.0020588748157024384, - -0.012086484581232071, - 0.012640533968806267, - -0.010834743268787861, - -0.012284847907721996, - 0.013427146710455418, - 0.0074352058582007885, - -0.01625211536884308, - -0.0006476734415628016, - -0.037647996097803116, - 0.00013765732001047581, - -7.2075044954544865e-06, - -0.029439857229590416, - 0.036471497267484665, - -0.0028540382627397776, - -0.03236742690205574, - 0.009754004888236523, - -0.06462541222572327, - 0.004962503910064697, - -0.03573276475071907, - -0.002052034717053175, - -0.04965924099087715, - -0.03250423073768616, - -0.00035290722735226154, - -0.018495673313736916, - 0.00020082152332179248, - 0.049522437155246735, - -0.01742861419916153, - 0.0004582877445500344, - -0.02400880493223667, - 0.013659710995852947, - -0.008153418079018593, - 0.00820129830390215, - 0.02095811441540718, - -0.0036731420550495386, - 0.024583375081419945, - -0.0049522435292601585, - 0.03841409087181091, - 0.02001417800784111, - 0.014364242553710938, - -0.006559670902788639, - -0.00891951099038124, - -0.005147187039256096, - -0.011464034207165241, - -0.021245399489998817, - -0.007989254780113697, - 0.01355710905045271, - 0.04071236774325371, - 0.041642624884843826, - -0.0015612563583999872, - 0.0035158193204551935, - -0.008960551582276821, - -0.02727838046848774, - 0.0006848665652796626, - -0.027018455788493156, - 0.04363993927836418, - -0.0034320279955863953, - 0.022298777475953102, - 0.02446025423705578, - -0.014692568220198154, - -0.024063527584075928, - -0.010267013683915138, - -0.012537932023406029, - 0.005225848406553268, - 0.030288031324744225, - -0.03855089098215103, - -0.007209481671452522, - -0.013345065526664257, - 0.01051325723528862, - 0.021847330033779144, - -0.034583624452352524, - 0.000739159993827343, - -0.03682718425989151, - -0.01790742203593254, - -0.012182245962321758, - -0.029412496834993362, - -0.00914523471146822, - -0.011826559901237488, - -0.013652870431542397, - 0.010800542309880257, - -0.040301959961652756, - -0.02875584550201893, - 0.004473435692489147, - 0.01938488706946373, - 0.016457317396998405, - -0.02041090466082096, - -0.03332504257559776, - -0.021464282646775246, - -0.008577505126595497, - -0.012319047935307026, - -0.007318923715502024, - 0.020616108551621437, - -0.013304024934768677, - 0.006132163573056459, - -0.03149189054965973, - -0.022613422945141792, - 0.004890682641416788, - -0.037647996097803116, - -0.0018895819084718823, - -0.011443513445556164, - 0.013823873363435268, - -0.040767088532447815, - -0.00631342688575387, - 0.01797582395374775, - -0.011970202438533306, - 0.0038441449869424105, - -0.02502114325761795, - -0.004859901964664459, - -0.021395880728960037, - 0.019097601994872093, - 0.0034610985312610865, - 0.033352404832839966, - 0.010198612697422504, - 0.023748882114887238, - 0.016457317396998405, - -0.00068614911288023, - 0.0144600048661232, - 0.036389414221048355, - -0.029494578018784523, - 0.0034610985312610865, - 0.012319047935307026, - 0.018317829817533493, - 0.00629290658980608, - -0.011559795588254929, - -0.005899599753320217, - -0.04426922649145126, - 0.0026146341115236282, - -0.02674485184252262, - -0.0195490512996912, - 0.0016459028702229261, - 0.010137051343917847, - -0.009425679221749306, - 0.002869428601115942, - -0.00648784963414073, - -0.021122276782989502, - -0.046868473291397095, - 0.004555516876280308, - -0.06074022501707077, - -0.005899599753320217, - -0.011901801452040672, - 0.026717491447925568, - 0.021915730088949203, - -0.021286439150571823, - -0.014733608812093735, - -0.014884091913700104, - -0.00021460863354150206, - 0.0023957504890859127, - -0.03354392573237419, - 0.0035226596519351006, - 0.004558937158435583, - 0.011655556969344616, - 0.0726693868637085, - 0.0035465999972075224, - -0.048592180013656616, - 0.002966900123283267, - 0.04974132031202316, - -0.00013487852993421257, - 0.020424585789442062, - 0.014733608812093735, - -0.0027616966981440783, - -0.03324296325445175, - 0.010595339350402355, - -0.005242948420345783, - 0.004921463318169117, - 0.004299012478441, - 0.002253818092867732, - 0.0024607316590845585, - -0.03376280888915062, - -0.01789374276995659, - 0.006563090719282627, - -0.012298528105020523, - 0.04963187873363495, - 0.027702467516064644, - -0.001957983011379838, - 0.01898816041648388, - 0.021532684564590454, - -0.016156353056430817, - 0.00617320416495204, - -0.02525370754301548, - 0.016457317396998405, - 0.0453636460006237, - 0.02102651447057724, - -0.025677794590592384, - 0.03242214769124985, - 0.017538055777549744, - -0.014747289009392262, - 0.004983024206012487, - 0.022449258714914322, - -0.0035568601451814175, - 0.01875559613108635, - -0.004517896566540003, - -0.011970202438533306, - -0.01216172520071268, - 0.016156353056430817, - 0.0057149166241288185, - -0.008440702222287655, - 0.03160133585333824, - 0.014788329601287842, - -0.012695254758000374, - 0.01551338192075491, - -0.02047930657863617, - 0.04714207723736763, - -0.0265670083463192, - -0.03770271688699722, - -0.016539400443434715, - -0.003827044740319252, - -0.02414560876786709, - -0.006347627379000187, - 0.019808974117040634, - -0.00729156332090497, - 0.0254041887819767, - -0.008139737881720066, - -0.04175206646323204, - 0.03789424151182175, - -0.0003355931839905679, - 0.0032576050143688917, - 0.02049298584461212, - -0.017018208280205727, - -0.00397068727761507, - -0.018003184348344803, - -0.026457566767930984, - -0.00891267042607069, - 0.026293404400348663, - -0.008160257712006569, - 0.01790742203593254, - -4.5422642870107666e-05, - 0.022777585312724113, - -0.0043229530565440655, - -0.013823873363435268, - -0.027415182441473007, - -0.020670829340815544, - -0.000696409260854125, - -0.010294374078512192, - -0.037319671362638474, - 0.023160630837082863, - 0.017059247940778732, - -0.010417495854198933, - 0.037647996097803116, - -0.0033328463323414326, - -0.032257985323667526, - 0.0072984034195542336, - -0.01168291736394167, - 0.03882449492812157, - 0.02158740535378456, - 0.019042881205677986, - -0.0066691129468381405, - 0.009986569173634052, - -0.03253158926963806, - 0.018276788294315338, - 0.0039912075735628605, - 0.02299646846950054, - 0.00824917946010828, - -0.006210824940353632, - 0.034501541405916214, - 0.0070521594025194645, - -0.034364741295576096, - 0.01923440583050251, - 0.0005767072434537113, - -0.002305119065567851, - -4.411340341903269e-05, - -0.011477714404463768, - 0.006764874327927828, - -0.016854044049978256, - 0.01751069538295269, - 0.006771714426577091, - -0.01994577795267105, - 0.013447667472064495, - -0.024638095870614052, - 0.026553329080343246, - -0.019357526674866676, - -0.017455974593758583, - 0.013105661608278751, - 0.01601955108344555, - 0.006689633242785931, - -0.0164162777364254, - -0.012469531036913395, - 0.028892647475004196, - -0.003796264063566923, - -0.013946996070444584, - -0.023557357490062714, - -0.02674485184252262, - 0.01024649292230606, - 0.004117749631404877, - -0.005728596821427345, - -0.007756690960377455, - 0.003129352815449238, - -0.015581782907247543, - -0.005896179471164942, - -0.007825092412531376, - -0.004110909532755613, - -0.010314893908798695, - -0.04465227574110031, - -0.03119092807173729, - -0.0195353701710701, - -0.0012782466365024447, - -0.011881280690431595, - 0.05595214664936066, - -0.011635036207735538, - -0.025445230305194855, - 0.01805790513753891, - 0.028017112985253334, - 0.008981071412563324, - -0.018960800021886826, - 0.006563090719282627, - -0.011778678745031357, - -0.024528654292225838, - -0.009952368214726448, - -0.010383295826613903, - -0.038277287036180496, - 0.02180628851056099, - -0.010150731541216373, - -0.03305143862962723, - 0.011156228370964527, - 0.028947370126843452, - 0.01580066792666912, - 0.029959706589579582, - -0.0012030053185299039, - 0.013844394125044346, - -0.04656750708818436, - 0.04621182009577751, - -0.006306586787104607, - 0.018030544742941856, - -0.01168291736394167, - -0.009596682153642178, - 0.018659835681319237, - 0.00953512080013752, - -0.01946696825325489, - 0.015978509560227394, - -0.005896179471164942, - -0.025705154985189438, - -0.0072300024330616, - -0.007872972637414932, - 0.014104318805038929, - -0.003953586798161268, - -0.030534276738762856, - -0.015349219553172588, - 0.04643070325255394, - -0.01352290902286768, - -0.011429833248257637, - 0.02203885279595852, - -0.019672172144055367, - -0.028783205896615982, - 0.01907024160027504, - 0.0042374515905976295, - -0.04369466006755829, - -0.0036765621043741703, - 0.014446323737502098, - -0.039508506655693054, - -0.01426848117262125, - -0.039918914437294006, - -0.012141205370426178, - -0.011484554037451744, - -0.028017112985253334, - -0.021546363830566406, - -0.02235349826514721, - -0.02493906207382679, - 0.00891267042607069, - 0.008297060616314411, - 0.014788329601287842, - 0.033106159418821335, - 0.0002819410292431712, - -0.023105910047888756, - 0.002966900123283267, - 0.0031327728647738695, - 0.006470749154686928, - 0.03231270611286163, - 0.004500796087086201, - -0.01930280588567257, - 0.008857949636876583, - -0.0006339932442642748, - 0.05017908662557602, - 0.004818861372768879, - -0.006874316371977329, - -0.0007742155576124787, - -0.02273654378950596, - -0.018003184348344803, - 0.009637722745537758, - 0.0023341893684118986, - 0.005831198766827583, - -0.0023786502424627542, - -0.005478932522237301, - 0.029193613678216934, - -0.016840364784002304, - -0.008940030820667744, - 0.01875559613108635, - 0.006180044263601303, - -0.011888121254742146, - -0.0036492017097771168, - 0.007503606844693422, - -0.0021324059925973415, - 0.02469281665980816, - -0.011313551105558872, - 0.019672172144055367, - -0.02900209091603756, - 0.004367413930594921, - 0.004370833747088909, - -0.023653119802474976, - 0.022257735952734947, - 0.011717118322849274, - -0.033981695771217346, - -0.008112377487123013, - 0.018728235736489296, - 0.022887026891112328, - 0.01648467779159546, - -0.013085140846669674, - 0.027811910957098007, - -0.027346782386302948, - 0.01666252128779888, - -0.032558951526880264, - -0.01993209682404995, - -0.004969344008713961, - 0.015157695859670639, - -0.019603772088885307, - -0.016293155029416084, - 0.010369615629315376, - 0.023393195122480392, - 0.01177183911204338, - -0.01149823423475027, - 0.025212666019797325, - 0.020192021504044533, - -0.028728485107421875, - -0.0073326039128005505, - -0.031382448971271515, - -0.02273654378950596, - -0.001373153179883957, - -0.030588997527956963, - -0.011204109527170658, - -0.015458661131560802, - -0.037948962301015854, - 0.00917943473905325, - -0.014733608812093735, - 0.013447667472064495, - -0.056006867438554764, - -0.03001442737877369, - 0.002840358065441251, - 0.03614317253232002, - 0.004381094127893448, - -0.015732266008853912, - 0.0045110564678907394, - 0.01666252128779888, - 0.026950055733323097, - 0.02242189832031727, - 0.014282161369919777, - -0.0022486879024654627, - 0.022558702155947685, - 0.021847330033779144, - -0.009350437670946121, - 0.020192021504044533, - -0.03190229833126068, - -0.026334445923566818, - 0.01555442251265049, - -0.0034918789751827717, - -0.030370112508535385, - 0.00887847039848566, - -0.0023461596574634314, - 0.035541240125894547, - -0.007277883123606443, - -0.02399512566626072, - 0.022093573585152626, - -0.008857949636876583, - 0.0045931376516819, - 0.026799572631716728, - -0.030753159895539284, - -0.037730079144239426, - -0.04809969291090965, - -0.006730673834681511, - -0.0072984034195542336, - -0.021984132006764412, - 0.010171252302825451, - -0.021614765748381615, - 0.027333101257681847, - -0.01352290902286768, - 0.015841707587242126, - 0.01136827189475298, - -0.010725301690399647, - -0.015663864091038704, - 0.00018575189460534602, - 0.009193114936351776, - -0.020930754020810127, - 0.008344940841197968, - 0.0019049722468480468, - 0.03956322744488716, - 0.002517162589356303, - 0.043038006871938705, - 0.012175405398011208, - -0.006826435215771198, - -0.008050816133618355, - -0.017551736906170845, - -0.013933315873146057, - 0.041396379470825195, - 0.008536464534699917, - 0.0017288392409682274, - -0.02963137999176979, - 0.003915966022759676, - -0.009295716881752014, - -0.01519873645156622, - 0.010882623493671417, - 0.022326137870550156, - 0.01337242592126131, - -0.015814347192645073, - 0.03160133585333824, - 0.0563078299164772, - 0.03737439215183258, - -0.014925132505595684, - 0.0005142911686562002, - -0.022066213190555573, - 0.0006284356350079179, - 0.022462939843535423, - 0.0034183477982878685, - -0.0019203624688088894, - -0.01812630705535412, - -0.02205253206193447, - 0.007182121276855469, - 0.02641652710735798, - -0.023338474333286285, - 0.010492737405002117, - -0.0297134630382061, - -0.015171376056969166, - -0.002033224329352379, - -0.008365461602807045, - 0.020506666973233223, - -0.03151925280690193, - 0.027305740863084793, - 0.0183725506067276, - -0.0144600048661232, - 0.011949681676924229, - -0.015663864091038704, - -0.0312730073928833, - -0.008228658698499203, - -0.029740823432803154, - 0.01238744892179966, - 0.020739231258630753, - 0.009316237643361092, - -0.005581534467637539, - -0.02361207827925682, - 0.0069495574571192265, - -0.014747289009392262, - -0.023885684087872505, - -0.020192021504044533, - 0.02205253206193447 - ], "entity_status_monitoring": [ -0.008429164998233318, 0.046692028641700745, @@ -23068,5 +1536,21537 @@ -0.010129469446837902, -0.02353895641863346, 0.04944145679473877 + ], + "how_to_check_research_progress": [ + 0.03533722832798958, + 0.044247258454561234, + 0.011825351044535637, + 0.012853916734457016, + 0.02077324315905571, + 0.018867556005716324, + -0.0042657083831727505, + 0.011812730692327023, + 0.018501562997698784, + 0.044954001903533936, + 0.012910708785057068, + -0.021113993600010872, + -0.03725553676486015, + -0.0023663323372602463, + 0.022502243518829346, + 0.009118267334997654, + -0.02922893688082695, + 0.004006989300251007, + 0.01489211805164814, + 0.038340892642736435, + 0.04343955218791962, + 0.008657621219754219, + 0.010165763087570667, + 0.02044511027634144, + -0.021833360195159912, + -0.04964880645275116, + 0.018110329285264015, + 0.056539565324783325, + 0.005881124641746283, + -0.0075848838314414024, + 0.05199620872735977, + -0.021959563717246056, + -0.06830181181430817, + 0.042404673993587494, + 0.012058828957378864, + -0.005631871055811644, + -0.043490033596754074, + -0.011238500475883484, + 0.013768899254500866, + -0.01693662814795971, + 0.04068829491734505, + 0.006411183159798384, + 0.005127053242176771, + 0.011251121759414673, + -0.02940562181174755, + -0.008045529946684837, + -0.056135714054107666, + -0.0029547603335231543, + 0.02057131566107273, + 0.02428172528743744, + -0.0499516986310482, + -0.031727783381938934, + -0.04288425296545029, + -0.07905443012714386, + 0.011648665182292461, + 0.019561680033802986, + -0.026578644290566444, + 0.0027906945906579494, + -0.0052595678716897964, + -0.01634346880018711, + 0.029481345787644386, + 0.029127972200512886, + 0.05659004673361778, + 0.005833798088133335, + -0.005063951015472412, + -0.015901753678917885, + -0.00910564698278904, + -0.005379462148994207, + -0.013932964764535427, + -0.018299637362360954, + 0.003688323311507702, + 0.027361111715435982, + -0.00037920475006103516, + 0.0026360941119492054, + 0.006815037224441767, + 0.002304807770997286, + 0.04250563681125641, + 0.028951287269592285, + 0.0030967402271926403, + 0.008480935357511044, + -0.05295536294579506, + -0.036876924335956573, + -0.008594518527388573, + -0.007780500687658787, + 0.024496272206306458, + -0.0200160164386034, + -0.04798290878534317, + -0.04904302582144737, + -0.042934734374284744, + -0.039981551468372345, + -0.022716790437698364, + 0.03856806084513664, + 0.0023221608716994524, + 0.06375845521688461, + 0.04775574058294296, + -0.022022666409611702, + -0.017794819548726082, + -0.0005552993388846517, + 0.02519039623439312, + 0.07733804732561111, + -0.0012588887475430965, + -0.015939613804221153, + -0.02023056335747242, + -0.01156663242727518, + 0.046948034316301346, + 0.03092007525265217, + -0.007149478420615196, + -0.018526803702116013, + -0.01929665170609951, + -0.01968788541853428, + -0.0723908394575119, + -0.06552531570196152, + -0.014324198476970196, + 0.0285221915692091, + 0.016671599820256233, + -0.028269782662391663, + -0.044550150632858276, + -0.024571994319558144, + 0.0025146224070340395, + 0.000256155472015962, + -0.06456616520881653, + 0.03379753604531288, + 0.02665436640381813, + 0.006587869022041559, + 0.024016695097088814, + -0.003505326807498932, + 0.0065247667953372, + -0.0038902503438293934, + 0.006357545964419842, + 0.004767370875924826, + 0.020735381171107292, + 0.01407178957015276, + 0.05000218003988266, + -0.014450402930378914, + 0.012563646771013737, + -0.015737688168883324, + -0.004505496472120285, + 0.015964854508638382, + -0.055075597018003464, + -0.016797803342342377, + 0.028395988047122955, + 0.013731037266552448, + -0.05330873280763626, + 0.045105449855327606, + 0.02392835170030594, + 0.016608497127890587, + 0.02535446174442768, + -0.028749359771609306, + 0.02262844704091549, + 0.026427198201417923, + 0.052299097180366516, + -0.011188019067049026, + -0.06996771693229675, + -0.022704169154167175, + 0.015573621727526188, + 0.03223260119557381, + 0.024521512910723686, + 0.04674610495567322, + -0.00607043132185936, + -0.02738635241985321, + -0.0003443013411015272, + 0.0250389501452446, + -0.040713537484407425, + 0.0078057413920760155, + -0.003533722832798958, + 0.011314223520457745, + -0.018665628507733345, + -0.027108702808618546, + -0.06037617847323418, + 0.016280366107821465, + 0.03765938803553581, + -0.0064995260909199715, + 0.007906705141067505, + -0.009597843512892723, + 0.032434526830911636, + -0.02720966562628746, + -0.010418171994388103, + 0.037028368562459946, + 0.004682182800024748, + -0.02482440322637558, + -0.024925366044044495, + -0.01763075403869152, + -0.08662669360637665, + -0.021909082308411598, + -0.03581680729985237, + -0.021934323012828827, + 0.020848965272307396, + -0.009591533802449703, + -0.04667038470506668, + -0.0026976189110428095, + 0.04856345057487488, + 0.034958615899086, + -0.003688323311507702, + -0.000645219930447638, + -0.0063165295869112015, + -0.035412952303886414, + 0.009654635563492775, + 0.005802246741950512, + 0.042177505791187286, + -0.04803339019417763, + -0.03124820627272129, + 0.022552724927663803, + 0.005868504289537668, + 0.003773511154577136, + 0.04540833830833435, + -0.058558836579322815, + -0.01726476103067398, + -0.004874644335359335, + -0.025240877643227577, + -0.013503869995474815, + 0.0027717638295143843, + -0.00966725591570139, + 0.005549837835133076, + 0.008342110551893711, + -0.006455354392528534, + 0.00363153126090765, + -0.03970390185713768, + 0.06804940849542618, + -0.037205055356025696, + 0.003115670755505562, + -0.012014658190310001, + -0.02463509701192379, + -0.01442516129463911, + 0.013718416914343834, + 0.029733754694461823, + 0.05734727531671524, + 0.07940780371427536, + -0.01818605326116085, + 0.042909491807222366, + -0.028547432273626328, + 0.020192701369524002, + 0.03624590113759041, + -0.01508142426609993, + 0.01581341028213501, + 0.03652355074882507, + -0.0396786592900753, + 0.018072469159960747, + 0.007187339942902327, + 0.007212580647319555, + -0.04046112671494484, + 0.04106690734624863, + 0.026780571788549423, + 0.0021391643676906824, + 0.008840617723762989, + 0.028597913682460785, + 0.011074434965848923, + -0.0018741352250799537, + -0.04066305235028267, + 0.044928763061761856, + 0.00740819750353694, + 0.02300705946981907, + 0.017946263775229454, + 0.015561001375317574, + -0.03198019042611122, + 0.026982499286532402, + -0.04316190257668495, + -0.045484062284231186, + 0.026023345068097115, + -0.030617184937000275, + 0.046039361506700516, + -0.015384314581751823, + 0.030087126418948174, + -0.03955245390534401, + -0.015371694229543209, + -0.01835011877119541, + -0.023814767599105835, + 0.013125256635248661, + -0.0072819930501282215, + -0.006568938493728638, + -0.06587868928909302, + -0.007534401956945658, + -0.008203285746276379, + 0.05080988630652428, + -0.012254445813596249, + -0.033721812069416046, + -0.010273037478327751, + 0.02756303921341896, + 0.013188358396291733, + -0.016116300597786903, + -0.01056330744177103, + -0.01909472420811653, + 0.043515272438526154, + 0.041294075548648834, + -0.015573621727526188, + 0.0356653593480587, + 0.019990775734186172, + 0.021050892770290375, + 0.004066936671733856, + 0.019713126122951508, + 0.008626069873571396, + 0.005426788702607155, + -0.016621118411421776, + 0.001436363672837615, + -0.008525106124579906, + -0.015775548294186592, + -0.016835665330290794, + -0.014980461448431015, + 0.006284978706389666, + -0.004726354498416185, + -0.0165327750146389, + 0.011112296022474766, + 0.023978833109140396, + -0.005461494904011488, + 0.034832410514354706, + -0.04010775312781334, + -0.01407178957015276, + -0.0036567721981555223, + -0.051037054508924484, + -0.04149600490927696, + 0.03286362439393997, + -0.013630074448883533, + 0.034655723720788956, + 0.0485382080078125, + -0.03717981278896332, + -0.019952913746237755, + -0.01288546808063984, + -0.009711427614092827, + -0.0036126007325947285, + -0.009768219664692879, + -0.03627113997936249, + 0.013832001015543938, + -0.02902700938284397, + 0.05492414906620979, + 0.037406980991363525, + 0.007976117543876171, + -0.032106395810842514, + 0.0018804454011842608, + 0.003975438419729471, + 0.006373321637511253, + -0.039830103516578674, + 0.009515810757875443, + -0.03036477603018284, + -0.004089022055268288, + 0.011112296022474766, + -0.0231458842754364, + 0.03695264458656311, + 0.009869183413684368, + 0.013238840736448765, + 0.01982671022415161, + 0.004467635415494442, + -0.014513504691421986, + -0.004574909340590239, + -0.03543819114565849, + -0.01599009521305561, + 0.002161250216886401, + 0.0008503020508214831, + -0.010948230512440205, + -0.005338445771485567, + -0.007199960295110941, + 0.028623156249523163, + 0.04212702438235283, + 0.036674994975328445, + 0.0074902307242155075, + 0.005833798088133335, + -0.06072955206036568, + 0.029355140402913094, + -0.003432759316638112, + 0.03728077560663223, + -0.010613788850605488, + -0.028421228751540184, + -0.011528771370649338, + 0.001807877910323441, + -0.014500884339213371, + 0.03086959384381771, + -0.009894424118101597, + 0.0123112378641963, + -0.03548867255449295, + -0.03642258793115616, + 0.02847171016037464, + -0.003972283098846674, + 0.028799841180443764, + 0.031929709017276764, + 0.0024373221676796675, + -0.028926046565175056, + -0.007635365705937147, + 0.005130208563059568, + 0.009597843512892723, + 0.0485382080078125, + 0.0445249080657959, + 0.05169331654906273, + -0.004297259263694286, + 0.01877921260893345, + -0.03798752278089523, + -0.005228016991168261, + 0.011768558993935585, + 0.012923329137265682, + -0.016103679314255714, + -0.010266726836562157, + -0.07516733556985855, + 0.003675702726468444, + 0.011112296022474766, + -0.034100424498319626, + 0.0389719158411026, + -0.007641675882041454, + 0.02829502336680889, + -0.0003283286059740931, + -0.010437102988362312, + 0.08682861924171448, + 0.0260990671813488, + -0.05070892348885536, + 0.0290522500872612, + -0.03654878959059715, + -0.07395577430725098, + 0.0165327750146389, + 0.012525785714387894, + 0.05053223669528961, + -0.000700828735716641, + 0.018236534669995308, + 0.04540833830833435, + 0.03324223682284355, + 0.03846709802746773, + 0.025480665266513824, + 0.03422662988305092, + -0.0229691993445158, + 0.007572263479232788, + -0.019082102924585342, + 0.024887505918741226, + 0.0856170579791069, + 0.010922989808022976, + -0.043313346803188324, + -0.004275173880159855, + -0.03258597478270531, + 0.009673566557466984, + -0.04101642593741417, + -0.004385602660477161, + 0.03728077560663223, + 0.024723440408706665, + -0.036674994975328445, + 0.02685629390180111, + -0.0499516986310482, + -0.022527484223246574, + -0.010367690585553646, + 0.03846709802746773, + 0.02867363765835762, + -0.024937987327575684, + -0.0050734165124595165, + 0.03700312599539757, + 0.00020902602409478277, + 0.01407178957015276, + 0.027361111715435982, + -0.003426449140533805, + -0.007269372697919607, + -0.024029316380620003, + 0.03692740574479103, + 0.022199351340532303, + -0.034125667065382004, + -0.03745746240019798, + -0.02791641093790531, + 0.01580078899860382, + -0.027310630306601524, + -0.0002890869218390435, + -0.03175302594900131, + -0.005360531620681286, + -0.0007229145267046988, + -0.023272089660167694, + 0.00955998245626688, + 0.03738173842430115, + -0.051567114889621735, + 0.025480665266513824, + 0.03604397177696228, + 0.0144377825781703, + 0.001736887963488698, + 0.014955219812691212, + 0.024584615603089333, + 0.06668639928102493, + -0.0067203836515545845, + 0.006370166316628456, + 0.015889132395386696, + -0.007364026270806789, + -0.0374322235584259, + 0.059467509388923645, + -0.04553454369306564, + -0.012456373311579227, + -0.02040725015103817, + 0.006550007965415716, + 0.04649369791150093, + -0.0015870202332735062, + 0.04485303908586502, + -0.03882047161459923, + -0.009888113476336002, + -0.03745746240019798, + 0.02885032258927822, + 0.013100015930831432, + 0.007483920082449913, + 0.04010775312781334, + 0.026629125699400902, + -0.03808848559856415, + -0.01386986207216978, + -0.03150061517953873, + 0.012645679526031017, + 0.04389388486742973, + 0.0005324247758835554, + 0.05805401876568794, + -0.012999052181839943, + 0.015561001375317574, + -0.021088752895593643, + -0.008581898175179958, + 0.01987719163298607, + 0.0060672760009765625, + 0.025669973343610764, + 0.044020090252161026, + 0.015876512974500656, + -0.020079119130969048, + 0.06032569706439972, + -0.0010798362782225013, + -0.035589639097452164, + 0.0028490640688687563, + 0.016696840524673462, + 0.0021959564182907343, + 0.04197558015584946, + -0.05527752265334129, + -0.04094070568680763, + 0.008032909594476223, + 0.03198019042611122, + 0.012727712281048298, + 0.011415187269449234, + -0.009761909954249859, + -0.0006034147227182984, + -0.0200160164386034, + -0.02479916252195835, + 0.0015507364878430963, + -0.031551096588373184, + -0.02975899539887905, + 0.039047639816999435, + -0.015220249071717262, + -0.04543358087539673, + 0.0013283011503517628, + -0.04106690734624863, + 0.02536708302795887, + 0.030036645010113716, + 0.002789116930216551, + -0.035564396530389786, + 0.024041935801506042, + -0.003893405431881547, + -0.05426788702607155, + -0.011648665182292461, + -0.04720044136047363, + -0.02940562181174755, + -0.057246312499046326, + -0.03627113997936249, + 0.022477000951766968, + -0.0008274275460280478, + 0.0231458842754364, + -0.022275075316429138, + 0.005698128137737513, + 0.015321212820708752, + 0.0007840447942726314, + 0.016520153731107712, + -0.011232190765440464, + -0.021568330004811287, + 0.04472683370113373, + -0.03359560668468475, + 0.02259058505296707, + -0.04608984291553497, + 0.015409556217491627, + 0.008398901671171188, + -0.014210614375770092, + -0.0356653593480587, + 0.017517169937491417, + 0.025139914825558662, + 0.04470159485936165, + -0.0408649817109108, + -0.031122002750635147, + -0.01397082582116127, + -0.020306285470724106, + 0.030995797365903854, + 0.015952235087752342, + -0.006319684907793999, + -0.022464381530880928, + -0.00693493103608489, + 0.03579156473278999, + -0.03995630890130997, + 0.008790135383605957, + -0.03745746240019798, + 0.0290522500872612, + 0.0029689583461731672, + -0.0037482704501599073, + -0.045282136648893356, + -0.015964854508638382, + -0.0074902307242155075, + -0.010474964044988155, + -0.004562288522720337, + 0.0043319654650986195, + 0.046796586364507675, + -0.03349464386701584, + 0.008361040614545345, + 0.010632719844579697, + -0.01489211805164814, + 0.011061814613640308, + -0.013617453165352345, + 0.01817343197762966, + 0.007862533442676067, + 0.009648325853049755, + -0.0014687036164104939, + -0.006796106230467558, + 0.007988737896084785, + -0.033216994255781174, + 0.015005702152848244, + -0.015396935865283012, + 0.024395307525992393, + 0.0008518796530552208, + 0.012210275046527386, + -0.0032040139194577932, + -0.01214086264371872, + -0.007856222800910473, + 0.025619491934776306, + 0.02667960710823536, + 0.009957525879144669, + -0.0029626479372382164, + -0.020116979256272316, + -0.044020090252161026, + -0.0047610606998205185, + -0.0017605512402951717, + 0.004710578825324774, + -0.012065139599144459, + 0.001837851363234222, + 0.020369388163089752, + 0.028900805860757828, + -0.014122270978987217, + -0.01233016885817051, + 0.023600220680236816, + 0.00767322676256299, + 0.0023142730351537466, + -0.05729679390788078, + 0.045887917280197144, + -0.05240006372332573, + 0.016684221103787422, + -0.019448095932602882, + 0.0259223822504282, + -0.01175593864172697, + 0.00790039449930191, + -0.005493046250194311, + 0.03442855551838875, + -0.02647768147289753, + 4.77949834021274e-05, + 0.02189646102488041, + 0.03922432288527489, + -0.0024420549161732197, + 0.02700773999094963, + -0.005411013029515743, + 0.06890759617090225, + -0.021656673401594162, + -0.010273037478327751, + -0.027865929529070854, + 0.01203989889472723, + -0.02373904548585415, + 0.002497269306331873, + 0.028395988047122955, + 0.010689511895179749, + 0.0033160203602164984, + -0.030617184937000275, + -0.016520153731107712, + 0.03839137405157089, + 0.001986141549423337, + 0.013453387655317783, + 0.008443073369562626, + -0.010891438461840153, + 0.008581898175179958, + -0.03511006012558937, + 0.014122270978987217, + -0.02130330167710781, + 0.026401957497000694, + 0.008108631707727909, + -0.012342789210379124, + -0.04020871967077255, + 0.023840008303523064, + 0.007616434711962938, + 0.008272698149085045, + 0.04449966922402382, + 0.009837632067501545, + -0.07446058839559555, + 0.004909350536763668, + 0.013453387655317783, + 0.016431812196969986, + -0.02814357914030552, + 0.014500884339213371, + 0.043464791029691696, + -0.023019680753350258, + 0.013301942497491837, + 0.04563550651073456, + 0.01856466569006443, + -0.015687204897403717, + -0.07153264433145523, + 0.001414277940057218, + 0.008329489268362522, + 0.00455597834661603, + 0.013074774295091629, + 0.018072469159960747, + 0.003369657089933753, + -0.008241146802902222, + 0.012285997159779072, + 0.0071242377161979675, + -0.007837292738258839, + -0.01841321960091591, + -0.002382107777521014, + -0.011453048326075077, + 0.006644661072641611, + -0.042959973216056824, + -0.02443316951394081, + -0.10914155840873718, + 0.016974490135908127, + -0.00819066446274519, + -0.01654539629817009, + -0.035362470895051956, + -0.021050892770290375, + -0.0062502725049853325, + 0.01616678200662136, + 0.012898088432848454, + -0.012279687449336052, + 0.010260417126119137, + -0.037053607404232025, + 0.03268693760037422, + -0.014980461448431015, + 0.01822391338646412, + -0.0033917429391294718, + -0.03367133066058159, + -0.028168819844722748, + 0.012481614015996456, + 0.03258597478270531, + -0.0194859579205513, + -0.015586242079734802, + 0.015005702152848244, + -0.009818701073527336, + -0.014488263987004757, + -0.0075280917808413506, + -0.007326164748519659, + -0.0288755651563406, + 0.036094456911087036, + -0.019208308309316635, + -0.0024657181929796934, + 0.018627768382430077, + 0.022123629227280617, + -0.0037451153621077538, + -0.007698467932641506, + 0.024571994319558144, + 0.026730090379714966, + -0.05547944828867912, + 0.0240924172103405, + 0.02667960710823536, + 0.01195786613970995, + -0.013377665542066097, + 0.005240637343376875, + -0.0029263643082231283, + 0.018829694017767906, + 0.02094992808997631, + 0.0027701864019036293, + -0.016229884698987007, + 0.027159184217453003, + -0.021568330004811287, + -0.029658030718564987, + -0.032989826053380966, + 0.009446398355066776, + -0.02741159312427044, + -0.025796176865696907, + 0.05628715828061104, + -0.01433681882917881, + -0.007559643127024174, + 0.0017053368501365185, + 0.002539863344281912, + 0.050683680921792984, + -0.008392591960728168, + 0.021555710583925247, + -0.011648665182292461, + 0.019056862220168114, + -0.0061335330829024315, + 0.0356653593480587, + -0.0021959564182907343, + -0.007679536938667297, + -0.01196417585015297, + 0.017870541661977768, + 0.027638761326670647, + -0.009629394859075546, + 0.02869887836277485, + 0.02077324315905571, + 0.006247117184102535, + 0.04717520251870155, + -0.0023915732745081186, + 0.0007142379763536155, + 0.02168191410601139, + -0.015863891690969467, + 0.0057549201883375645, + 0.0018709800206124783, + -0.0145261250436306, + 0.02849695086479187, + -0.01075261365622282, + 0.0014071789337322116, + 0.004789456725120544, + 0.02259058505296707, + -0.01891803741455078, + -0.029557067900896072, + -0.04538309946656227, + -0.03109676204621792, + 0.005054485984146595, + -0.0026629127096384764, + -0.015295972116291523, + 0.00693493103608489, + -0.018640387803316116, + -0.06012377142906189, + 0.0011129649356007576, + 0.002240127883851528, + -0.013844621367752552, + 0.009970147162675858, + 0.033040307462215424, + -0.008417832665145397, + 0.04429773986339569, + -0.01817343197762966, + -0.0346052423119545, + -0.007654296234250069, + -0.034100424498319626, + 0.009957525879144669, + -0.004085867200046778, + 0.0012636214960366488, + 0.007843602448701859, + 0.06709025055170059, + -0.05694342032074928, + 0.026805812492966652, + -0.0055719236843287945, + -0.011970486491918564, + -0.019056862220168114, + -0.000796270789578557, + 0.005953691899776459, + -0.02373904548585415, + 0.0045118071138858795, + -0.003972283098846674, + -0.010904058814048767, + 0.0037608908023685217, + 0.012153482995927334, + 0.050456516444683075, + -0.014399920590221882, + 0.018072469159960747, + 0.018665628507733345, + -0.018892796710133553, + 0.017163796350359917, + -0.0052564130164682865, + 0.0049188160337507725, + 0.030819112434983253, + 0.008026598952710629, + 0.02723490633070469, + 0.026528162881731987, + 0.048815857619047165, + -0.0102162454277277, + 0.03675071895122528, + -0.030289053916931152, + -0.001886755577288568, + -0.006202945951372385, + -0.01635608822107315, + 0.043691959232091904, + 0.013617453165352345, + 0.026225272566080093, + 0.016696840524673462, + -0.0006172183202579618, + 0.05992184579372406, + 0.006486905738711357, + -0.01185690239071846, + 0.01928403042256832, + -0.02902700938284397, + -0.013718416914343834, + -0.007704778108745813, + 0.015699826180934906, + 0.02517777495086193, + -0.00974928867071867, + -0.0012596775777637959, + 0.0026155859231948853, + 0.023309949785470963, + -0.00035416107857599854, + 0.001312525593675673, + 0.019776226952672005, + 0.02295657806098461, + -0.021429505199193954, + -0.004341430962085724, + 0.026957256719470024, + -0.00018841920245904475, + 0.022918717935681343, + 0.023486636579036713, + -0.016621118411421776, + -0.006751934997737408, + -0.051415666937828064, + 0.03798752278089523, + -0.010001697577536106, + 0.007174719590693712, + 0.04321238398551941, + -0.0260990671813488, + -0.007231511641293764, + -0.026629125699400902, + 0.01744144596159458, + 0.026755331084132195, + -0.0025193551555275917, + 0.007452369201928377, + 0.03733125701546669, + 0.019523819908499718, + 0.0038555441424250603, + -0.02262844704091549, + 0.009383296594023705, + 0.008966822177171707, + -0.02445841021835804, + 0.0016485447995364666, + -0.01397082582116127, + 0.013655315153300762, + 0.017214277759194374, + 0.015409556217491627, + -0.004543357994407415, + 0.002943717408925295, + 0.015409556217491627, + 0.021454745903611183, + -0.008979442529380322, + -0.002495691878721118, + -0.013074774295091629, + 0.018236534669995308, + 0.03326747566461563, + 0.03182874619960785, + -0.004385602660477161, + -0.010165763087570667, + -0.005735989660024643, + 0.015144526958465576, + 0.012525785714387894, + -0.027689242735505104, + 0.028597913682460785, + 0.001852049375884235, + 0.025682592764496803, + 0.003937576897442341, + 0.012462683022022247, + -0.01386986207216978, + -0.008676552213728428, + -0.020710140466690063, + 0.05679197609424591, + 0.008228526450693607, + 0.04068829491734505, + 0.011762249283492565, + 0.005515131633728743, + -0.05865979939699173, + 0.02371380478143692, + -0.019637402147054672, + -0.035412952303886414, + 0.029885198920965195, + 0.0001822075864765793, + 0.010525446385145187, + -0.009181369096040726, + -0.034504279494285583, + 0.021745016798377037, + -0.01554838102310896, + -0.006310219410806894, + -0.02773972414433956, + 1.1412623280193657e-05, + -0.06592917442321777, + -0.03177826479077339, + 0.0002474789216648787, + -0.012834986671805382, + -0.004426619037985802, + -0.001404023845680058, + 0.03508482128381729, + 0.03639734536409378, + -0.016961870715022087, + 0.0204324908554554, + -0.0010419749887660146, + -0.012235515750944614, + -0.010878818109631538, + -0.0022448606323450804, + 0.01581341028213501, + 0.039981551468372345, + 0.03508482128381729, + -0.007042204961180687, + 0.040713537484407425, + 0.017895782366394997, + -0.03233356401324272, + 0.03622065857052803, + 0.023978833109140396, + -0.0035305677447468042, + 0.022880855947732925, + 0.016520153731107712, + 0.004899885505437851, + 0.030945315957069397, + 0.021820738911628723, + 0.026932016015052795, + 0.06325364112854004, + -0.006344925612211227, + -0.0260990671813488, + 0.034655723720788956, + 0.007206270471215248, + 0.03864378482103348, + 0.005524597130715847, + 0.04914398863911629, + 0.02259058505296707, + 0.006149308755993843, + -0.006240807007998228, + 0.006417493335902691, + -0.014728052541613579, + -0.003836613381281495, + 0.00872072298079729, + 0.03919908404350281, + 0.017883161082863808, + 0.029456105083227158, + -0.05492414906620979, + -0.03203067556023598, + 0.015295972116291523, + -0.0015239180065691471, + 0.020684899762272835, + -0.007168409414589405, + 3.6949291825294495e-05, + 0.023221608251333237, + 0.015359073877334595, + 0.0009528431110084057, + 0.019208308309316635, + 0.042783286422491074, + 0.009156128391623497, + -0.011686526238918304, + -0.04359099641442299, + 0.02980947680771351, + 0.011705457232892513, + -0.004066936671733856, + -0.0018615147564560175, + 0.018653009086847305, + -0.023675942793488503, + -0.01657063700258732, + -0.06754458695650101, + 0.008525106124579906, + -0.01932189241051674, + -0.010052179917693138, + -0.04813435301184654, + 0.00670776329934597, + -0.04836152121424675, + 0.0021013030782341957, + 0.008619760163128376, + 0.023423533886671066, + -0.011894763447344303, + 0.003090430051088333, + 0.02482440322637558, + -0.013276701793074608, + 0.0012920174049213529, + 0.011478289030492306, + 0.013238840736448765, + -0.009673566557466984, + -0.015586242079734802, + -0.031879227608442307, + 0.04651893675327301, + -0.007439748849719763, + 0.01325146108865738, + 0.017933644354343414, + 0.017592892050743103, + 0.03364609181880951, + -0.021909082308411598, + 0.005802246741950512, + 0.008354730904102325, + -0.016444431617856026, + 0.033545125275850296, + 0.008802755735814571, + 0.0224391408264637, + 0.0004574909107759595, + -0.0047389748506248, + 0.024016695097088814, + 0.06799892336130142, + -0.021379023790359497, + 0.020104359835386276, + 0.00043382757576182485, + 0.002710239263251424, + 0.0066572814248502254, + -0.021025652065873146, + -0.008474624715745449, + -0.004376137163490057, + -0.00693493103608489, + 0.019750986248254776, + 0.0002971719077322632, + -0.03107152134180069, + 0.01204620860517025, + 0.014488263987004757, + 0.007578573655337095, + 0.03765938803553581, + -0.012633059173822403, + -0.010077420622110367, + 0.0011681793257594109, + -0.020180081948637962, + 0.0005915830843150616, + 0.005360531620681286, + -0.030465738847851753, + 0.006833967752754688, + -0.026073826476931572, + -0.028042614459991455, + -0.020470352843403816, + -0.021782876923680305, + 0.024041935801506042, + 0.003956507425755262, + 0.04836152121424675, + -0.04502972587943077, + -0.04306093603372574, + -0.055782340466976166, + -0.018160810694098473, + -0.008764894679188728, + 0.0036220659967511892, + -0.007395577151328325, + 0.01970050483942032, + 0.003375967498868704, + -0.012999052181839943, + -0.05234958231449127, + -0.008998372592031956, + -0.00038906445843167603, + -0.020482972264289856, + -0.010885128751397133, + 0.01968788541853428, + 0.009553671814501286, + -0.017416205257177353, + 0.00918767973780632, + -0.003969128243625164, + 0.018665628507733345, + 0.00570443831384182, + -0.00929495319724083, + -0.0570443831384182, + -0.0017842145171016455, + -0.02259058505296707, + -0.011800110340118408, + 0.013945585116744041, + -0.006117757875472307, + 0.03985534608364105, + 0.02006649784743786, + 0.012658299878239632, + -0.00020744846551679075, + -0.0288755651563406, + -0.020344147458672523, + -0.0013693176442757249, + 0.0021296991035342216, + 0.007944566197693348, + 0.0033570367377251387, + 0.002481493866071105, + -0.02885032258927822, + 0.009181369096040726, + -0.01370579656213522, + -0.00482100760564208, + -0.027992133051156998, + -0.0290522500872612, + -0.008070770651102066, + -0.0005229594535194337, + -0.03695264458656311, + -0.012740332633256912, + -0.02502633072435856, + 0.009301263839006424, + 0.02038200944662094, + -0.026250513270497322, + 0.0094779497012496, + -0.004161589778959751, + -0.010058489628136158, + -0.0071242377161979675, + 0.0011800110805779696, + -0.005360531620681286, + 0.010146833024919033, + 0.016330847516655922, + 0.005824332591146231, + -0.0521981343626976, + 0.01040555164217949, + 0.0018488942878320813, + 0.08016502857208252, + 0.005805402062833309, + 0.00022026609804015607, + 0.030112367123365402, + -0.0029042784590274096, + 0.0016927163815125823, + 0.010361379943788052, + 0.03993107005953789, + 0.003801907179877162, + -0.045282136648893356, + 0.029380381107330322, + 0.037230294197797775, + 0.003650462022051215, + 0.021745016798377037, + -0.026780571788549423, + 0.021934323012828827, + 0.0027622985653579235, + -0.008335799910128117, + 0.006827657576650381, + -0.014147511683404446, + 0.04174841195344925, + 0.04076401889324188, + 0.008146493695676327, + -0.01333980355411768, + 0.01214717235416174, + -0.022754650563001633, + 0.03523626551032066, + -0.01322622038424015, + 0.029531827196478844, + 0.008531416766345501, + 0.013238840736448765, + -0.013680555857717991, + -0.008070770651102066, + 0.016267746686935425, + -0.03344416245818138, + 0.006486905738711357, + 0.008594518527388573, + 0.00826638750731945, + 0.015535760670900345, + 0.010866197757422924, + 0.01783267967402935, + 0.0005931606283411384, + 0.009578913450241089, + -0.00034725925070233643, + 0.0031708853784948587, + 0.015762928873300552, + -0.00381452776491642, + 0.012532095424830914, + -0.005546682979911566, + 0.007988737896084785, + 0.0008645000634714961, + -0.036144938319921494, + -0.002539863344281912, + -0.013491249643266201, + -0.0250389501452446, + -0.009572602808475494, + -0.008752274326980114, + 0.01691138744354248, + -0.011068125255405903, + 0.01616678200662136, + -0.03548867255449295, + 0.016873527318239212, + -0.009389606304466724, + 0.007168409414589405, + -0.010822026059031487, + -0.006998033262789249, + -0.014664949849247932, + -0.0220857672393322, + -0.04480255767703056, + -0.030390016734600067, + -0.025834038853645325, + -0.017403585836291313, + 0.013592212460935116, + 0.021290680393576622, + 0.027335871011018753, + 0.05906365439295769, + 0.015611482784152031, + -0.0017857920611277223, + 0.03490813449025154, + -0.024193381890654564, + 0.016646359115839005, + -0.007023274432867765, + -0.024155519902706146, + -0.018261775374412537, + -0.01616678200662136, + -0.015952235087752342, + 0.0002016312355408445, + 0.02920369617640972, + -0.020912067964673042, + -0.002760720904916525, + 6.221482180990279e-05, + 0.0485382080078125, + 0.011314223520457745, + 0.026780571788549423, + 0.01782006025314331, + 0.01085357740521431, + 0.00012630298442672938, + 0.00259350030682981, + -0.004114263225346804, + -0.0015160301700234413, + -0.007439748849719763, + -0.020331526175141335, + 0.004562288522720337, + 0.04169793054461479, + -0.007641675882041454, + -0.010531756095588207, + -0.014122270978987217, + -0.013983446173369884, + 0.00808339100331068, + -0.003969128243625164, + -0.0033412612974643707, + 0.007950876839458942, + -0.015485278330743313, + -0.006023104302585125, + -0.0015018322737887502, + 0.01657063700258732, + -0.041092149913311005, + -0.004568598698824644, + 0.004085867200046778, + -0.03092007525265217, + 0.04823531582951546, + -0.014463023282587528, + -0.034504279494285583, + 0.0019214617786929011, + -0.01193262543529272, + 0.0028459089808166027, + 0.012374340556561947, + -0.011358395218849182, + -0.008506176061928272, + 0.013617453165352345, + 0.001060905633494258, + 0.02386525087058544, + -0.011358395218849182, + 0.012166103348135948, + 0.010777855291962624, + 0.004313034936785698, + 0.009029923938214779, + -0.021063512191176414, + -0.00388709525577724, + -0.03622065857052803, + -0.045155931264162064, + -0.018501562997698784, + -0.0312986895442009, + -0.006594179198145866, + -0.00892265047878027, + 0.028597913682460785, + 0.007206270471215248, + 0.011143847368657589, + 0.01101764291524887, + -2.743466575338971e-05, + -0.029506586492061615, + -0.004991383757442236, + 0.004928281530737877, + 0.019574301317334175, + -0.017125936225056648, + -0.02426910400390625, + 0.013125256635248661, + -0.005120743066072464, + -0.016974490135908127, + 0.002434167079627514, + 0.005874814465641975, + 0.009238161146640778, + -0.010979781858623028, + 0.03675071895122528, + -0.002033468335866928, + 0.024521512910723686, + 0.0074018873274326324, + 0.05628715828061104, + -0.0037924419157207012, + 0.02411765791475773, + 0.023095402866601944, + -0.004950367379933596, + -0.009433778002858162, + 0.02442055009305477, + 0.040006790310144424, + -0.011579252779483795, + 0.0016154161421582103, + -0.006663591600954533, + -0.0144377825781703, + 0.01175593864172697, + -0.015283351764082909, + 0.03147537633776665, + -0.026351476088166237, + -0.016116300597786903, + 0.0013054267037659883, + 0.012948570773005486, + -0.015851270407438278, + -0.013932964764535427, + 0.020129600539803505, + 0.0024010385386645794, + 0.023600220680236816, + -0.0016327692428603768, + 0.016595877707004547, + -0.014917358756065369, + 0.0059095206670463085, + 0.028168819844722748, + -0.006979102734476328, + -0.01893065869808197, + -0.0290522500872612, + 0.0018914883257821202, + 0.03561487793922424, + -0.01838797889649868, + -0.05060796067118645, + 0.02885032258927822, + -0.044398702681064606, + -0.0016990265576168895, + -0.04010775312781334, + 0.019750986248254776, + -0.006884449627250433, + 0.0053731519728899, + -0.002929519396275282, + -0.027992133051156998, + -0.03329271823167801, + -0.021063512191176414, + 0.022716790437698364, + -0.0026297839358448982, + -0.041117388755083084, + -0.00826638750731945, + 0.013036913238465786, + -0.0012360141845420003, + 0.00481785275042057, + -0.03548867255449295, + 0.02998616360127926, + -0.029683271422982216, + -0.012014658190310001, + -0.026200031861662865, + 0.01729000173509121, + -0.003915491048246622, + -0.04326286539435387, + -0.019220927730202675, + 0.009673566557466984, + 0.009692497551441193, + -0.018072469159960747, + -0.00844938401132822, + -0.010601168498396873, + -0.00855665747076273, + -0.038340892642736435, + -0.005877969320863485, + -0.0030809645541012287, + -0.00703589478507638, + -0.02536708302795887, + -0.0018946434138342738, + -0.01325146108865738, + 0.004590684548020363, + -0.0209625493735075, + 0.00314879952929914, + 0.0415717251598835, + 0.00615246407687664, + -0.010317209176719189, + 0.011623424477875233, + -0.005761230364441872, + -0.0014387300470843911, + 0.010941920801997185, + -0.0194859579205513, + 0.022577965632081032, + -0.04906826466321945, + 0.008752274326980114, + -0.024559374898672104, + -0.029859958216547966, + 0.04472683370113373, + -0.006165084429085255, + 0.006149308755993843, + -0.012254445813596249, + 0.0094779497012496, + 0.007168409414589405, + 0.01460184808820486, + 0.010739993304014206, + 0.009029923938214779, + -0.015195008367300034, + 0.005644491408020258, + 0.03564012050628662, + 0.007736328989267349, + -0.009496880695223808, + 0.004887265153229237, + -0.009654635563492775, + 0.01674732193350792, + -0.008790135383605957, + -0.009831322357058525, + 0.00264555960893631, + -0.003505326807498932, + 0.024218622595071793, + -0.024130279198288918, + -0.03182874619960785, + 0.01765599474310875, + -0.04323762282729149, + 0.007288303691893816, + -0.04048636928200722, + 0.015207628719508648, + 0.028749359771609306, + 0.015018322505056858, + 0.009225540794432163, + 0.05840739235281944, + 0.015270731411874294, + -0.028547432273626328, + 0.015712445601820946, + -0.005530907306820154, + 0.015005702152848244, + -0.048815857619047165, + -0.0412183552980423, + -0.010519135743379593, + -0.005679197609424591, + -0.009919664822518826, + 0.02832026407122612, + -0.01910734362900257, + 0.02667960710823536, + -0.008960511535406113, + 0.005281653720885515, + 0.0019451251719146967, + 0.004338276106864214, + 0.02773972414433956, + -0.02223721332848072, + 0.00046577307512052357, + 0.013402906246483326, + -0.026351476088166237, + 0.0006215565954335034, + 0.009679876267910004, + -0.013857241719961166, + 0.014841635711491108, + -0.02352449856698513, + 0.017252139747142792, + 0.010878818109631538, + 0.005941071547567844, + 0.016217263415455818, + -0.044575389474630356, + -0.0054804254323244095, + -0.0031172484159469604, + -0.022653687745332718, + -0.03533722832798958, + 0.019902432337403297, + -0.030945315957069397, + 0.03811372444033623, + 0.010430792346596718, + 0.04828580096364021, + 0.02554376795887947, + 0.015939613804221153, + -0.013402906246483326, + 0.04207654297351837, + -0.0005036343936808407, + 0.020508212968707085, + -0.0020949929021298885, + -0.03397422283887863, + -0.003036793088540435, + -4.6118831960484385e-05, + -0.0025225102435797453, + -0.02006649784743786, + 0.022540103644132614, + 8.873746264725924e-05, + -0.016053197905421257, + 0.0024120814632624388, + 0.0353119894862175, + 0.03311603143811226, + 0.05593378469347954, + -0.001527861924842, + 0.0346052423119545, + -0.039451491087675095, + 0.03256073221564293, + 0.01729000173509121, + -0.010904058814048767, + 0.010500204749405384, + 0.035009097307920456, + -0.016646359115839005, + 0.020104359835386276, + 0.00552144180983305, + -3.554428258212283e-05, + 0.00693493103608489, + -0.007004343438893557, + -0.02039462886750698, + -0.02078586257994175, + -0.013882482424378395, + -0.019725745543837547, + 0.006650971248745918, + 0.05310680717229843, + 0.023461395874619484, + -0.0231458842754364, + 0.0013480206253007054, + -0.023297330364584923, + -0.024710819125175476, + 0.02058393508195877, + -0.006613110192120075, + -0.019523819908499718, + 0.000516254804097116, + -0.05038079246878624, + 0.0640108659863472, + -0.011124917306005955, + 0.009938595816493034, + -0.014728052541613579, + -0.0027386352885514498, + -0.02940562181174755, + 0.034655723720788956 + ], + "how_to_connect_entities": [ + -0.01408456638455391, + -0.0014679417945444584, + 0.028936684131622314, + 0.01326584443449974, + -0.011353363282978535, + 0.02351265400648117, + -0.007624343037605286, + 0.02144026570022106, + -0.015811556950211525, + 0.0013360190205276012, + 0.029806574806571007, + -0.024126695469021797, + 0.026966635137796402, + -0.01422528363764286, + 0.009312955662608147, + 0.04019410163164139, + -0.009741504676640034, + 0.09072456508874893, + 0.010477075353264809, + 0.041166335344314575, + 0.0640137791633606, + 0.01238316111266613, + 0.04392951726913452, + 0.022834651172161102, + -0.04444121941924095, + 0.019252745434641838, + 0.04763935133814812, + 0.039400964975357056, + -0.03479565680027008, + -0.040219686925411224, + 0.07470832765102386, + -0.006664903834462166, + -0.023845260962843895, + -0.007669116836041212, + -0.02026335336267948, + 0.03482124209403992, + -0.0024353761691600084, + 0.040961652994155884, + 0.020698299631476402, + 0.022655555978417397, + 0.046922970563173294, + -0.0009930194355547428, + -0.012850088067352772, + -0.029653064906597137, + -0.009114671498537064, + 0.01205695141106844, + -0.012216857634484768, + 0.020519204437732697, + 0.007458040025085211, + -0.00663292221724987, + 0.0016726221656426787, + 0.014724192209541798, + -0.019559765234589577, + -0.060483042150735855, + 0.0008371106232516468, + -0.031751036643981934, + -0.026787539944052696, + -0.04628334194421768, + -0.028041206300258636, + -0.040731389075517654, + 0.0049571022391319275, + 0.02232295088469982, + 0.023205634206533432, + 0.03359316289424896, + -0.009888619184494019, + 0.013700790703296661, + -0.04103840887546539, + -0.014890494756400585, + 0.0060444665141403675, + 0.01620812527835369, + 0.026352593675255775, + 0.062478676438331604, + -0.010892831720411777, + 0.018907347694039345, + 0.008353516459465027, + -0.05592890456318855, + -0.004020049702376127, + 0.052961040288209915, + -0.0640137791633606, + -0.032109230756759644, + -0.03661219775676727, + -0.05255167931318283, + -0.023602202534675598, + -0.02129954844713211, + -0.03546087071299553, + -0.0014815338654443622, + -0.0552636943757534, + -0.04019410163164139, + -0.04016851633787155, + -0.046539194881916046, + -0.023602202534675598, + -0.042266491800546646, + -0.008967557922005653, + 0.0032748854719102383, + 0.05618475377559662, + -0.00965195707976818, + 0.01555570587515831, + -0.010074110701680183, + -0.04835573211312294, + 0.035128265619277954, + 0.03794261813163757, + -0.016707032918930054, + -0.040833730250597, + -0.03448863700032234, + 0.06641877442598343, + 0.015351025387644768, + 0.014429964125156403, + 0.024165073409676552, + -0.023794090375304222, + -0.005964512936770916, + -0.07092174142599106, + -0.0022258986718952656, + 0.02225898765027523, + 0.01622091792523861, + 0.03134167939424515, + -0.01508238259702921, + 0.02055758237838745, + -0.029985670000314713, + 0.05129801109433174, + 0.007061471696943045, + -0.019329499453306198, + -0.014046188443899155, + 0.012210461311042309, + 0.022220609709620476, + -0.008315138518810272, + 0.004151173401623964, + -0.01577317900955677, + 0.011302192695438862, + 0.00892278365790844, + -0.019252745434641838, + -0.00950484350323677, + 0.020890187472105026, + 0.036023739725351334, + -0.008455856703221798, + -0.018920138478279114, + 0.01201857440173626, + -0.04769052192568779, + -0.01606740616261959, + 0.011807497590780258, + 0.01009969599545002, + -0.005612718872725964, + -0.037558842450380325, + 0.024075524881482124, + 0.01674541085958481, + -0.0006096435827203095, + 0.016681447625160217, + -0.013777545653283596, + -0.026813125237822533, + 0.019329499453306198, + -0.01153245847672224, + -0.03059971146285534, + 0.003140564076602459, + -0.05227024108171463, + -0.027529506012797356, + -0.008973954245448112, + -0.03835197910666466, + -0.0031053845304995775, + 0.06606058031320572, + -0.012651803903281689, + -0.047588180750608444, + 0.013470524922013283, + 0.0035115471109747887, + -0.010816076770424843, + 0.01253667101264, + -0.05352390930056572, + -0.030625296756625175, + -0.03617725148797035, + 0.0020404071547091007, + -0.03929862752556801, + 0.00552636943757534, + -0.011007964611053467, + -0.030267106369137764, + -0.009690335020422935, + 0.011180663481354713, + 0.02278348058462143, + -0.02462560310959816, + -0.07133109867572784, + -0.01872825063765049, + 0.009466465562582016, + -0.020161014050245285, + 0.037405334413051605, + -0.011071926914155483, + -0.049430303275585175, + -0.05014668405056, + -0.04971173778176308, + 0.014992835000157356, + -0.048253390938043594, + 0.046334512531757355, + -0.014378794468939304, + 0.008391894400119781, + 0.011353363282978535, + 0.023013746365904808, + 0.012044158764183521, + 0.00544001953676343, + 0.00530569814145565, + 0.01813979633152485, + 0.02373012714087963, + -0.01334260031580925, + 0.047869615256786346, + -0.020161014050245285, + 0.048023127019405365, + -0.005874965339899063, + 0.07041003555059433, + -0.011647590436041355, + -0.04753701016306877, + -0.02352544665336609, + -0.03768676891922951, + 0.03694480285048485, + 0.005999692715704441, + -0.010867247357964516, + -0.021273963153362274, + -0.05372859165072441, + 0.007880193181335926, + 0.015210308134555817, + 0.0035019528586417437, + -0.023167256265878677, + -0.07481066882610321, + 0.04827897623181343, + -0.03566554933786392, + -0.010483471676707268, + -0.028322642669081688, + 0.034232787787914276, + 0.025559457018971443, + -0.03407927602529526, + 0.004800393711775541, + 0.04738349840044975, + 0.02942279912531376, + -0.07230333238840103, + 0.03566554933786392, + -0.016630277037620544, + -0.0021683324594050646, + 0.02064712904393673, + 0.027734186500310898, + -0.008481441996991634, + -0.0034571788273751736, + -0.03162311390042305, + 0.006421845871955156, + 0.00411279546096921, + -0.00031801409204490483, + 0.013739167712628841, + -0.03413044661283493, + 0.0009010732173919678, + 0.008212799206376076, + 0.005731049459427595, + -0.011737138032913208, + 0.004889941308647394, + -0.010528245009481907, + -0.012197669595479965, + 0.012760540470480919, + 0.029653064906597137, + 0.07695981115102768, + -0.0010577816283330321, + 0.031162582337856293, + 0.05889676883816719, + 0.02433137595653534, + -0.07153578102588654, + -0.016719825565814972, + -0.03492358326911926, + 0.023205634206533432, + -0.012216857634484768, + -0.024433715268969536, + 0.03827522322535515, + -0.05088865011930466, + 0.023013746365904808, + -0.03561437875032425, + 0.010176450945436954, + -0.001877302536740899, + 0.028783174231648445, + -0.05270518735051155, + -0.06252984702587128, + -0.0021315538324415684, + 0.02778535708785057, + 0.05710581690073013, + -0.06334856897592545, + -0.0904175415635109, + -0.04221532121300697, + -0.00016420400061178952, + 0.03620283678174019, + 0.0036330760922282934, + -0.036970388144254684, + -0.03515385091304779, + -0.029090194031596184, + 0.034232787787914276, + 0.048176635056734085, + 0.004605307709425688, + 0.03310704603791237, + -0.029166949912905693, + 0.04203622415661812, + 0.03960564732551575, + 0.0018549156375229359, + 0.011526062153279781, + 0.05485433340072632, + -0.0030462192371487617, + -0.006652111187577248, + 0.06488367170095444, + 0.012063347734510899, + 0.007330114953219891, + -0.02358940988779068, + -0.014852117747068405, + -0.006888772826641798, + 0.009421692229807377, + 0.03981032595038414, + 0.013329807668924332, + 0.046564776450395584, + 0.013029183261096478, + -0.03251858800649643, + 0.007330114953219891, + -0.03095790185034275, + 0.02057037502527237, + -0.003924105782061815, + 0.01238316111266613, + -0.009050709195435047, + 0.01608019880950451, + 0.005337679758667946, + -0.0051010181196033955, + 0.0245488490909338, + 0.016924506053328514, + -0.010182847268879414, + -0.042061809450387955, + 0.005583935417234898, + -0.021069282665848732, + -0.049865249544382095, + 0.037865862250328064, + -0.02373012714087963, + -0.01842123083770275, + -0.005583935417234898, + -0.018907347694039345, + -0.017666472122073174, + -0.031444016844034195, + -0.012728558853268623, + -0.026736369356513023, + -0.024190658703446388, + 0.00891638733446598, + 4.2425199353601784e-05, + -0.04167803376913071, + 0.006070051342248917, + 0.03251858800649643, + 0.046564776450395584, + 0.0059677110984921455, + 0.05316571891307831, + -0.023026539012789726, + 0.018561948090791702, + -0.0286808330565691, + 0.006959131918847561, + -0.027990037575364113, + 0.00506583834066987, + -0.02608395181596279, + 0.035358529537916183, + -0.02824588678777218, + 0.0434945747256279, + -0.00589415431022644, + 0.03714948147535324, + -0.05081189423799515, + -0.008647744543850422, + 0.002835142659023404, + 0.034232787787914276, + 0.006812017876654863, + 0.014327623881399632, + -0.009325748309493065, + -0.010860851034522057, + -0.021862419322133064, + 0.051195669919252396, + -0.042931701987981796, + 0.009997355751693249, + -0.04252234101295471, + 0.0750153437256813, + -0.028706418350338936, + 0.038300808519124985, + -0.04812546446919441, + 0.03441188111901283, + 0.06442313641309738, + 0.05623592436313629, + 0.022975368425250053, + 0.02564900554716587, + -0.03241625055670738, + 0.037558842450380325, + 0.013662412762641907, + 0.016975676640868187, + -0.004627694841474295, + 0.07987650483846664, + 0.03993825241923332, + -0.03059971146285534, + 0.021913589909672737, + -0.0418827161192894, + 0.007566776592284441, + 0.013892678543925285, + -0.013547279872000217, + 0.020979736000299454, + -0.06437196582555771, + -0.0101380730047822, + 0.05951080843806267, + -0.004119191784411669, + 0.03272327035665512, + 0.016553523018956184, + 0.015798764303326607, + 0.009146653115749359, + 0.05290986970067024, + 0.010739321820437908, + 0.029653064906597137, + 0.018344474956393242, + 0.034539807587862015, + -0.03118816763162613, + -0.033797841519117355, + -0.016988469287753105, + -0.005209754221141338, + -0.005555152427405119, + -0.018817799165844917, + 0.020250560715794563, + -0.00518097123131156, + 0.01205695141106844, + 0.04032202810049057, + -0.003284479957073927, + 0.04364808276295662, + 0.032313909381628036, + -0.0028735201340168715, + -0.06252984702587128, + -0.014161321334540844, + 0.022617178037762642, + -0.011935422196984291, + -0.008020911365747452, + 0.0395033061504364, + 0.005475199315696955, + -0.022757895290851593, + -0.03448863700032234, + -0.05012109875679016, + 0.03558879345655441, + 0.04149894043803215, + -0.050095513463020325, + 0.033362895250320435, + -0.0757828950881958, + 0.0009866232285276055, + 0.02160656824707985, + 0.020071465522050858, + 0.05255167931318283, + 0.01422528363764286, + -0.009792675264179707, + 0.04413419961929321, + -0.018843384459614754, + -0.0047364309430122375, + 0.006799225229769945, + 0.02919253334403038, + -0.008577385917305946, + 0.06672579050064087, + 0.01569642312824726, + -0.03952889144420624, + -0.01338097732514143, + -0.022681141272187233, + -0.016566315665841103, + -0.04444121941924095, + -0.002715212758630514, + -0.012242442928254604, + -0.008577385917305946, + -0.0003212122246623039, + 0.03397693857550621, + 0.013624035753309727, + 0.0065497709438204765, + 0.02750392071902752, + -0.016643069684505463, + 0.0106113962829113, + -0.013432147912681103, + -0.028552908450365067, + 0.01095039863139391, + 0.006022079382091761, + 0.010566622950136662, + -0.01279252115637064, + 0.051784127950668335, + -0.012594236992299557, + 0.007183000911027193, + 0.02660844475030899, + 0.024510471150279045, + 0.006556167267262936, + -0.0028575295582413673, + -0.010035732761025429, + 0.011590024456381798, + 0.0009362526470795274, + -0.024139488115906715, + -0.02845056727528572, + 0.04945588856935501, + -0.023755712434649467, + -0.035946983844041824, + 0.01264540757983923, + -0.016412805765867233, + -0.026199083775281906, + 0.012331990525126457, + -0.00011343368532834575, + 0.09179913252592087, + 0.02034010924398899, + -0.009012331254780293, + -0.024203451350331306, + -0.02129954844713211, + -0.04661594703793526, + -0.005392047576606274, + 0.038966018706560135, + -0.01375196035951376, + 0.001235277857631445, + -0.06186463311314583, + -0.043238721787929535, + -0.04597632214426994, + 0.027606261894106865, + 0.0008427073480561376, + 0.025226851925253868, + -0.04464590176939964, + 0.009082689881324768, + 0.03315821662545204, + 0.007406869903206825, + -0.04638568311929703, + 0.030267106369137764, + -0.019035272300243378, + -0.02018659934401512, + 0.011596420779824257, + -0.007310925982892513, + 0.01629767194390297, + 0.02232295088469982, + 0.03318380191922188, + -0.031802207231521606, + 0.030471786856651306, + -0.0023218425922095776, + -0.0006464220932684839, + 0.012696577236056328, + 0.022796273231506348, + -0.0212227925658226, + -0.01849798671901226, + 0.009223408065736294, + 0.024216243997216225, + -0.0012656600447371602, + -0.031290508806705475, + -0.012229650281369686, + 0.0024561642203480005, + -0.003732218174263835, + 0.0033676312305033207, + 0.022668348625302315, + 0.0038249639328569174, + -0.0011585226748138666, + -0.00613721227273345, + -0.06662344932556152, + 0.0245488490909338, + -0.0355120413005352, + -0.047434668987989426, + 0.0024065931793302298, + -0.012223253957927227, + -0.026429349556565285, + 0.024165073409676552, + -0.003706633113324642, + 0.01371358335018158, + -0.01518472284078598, + -0.007553983945399523, + 0.01805024780333042, + 0.015478950925171375, + 0.007982533425092697, + 0.02138909511268139, + 0.0059197391383349895, + -0.04114075005054474, + -0.019930748268961906, + -0.030420616269111633, + -0.010604999959468842, + 0.0037769919726997614, + -0.012978012673556805, + -0.0240243561565876, + 0.03193013370037079, + 0.006927150301635265, + 0.018088625743985176, + -0.02801562286913395, + -0.008052892051637173, + 0.0037993788719177246, + 0.008852425031363964, + 0.0698983371257782, + 0.017346659675240517, + -0.020621543750166893, + -0.01583714224398136, + -0.010803284123539925, + -0.0038793322164565325, + -0.0007655524532310665, + 0.0322883240878582, + -0.004925120621919632, + 0.04311079904437065, + 0.005296104121953249, + -0.01976444572210312, + -0.006415449548512697, + -0.004000861197710037, + -0.03282561153173447, + -0.02468956634402275, + -0.051707372069358826, + 0.022284572944045067, + 0.006031673867255449, + -0.04285494610667229, + -0.023423107340931892, + -0.013240260072052479, + -0.007784249261021614, + 0.012370368465781212, + -0.01057941559702158, + -0.004480580799281597, + 0.012824502773582935, + -0.0028511332347989082, + 0.0023842062801122665, + -0.02160656824707985, + 0.01025320589542389, + -0.011954611167311668, + 0.0015223100781440735, + -0.008570989593863487, + -0.01813979633152485, + -0.009312955662608147, + -0.007598757743835449, + -0.030574126169085503, + 0.01105913519859314, + 0.01057301927357912, + -0.003636274253949523, + 0.010202036239206791, + -0.021708909422159195, + -0.02683871053159237, + 0.030983487144112587, + -0.035870231688022614, + -0.0024353761691600084, + -0.017743228003382683, + -0.006300316657871008, + -0.008161628618836403, + 0.021056490018963814, + -0.021107660606503487, + 0.04630892723798752, + 0.005424029193818569, + -0.02712014503777027, + -0.01872825063765049, + 0.025162890553474426, + -0.01657910831272602, + 0.014788154512643814, + 0.015325441025197506, + 0.03384901210665703, + -0.0053120944648981094, + -0.0063386945985257626, + -0.03244183585047722, + 0.006383468396961689, + -0.001501522259786725, + -0.006335496436804533, + 0.0048611583188176155, + -0.016272086650133133, + -0.016246503219008446, + 0.025303607806563377, + 0.004864356480538845, + 0.007585965096950531, + 0.03804495930671692, + 0.009236200712621212, + 0.0012624619994312525, + -0.02129954844713211, + 0.018331684172153473, + -0.003556320909410715, + -0.018088625743985176, + 0.021120453253388405, + -0.008679726161062717, + 0.0573616661131382, + 0.019841201603412628, + -0.015274270437657833, + -0.0007239767583087087, + 0.0014359605265781283, + 0.05454730987548828, + 0.0013440143084153533, + 0.012408745475113392, + -0.02035290189087391, + -0.02344869263470173, + -0.04689738526940346, + -0.026480520144104958, + 0.018408438190817833, + -0.048918601125478745, + 0.00578541774302721, + -0.002764783799648285, + 0.020954150706529617, + -0.005977305583655834, + -0.00748362485319376, + 0.04502967745065689, + 0.041089579463005066, + 0.013137919828295708, + -0.007771456614136696, + -0.01741062104701996, + 0.04009176418185234, + 0.009965374134480953, + 0.008679726161062717, + 0.0013448138488456607, + 0.018024662509560585, + 0.008116855286061764, + -0.03318380191922188, + 0.0022818660363554955, + 0.01396943349391222, + -0.04446680471301079, + 0.010381131432950497, + -0.03717506676912308, + 0.04224090650677681, + 0.019137611612677574, + 0.0018437221879139543, + 0.004522156435996294, + -0.001781358616426587, + 0.007253359537571669, + -0.002852732315659523, + -0.008136043325066566, + 0.005062640178948641, + -0.019201574847102165, + -0.022668348625302315, + 0.016118576750159264, + -0.028066791594028473, + 0.025815308094024658, + -0.0050722346641123295, + -0.01732107438147068, + -0.11482567340135574, + -0.005356868263334036, + -0.032544173300266266, + 0.028859928250312805, + -0.026378178969025612, + -0.03436071425676346, + -0.02985774539411068, + -0.003540330333635211, + 0.03952889144420624, + 0.029243703931570053, + -0.00576942740008235, + -0.042931701987981796, + 0.04050112143158913, + -0.047588180750608444, + 0.026813125237822533, + 0.0026656417176127434, + 0.02085180953145027, + -0.017781604081392288, + 0.0030494173988699913, + 0.01642559841275215, + -0.031136997044086456, + 0.04807429760694504, + -0.007010301575064659, + -0.020595960319042206, + -0.015568498522043228, + -0.005881361663341522, + 0.004998677875846624, + -0.011513269506394863, + 0.02691546455025673, + 0.009121067821979523, + -0.002686429535970092, + -0.016476767137646675, + -0.0018677081679925323, + 0.0260199885815382, + -0.021504228934645653, + -0.008558196946978569, + 0.029294874519109726, + -0.02358940988779068, + 0.053626250475645065, + -0.035205017775297165, + 0.02425462007522583, + -0.017960699275135994, + 0.013189089484512806, + -0.000453734741313383, + -0.044569145888090134, + 0.03067646734416485, + -0.01600344479084015, + -0.015568498522043228, + 0.07204747945070267, + -0.014378794468939304, + -0.010381131432950497, + -0.03359316289424896, + 0.010496264323592186, + -0.011167870834469795, + 0.005408038385212421, + 0.00821919459849596, + -0.008430271409451962, + 0.011020757257938385, + 0.04346898943185806, + 0.005775823257863522, + 0.027810942381620407, + -0.016707032918930054, + 0.03640751540660858, + -0.016540730372071266, + 0.016643069684505463, + -0.008008118718862534, + 0.01047067902982235, + -0.011289400048553944, + -0.010227620601654053, + 0.006076447665691376, + 0.018907347694039345, + 0.06263218820095062, + 0.01659190095961094, + 0.021785663440823555, + 0.01938067004084587, + 0.008315138518810272, + -0.026301424950361252, + -0.038735754787921906, + -0.008846028707921505, + -0.013278637081384659, + -0.03477007523179054, + 0.02005867287516594, + -0.005932531785219908, + -0.0302926916629076, + 0.03425837308168411, + 0.02816913276910782, + 0.0151463458314538, + -0.01231280155479908, + 0.0001705003232927993, + -0.0028191518504172564, + -0.04093606770038605, + -0.048483654856681824, + -0.022911405190825462, + -0.012101725675165653, + 0.019278330728411674, + 0.0025744950398802757, + -0.032262738794088364, + 0.0017589717172086239, + -0.11943098157644272, + -0.04902094230055809, + 0.024830283597111702, + -0.021350719034671783, + 0.008200006559491158, + -0.0037194255273789167, + 0.06160878390073776, + 0.034463051706552505, + -0.01412294339388609, + -0.05006992816925049, + -0.0036010947078466415, + -0.007880193181335926, + -0.013355392031371593, + 0.009850241243839264, + 0.026864295825362206, + 0.008954765275120735, + 0.029883330687880516, + 0.00129524280782789, + 0.05285869911313057, + 0.008750084787607193, + 0.0024801502004265785, + -0.027068976312875748, + 0.024740736931562424, + -0.006575356237590313, + -0.01888176240026951, + -0.0040392386727035046, + -0.022438082844018936, + -0.00022606784477829933, + 0.015606876462697983, + 0.03139284625649452, + -0.0007891386630944908, + 0.010886435396969318, + -0.011596420779824257, + -0.006620130036026239, + -0.020954150706529617, + 0.01116147544234991, + 0.020161014050245285, + 0.013393769972026348, + 0.005801408551633358, + -0.007579568773508072, + 0.004714044276624918, + 0.03471890464425087, + 0.005424029193818569, + 0.005107413977384567, + -0.001279252115637064, + 0.01812700368463993, + -0.017295489087700844, + 0.028808757662773132, + -0.01923995278775692, + 0.039912667125463486, + 0.010195639915764332, + -0.05211673304438591, + 0.007598757743835449, + -0.025022171437740326, + 0.03510268032550812, + 0.03331172466278076, + -0.022054307162761688, + 0.0020068269222974777, + -0.01135975867509842, + -0.020007504150271416, + 0.04142218455672264, + 0.011724346317350864, + 0.030702050775289536, + -0.02883434295654297, + -0.013253052718937397, + -0.001918878173455596, + 0.00022446877846959978, + -0.022220609709620476, + -0.005248132161796093, + 0.03569113463163376, + 0.003180540632456541, + 0.0023106492590159178, + 0.0115388548001647, + 0.004554137587547302, + -0.0009930194355547428, + 0.02145305834710598, + 0.0029758603777736425, + -0.035051509737968445, + 0.025738554075360298, + -0.035563208162784576, + 0.015862727537751198, + 0.05367742106318474, + -0.00626513734459877, + 0.04195947200059891, + 0.021184416487812996, + -0.013611243106424809, + -0.008001722395420074, + 0.004125588107854128, + 0.024676773697137833, + 0.05219348892569542, + 0.025034964084625244, + 0.00822559092193842, + -0.022079892456531525, + -0.03448863700032234, + 0.006114825140684843, + 0.01599065214395523, + 0.012031366117298603, + -0.014890494756400585, + 0.01682216487824917, + -0.018408438190817833, + 0.02993449941277504, + 0.01976444572210312, + -0.00746443634852767, + -0.007861004211008549, + -0.011935422196984291, + 0.04694855213165283, + 0.04062904790043831, + -0.006652111187577248, + -0.00818721391260624, + -0.0012048956705257297, + -0.023180048912763596, + 0.005487991496920586, + 0.050453703850507736, + 0.028220301494002342, + -0.03190454840660095, + -0.012044158764183521, + 0.008193610236048698, + -0.030420616269111633, + -0.02064712904393673, + -0.007080660667270422, + -0.002366616390645504, + 0.02595602534711361, + -0.021504228934645653, + -0.00337402755394578, + -0.005187367554754019, + -0.0003733817138709128, + 0.03487241268157959, + 0.016847750172019005, + -0.03139284625649452, + -0.014634644612669945, + 0.01872825063765049, + 0.019508594647049904, + -0.04600190743803978, + 0.0026512499898672104, + -0.014864910393953323, + -0.02829705737531185, + 0.013189089484512806, + 0.008468649350106716, + -0.0146730225533247, + 0.004291891120374203, + -0.021772870793938637, + -0.0028015621937811375, + -0.047767274081707, + -0.030190350487828255, + 0.03589581698179245, + 0.011257419362664223, + -0.01718035712838173, + -0.019265538081526756, + -0.006664903834462166, + -0.05063280090689659, + 0.04648802429437637, + 0.01312512718141079, + 0.003498754696920514, + 0.020954150706529617, + -0.06155761331319809, + 0.019853994250297546, + -0.018561948090791702, + -0.04339223355054855, + -0.02448488585650921, + 0.006089240312576294, + -0.004004059359431267, + 0.03126492351293564, + 0.010010148398578167, + -0.0194702185690403, + -0.0031549555715173483, + 0.007003905717283487, + -0.010873643681406975, + 0.006217165384441614, + 0.050172269344329834, + -0.0320068895816803, + -0.023614995181560516, + -0.024011563509702682, + -0.008570989593863487, + 0.030727636069059372, + 0.027171315625309944, + 0.006895169150084257, + 0.014954457990825176, + -0.02173449471592903, + -0.036074910312891006, + 0.025150097906589508, + -0.013995018787682056, + 0.0016254497459158301, + -0.016783788800239563, + 0.0028895107097923756, + 0.016272086650133133, + -0.009338540956377983, + -0.008308743126690388, + 0.014519511722028255, + -0.0021683324594050646, + -0.003898520953953266, + 0.02078784815967083, + 0.02970423549413681, + 0.00795694813132286, + 0.028706418350338936, + -0.007170208264142275, + -0.0011409330181777477, + 0.00869891420006752, + -0.0016742212465032935, + 0.0115388548001647, + -0.004096805118024349, + 0.024126695469021797, + -0.01592668890953064, + 0.02520126663148403, + 0.017819982022047043, + -0.016105784103274345, + 0.014685814268887043, + 0.02476632222533226, + -0.0075731729157269, + -0.018677081912755966, + 0.013675205409526825, + 0.023180048912763596, + 0.00600928720086813, + 0.0046692704781889915, + 0.015414988622069359, + -0.048330146819353104, + 0.02507334202528, + -0.03233949467539787, + -0.015568498522043228, + -0.01190344151109457, + -0.026710784062743187, + -0.007649927865713835, + -0.01718035712838173, + 0.009114671498537064, + -0.012997201643884182, + 0.0035371321719139814, + 0.058487407863140106, + 0.014263661578297615, + -0.012082536704838276, + -0.020442448556423187, + -0.002956671640276909, + -0.023346351459622383, + 0.009485654532909393, + -0.019252745434641838, + -0.010195639915764332, + 0.01620812527835369, + 0.0030334265902638435, + 0.03891485184431076, + 0.021644946187734604, + 0.009300163015723228, + -0.028732003644108772, + 0.0088780103251338, + -0.013304222375154495, + 0.025636212900280952, + -0.021913589909672737, + 0.025226851925253868, + -0.03482124209403992, + 0.028066791594028473, + -0.004291891120374203, + 0.0015103170881047845, + 0.012479105032980442, + 0.003084596712142229, + 0.0027216088492423296, + -0.02860407717525959, + -0.0015766782453283668, + 0.026787539944052696, + 0.00367784989066422, + 0.0028655247297137976, + 0.008526215329766273, + -0.002516928594559431, + -0.017487376928329468, + 0.024715151637792587, + 0.027555091306567192, + 0.0005424828850664198, + -0.0008419078076258302, + -0.019367877393960953, + 0.008212799206376076, + -0.021568190306425095, + -0.007298133336007595, + 0.0233591441065073, + -0.026480520144104958, + 0.007880193181335926, + -0.006799225229769945, + -0.029218118637800217, + -0.004803591873496771, + -0.006450628861784935, + -0.031060243025422096, + -8.04029987193644e-05, + -0.005519973114132881, + 0.016348842531442642, + -0.04694855213165283, + -0.015901103615760803, + -0.008193610236048698, + 0.016246503219008446, + 0.0355120413005352, + -0.009466465562582016, + -0.02049361914396286, + -0.005865371320396662, + -0.02057037502527237, + -0.003898520953953266, + -0.01886896975338459, + 0.033286139369010925, + -0.006690488662570715, + 0.035281773656606674, + -0.05367742106318474, + 0.006175589747726917, + -0.003086195793002844, + -0.020224977284669876, + -0.004624496679753065, + -0.010329960845410824, + -0.043827179819345474, + 0.0033036686945706606, + -0.019559765234589577, + -0.004838771186769009, + 0.008730895817279816, + 0.013995018787682056, + -0.008315138518810272, + -0.0039177099242806435, + -0.023563824594020844, + 0.0028431378304958344, + -0.0016334450338035822, + -0.012952428311109543, + 0.0022099080961197615, + 0.04262468218803406, + 0.014135736040771008, + -0.023870844393968582, + 0.034104861319065094, + 0.035563208162784576, + 0.0030094406101852655, + -0.013649620115756989, + 0.024663981050252914, + -0.005283311475068331, + -0.009223408065736294, + 0.01578597165644169, + 0.022873029112815857, + 0.006089240312576294, + -0.0341816172003746, + -0.02057037502527237, + -0.002403395017609, + 0.018114211037755013, + 0.012626218609511852, + -0.003028629347681999, + 0.005376057233661413, + -0.008155232295393944, + -0.019943540915846825, + -0.027529506012797356, + 0.027171315625309944, + -0.01871545985341072, + 0.004071219824254513, + 0.004646883346140385, + -0.0070294905453920364, + 0.040347613394260406, + 0.005117008462548256, + -0.015338233672082424, + 0.004157569259405136, + 0.01418690662831068, + -0.007119038142263889, + -0.01798628456890583, + 0.014698606915771961, + 0.025853686034679413, + 0.012811710126698017, + 0.0706658884882927, + 0.008993142284452915, + -0.04114075005054474, + 0.03804495930671692, + 0.05992016941308975, + 0.007451643701642752, + 0.009926997125148773, + 0.005248132161796093, + -0.007784249261021614, + -0.02765743061900139, + -0.03149518743157387, + 0.013150712475180626, + 0.03525618836283684, + -0.009517636150121689, + 0.0012096927966922522, + -0.005826993379741907, + -0.0005272917333059013, + -0.010656170547008514, + 0.02013542875647545, + 0.029294874519109726, + 0.03233949467539787, + 0.0230777096003294, + -0.014289246872067451, + 0.008961161598563194, + 0.0230777096003294, + -0.012236046604812145, + 0.020966943353414536, + -0.03441188111901283, + -0.0014695408754050732, + 0.04505525901913643, + -0.013572865165770054, + -0.023614995181560516, + 0.05572422221302986, + 0.005938928108662367, + -0.04896977171301842, + -4.192549022263847e-05, + -0.015862727537751198, + -0.041396599262952805, + 0.005395245738327503, + 0.023717334493994713, + -0.012741351500153542, + -0.0065305824391543865, + -0.011404532939195633, + -0.017973491922020912, + -0.003421999514102936, + 0.03346523642539978, + 0.03464214876294136, + 0.017065223306417465, + -0.028859928250312805, + -0.015658047050237656, + 0.024510471150279045, + 0.006684092339128256, + -0.03546087071299553, + -0.029064608737826347, + -0.0170908086001873, + -0.032032474875450134, + -0.010317168198525906, + 0.027683015912771225, + -0.01703963801264763, + -0.004454995505511761, + -0.023768505081534386, + 0.018907347694039345, + -0.001393585349433124, + 0.011820290237665176, + 0.007157415617257357, + 0.022143853828310966, + 0.008148835971951485, + -0.011078323237597942, + -0.007611550390720367, + 0.006409053225070238, + -0.03804495930671692, + 0.009792675264179707, + 0.01976444572210312, + 0.020007504150271416, + -0.01939346268773079, + -0.02875758893787861, + 0.0058461823500692844, + -0.024344168603420258, + -0.016540730372071266, + -0.031367260962724686, + -0.0058525786735117435, + -0.009645560756325722, + -0.06539537012577057, + 0.023180048912763596, + -0.030267106369137764, + 0.006786432582885027, + 0.027145730331540108, + -0.005990098230540752, + -0.009338540956377983, + 0.018741043284535408, + 0.014788154512643814, + 0.0019620528910309076, + 0.032697685062885284, + -0.001223284867592156, + 0.008737292140722275, + -0.006639318540692329, + -0.008980349637567997, + -0.01990516297519207, + -0.05173295736312866, + -0.005203357897698879, + -0.002093176357448101, + 0.017896737903356552, + 0.034463051706552505, + 0.0015942680183798075, + -0.024740736931562424, + -0.0035435284953564405, + 0.00821919459849596, + -0.009076293557882309, + 0.007528399117290974, + 0.047204405069351196, + -4.187551894574426e-05, + -0.013278637081384659, + 0.01563246175646782, + -0.008718103170394897, + -0.004234324675053358, + 0.010106092318892479, + 0.008609366603195667, + -0.009005934931337833, + 0.00014381592336576432, + 0.01168596837669611, + -0.01194821484386921, + -0.009997355751693249, + 0.020212184637784958, + 0.0010481872595846653, + -0.009089086204767227, + 0.005494387820363045, + -0.0194702185690403, + 0.0077330791391432285, + -0.03405369073152542, + -0.009562409482896328, + 0.012453519739210606, + 0.031955718994140625, + -0.019329499453306198, + -0.012869277037680149, + 0.008200006559491158, + -0.01608019880950451, + -0.010828869417309761, + 0.012370368465781212, + -0.0017781604547053576, + 0.024523263797163963, + -0.01563246175646782, + -0.0032269135117530823, + -0.013176296837627888, + 0.017666472122073174, + 0.030497372150421143, + 0.01584993489086628, + 0.01739782840013504, + -0.030497372150421143, + -0.011410929262638092, + -0.011391740292310715, + 0.01471139956265688, + -0.01238316111266613, + 0.008206402882933617, + -0.013649620115756989, + -0.025751344859600067, + -0.029550723731517792, + -0.0001515114272478968, + -0.02440813183784485, + 0.014775361865758896, + -0.04009176418185234, + 0.006812017876654863, + -0.010381131432950497, + -0.0007031889399513602, + -0.014493926428258419, + 0.009587994776666164, + -0.008040099404752254, + 0.001551093184389174, + -0.006329100113362074, + 0.012184876948595047, + 0.016566315665841103, + -0.008308743126690388, + -0.015760386362671852, + -0.014609059318900108, + 0.003940096590667963, + 0.005436821840703487, + -0.0031197762582451105, + 0.022310158237814903, + 0.030139179900288582, + -0.036816876381635666, + -0.007119038142263889, + -0.025034964084625244, + 0.020685506984591484, + -0.012402349151670933, + -0.015901103615760803, + -0.02727365493774414, + 0.02883434295654297, + 0.023985978215932846, + -0.021875211969017982, + 0.039912667125463486, + -0.03134167939424515, + -0.04439004883170128, + -0.005890956148505211, + 0.016272086650133133, + -0.014378794468939304, + 0.031060243025422096, + -0.03487241268157959, + -0.026301424950361252, + -0.003642670577391982, + -0.0010657769162207842, + 0.011065531522035599, + 0.009069898165762424, + -0.022732309997081757, + 0.012798917479813099, + -0.02086460217833519, + -0.04444121941924095, + -0.006971924100071192, + 0.010553830303251743, + 0.034028105437755585, + 0.015939481556415558, + 0.0028735201340168715, + -0.031802207231521606, + -0.02078784815967083, + 0.013560072518885136, + -0.0328511968255043, + -0.011263814754784107, + -0.007662720512598753, + -0.01231280155479908, + 0.018996894359588623, + 0.011954611167311668, + 0.017640886828303337, + -0.0036138873547315598, + 0.004733232781291008, + 0.013368184678256512, + -0.01205055508762598, + -0.0019780436996370554, + 0.01529985573142767, + 0.0016838156152516603, + -0.0038793322164565325, + -0.001507118926383555, + 0.002636858494952321, + 0.001677419408224523, + -0.014532304368913174, + -0.022949783131480217, + 0.026429349556565285, + -0.0019284726586192846, + -0.01865149661898613, + -0.018178172409534454, + -0.012907654047012329, + -0.026071159169077873, + -0.001934868865646422, + -0.010457886382937431, + 0.01084166206419468, + -0.002325040753930807, + 0.022949783131480217, + 0.005139395594596863, + -0.03095790185034275, + 0.03369550034403801, + -0.026813125237822533, + -0.022284572944045067, + -0.005737445782870054, + -0.007189397234469652, + 0.013611243106424809, + -0.00722137838602066, + -0.0034667733125388622, + -0.009108275175094604, + -0.013457732275128365, + 0.009197822771966457, + -0.02092856541275978, + -0.017052430659532547, + -0.022386912256479263, + -0.020391279831528664, + 0.005331283435225487, + 0.0031853378750383854, + -0.013048372231423855, + 8.530013292329386e-05, + 0.022207817062735558, + 0.0017621698789298534, + 0.006389864254742861, + -0.0016998063074424863, + -0.020890187472105026, + 0.012805313803255558, + -0.03259534388780594, + -0.018075833097100258, + 0.0007947353878989816, + -0.015734801068902016, + -0.002013223012909293, + -0.010010148398578167, + -0.014250868931412697, + 0.016016237437725067, + -0.019777238368988037, + 0.0034251976758241653, + -0.015018420293927193, + 0.0007215781370177865, + -0.0166686549782753, + 0.01455788966268301, + -0.0068376027047634125, + -0.03413044661283493, + 0.027964452281594276, + 0.027068976312875748, + 0.029243703931570053, + 0.026889879256486893, + 0.017666472122073174, + 0.006287524476647377, + -0.010125280357897282, + 0.017154771834611893, + -0.0036138873547315598, + 0.0003064208722207695, + 0.022450875490903854, + -0.0022402903996407986, + -0.009856637567281723, + -0.003043021075427532, + -0.005487991496920586, + 0.016029030084609985, + -0.01790953055024147, + 0.009926997125148773, + 0.019662106409668922, + -0.0026992219500243664, + 0.015133553184568882, + -0.0238836370408535, + -0.012108121998608112, + -0.014135736040771008, + 0.010451490059494972, + -0.004710846114903688, + -0.030088011175394058, + 0.017947908490896225, + 0.012331990525126457, + 0.008961161598563194, + -0.02816913276910782, + -0.012133706361055374, + 0.01858753338456154, + 0.020148221403360367, + -0.006543374620378017, + 0.034616563469171524, + -0.020033089444041252, + 0.023205634206533432, + -0.009664749726653099, + 0.0016318460693582892, + -0.005059442482888699, + 0.024753529578447342, + -0.006760847754776478, + 0.05122125521302223, + 0.015171930193901062, + 0.028987852856516838, + -0.047076478600502014, + 0.02012263610959053, + -0.0005484793800860643, + 0.00271041551604867, + -0.011596420779824257, + 0.008980349637567997, + 0.005663888994604349, + 0.01157083548605442, + 0.008462253026664257, + 0.008820443414151669, + 0.007541191298514605, + 0.010317168198525906, + 0.00038657401455566287, + 0.012408745475113392, + 0.0057022664695978165, + 0.010732925496995449, + 0.0173338670283556, + 0.04167803376913071, + 0.014736984856426716, + -0.02653168886899948, + 0.0022115071769803762, + -0.00517777306959033, + -0.027452751994132996, + 0.018011869862675667, + 0.021951965987682343, + 0.014110150747001171, + 0.02072388492524624, + -0.005708662793040276, + 0.01741062104701996, + 0.008168024942278862, + -0.02248925343155861, + -0.01637442782521248, + 0.005532765761017799, + 0.009543221443891525, + -0.032313909381628036, + -0.01253667101264, + 0.005161782260984182, + -0.013662412762641907, + 0.019035272300243378, + 0.04328989237546921, + 0.01263901125639677, + 0.005715059116482735, + -0.03198130428791046, + -0.01696288399398327, + -0.001189704518765211, + -0.029397213831543922, + 0.01622091792523861, + 0.031060243025422096, + -0.01622091792523861, + 0.014839325100183487, + -0.03901718929409981, + 0.01806304045021534, + 0.006217165384441614, + -0.02947396971285343, + -0.03589581698179245, + 0.03198130428791046 + ], + "how_to_create_assembling_machines": [ + -0.0022221317049115896, + 0.0029303808696568012, + 0.022139867767691612, + -0.0422966405749321, + -0.014285385608673096, + 0.013520476408302784, + 0.017210453748703003, + -0.020850855857133865, + -0.0012819309486076236, + -0.02757922187447548, + 0.028358295559883118, + -0.042976558208465576, + -0.002365552121773362, + -0.018357818946242332, + 0.02080835960805416, + -0.019349366426467896, + 0.011246996931731701, + 0.018442807719111443, + 0.023924656212329865, + 0.00767033826559782, + 0.045441266149282455, + 0.01441287063062191, + 0.04255161061882973, + -0.011218667030334473, + -0.03507249802350998, + 0.006746073253452778, + 0.010524582117795944, + 0.02036924660205841, + -0.04691442474722862, + -0.03694227710366249, + 0.01559564657509327, + -0.02150244452059269, + -0.02175741456449032, + 0.014434117823839188, + -0.004819635301828384, + -0.0032154512591660023, + 0.014419952407479286, + 0.024292945861816406, + 0.007415368687361479, + 0.019717656075954437, + 0.029576484113931656, + -0.03323104977607727, + -0.01772039383649826, + -0.014072910882532597, + -0.03286276012659073, + 0.018371982499957085, + -0.0502290315926075, + 0.0055880858562886715, + 0.0046319495886564255, + 0.0034084490034729242, + 0.014476613141596317, + 0.024987030774354935, + -0.013548806309700012, + -0.04538460448384285, + -0.02184240333735943, + -0.03685728460550308, + -0.022848118096590042, + -0.00031539221527054906, + -0.004107845015823841, + 0.013704621233046055, + 0.03314606100320816, + -0.01127532683312893, + 0.04359981790184975, + 0.039803601801395416, + -0.016077255830168724, + -0.011714440770447254, + -0.03867040202021599, + 0.01594977080821991, + 0.041815031319856644, + 0.008668969385325909, + -0.020865019410848618, + 0.0029038216453045607, + -0.012146472930908203, + -0.045809555798769, + 0.01858445815742016, + -0.06039948761463165, + -0.005460600834339857, + 0.03841543570160866, + -0.04382645711302757, + 0.04362814873456955, + -0.058303069323301315, + -0.01163653377443552, + 0.013740033842623234, + -0.030114753171801567, + -0.011707358993589878, + -0.03232449293136597, + -0.03739555552601814, + 0.013336331583559513, + -0.05385526642203331, + -0.05807643011212349, + -0.02988811396062374, + 0.0024700190406292677, + 0.005074605345726013, + 0.022678138688206673, + 0.0775674507021904, + 0.006735449656844139, + 0.004454887006431818, + -0.013017619028687477, + 0.004571748431771994, + 0.012231462635099888, + 0.055300094187259674, + -0.023570531979203224, + -0.01383210625499487, + -0.037508875131607056, + 0.010198787786066532, + -0.00013224339636508375, + -0.023414717987179756, + -0.017578743398189545, + -0.07734080404043198, + -0.03297607973217964, + -0.0784740075469017, + 0.0010349290678277612, + 0.01199065800756216, + 0.005170218646526337, + 0.011622368358075619, + -0.005106476601213217, + 0.03994525223970413, + 0.02899572066962719, + 0.04136174917221069, + -0.0090301763266325, + -0.007606595754623413, + 0.00828651525080204, + 0.005063981283456087, + -0.026106063276529312, + -0.01885359175503254, + -0.01087870728224516, + 0.03572408854961395, + -0.0405401811003685, + -0.03223950043320656, + 0.009972147643566132, + -0.00698333652690053, + 0.003585511352866888, + 0.03232449293136597, + 0.0028843446634709835, + -0.017677899450063705, + 0.013584218919277191, + -0.03994525223970413, + -0.011027439497411251, + 0.0033818897791206837, + 0.033004410564899445, + -0.002448771381750703, + -0.015071542002260685, + -0.02616272307932377, + 0.008385670371353626, + -0.034335918724536896, + 0.044987987726926804, + -0.02131829969584942, + -0.017862044274806976, + 0.02273479849100113, + -0.0020379868801683187, + -0.0019653914496302605, + -0.011926915496587753, + -0.028429120779037476, + -0.03453422710299492, + 0.029661474749445915, + -0.022862283512949944, + -0.038812052458524704, + 0.05065397918224335, + 0.01101327408105135, + -0.029066545888781548, + 0.005584544502198696, + -0.033344369381666183, + -0.021559104323387146, + 0.02381133660674095, + -0.0546485036611557, + 0.007705750875174999, + -0.04716939479112625, + 0.018102848902344704, + -0.039350323379039764, + 0.016955485567450523, + 1.6156933270394802e-05, + -0.01674300990998745, + -0.018357818946242332, + 0.010814964771270752, + 0.006770861800760031, + -0.01620474085211754, + -0.08629307895898819, + -0.043939776718616486, + -0.03218284249305725, + -0.017224619165062904, + 0.0056624519638717175, + -0.011494883336126804, + -0.027253426611423492, + -0.050370678305625916, + -0.01973182149231434, + -0.015439831651747227, + -0.029038215056061745, + 0.011331986635923386, + 0.006168850231915712, + 0.05102226883172989, + -0.016162246465682983, + 0.014788242056965828, + -0.030029764398932457, + 0.027012621983885765, + 0.0038387104868888855, + -0.00885311421006918, + 0.04954911023378372, + -0.02263564243912697, + 0.10074135661125183, + -0.013584218919277191, + 0.010496252216398716, + -0.00907975435256958, + 0.021544938907027245, + -0.014901562593877316, + -0.016615524888038635, + -0.01283347513526678, + -0.04646114632487297, + 0.036092378199100494, + 0.0268709734082222, + 0.004575289320200682, + 0.015482326969504356, + -0.037593863904476166, + 0.037678856402635574, + 0.029746465384960175, + -0.020553389564156532, + 0.009440961293876171, + -0.013477981090545654, + 0.04476134479045868, + 0.005467683542519808, + -0.008562732487916946, + -0.03640400618314743, + 0.049577441066503525, + 0.04037020355463028, + 0.02793334610760212, + -0.005180842708796263, + 0.042268309742212296, + 0.020156770944595337, + -0.039718613028526306, + 0.081080362200737, + 0.016615524888038635, + -0.017153793945908546, + -0.01728127896785736, + -0.009575529024004936, + -0.009745508432388306, + -0.01220313273370266, + 0.008300679735839367, + -0.017578743398189545, + 0.0036049881018698215, + -0.035299137234687805, + 0.03612070530653, + -0.015751460567116737, + -0.011601121164858341, + 0.02988811396062374, + -0.007153316400945187, + 0.01708296872675419, + 0.0031286906450986862, + -0.02281978726387024, + -0.04461969807744026, + 0.015000716783106327, + 0.01137448102235794, + 0.035554107278585434, + -0.016459710896015167, + 0.024746226146817207, + 0.031162962317466736, + -0.02590775489807129, + -0.04286323860287666, + -0.05694323033094406, + -0.019774315878748894, + 0.04566790536046028, + -0.0031552498694509268, + -0.040058571845293045, + 0.04731104522943497, + -0.09280896931886673, + 0.029151534661650658, + 0.02457624487578869, + 0.028669925406575203, + 0.03325938060879707, + 0.005719111766666174, + 0.01145238894969225, + -0.05920962989330292, + -0.01620474085211754, + 0.04362814873456955, + 0.04997406154870987, + -0.016176410019397736, + -0.053543634712696075, + -0.019859306514263153, + 0.002923298394307494, + 0.04818927124142647, + 0.03164457157254219, + -0.018456973135471344, + -0.06657542288303375, + -0.027352582663297653, + 0.04572456702589989, + 0.09093919396400452, + -0.021984053775668144, + 0.02830163575708866, + -0.010722892358899117, + 0.0015670012217015028, + 0.005361446179449558, + 0.029633143916726112, + 0.011126594617962837, + 0.027735037729144096, + 0.004975450225174427, + 0.0023407633416354656, + 0.04082348197698593, + -0.008137783035635948, + 0.0037147668190300465, + 0.011494883336126804, + 0.013775446452200413, + -0.003987442702054977, + 0.032211173325777054, + 0.05977622792124748, + 0.031162962317466736, + 0.05017236992716789, + -0.018187837675213814, + -0.02222485840320587, + -0.03833044320344925, + -0.028414955362677574, + 0.03753720596432686, + 0.02327306754887104, + 0.027281757444143295, + 0.011296574026346207, + 0.027834191918373108, + -0.02255065366625786, + 0.03147459402680397, + -0.008442330174148083, + 0.02310308814048767, + -0.012691824696958065, + -0.004578830674290657, + -0.055753372609615326, + 0.0023991940543055534, + -0.035299137234687805, + 0.04096513241529465, + -0.03960529342293739, + -0.005343739874660969, + -0.010135045275092125, + 0.009745508432388306, + -0.005981164053082466, + -0.032126180827617645, + 0.013987921178340912, + -0.02221069298684597, + -0.017692063003778458, + -0.00016632788174320012, + -0.033372700214385986, + 0.024094635620713234, + 0.008406917564570904, + 0.03991692140698433, + 0.02354220114648342, + 0.042353298515081406, + 0.04359981790184975, + -0.025411980226635933, + -0.02636103332042694, + -0.026106063276529312, + 0.03277777135372162, + -0.02872658520936966, + -0.023938821628689766, + -0.004642573185265064, + 0.0035979056265205145, + 0.023414717987179756, + 0.04133342206478119, + 0.011211584322154522, + 0.01123991422355175, + -0.01657303050160408, + -0.017437094822525978, + -0.02255065366625786, + -0.01682800054550171, + 0.008003215305507183, + 0.0475943423807621, + -0.0018892546650022268, + 0.003944947849959135, + -0.02381133660674095, + 0.09535866975784302, + 0.021289968863129616, + 0.025256164371967316, + 0.023669686168432236, + 0.05439353361725807, + -0.006204262375831604, + 0.05175884813070297, + -0.01859862357378006, + 0.05008738115429878, + 0.052495427429676056, + 0.019080232828855515, + 0.0036545656621456146, + 0.013456733897328377, + -0.056886572390794754, + -0.025978578254580498, + 0.016162246465682983, + 0.030199743807315826, + 0.01736626960337162, + 0.0094692911952734, + 0.04708440229296684, + -0.027338417246937752, + 0.03844376280903816, + -0.023726345971226692, + 0.015666471794247627, + 0.023924656212329865, + 0.006122814025729895, + 0.06748197972774506, + -0.06895513832569122, + -0.052212126553058624, + 0.05782146006822586, + -0.06289252638816833, + 0.022083207964897156, + 0.019321037456393242, + 0.006090942770242691, + -0.006388407200574875, + 0.049945730715990067, + -0.013293836265802383, + 0.010305025614798069, + 0.03816046565771103, + 0.029746465384960175, + 0.0033411653712391853, + -0.0063813249580562115, + 4.791748142451979e-05, + -0.016856329515576363, + -0.0008100599516183138, + -0.009858828037977219, + 0.002880803542211652, + 0.03005809336900711, + -0.002703741192817688, + 0.0837433785200119, + -0.05722653120756149, + 0.03912368416786194, + -0.015652306377887726, + -0.024122966453433037, + -0.049322471022605896, + -0.004005149006843567, + 0.0060980250127613544, + -0.02698429301381111, + 0.018825262784957886, + -0.05102226883172989, + -0.029859784990549088, + 0.00648047961294651, + -0.021530773490667343, + -0.010885789059102535, + 0.014264138415455818, + 0.03549744933843613, + -0.027465902268886566, + 0.024179626256227493, + -0.02539781481027603, + -0.012727237306535244, + 0.005531426053494215, + 0.03637567535042763, + 0.06289252638816833, + 0.029491495341062546, + 0.001285472186282277, + -0.05331699550151825, + -0.030341394245624542, + -0.011955245397984982, + 0.01180651318281889, + 0.029066545888781548, + -0.003937865141779184, + 0.03464755043387413, + 0.025256164371967316, + -0.05824641138315201, + -0.01026253029704094, + -0.06289252638816833, + -0.01579395681619644, + -0.03629068657755852, + -0.025227835401892662, + 0.03048304282128811, + -0.0056624519638717175, + -0.0019317495170980692, + 0.04960577189922333, + 0.002108811866492033, + 0.02971813455224037, + 0.07694418728351593, + -0.019675161689519882, + 0.02018510177731514, + 0.01966099627315998, + 0.03841543570160866, + 0.0264318585395813, + -0.024448761716485023, + 0.004221165087074041, + -0.01885359175503254, + 0.03801881521940231, + -0.014575767330825329, + 0.019887635484337807, + 0.02273479849100113, + 0.003072030609473586, + -0.021743249148130417, + -0.06158934533596039, + 0.002721447264775634, + -0.007726998068392277, + -0.00903725903481245, + -0.020567554980516434, + -0.017309609800577164, + 0.032296162098646164, + -0.017125464975833893, + -0.050002388656139374, + -0.03736722469329834, + -0.005892632994800806, + 0.012004823423922062, + 0.008378587663173676, + 0.003870581742376089, + 0.06640543788671494, + -0.021219145506620407, + -0.028599100187420845, + -0.018456973135471344, + -0.00552788469940424, + 0.010021725669503212, + 0.0029958938248455524, + 0.04221164807677269, + -0.017578743398189545, + 0.044393058866262436, + -0.04529961571097374, + -0.05858637019991875, + -0.032664451748132706, + -0.01957600750029087, + 6.52363887638785e-05, + 0.021176649257540703, + -0.018924416974186897, + 0.01400916837155819, + 0.004886919166892767, + -0.019533511251211166, + -0.06453566253185272, + -0.0008370619616471231, + 0.018131177872419357, + -0.018485302105545998, + -0.011282408609986305, + -0.009717178530991077, + 0.004876295570284128, + -0.007132069207727909, + 0.027310088276863098, + -0.01158695574849844, + 0.03249447047710419, + 0.008484824560582638, + 0.01414373517036438, + 0.028329966589808464, + 0.0048479656688869, + -0.004639031831175089, + -0.04105012118816376, + -0.011657780967652798, + -0.018060352653265, + 0.02238067239522934, + -0.036630645394325256, + -0.005400399677455425, + -0.008321927860379219, + -0.008831867016851902, + 0.018825262784957886, + 0.004405309911817312, + -0.008378587663173676, + 0.02960481494665146, + 0.018032023683190346, + -0.045526254922151566, + 0.019335201010107994, + -0.030426383018493652, + -0.014674922451376915, + -0.03068135306239128, + -0.0052906209602952, + -0.0013509852578863502, + 0.01569480076432228, + -0.0015085707418620586, + 0.014164983294904232, + -0.028712421655654907, + 0.03119129315018654, + -0.007309131324291229, + 0.00286486791446805, + 0.012096895836293697, + 0.025610288605093956, + 0.011820678599178791, + -0.04379812628030777, + -0.008321927860379219, + -0.03719724714756012, + -0.015227356925606728, + 0.019420191645622253, + 0.004592995624989271, + -0.021828239783644676, + -0.00846357736736536, + -0.012118143029510975, + 0.027083447203040123, + -0.013138022273778915, + -0.015992265194654465, + -0.007181646302342415, + 0.020156770944595337, + 0.029463164508342743, + 0.01648803986608982, + 0.003821004182100296, + 0.01594977080821991, + -0.0025886506773531437, + -0.023867996409535408, + -0.01993013173341751, + 0.021544938907027245, + -0.024788720533251762, + -0.013067197054624557, + -0.019165221601724625, + 0.010949531570076942, + 0.008307762444019318, + 0.005046275444328785, + -0.05277872830629349, + -0.025185339152812958, + -0.07989050447940826, + -0.021559104323387146, + 0.015326512046158314, + -0.05005905032157898, + 0.009023094549775124, + -0.031701233237981796, + 0.02053922601044178, + 0.007280801422894001, + -0.02072337083518505, + -0.003475732635706663, + 0.01815950870513916, + 0.02487371116876602, + -0.023315561935305595, + -0.014242890290915966, + 0.005690781865268946, + -0.02425045147538185, + 0.019590171054005623, + -0.0105812419205904, + 0.03331603854894638, + 0.005071063991636038, + -0.014094158075749874, + -0.011700276285409927, + 0.017068805173039436, + -0.0295198243111372, + -0.03325938060879707, + -0.006122814025729895, + -0.001859154086560011, + -0.038302116096019745, + 0.006622129585593939, + -0.04096513241529465, + 0.03665897622704506, + 0.007819070480763912, + -0.014788242056965828, + -0.010276694782078266, + 0.009242651052772999, + 0.004536335822194815, + 0.046404484659433365, + -0.01638888567686081, + -0.01842864230275154, + -0.005170218646526337, + 0.0037430967204272747, + -0.0027462360449135303, + 0.026488518342375755, + 0.01357005350291729, + 0.002004345180466771, + 0.003238469362258911, + 0.022678138688206673, + -0.029123205691576004, + 0.008378587663173676, + -0.009618023410439491, + 0.0024062765296548605, + -0.00639194855466485, + -0.008513154461979866, + -0.03289109095931053, + 0.013562971726059914, + 0.04011523351073265, + -0.004950661677867174, + 0.008081123232841492, + 0.019023573026061058, + 0.004192835185676813, + -0.0020025745034217834, + 0.0432031974196434, + -0.025256164371967316, + 0.003980360459536314, + 0.07790740579366684, + 0.018456973135471344, + 0.015312346629798412, + 0.005811184179037809, + -0.03501584008336067, + 0.0021353710908442736, + -0.0031729561742395163, + 0.02133246511220932, + -0.010135045275092125, + 0.009327641688287258, + -0.03243781253695488, + -0.02900988608598709, + -0.079380564391613, + -0.01009255088865757, + 0.006537139881402254, + -0.0405118502676487, + -0.0009809250477701426, + -0.012968041934072971, + 0.03518581762909889, + 0.007705750875174999, + 0.003137543797492981, + -0.0008875247440300882, + 0.022054878994822502, + 0.04867088049650192, + 0.01026253029704094, + -0.013732951134443283, + -0.014292468316853046, + -0.020836690440773964, + -0.02124747447669506, + -0.018740272149443626, + -0.006749614607542753, + -0.005276456009596586, + -0.04685776308178902, + 0.006005953066051006, + 0.007549935951828957, + -0.002565632574260235, + 0.009115166962146759, + -0.051532208919525146, + 0.04566790536046028, + 0.04300488904118538, + -0.0038174630608409643, + 0.03643233701586723, + -0.005007321480661631, + 0.022890612483024597, + 0.009455125778913498, + 0.01480240747332573, + -0.007234765216708183, + 0.009589693509042263, + 0.009228486567735672, + 0.02566695027053356, + -0.0006135208532214165, + 0.035044167190790176, + 0.00982341542840004, + -0.030624693259596825, + -0.0863497406244278, + -0.0014811260625720024, + -0.004950661677867174, + 0.03682895749807358, + -0.0032225337345153093, + -0.012281040661036968, + -0.04119177162647247, + -0.0004696577088907361, + 0.01903773657977581, + 0.0011305427178740501, + 0.01238019485026598, + -0.0286557599902153, + 0.013803776353597641, + -0.04184335842728615, + 0.01815950870513916, + -0.04328818991780281, + 0.01912272721529007, + -0.021403290331363678, + -0.061815984547138214, + 0.019944295287132263, + -0.029831454157829285, + 0.006455691065639257, + 0.02432127669453621, + 0.004192835185676813, + -0.008768124505877495, + -0.013336331583559513, + -0.01984514109790325, + -0.005988246761262417, + 0.03192787244915962, + -0.0018857134273275733, + 0.011105346493422985, + -0.004469051957130432, + 0.010453757829964161, + 0.03694227710366249, + 0.015935605391860008, + -0.010035890154540539, + 0.022154033184051514, + -0.03059636428952217, + 0.013655044138431549, + 0.0026718699373304844, + -0.011162006296217442, + -0.03665897622704506, + -0.029973104596138, + 0.021219145506620407, + 0.010014642961323261, + 0.010992026887834072, + 0.00648047961294651, + -0.01440578792244196, + 0.07150483131408691, + -0.02158743515610695, + 0.02308892272412777, + -0.02087918482720852, + 0.012713071890175343, + -0.008435247465968132, + 0.013421321287751198, + -0.008010298013687134, + -0.0036191532853990793, + 0.04399643838405609, + -0.0010455527808517218, + 0.001770622911863029, + 0.01418623048812151, + -0.013697538524866104, + 0.020114276558160782, + 0.0047452691942453384, + -0.018881922587752342, + -0.024618741124868393, + -0.022791458293795586, + 0.01340007409453392, + -0.029548155143857002, + 0.03289109095931053, + 0.05170218646526337, + 0.050625648349523544, + -0.03138960152864456, + 0.057594820857048035, + 0.02308892272412777, + -0.0012668806593865156, + -0.021105824038386345, + 0.013810858130455017, + 0.0019016489386558533, + 0.008470660075545311, + -0.04442138597369194, + 0.010191705077886581, + 0.025426143780350685, + 0.006650459486991167, + 0.04467635601758957, + 0.03629068657755852, + 0.006186556536704302, + 0.003125149291008711, + 0.04073849320411682, + 0.0067779445089399815, + -0.012514762580394745, + -0.017493754625320435, + -0.015000716783106327, + 0.015114037320017815, + 0.015893111005425453, + 0.016459710896015167, + -0.0467161126434803, + -0.009618023410439491, + -0.11524630337953568, + -0.03399595990777016, + 0.005258750170469284, + -0.010142127983272076, + -0.013074279762804508, + 0.010517500340938568, + 0.04416641592979431, + 0.007415368687361479, + 0.005272915121167898, + -0.04286323860287666, + 0.014717417769134045, + -0.015411501750349998, + -0.04750935360789299, + -0.004033478908240795, + 0.029066545888781548, + 0.02177157811820507, + 0.012196050025522709, + 0.002894968492910266, + 0.021530773490667343, + 0.003675813088193536, + -0.02097834087908268, + -0.015170697122812271, + 0.012769732624292374, + 0.00316056190058589, + -0.029321515932679176, + -0.021814074367284775, + -0.014271220192313194, + -4.8996455006999895e-05, + -0.004168046172708273, + 0.0317295603454113, + 0.008761041797697544, + 0.026856807991862297, + -0.007309131324291229, + 0.03461921960115433, + -0.02583692967891693, + 0.010028808377683163, + 0.018216168507933617, + 0.01787620782852173, + 0.027182603254914284, + 0.056801583617925644, + 0.003920159302651882, + 0.003937865141779184, + 0.025072019547224045, + 0.0034066783264279366, + 0.035837408155202866, + 0.045526254922151566, + 0.00521979620680213, + 0.02369801700115204, + -0.03368432819843292, + 0.023032262921333313, + 0.014519107528030872, + -0.0396902821958065, + 0.010765386745333672, + 0.011395729146897793, + 0.019986791536211967, + 0.037593863904476166, + -0.04501631483435631, + -0.012217298150062561, + 7.132290193112567e-05, + -0.020411740988492966, + 0.015751460567116737, + 0.01621890626847744, + 0.032919421792030334, + -0.019250212237238884, + 0.0069408416748046875, + 0.0010535205947235227, + -0.009547198191285133, + -0.010992026887834072, + 0.007248930167406797, + -0.010163375176489353, + 0.004270742181688547, + 0.010531664825975895, + 0.007224141154438257, + -0.0007414483116008341, + -0.008470660075545311, + 0.009108084253966808, + -0.005372069776058197, + -0.015468161553144455, + 0.042268309742212296, + -0.03249447047710419, + 0.022975603118538857, + 0.015538986772298813, + 0.003233157331123948, + 0.013449651189148426, + -0.017493754625320435, + -0.019434357061982155, + -0.0147599121555686, + 0.00767033826559782, + 0.02519950456917286, + 0.05937960743904114, + 0.03127628192305565, + 0.015411501750349998, + -0.013300918973982334, + -0.02325890213251114, + -0.016148081049323082, + 0.03410927951335907, + -0.021020835265517235, + -0.009759672917425632, + 0.030964653939008713, + 0.00018193150754086673, + -0.004394685849547386, + 0.019802646711468697, + 0.0036120705772191286, + -0.011289491318166256, + 0.0024133590050041676, + 0.042523279786109924, + 0.021389124915003777, + -0.012238545343279839, + -0.0020167394541203976, + -0.018117012456059456, + 0.04328818991780281, + -0.015014882199466228, + 0.002188490005210042, + 0.0031109843403100967, + -0.041390080004930496, + 0.027040952816605568, + 0.0189669132232666, + -0.035299137234687805, + -0.007464946247637272, + 0.006062612868845463, + 0.00601303530856967, + 0.03311773017048836, + -0.030199743807315826, + -0.0038564165588468313, + 0.002976417075842619, + -0.013343414291739464, + -0.015751460567116737, + 0.016459710896015167, + -0.011183254420757294, + -0.020907515659928322, + 0.033287711441516876, + 0.029321515932679176, + -0.038132134824991226, + -0.002687805565074086, + -0.017649568617343903, + -0.027040952816605568, + 0.015808120369911194, + -0.05003071948885918, + -0.06272254884243011, + -0.03249447047710419, + -0.005651828367263079, + -0.04088013991713524, + -0.055385082960128784, + -0.04997406154870987, + -0.00011896372598130256, + 0.011579873971641064, + -0.02528449520468712, + 0.023287232965230942, + -0.0180745180696249, + -0.010467922315001488, + 0.008555649779736996, + -0.009490538388490677, + -0.007043537683784962, + 0.039973583072423935, + -0.06901179999113083, + 0.00024655924062244594, + -0.03303274139761925, + -0.03575241565704346, + 0.00802446249872446, + 0.027735037729144096, + 0.002206196077167988, + 0.04541293531656265, + -0.0023903409019112587, + -0.012868886813521385, + -0.011183254420757294, + 0.0025089725386351347, + -0.0064202784560620785, + -0.018641117960214615, + 0.05915296822786331, + -0.025185339152812958, + -0.029746465384960175, + 0.004564665723592043, + 0.001755572622641921, + 0.00019454718858469278, + -0.0002321729261893779, + -0.0012146473163738847, + 0.03416593745350838, + -0.02671515755355358, + -0.04538460448384285, + 0.04527128487825394, + -0.014122487977147102, + -0.015312346629798412, + -0.03158791363239288, + 0.02917986549437046, + 0.036460667848587036, + -0.003980360459536314, + 0.015071542002260685, + 0.049039170145988464, + 0.015269852243363857, + 0.02062421478331089, + 0.01440578792244196, + 0.008017380721867085, + -0.01841447874903679, + -0.018740272149443626, + -0.006324665155261755, + 0.01770622842013836, + 0.024377936497330666, + 0.02195572294294834, + -0.013895848765969276, + -0.017635403200984, + 0.03051137365400791, + 0.001967162126675248, + 0.008194442838430405, + -0.031417932361364365, + 0.012125225737690926, + 0.02501535974442959, + -0.0062219686806201935, + 0.019873471930623055, + -0.062439244240522385, + -0.00047939614159986377, + 0.002489495789632201, + -0.0145474374294281, + 0.01198357529938221, + 0.002246920485049486, + -0.02017093636095524, + 0.002599274506792426, + -0.007769493386149406, + 0.011162006296217442, + -0.010574160143733025, + -0.02881157584488392, + -0.008364422246813774, + -0.03249447047710419, + -0.005488930735737085, + -0.00648047961294651, + 0.007443698588758707, + 0.040228553116321564, + -0.022791458293795586, + 0.015751460567116737, + -0.04595120623707771, + 0.014455365017056465, + -0.013088444247841835, + 0.01159403845667839, + 0.000771106278989464, + 0.0007635811343789101, + 0.006282169837504625, + -0.004816094413399696, + 0.04215499013662338, + 0.010892871767282486, + 0.011246996931731701, + -0.03886871412396431, + -0.006689413450658321, + -0.007117903791368008, + 0.013513393700122833, + 0.004660279490053654, + 0.006714201997965574, + -0.004929414018988609, + 0.02405214123427868, + 0.027196766808629036, + 0.007464946247637272, + -0.00017739427858032286, + 0.0004205229342915118, + -0.008923939429223537, + 0.02131829969584942, + -0.009405548684298992, + 0.027820026502013206, + -0.013527559116482735, + 0.016856329515576363, + 0.010935367085039616, + -0.0023124334402382374, + 0.005609333515167236, + -0.021474113687872887, + 0.046404484659433365, + 0.015085707418620586, + 0.015893111005425453, + -0.016615524888038635, + -0.020581720396876335, + -0.01866944693028927, + -0.00570494681596756, + 0.027267592027783394, + 0.009320558980107307, + -0.017493754625320435, + -0.012670577503740788, + -0.002650622511282563, + -0.012620999477803707, + 0.0055491323582828045, + -0.014299550093710423, + -0.0021814072970300913, + -0.026545178145170212, + 0.0020804819650948048, + -0.04266493022441864, + -0.02670099399983883, + -0.0057863956317305565, + 0.024958699941635132, + 0.027820026502013206, + 0.0147599121555686, + -0.030398054048419, + -0.02001512050628662, + -0.010630819946527481, + -0.005619957111775875, + -0.018060352653265, + 0.01603476144373417, + 0.0145474374294281, + 0.018202003091573715, + -0.018995242193341255, + 0.0036935193929821253, + 0.009384301491081715, + -0.02583692967891693, + -0.018924416974186897, + -0.011707358993589878, + 0.003158791223540902, + -0.020652545616030693, + 0.006154685281217098, + -0.014703252352774143, + -0.0011039833771064878, + 0.013541723601520061, + -0.03447756916284561, + 0.02354220114648342, + -0.042438291013240814, + 0.008874362334609032, + -0.0005887321312911808, + -0.021729083731770515, + 0.04379812628030777, + 0.021389124915003777, + 0.004207000136375427, + -0.022593148052692413, + 0.019264377653598785, + 0.02175741456449032, + 0.003994525410234928, + -0.00014176049444358796, + 0.026021074503660202, + 0.00014596572145819664, + -0.017139630392193794, + 0.022862283512949944, + -0.023471377789974213, + -0.014660757966339588, + -0.0096959313377738, + -0.013159269466996193, + -0.025596125051379204, + 0.021799908950924873, + -0.007365791127085686, + 0.012805144302546978, + 0.006331747397780418, + 0.04436472803354263, + -0.0020185101311653852, + -0.02627604454755783, + -2.593685894680675e-05, + -0.06249590590596199, + -0.018740272149443626, + -0.01480240747332573, + -0.01123991422355175, + 0.013499229215085506, + 0.00394140649586916, + -0.02661600336432457, + 0.0075853485614061356, + -0.01097786147147417, + -0.0011597579577937722, + -0.019023573026061058, + 0.0008724744548089802, + 0.01303886715322733, + 0.013952508568763733, + 0.09150578826665878, + -0.01458993274718523, + -0.01604892499744892, + 0.01065914984792471, + 0.06487562507390976, + -0.009738425724208355, + 0.02141745388507843, + -0.012727237306535244, + 0.01296095922589302, + -0.036602314561605453, + -0.020992504432797432, + -0.006625670939683914, + 0.0520138181746006, + 0.00018005022138822824, + 0.012082730419933796, + -0.028344132006168365, + -0.020425906404852867, + -0.0193776972591877, + 0.016615524888038635, + 0.005669534672051668, + 0.019406026229262352, + 0.019179387018084526, + 0.008768124505877495, + 0.015468161553144455, + -0.00521979620680213, + -0.013924178667366505, + -0.0021938018035143614, + -0.00789697840809822, + 0.009065588936209679, + 0.03215451166033745, + 0.015312346629798412, + -0.008010298013687134, + 0.031956203281879425, + 0.00671774335205555, + -0.015935605391860008, + 0.024930370971560478, + -0.010035890154540539, + -0.028939060866832733, + -0.026488518342375755, + -0.0012474037939682603, + -0.02256481721997261, + 0.028145821765065193, + 0.0010836211731657386, + 0.01260683499276638, + 0.0026984293945133686, + 0.0009800398256629705, + -0.002461165888234973, + -0.005304786376655102, + -0.007132069207727909, + -0.0057863956317305565, + 0.03167290240526199, + 0.005442894529551268, + 0.005134806502610445, + -0.021884899586439133, + 0.0023248279467225075, + -0.04946412146091461, + -0.016983814537525177, + 0.02035508118569851, + 0.017337938770651817, + 0.029321515932679176, + -0.04974742233753204, + -0.018442807719111443, + 0.017918704077601433, + -0.0005117100081406534, + -0.005297703668475151, + 0.000587846792768687, + -0.01515653170645237, + -0.012734320014715195, + -0.009504703804850578, + 0.014929892495274544, + -0.03799048438668251, + -0.0090301763266325, + -0.00471693929284811, + 0.027692541480064392, + 0.006200721487402916, + 0.00767033826559782, + -0.0025408437941223383, + -0.030709683895111084, + -0.011657780967652798, + 0.027805861085653305, + -0.024080472066998482, + -0.019802646711468697, + -0.03382597863674164, + 0.030426383018493652, + -0.0255536288022995, + 0.006919594015926123, + 0.02820248156785965, + 0.00823693722486496, + -0.03048304282128811, + 0.017734559252858162, + -0.020057616755366325, + 0.010907037183642387, + 0.032041192054748535, + 0.011091182008385658, + 0.013499229215085506, + 0.0021920311264693737, + -0.03507249802350998, + 0.012047317810356617, + -0.005690781865268946, + -0.002829455304890871, + 0.015071542002260685, + -0.017592908814549446, + 0.020340915769338608, + 1.61984335136367e-05, + -0.034505899995565414, + 0.01631806045770645, + -0.00689480546861887, + -0.0129963718354702, + -0.0009021323639899492, + 0.01594977080821991, + -0.0005975852254778147, + -0.011353233829140663, + 0.03427926078438759, + -0.021091660484671593, + 0.009603858925402164, + 0.006770861800760031, + -0.004267201293259859, + 0.0011730376863852143, + -0.006328206043690443, + -0.000698068062774837, + 0.02062421478331089, + -0.0017732788110151887, + 0.009419714100658894, + -0.010680397041141987, + -0.012755567207932472, + -0.0038670403882861137, + -0.017493754625320435, + -0.025511134415864944, + -0.006328206043690443, + -0.02757922187447548, + -0.01559564657509327, + 0.019986791536211967, + 0.013074279762804508, + -0.011303656734526157, + 0.009993395768105984, + -0.0023991940543055534, + -0.01858445815742016, + -0.012691824696958065, + -0.012989289127290249, + 0.027281757444143295, + -0.03243781253695488, + -0.008137783035635948, + -0.0030755719635635614, + 0.010694562457501888, + 0.011282408609986305, + 0.031077973544597626, + -0.000984466285444796, + -0.004713397938758135, + -0.017054639756679535, + -0.003739555599167943, + 0.044478047639131546, + 0.0017847878625616431, + 0.013867518864572048, + -0.009412631392478943, + -0.059889547526836395, + 0.003144626272842288, + -0.019887635484337807, + -0.025072019547224045, + 0.024080472066998482, + -0.03566742688417435, + -0.00788281299173832, + -0.009193073958158493, + 0.02256481721997261, + -0.038557082414627075, + 0.003440320258960128, + 0.011126594617962837, + 0.011162006296217442, + -0.0038918291684240103, + 0.015184861607849598, + -0.008343175053596497, + 0.021261639893054962, + -0.023655522614717484, + -0.005722653120756149, + 0.018995242193341255, + 0.017862044274806976, + -0.02680014818906784, + 0.018371982499957085, + 0.006696495693176985, + -0.011601121164858341, + 0.004564665723592043, + -0.005297703668475151, + 0.014830737374722958, + -0.017692063003778458, + -0.02742340788245201, + -0.021020835265517235, + 0.017692063003778458, + 0.006650459486991167, + -0.006186556536704302, + -0.0018556127324700356, + -0.006229051388800144, + -0.033712659031152725, + 0.024108801037073135, + -0.017607074230909348, + -0.012684741988778114, + 0.021573269739747047, + -0.004621325526386499, + -0.015312346629798412, + -0.01026253029704094, + -0.014037498272955418, + 0.01657303050160408, + -0.0030189119279384613, + -0.02010011114180088, + 0.012139390222728252, + -0.00020384296658448875, + -0.0048479656688869, + -0.009660518728196621, + 0.011204501613974571, + 0.014434117823839188, + 0.014618262648582458, + 0.025865258648991585, + -0.032834429293870926, + -0.03674396499991417, + -0.016020596027374268, + -0.013633796013891697, + 0.03770718351006508, + 0.03456255793571472, + -0.020850855857133865, + 0.0032349280081689358, + 0.00658671697601676, + 0.02097834087908268, + 0.004727562889456749, + 0.014533272944390774, + -0.0016767798224464059, + -0.002960481448099017, + -0.030086424201726913, + 0.03286276012659073, + -0.006268004886806011, + -0.018995242193341255, + -0.0016688121249899268, + -0.004182211123406887, + -0.019448522478342056, + 0.007486193440854549, + -0.0414184108376503, + 0.060342829674482346, + -0.0073728738352656364, + -0.015170697122812271, + 0.011041603982448578, + -0.013159269466996193, + 0.014235807582736015, + -0.004182211123406887, + -0.01224562805145979, + 0.01340007409453392, + -0.010510417632758617, + 0.022763127461075783, + 0.004203458782285452, + -0.009518868289887905, + 0.025794433429837227, + -0.012146472930908203, + -0.00968884862959385, + -0.025624454021453857, + -0.019094396382570267, + 0.03014308400452137, + 0.010630819946527481, + -0.0013129168655723333, + 0.017224619165062904, + 0.006852310616523027, + 0.0067425318993628025, + -0.041106779128313065, + 0.0015014882665127516, + -0.0038493340834975243, + -0.01422872580587864, + 0.0019246670417487621, + -0.013350496999919415, + -0.015255686827003956, + 0.009178909473121166, + -0.019590171054005623, + -0.002004345180466771, + 0.011289491318166256, + 0.028613265603780746, + -0.03014308400452137, + -0.03578074648976326, + -0.027295922860503197, + -0.0295198243111372, + 0.006646918132901192, + -0.017734559252858162, + -0.023329727351665497, + -0.032211173325777054, + -0.021629929542541504, + -0.01087870728224516, + -0.031219622120261192, + 0.012698907405138016, + -0.025794433429837227, + 0.004532794468104839, + -0.033712659031152725, + 0.04362814873456955, + -0.022508157417178154, + -0.033627670258283615, + 0.04609285667538643, + -0.003461567685008049, + 0.021615764126181602, + 0.036177366971969604, + -0.003079113084822893, + 0.005740359425544739, + -0.0011154924286529422, + 0.0405401811003685, + -0.013782528229057789, + 0.012018987908959389, + 0.0112328315153718, + 0.002022051252424717, + -0.009136414155364037, + 0.025185339152812958, + -0.005726194474846125, + 0.021105824038386345, + 0.020425906404852867, + 0.029293185099959373, + -0.001293440000154078, + 0.016417214646935463, + 0.031077973544597626, + 0.004947120323777199, + 0.00929931178689003, + 0.0017095364164561033, + 0.0016953714657574892, + -0.02106332965195179, + -0.0387837253510952, + 0.00033354107290506363, + -0.009185991249978542, + 0.0010898184264078736, + -0.01648803986608982, + -0.011466553434729576, + 0.007287883665412664, + 0.031871210783720016, + -0.00047496959450654685, + 0.01964683085680008, + -0.026318538933992386, + -0.006211345084011555, + -0.027210932224988937, + 0.012111060321331024, + -0.013881683349609375, + 0.014618262648582458, + -0.023655522614717484, + 0.025624454021453857, + -0.007677420973777771, + 0.05977622792124748, + -0.005386234726756811, + 0.004203458782285452, + -0.00018093553080689162, + -0.025171175599098206, + -0.02494453452527523, + 0.021035000681877136, + 0.0070152077823877335, + 0.005538508296012878, + -0.013350496999919415, + -0.002264626557007432, + 0.027040952816605568, + 0.003080883761867881, + 0.015935605391860008, + -0.0009101001778617501, + -0.0035465576220303774, + 0.006834604311734438, + 0.023853830993175507, + 0.01876860298216343, + -0.011431141756474972, + -0.0334860198199749, + 0.0007662370335310698, + -0.023485541343688965, + -0.002255773637443781, + -0.010559994727373123, + 0.03223950043320656, + -0.016601359471678734, + 0.0013642649864777923, + -0.022720633074641228, + -0.01317343395203352, + 0.018102848902344704, + -0.022437334060668945, + -0.008272349834442139, + 0.014901562593877316, + -0.00827943254262209, + -0.015099871903657913, + 0.009632188826799393, + -0.01304594986140728, + -0.019774315878748894, + 0.025709444656968117, + 0.024972865357995033, + -0.00810945313423872, + 0.016332225874066353, + -0.021729083731770515, + -0.037140585482120514, + -0.0001552614994579926, + -0.012989289127290249, + 0.023641357198357582, + 0.046064525842666626, + 0.006990419235080481, + 0.00543935364112258, + -0.006682330742478371, + 0.034590888768434525, + -0.017635403200984, + -0.031219622120261192, + -0.046234503388404846, + 0.0042849075980484486 + ], + "how_to_create_electricity_generators": [ + 0.007938527502119541, + 0.011051183566451073, + 0.005858194082975388, + 0.007041128817945719, + 0.006084112450480461, + 0.05381882190704346, + -0.014709808863699436, + -0.006451230030506849, + 0.026055941358208656, + -0.021474814042448997, + 0.039109013974666595, + -0.01350491028279066, + -0.014195216819643974, + -0.03358656167984009, + 0.016617566347122192, + 0.010787611827254295, + -0.003608421655371785, + 0.029294107109308243, + 0.026256758719682693, + 0.02231573313474655, + 0.05108269676566124, + -0.02418583817780018, + 0.041518811136484146, + 0.008139343932271004, + 0.0016692872159183025, + 0.03215574100613594, + 0.017835015431046486, + 0.07912170141935349, + -0.04731738939881325, + -0.035594724118709564, + 0.045284122228622437, + -0.01385633833706379, + -0.028214719146490097, + -0.011540673673152924, + 0.019027363508939743, + -0.016228483989834785, + 0.005547556094825268, + 0.03283349797129631, + 0.013153481297194958, + 0.020847262814641, + 0.015500524081289768, + -0.04643881693482399, + -0.022955836728215218, + 0.004603090696036816, + -0.016655217856168747, + 0.022780122235417366, + -0.041518811136484146, + -0.005999392829835415, + 0.0324067622423172, + 0.011226898059248924, + 0.04470677301287651, + 0.011747765354812145, + -0.010718581266701221, + -0.07942292839288712, + -0.017546342685818672, + -0.06747434288263321, + -0.013166031800210476, + -0.016366545110940933, + -0.05211188271641731, + -0.023520633578300476, + 0.022466346621513367, + 0.009934141300618649, + 0.0301726795732975, + 0.04508330672979355, + -0.017345525324344635, + 0.008597456850111485, + -0.05281474068760872, + 0.008861028589308262, + 0.01339195016771555, + 0.012262357398867607, + -0.0021179865580052137, + 0.06566699594259262, + -0.017847565934062004, + 0.01930348575115204, + 0.008597456850111485, + -0.03853166475892067, + 0.017458485439419746, + 0.026256758719682693, + -0.032682884484529495, + -0.01400695089250803, + -0.05793556198477745, + -0.033410847187042236, + -0.01369317527860403, + -0.00489804008975625, + -0.03544411435723305, + 0.006877965293824673, + -0.023646144196391106, + -0.017960526049137115, + -0.037125952541828156, + -0.0494510643184185, + -0.021725835278630257, + -0.011835622601211071, + -0.0022042749915271997, + -0.019692568108439445, + 0.09102007746696472, + 0.021838795393705368, + 0.03647329658269882, + -0.017596546560525894, + 0.012977766804397106, + 0.06305637955665588, + 0.023608490824699402, + -0.017696954309940338, + -0.058839235454797745, + -0.02726083993911743, + 0.06757475435733795, + 0.03235656023025513, + 0.005582071375101805, + 0.04023860767483711, + -0.03951064869761467, + -0.039535749703645706, + -0.05286494269967079, + 0.032005131244659424, + 0.0308002308011055, + 0.009394447319209576, + -0.022278081625699997, + -0.0007467863615602255, + 0.03408860042691231, + -0.0018355883657932281, + 0.030875537544488907, + -0.019466649740934372, + -0.04166942462325096, + -0.013881441205739975, + -0.02411053143441677, + 0.02640737034380436, + 0.026357166469097137, + -0.012412969954311848, + -0.015513074584305286, + -0.017332974821329117, + -0.008967711590230465, + 0.01038597896695137, + -0.030373496934771538, + 0.036824725568294525, + 0.037125952541828156, + -0.02577981911599636, + -0.004907453432679176, + -0.0052149537950754166, + -0.010994703508913517, + -0.020069099962711334, + -0.00868531409651041, + 0.017332974821329117, + 0.013153481297194958, + -0.04907453432679176, + -0.014257972128689289, + 0.02305624447762966, + -0.015161645598709583, + 0.022290632128715515, + -0.007900874130427837, + -0.0497271865606308, + -0.01026046834886074, + -0.020633894950151443, + -0.005654239561408758, + -0.015588381327688694, + -0.029017984867095947, + -0.020571140572428703, + 0.020997876301407814, + -0.019253281876444817, + 0.010787611827254295, + 0.038305748254060745, + -0.0388328917324543, + -0.02826492302119732, + -0.0218262430280447, + 0.00855980347841978, + -0.03418900817632675, + 0.014245420694351196, + -0.05256371945142746, + -0.026884309947490692, + -0.025691961869597435, + -0.021537570282816887, + -0.051609840244054794, + 0.022855428978800774, + 0.00028004488558508456, + -0.008346435613930225, + 0.01354256272315979, + 0.029695739969611168, + 0.0030765715055167675, + -0.02269226498901844, + -0.029294107109308243, + -0.034967172890901566, + -0.007668680045753717, + -0.04116738215088844, + 0.0158896055072546, + 0.004628192633390427, + -0.07179190218448639, + -0.02554134838283062, + 0.019993793219327927, + 0.02967063896358013, + -0.01381868589669466, + 0.05090698227286339, + -0.022717367857694626, + 0.042146362364292145, + 0.011289652436971664, + 0.007787914946675301, + 0.009143426083028316, + 0.004123013932257891, + 0.016492055729031563, + -0.007405108772218227, + 0.029645536094903946, + 0.016994096338748932, + 0.026557981967926025, + -0.04171963036060333, + 0.03810493275523186, + 0.02350808121263981, + 0.06908087432384491, + -0.010825264267623425, + -0.018726138398051262, + -0.022215325385332108, + -0.045484937727451324, + 0.04234718158841133, + 0.026231655851006508, + -0.01590215601027012, + -0.004954519681632519, + -0.05366821214556694, + 0.03481656312942505, + 0.003410742850974202, + -0.013442154973745346, + -0.030398597940802574, + -0.030373496934771538, + 0.03941023722290993, + -0.004675259348005056, + -0.034465134143829346, + -0.046714939177036285, + 0.06581760942935944, + -0.010994703508913517, + -0.006037046201527119, + 0.0324067622423172, + 0.039234522730112076, + -0.0012935406994074583, + -0.1007094755768776, + 0.060445766896009445, + 0.02343277633190155, + -0.020558590069413185, + 0.002914977027103305, + 0.028039004653692245, + -0.010273018851876259, + 0.0029714566189795732, + -0.028064105659723282, + 0.005632275249809027, + 0.03029819019138813, + -0.035167988389730453, + -0.013417053036391735, + -0.036649011075496674, + -0.0011766592506319284, + 0.007191740907728672, + -0.05171024799346924, + -0.002991852117702365, + 0.007668680045753717, + 0.005453423131257296, + -0.02788839116692543, + 0.023821856826543808, + 0.008697864599525928, + 0.044179629534482956, + -0.008729242719709873, + 0.010367152281105518, + 0.05301555618643761, + 0.011521846987307072, + -0.05893964320421219, + -0.04081595316529274, + -0.008327608928084373, + 0.03765309602022171, + 0.0012441209983080626, + -0.005403219256550074, + 0.06401026248931885, + -0.0780172124505043, + 0.011728938668966293, + -0.01984318159520626, + -0.022729918360710144, + 0.03210553899407387, + -0.0168309323489666, + -0.029394514858722687, + -0.04217146709561348, + -0.0029887142591178417, + 0.032431866973638535, + 0.033611662685871124, + -0.0468655526638031, + -0.06948251277208328, + -0.03536880761384964, + 0.010561692528426647, + 0.03529350087046623, + 0.002334491815418005, + -0.004929417744278908, + -0.011873275972902775, + -0.03697533905506134, + 0.05652984604239464, + 0.07912170141935349, + -0.013040522113442421, + 0.016228483989834785, + -0.021688181906938553, + 0.012293735519051552, + 0.041694525629282, + -0.014521543867886066, + -0.0020426802802830935, + 0.025641757994890213, + 0.01563858613371849, + 0.0063131689094007015, + 0.06918128579854965, + 0.023332366719841957, + 0.0018497082637622952, + -0.03248206898570061, + 0.005616586655378342, + -0.01878889463841915, + 0.014634503051638603, + 0.0340132936835289, + -0.012657715007662773, + 0.0583873987197876, + -0.017220014706254005, + -0.022830326110124588, + 0.007813016884028912, + -0.04184513911604881, + 0.021424610167741776, + -0.006695975083857775, + 0.019077567383646965, + -0.010028273798525333, + 0.035343702882528305, + -0.02078450843691826, + 0.03782881051301956, + -0.014634503051638603, + 0.05442127212882042, + 0.021976856514811516, + -0.03956085070967674, + -0.03677452355623245, + -0.03351125493645668, + -0.032733090221881866, + 0.05301555618643761, + -0.06089760363101959, + -0.008704140782356262, + -0.01965491473674774, + -0.007561996579170227, + -0.005996255204081535, + -0.02237848937511444, + -0.0006455936818383634, + -0.03654860332608223, + 0.016416748985648155, + -0.01044873334467411, + 0.005186713766306639, + -0.057784948498010635, + 0.006250413600355387, + 0.009940416552126408, + 0.0558771938085556, + 0.008653935976326466, + 0.02023226208984852, + -0.037376970052719116, + 0.005105132237076759, + -0.00420773308724165, + 0.011728938668966293, + 0.013479807414114475, + -0.03506758064031601, + -0.011402611620724201, + -0.014985931105911732, + -0.0031973752193152905, + 0.018826548010110855, + 0.026884309947490692, + 0.011829347349703312, + -0.02034522220492363, + 0.015011033974587917, + -0.008679037913680077, + 0.01276439893990755, + 0.00982745736837387, + 0.013429603539407253, + -0.00871669128537178, + -0.023395122960209846, + -0.043677590787410736, + 0.0574837252497673, + -0.04551003873348236, + 0.0008730811532586813, + -0.03612186759710312, + 0.06526536494493484, + -0.04051472991704941, + 0.042196568101644516, + 0.003875131020322442, + 0.06265474855899811, + 0.03313472121953964, + 0.07811761647462845, + 0.030750026926398277, + 0.023457877337932587, + -0.021788591518998146, + 0.031252067536115646, + -0.010624447837471962, + 0.03004716895520687, + -0.016705423593521118, + 0.05037983879446983, + 0.01929093524813652, + -0.006564189679920673, + 0.008892405778169632, + -0.004957657307386398, + -0.014107359573245049, + 0.015437768772244453, + 0.014257972128689289, + 0.009727049618959427, + -0.026633288711309433, + -0.027486758306622505, + 0.0510575957596302, + -0.051609840244054794, + 0.0372263602912426, + -0.005145922768861055, + 0.014835319481790066, + 0.055124130100011826, + 0.04161921888589859, + 0.016090422868728638, + 0.020734304562211037, + 0.010837815701961517, + -0.009049293585121632, + 0.0025462904013693333, + -0.0001567898434586823, + -0.024097980931401253, + 0.021236345171928406, + 0.0044587538577616215, + -0.013304092921316624, + -0.004772529937326908, + 0.0067838323302567005, + 0.014885523356497288, + 0.07575802505016327, + 0.03622227534651756, + 0.0343647226691246, + -0.013906543143093586, + 0.01626613736152649, + -0.049752287566661835, + 0.023859510198235512, + -0.007336077746003866, + -0.01054286677390337, + 0.020671548321843147, + -0.030900638550519943, + -0.04111718013882637, + 0.005572658032178879, + -0.02146226353943348, + -0.014082257635891438, + 0.018839098513126373, + 0.02721063606441021, + -0.03368696942925453, + 0.02603083848953247, + -0.02721063606441021, + 0.0008236614521592855, + -0.004926279652863741, + -0.0008887699223123491, + 0.039661258459091187, + 0.03351125493645668, + -0.01085036713629961, + 0.016479505226016045, + -0.04849718511104584, + 0.004527784418314695, + -0.001251181005500257, + 0.004759978502988815, + -0.027411453425884247, + 0.05186086148023605, + 0.007091332692652941, + -0.04342656955122948, + -0.012067817151546478, + -0.023106448352336884, + -0.020633894950151443, + -0.04606228694319725, + -0.017722057178616524, + 0.02313155122101307, + 0.007568271830677986, + -0.0038939574733376503, + 0.012143122963607311, + -0.019065016880631447, + 0.003881406504660845, + 0.056931477040052414, + -0.01966746710240841, + -0.010097304359078407, + -0.0121180210262537, + 0.003092260332778096, + 0.014722360298037529, + -0.01400695089250803, + -0.009877662174403667, + -0.025830022990703583, + 0.01258240919560194, + 0.02015695720911026, + 0.018638281151652336, + -0.003947299439460039, + -0.0017194913234561682, + 0.0067085265181958675, + -0.03556962311267853, + -0.024349000304937363, + -0.012406694702804089, + 0.006422990467399359, + -0.01135240774601698, + 0.007499241270124912, + 0.03958595171570778, + -0.0028208442963659763, + -0.04234718158841133, + 0.004543473478406668, + 0.00825230311602354, + -0.04598698019981384, + 0.00807031337171793, + 0.009193630889058113, + 0.07485435158014297, + 0.02144971303641796, + -0.02783818729221821, + -0.06240372732281685, + -0.001575938891619444, + -0.04018840193748474, + -0.001473961747251451, + 0.04279901832342148, + -0.013253889046609402, + 0.010348325595259666, + -0.03612186759710312, + -0.03609676659107208, + -0.04817085713148117, + 0.014232869260013103, + 0.016730524599552155, + 0.02380930632352829, + -0.035393908619880676, + -0.016805831342935562, + 0.01292756199836731, + -0.010793887078762054, + -0.05090698227286339, + 0.02721063606441021, + 0.019027363508939743, + 0.007279598154127598, + -0.005936637986451387, + -0.025202471762895584, + -0.0232570618391037, + -0.00029298814479261637, + 0.026633288711309433, + -0.024750633165240288, + 0.02144971303641796, + -0.011910928413271904, + 0.03105125203728676, + 0.020884916186332703, + 0.015927258878946304, + -0.022152571007609367, + -0.004405411891639233, + 0.006620669271796942, + 0.040113095194101334, + 0.013429603539407253, + -0.038305748254060745, + -0.01966746710240841, + 0.002078764606267214, + -0.02023226208984852, + -0.02058369107544422, + 0.004091636277735233, + 0.0009452495723962784, + -0.011327305808663368, + -0.011917204596102238, + -0.05954209342598915, + -0.031879618763923645, + -0.04212126135826111, + -0.016165727749466896, + 0.010153784416615963, + 0.01898971013724804, + -0.028515944257378578, + 0.036272481083869934, + -0.018198994919657707, + 0.016843484714627266, + -0.014396033249795437, + 0.012161949649453163, + 0.012256082147359848, + -0.002299976535141468, + 0.02127399854362011, + 0.01911522075533867, + 0.019190527498722076, + -0.04985269531607628, + -0.03574533760547638, + -0.02300604060292244, + -0.029043087735772133, + 0.006921893917024136, + -0.007135261315852404, + -0.014847869984805584, + 0.008641385473310947, + -0.008189547806978226, + 0.02330726571381092, + 0.014421135187149048, + 0.026758799329400063, + -0.004775667563080788, + 0.0002165052865166217, + 0.0753563940525055, + 0.03802962601184845, + 0.007329802494496107, + 0.011233173310756683, + 0.009545059874653816, + -0.013919093646109104, + -0.010084753856062889, + 0.034414928406476974, + -0.031201863661408424, + 0.02992165833711624, + 0.009695671498775482, + 0.049752287566661835, + 0.005356152541935444, + 0.0042359731160104275, + -0.017295321449637413, + -0.012977766804397106, + -0.05683106929063797, + 0.012199603021144867, + 0.009005364961922169, + -0.03406349942088127, + -0.016743075102567673, + -0.021600324660539627, + 0.019366241991519928, + 0.020872365683317184, + -0.015324809588491917, + -0.020357772707939148, + -0.004421100951731205, + -0.012833429500460625, + 0.012525929138064384, + -0.0007722806767560542, + -0.009281488135457039, + -0.005428321193903685, + 0.01288990955799818, + -0.05037983879446983, + -0.013994400389492512, + -0.006978373508900404, + -0.019391342997550964, + -0.02936941385269165, + 0.05206167697906494, + -0.004985897336155176, + -0.027863290160894394, + -0.0031973752193152905, + 0.012111745774745941, + -0.02751186117529869, + 0.03679962456226349, + -0.045911673456430435, + -0.014722360298037529, + -0.0031738420948386192, + -0.0016896825982257724, + -0.003373089712113142, + -0.019127771258354187, + 0.0020552314817905426, + 0.03833084926009178, + 0.007656129077076912, + -0.033912885934114456, + -0.042196568101644516, + 0.012406694702804089, + -0.027135329321026802, + -0.0023705761414021254, + 0.0016849759267643094, + -0.016780728474259377, + 0.00868531409651041, + 0.022780122235417366, + 0.007869496941566467, + 0.015312258154153824, + 0.02869165875017643, + 0.009915314614772797, + 0.009996896609663963, + -0.002271736739203334, + -0.0026263033505529165, + 0.008089140057563782, + 0.02176348865032196, + 0.023658694699406624, + 0.04001268744468689, + -0.014082257635891438, + -0.014584298245608807, + 0.005547556094825268, + 0.05045514553785324, + -0.006043321453034878, + -0.03155329450964928, + 0.07364945113658905, + -0.04081595316529274, + 0.05668045952916145, + 0.02844063751399517, + -0.03810493275523186, + 0.004537197761237621, + 0.03584574535489082, + 0.046539224684238434, + 0.011283377185463905, + 0.01916542463004589, + -0.011082560755312443, + -0.008089140057563782, + -0.04779432713985443, + -0.06702250987291336, + -0.004289315082132816, + -0.05176045373082161, + 0.01379358395934105, + -0.03642309457063675, + -0.007725159637629986, + 0.011540673673152924, + 0.020320119336247444, + 0.007882047444581985, + 0.013429603539407253, + 0.010831540450453758, + 0.009871385991573334, + -0.03858187049627304, + 0.014295624569058418, + -0.008647660724818707, + 0.015387564897537231, + -0.01350491028279066, + 0.005164749454706907, + -0.029695739969611168, + -0.04440554976463318, + 0.004998448304831982, + 0.0022827188950031996, + -0.026934513822197914, + 0.015738993883132935, + -0.025152267888188362, + 0.01379358395934105, + 0.04877330735325813, + -0.019931038841605186, + -0.025629205629229546, + 0.007718884386122227, + -0.01842491328716278, + 0.026557981967926025, + -0.016605013981461525, + 0.01954195648431778, + -0.016843484714627266, + -0.0019156011985614896, + 0.0179856289178133, + -0.019127771258354187, + -0.00744903739541769, + 0.009909039363265038, + -0.027687575668096542, + -0.07400088012218475, + 0.0003218163037672639, + 0.0004702714504674077, + 0.03165370225906372, + -0.016805831342935562, + -0.03582064434885979, + -0.0023407672997564077, + -0.01379358395934105, + 0.018073486164212227, + 0.0158896055072546, + 0.0074113840237259865, + -0.038933299481868744, + -0.0014770994894206524, + -0.025215022265911102, + 0.04781942814588547, + -0.0020709200762212276, + 0.016667770221829414, + -0.012174500152468681, + -0.015111441724002361, + 0.02653288096189499, + -0.010486386716365814, + 0.03549431636929512, + 0.0030514695681631565, + -0.0168309323489666, + -0.010442458093166351, + -0.027235738933086395, + 0.005801714491099119, + -0.003533115377649665, + 0.036950238049030304, + 9.854520612861961e-05, + -0.005378116853535175, + 0.0030797093641012907, + -0.007267047185450792, + 0.037376970052719116, + -0.0018826547311618924, + -0.016843484714627266, + -0.002102297730743885, + -0.026884309947490692, + 0.015663687139749527, + -0.006102939136326313, + 0.017107056453824043, + -0.013479807414114475, + -0.009902764111757278, + 0.024386653676629066, + -0.03504247963428497, + 0.012042714282870293, + 0.0021273999009281397, + 0.002532170619815588, + 0.05853801220655441, + 0.0012245100224390626, + -0.0030169542878866196, + -0.011088836006820202, + 0.008710416033864021, + 0.001382182352244854, + 0.012438071891665459, + 0.016416748985648155, + 0.002023853827267885, + 0.029645536094903946, + 0.025152267888188362, + -0.011986235156655312, + 0.005258881952613592, + -0.01694389246404171, + 0.01072485651820898, + -0.019705118611454964, + -0.01023536641150713, + -0.004232835490256548, + -0.00914970226585865, + 0.0052149537950754166, + 0.006972097791731358, + 0.006303755566477776, + -0.00605901051312685, + 0.010662101209163666, + 0.007631027139723301, + 0.0182994045317173, + -0.0020615069661289454, + 0.003912784159183502, + -0.04397881403565407, + 0.009130875580012798, + -0.0016316340770572424, + -0.01632889173924923, + -0.0301726795732975, + 0.005221229046583176, + 0.0003086769429501146, + -0.03647329658269882, + 0.019065016880631447, + 0.03863207623362541, + 0.0005185144837014377, + -0.001546130166389048, + 0.02670859545469284, + 0.00838408898562193, + -0.06812699884176254, + -0.026809003204107285, + -0.03042370080947876, + 0.024323899298906326, + 0.028340229764580727, + 0.027536962181329727, + -0.0142830740660429, + 0.009432099759578705, + -0.10864172875881195, + -0.032005131244659424, + 0.026357166469097137, + -0.029545128345489502, + 0.014923176728188992, + 0.04166942462325096, + 0.03617207333445549, + 0.026306962594389915, + 0.020420528948307037, + -0.06330740451812744, + -0.013216235674917698, + -0.013492358848452568, + -0.036021459847688675, + 0.026256758719682693, + 0.012199603021144867, + -0.0061405920423567295, + 0.018073486164212227, + -0.002754951361566782, + 0.026733696460723877, + -0.01793542318046093, + 0.011829347349703312, + -0.044254936277866364, + -0.009915314614772797, + -0.022717367857694626, + -0.022955836728215218, + 0.028917577117681503, + -0.00606214813888073, + -0.01029184553772211, + 0.016466952860355377, + 0.03938513621687889, + 0.018023280426859856, + 0.027863290160894394, + 0.019428996369242668, + 0.016479505226016045, + -0.03752758353948593, + -0.011477918364107609, + 0.0027125917840749025, + 0.008973987773060799, + 0.021161038428544998, + 0.011666183359920979, + 0.002103866543620825, + 0.0261563491076231, + -0.016102973371744156, + 0.005155336111783981, + 0.01978042535483837, + 0.019316038116812706, + -0.026482677087187767, + 0.034163907170295715, + -0.005280846264213324, + 0.03295901045203209, + 0.028892474249005318, + -0.05276453495025635, + 0.027160432189702988, + 0.0052149537950754166, + 0.009381895884871483, + 0.03130227327346802, + -0.04114228114485741, + -0.020696651190519333, + -0.01044873334467411, + -0.01041735615581274, + 0.03870737925171852, + 0.02269226498901844, + -0.008729242719709873, + -0.05401964113116264, + 0.004298728425055742, + 0.015475422143936157, + 0.0008864165865816176, + -0.014822768047451973, + 0.0007071722066029906, + -0.024712981656193733, + 0.02225297875702381, + -0.016102973371744156, + 0.00019709041225723922, + -0.002180741634219885, + -0.024637674912810326, + -0.008465670980513096, + 0.012682816945016384, + -0.025403287261724472, + 0.020458180457353592, + -0.06310658901929855, + 0.030072271823883057, + 0.01903991401195526, + -0.002880461746826768, + 0.013630419969558716, + -0.004417962860316038, + -0.0142830740660429, + -0.014270522631704807, + 0.01985573209822178, + 0.02535308338701725, + 0.019366241991519928, + 0.011101387441158295, + -0.0279385969042778, + -0.02368379570543766, + -0.03198002651333809, + 3.885426849592477e-05, + 0.03072492592036724, + -0.01910267025232315, + -0.008396640419960022, + 0.03823044151067734, + -0.0034327071625739336, + 0.005644826218485832, + 0.0301726795732975, + -0.024888696148991585, + 0.008277405053377151, + 0.013655521906912327, + 0.042020853608846664, + -0.005654239561408758, + -0.013065624050796032, + -0.0033856406807899475, + -0.03710084781050682, + 0.015801748260855675, + -0.017270218580961227, + 0.02448706328868866, + 0.032180845737457275, + -0.044982895255088806, + 0.008120517246425152, + 0.024085428565740585, + -0.023834409192204475, + -0.026432471349835396, + 0.007486690301448107, + -0.0035864573437720537, + 0.04234718158841133, + -0.025403287261724472, + -0.006790108047425747, + 0.0029165458399802446, + 0.0007385497447103262, + 0.028490841388702393, + 0.009369345381855965, + -0.023031143471598625, + -0.03353635594248772, + 0.04146860912442207, + 0.0308002308011055, + -0.04089125990867615, + -0.02763737179338932, + -0.023633591830730438, + -0.026005737483501434, + 0.018098587170243263, + -0.008277405053377151, + -0.030624516308307648, + 0.0006954055861569941, + -0.03085043467581272, + -0.05668045952916145, + -0.009243834763765335, + 0.005651101935654879, + 0.02726083993911743, + -0.004697223659604788, + 0.02237848937511444, + -0.0002731810382101685, + -0.013467256911098957, + -0.02436155267059803, + 0.043501876294612885, + -0.0063633727841079235, + 0.00961409043520689, + 0.028164515271782875, + -0.058839235454797745, + 0.013831236399710178, + -0.0028930127155035734, + -0.030222883448004723, + 0.012155674397945404, + -0.0028584974352270365, + 0.0043991366401314735, + 0.018562976270914078, + -0.014910625293850899, + -0.0019689430482685566, + -0.0073862820863723755, + -0.04433024302124977, + -0.00903046689927578, + 0.004813320469111204, + 0.022127468138933182, + -0.049250248819589615, + -0.019692568108439445, + 0.0027518137358129025, + -0.004697223659604788, + 0.02096022292971611, + 0.046589430421590805, + -0.020809609442949295, + 0.027988800778985023, + -0.0446314662694931, + -0.05311596393585205, + 0.006256689317524433, + -0.0020364047959446907, + 0.002725142752751708, + -0.00405084528028965, + -0.004154391586780548, + 0.03315982595086098, + -0.00019669819448608905, + 0.0024866731837391853, + 0.028666555881500244, + -0.021161038428544998, + -0.004267350770533085, + 0.0122749088332057, + 0.01657991297543049, + -0.020746855065226555, + 0.00852842628955841, + -0.002188586164265871, + 0.0010480111232027411, + 0.02577981911599636, + 0.02844063751399517, + -0.007223118562251329, + 0.005541280377656221, + 0.006049597170203924, + -0.009268936701118946, + 0.025302879512310028, + 0.00482587143778801, + -0.037125952541828156, + 0.03305941820144653, + -0.004380309954285622, + -0.010825264267623425, + -0.042447589337825775, + 0.019680017605423927, + 0.01162853091955185, + -0.029394514858722687, + 0.03715105354785919, + 0.044982895255088806, + -0.04171963036060333, + 0.005500489380210638, + -0.026809003204107285, + -0.0013500202912837267, + -0.026332063600420952, + -0.03343594819307327, + 0.004019467625766993, + -0.054822906851768494, + -0.022353386506438255, + -0.030348394066095352, + -0.012952664867043495, + 0.06852862983942032, + 0.011747765354812145, + 0.011289652436971664, + -0.00737373111769557, + 0.010831540450453758, + -0.020169507712125778, + 0.006877965293824673, + -0.025240125134587288, + 0.007223118562251329, + 0.011101387441158295, + -0.004110462963581085, + 0.028892474249005318, + 0.020169507712125778, + -0.006426128093153238, + -0.03702554106712341, + 0.005095718894153833, + -0.01212429627776146, + 0.021173590794205666, + 0.0007365886704064906, + 0.009821182116866112, + 0.01563858613371849, + 0.047392696142196655, + 0.005048652179539204, + 0.05015392228960991, + 0.01199251040816307, + -0.02338257245719433, + 0.0008981832070276141, + -0.009381895884871483, + -0.020533487200737, + 0.035268399864435196, + 0.0018104863120242953, + 0.0010032980935648084, + -0.016165727749466896, + -8.481751865474507e-05, + -0.025127165019512177, + 0.008572354912757874, + 0.02577981911599636, + 0.009532508440315723, + -0.0004628192982636392, + -0.01273929700255394, + 0.009701947681605816, + -0.032180845737457275, + 0.0038908198475837708, + 0.040439423173666, + -0.005346739199012518, + 0.02237848937511444, + -0.014245420694351196, + -0.009413274005055428, + 0.01607787050306797, + 0.010166335850954056, + 0.005036101210862398, + -0.006093525793403387, + -0.01632889173924923, + -0.013341746293008327, + -0.025804920122027397, + -0.015387564897537231, + -0.009199906140565872, + 0.02237848937511444, + 0.04274881258606911, + 0.007110159378498793, + -0.027988800778985023, + -0.0020944534335285425, + -0.0174961369484663, + -0.004894902464002371, + -0.0026749386452138424, + 0.014948278665542603, + 0.005989979952573776, + 0.00505806552246213, + -0.039234522730112076, + -0.014044604264199734, + 0.006065285764634609, + -0.02783818729221821, + -0.006564189679920673, + -0.011452816426753998, + -0.051183104515075684, + -0.010818989016115665, + -0.00013168777513783425, + -0.0016081009525805712, + 0.022353386506438255, + 0.0007460019551217556, + -0.0020819022320210934, + 0.010003171861171722, + -0.012168224900960922, + 0.019127771258354187, + -0.006040183827280998, + -0.020922569558024406, + 0.00962036568671465, + 0.01755889318883419, + 0.007825568318367004, + -0.02171328477561474, + 0.022340836003422737, + 0.05492331460118294, + 0.022027060389518738, + 0.0001724786270642653, + 0.008145619183778763, + -0.007561996579170227, + -0.02114848792552948, + 0.017797362059354782, + 0.02257930487394333, + 0.011747765354812145, + -0.03288370370864868, + 0.007982456125319004, + 0.004452478606253862, + 0.0056605152785778046, + 0.023081347346305847, + 0.006501434370875359, + -0.024210939183831215, + -0.007185465656220913, + -0.020370323210954666, + -0.042824119329452515, + -0.0011468505254015326, + -0.011182969436049461, + 0.01775970868766308, + -0.007718884386122227, + -0.020420528948307037, + 0.017772261053323746, + -0.0038531667087227106, + -0.030323291197419167, + -0.0005769552080892026, + -0.01379358395934105, + 0.0020568002946674824, + -0.01602766662836075, + -0.02270481549203396, + 0.05688127502799034, + 0.03363676369190216, + 0.08479476720094681, + -0.007988731376826763, + -0.033787377178668976, + 0.001000160351395607, + 0.06812699884176254, + 0.016466952860355377, + 0.014722360298037529, + -0.036573704332113266, + -0.01432072650641203, + -0.04252289608120918, + -0.012143122963607311, + -0.023909714072942734, + 0.05959229916334152, + -0.004860386718064547, + -0.0005263588973321021, + -0.017797362059354782, + -0.007198016624897718, + -0.007988731376826763, + -0.012193326838314533, + 0.0221400186419487, + 0.024223491549491882, + 0.0003292684559710324, + -0.016153177246451378, + 0.003111087018623948, + 0.030222883448004723, + -0.004584264010190964, + 0.017784811556339264, + -0.005503627471625805, + 0.012155674397945404, + 0.026608185842633247, + 0.0006146083469502628, + -0.0314277820289135, + 0.05497351661324501, + 0.02108573354780674, + -0.024662775918841362, + 0.03190472349524498, + 0.028089208528399467, + -0.024901246652007103, + 0.0010464421939104795, + 0.0400879941880703, + 0.0014104221481829882, + 0.012011337094008923, + 0.014647053554654121, + -0.017483586445450783, + 0.01196740847080946, + 0.03519309312105179, + 0.03790411353111267, + -0.021788591518998146, + -0.02023226208984852, + -0.002494517480954528, + 0.004920004401355982, + 0.020734304562211037, + -0.011245723813772202, + -0.007743986323475838, + 0.009281488135457039, + -0.05627882480621338, + -0.02585512399673462, + 0.03253227472305298, + -0.005776612088084221, + 0.031628597527742386, + -0.028666555881500244, + 0.014534094370901585, + -0.011741490103304386, + 0.006077837198972702, + -0.007894598878920078, + 0.006626944523304701, + -0.0026608186308294535, + 0.003300921292975545, + 0.017207464203238487, + 0.016554810106754303, + -0.029520025476813316, + 0.016893688589334488, + 0.026306962594389915, + 0.017596546560525894, + -0.010065927170217037, + -0.010693478398025036, + -0.008233476430177689, + -0.015023584477603436, + -0.02350808121263981, + 0.001193132484331727, + -0.02585512399673462, + -0.022491447627544403, + -0.06004413589835167, + 0.04438044875860214, + -0.01656736060976982, + 0.01354256272315979, + 0.03085043467581272, + 0.009237559512257576, + 0.012080367654561996, + 0.003038918599486351, + 0.016090422868728638, + 0.007003475446254015, + 0.0356198288500309, + 0.013341746293008327, + 0.012011337094008923, + 0.011829347349703312, + -0.02473808266222477, + 0.014634503051638603, + -0.03315982595086098, + -0.004326967988163233, + 0.018650833517313004, + -0.0019171700114384294, + 0.029545128345489502, + 0.02566685900092125, + -0.016605013981461525, + -0.008773171342909336, + 0.010492661967873573, + -0.02442430704832077, + 0.012475725263357162, + 0.038130033761262894, + -0.011490468867123127, + -0.027436554431915283, + 0.019931038841605186, + -0.003674314357340336, + -0.011835622601211071, + -0.002947923494502902, + -0.013705726712942123, + -0.011490468867123127, + -0.00035456664045341313, + 0.0003320139949209988, + -0.006463780999183655, + 0.0011044907150790095, + 0.007292149122804403, + 0.0012362765846773982, + -0.00031691353069618344, + -0.006037046201527119, + 0.005578933283686638, + -0.014697257429361343, + -0.011139040812849998, + 0.022679714486002922, + 0.02078450843691826, + 0.04551003873348236, + -0.011019805446267128, + 0.0007279598503373563, + -0.005996255204081535, + -0.007103883661329746, + -0.03300921246409416, + 0.010749958455562592, + 0.014119910076260567, + 0.023081347346305847, + -0.003451533615589142, + -0.01307817455381155, + -0.001212743460200727, + -0.0018340194365009665, + 0.02560410462319851, + 0.004540335852652788, + -0.005971153266727924, + -0.02700982056558132, + -0.02004399709403515, + 0.013090725988149643, + 0.01757144369184971, + -0.003950437065213919, + 0.008082863874733448, + -0.0008958298712968826, + -0.023909714072942734, + -0.017358075827360153, + -0.042999833822250366, + -0.017784811556339264, + 0.013103276491165161, + -0.030624516308307648, + -0.008610007353127003, + -0.009375620633363724, + 0.011245723813772202, + -0.021236345171928406, + -0.0009554472635500133, + 0.01339195016771555, + 0.010567968711256981, + -0.005108269862830639, + -0.0069909244775772095, + 0.005582071375101805, + 0.001918738940730691, + -0.01103863213211298, + -0.018575526773929596, + 0.0054973517544567585, + -0.013705726712942123, + -0.04914984107017517, + 0.040339015424251556, + 0.02165052853524685, + -0.038431257009506226, + 0.014797666110098362, + -0.01595236174762249, + 0.03245696797966957, + -0.012055265717208385, + -0.002450588857755065, + -0.008540976792573929, + 0.02318175509572029, + -0.007336077746003866, + 0.0015186747768893838, + 0.03165370225906372, + -0.018701037392020226, + -0.04116738215088844, + -0.013994400389492512, + 0.0037433451507240534, + -0.0030279364436864853, + 0.03305941820144653, + -0.02962043508887291, + -0.009043018333613873, + -0.009017916396260262, + 0.0033981918822973967, + 0.017546342685818672, + -0.003344849916175008, + -0.009601539000868797, + -0.015626033768057823, + -0.011145316064357758, + -0.04827126860618591, + -0.0022419278975576162, + 0.015412666834890842, + 0.016052769497036934, + 0.001295109512284398, + -0.031754110008478165, + -0.0481206551194191, + -0.052413105964660645, + 0.002803586656227708, + -0.004910591058433056, + -0.0035895949695259333, + 0.006695975083857775, + -0.014396033249795437, + -0.0009052431560121477, + 0.01496082916855812, + 0.007492965552955866, + -0.011095112189650536, + 0.01119551993906498, + 0.026332063600420952, + 0.0324067622423172, + -0.012262357398867607, + 0.016655217856168747, + 0.014571747742593288, + -0.014546645805239677, + 0.017332974821329117, + 0.020182058215141296, + 0.013730828650295734, + 0.014232869260013103, + -0.01885164901614189, + 0.045786160975694656, + 0.0021995683200657368, + -0.009545059874653816, + 0.012808327563107014, + -0.009852559305727482, + -0.02270481549203396, + -0.014421135187149048, + -0.008183272555470467, + 0.015588381327688694, + -0.013605318032205105, + 0.0050768922083079815, + -0.003649212419986725, + -0.025240125134587288, + 0.01750868931412697, + -0.015626033768057823, + -0.013919093646109104, + -0.006539087276905775, + 0.015500524081289768, + 0.025691961869597435, + -0.002392540453001857, + -0.008773171342909336, + -0.010216539725661278, + 0.0037966871168464422, + 0.0031659977976232767, + -0.020859815180301666, + -0.037929218262434006, + -0.01354256272315979, + 0.003310334635898471, + 0.010762509889900684, + -0.0032601305283606052, + -0.01850022003054619, + -0.004044570028781891, + -0.009582712315022945, + -0.01014123298227787, + 0.02473808266222477, + 0.0039880904369056225, + 0.001725766807794571, + 0.011277101933956146, + -0.030900638550519943, + -0.0030624517239630222, + 0.009137150831520557, + -0.03258247673511505, + 0.009256385266780853, + 0.009363069199025631, + -0.01555072795599699, + -0.017709504812955856, + -0.026984717696905136, + -0.008867303840816021, + -0.024461960420012474, + -0.010593070648610592, + 0.004060258623212576, + 0.027988800778985023, + -0.02478828653693199, + -0.027813086286187172, + 0.02546604350209236, + 0.02034522220492363, + 0.008208374492824078, + 0.031026149168610573, + -0.010097304359078407, + -0.029168596491217613, + 0.0006648124544881284, + 0.016843484714627266, + -0.005682479590177536, + 0.018600627779960632, + 0.021424610167741776, + -0.005993117578327656, + -0.022604407742619514, + 0.01713215745985508, + -0.02040797658264637, + -0.007047404069453478, + 0.004810182843357325, + 0.02126144804060459, + 0.016291238367557526, + 0.014245420694351196, + 0.02355828694999218, + -0.02818961627781391, + -0.013454705476760864, + -0.01288990955799818, + -0.01818644441664219, + -0.0018402950372546911, + -0.01793542318046093, + 0.022403590381145477, + 0.004386585671454668, + 0.00567306624725461, + -0.03122696653008461, + -0.01555072795599699, + -0.00853470154106617, + 0.027311043813824654, + -0.022227875888347626, + 0.019642364233732224, + -0.002412935718894005, + 0.002092884387820959, + -0.0020568002946674824, + -0.021914100274443626, + -0.032431866973638535, + -0.012758123688399792, + -0.02170073427259922, + 0.04648901894688606, + 0.03431452065706253, + 0.058337192982435226, + -0.018349608406424522, + 0.02058369107544422, + -0.020458180457353592, + -0.001212743460200727, + 0.0015382857527583838, + 0.006146867759525776, + -0.014207767322659492, + 0.010693478398025036, + 0.00017845997354015708, + 0.0009829025948420167, + -0.0006581447087228298, + 0.008729242719709873, + 0.013341746293008327, + 0.026809003204107285, + -0.0019736497197300196, + -0.001168814837001264, + 0.02033267170190811, + 0.0433010570704937, + 0.0025462904013693333, + -0.02047073282301426, + 0.01866338402032852, + -0.031126558780670166, + -0.0336618646979332, + -0.0016426162328571081, + 0.029946761205792427, + 0.014483890496194363, + 0.0032318904995918274, + 0.0019438409944996238, + 0.017659300938248634, + 0.027612268924713135, + -0.009450926445424557, + -0.015801748260855675, + 0.0057295458391308784, + 0.0030028342735022306, + -0.049802493304014206, + 0.021499916911125183, + 0.0003628032573033124, + -0.012325112707912922, + 0.006495158653706312, + 0.03308451920747757, + -0.021123385056853294, + -0.00394416181370616, + -0.026758799329400063, + -0.022679714486002922, + 0.006030770484358072, + -0.005647964309900999, + 0.026633288711309433, + 0.005610310938209295, + -0.022340836003422737, + -0.007969904690980911, + -0.011289652436971664, + 0.0015382857527583838, + 0.005845643114298582, + -0.05186086148023605, + -0.01335429772734642, + 0.03554452210664749 + ], + "how_to_create_reserach_setups": [ + -0.014088370837271214, + 0.023309091106057167, + 0.014220492914319038, + -0.0015359175158664584, + 0.0010561062954366207, + 0.017940768972039223, + -0.01496454793959856, + -0.00021132991241756827, + 0.023907117545604706, + -0.032654982060194016, + 0.015117531642317772, + -0.03382321819663048, + 0.01823282800614834, + -0.05354415625333786, + 0.035353049635887146, + -0.004019288346171379, + 0.005097125191241503, + 0.03490800783038139, + -0.0068320948630571365, + 0.03916372358798981, + 0.012593306601047516, + -0.019985182210803032, + 0.003723752684891224, + -0.03507489711046219, + -0.02775951474905014, + -0.03504708409309387, + 0.039052464067935944, + 0.030235063284635544, + -0.02211304008960724, + -0.03223775327205658, + 0.04695196449756622, + -0.025965437293052673, + -0.051346756517887115, + 0.020305056124925613, + -0.014519506134092808, + 0.0009248536080121994, + -0.059301890432834625, + 0.0032908793073147535, + 0.006508743856102228, + 0.001285581267438829, + 0.01717585138976574, + -0.046812888234853745, + -0.040554482489824295, + 0.0051040793769061565, + -0.023044848814606667, + -0.015673834830522537, + -0.06369668245315552, + -0.00049111113185063, + 0.03646565601229668, + -0.0049997721798717976, + 0.00029075518250465393, + 0.007419690024107695, + 0.007280614227056503, + -0.10502998530864716, + -0.012085680849850178, + -0.032209936529397964, + -0.023448167368769646, + -0.029845651239156723, + 0.020430224016308784, + 0.0451439805328846, + 0.054573316127061844, + 0.04870431870222092, + 0.025756824761629105, + 0.018316272646188736, + 0.01052107848227024, + -0.022266024723649025, + -0.05045667290687561, + 0.04172271862626076, + 0.012690659612417221, + 0.023503797128796577, + -0.02920590341091156, + 0.0054169995710253716, + -0.007975992746651173, + -0.013963202945888042, + 0.011960512027144432, + 0.0027484840247780085, + -0.012482046149671078, + 0.05493491142988205, + -0.04297440126538277, + 0.011724083684384823, + -0.024964092299342155, + -0.04105515405535698, + 0.02730056457221508, + -0.029372792690992355, + -0.03131985291838646, + -0.007294521667063236, + -0.03093044087290764, + 5.682547271135263e-05, + -0.06191651523113251, + -0.07782677561044693, + -0.018663963302969933, + -0.02276669628918171, + -0.030485399067401886, + 0.02368459664285183, + 0.07192996889352798, + -0.023712411522865295, + -0.008441896177828312, + -0.02026333287358284, + 0.0008740040357224643, + 0.07966257631778717, + 0.0243382528424263, + -0.042863138020038605, + -0.01775996945798397, + -0.018524887040257454, + 0.025228336453437805, + -0.014422153122723103, + -0.016619550064206123, + 0.022669343277812004, + -0.04458767920732498, + -0.009088599123060703, + -0.08489182591438293, + -0.023698503151535988, + 0.008831308223307133, + -0.003737660124897957, + -0.01032637245953083, + -0.03749481588602066, + 0.0034143091179430485, + -0.01561820413917303, + -0.0043426393531262875, + -0.01664736494421959, + -0.00485374266281724, + 0.03446296602487564, + 0.04455986246466637, + 0.0060324096120893955, + 0.051012977957725525, + -0.015187069773674011, + 0.031876157969236374, + -0.051346756517887115, + 0.007523996755480766, + -0.001653262646868825, + 0.005371800158172846, + -0.02506144531071186, + 0.04314129054546356, + -0.02165408991277218, + -0.012356878258287907, + 0.011133012361824512, + -0.02934497781097889, + -0.015590389259159565, + -0.02724493481218815, + -0.03123640827834606, + 0.04386448487639427, + 0.00399842718616128, + -0.0005341377109289169, + 0.0352696031332016, + 0.016494380310177803, + 0.053182557225227356, + -0.003967135213315487, + -0.016550011932849884, + 0.03373977169394493, + 0.016202321276068687, + 0.009304165840148926, + -0.029762204736471176, + -0.04798112437129021, + -0.04992818459868431, + 0.0300681721419096, + -0.019234172999858856, + 0.007503135595470667, + 0.05151364952325821, + -0.008685278706252575, + -0.02243291400372982, + 0.04414263740181923, + 0.02440778911113739, + -0.032265570014715195, + 0.02481110952794552, + -0.03543649613857269, + 0.023990562185645103, + -0.020875265821814537, + -0.034963637590408325, + -0.06914845108985901, + 0.020360685884952545, + 0.023364722728729248, + -0.014672488905489445, + 0.014867194928228855, + 0.028510523959994316, + 0.016341397538781166, + -0.0023138723336160183, + -0.04795331135392189, + 0.024240899831056595, + -0.02979002147912979, + 0.0073084295727312565, + 0.0014507336309179664, + -0.0100968973711133, + -0.04481019824743271, + -0.015409590676426888, + -0.02315610833466053, + -0.015437405556440353, + -0.00506235659122467, + -0.009220720268785954, + 0.0004928496200591326, + -0.020305056124925613, + 0.06158273294568062, + 0.015743372961878777, + 0.009603179059922695, + 0.023309091106057167, + 0.038913387805223465, + 0.021028250455856323, + -0.017996398732066154, + -0.017718248069286346, + 0.04750826954841614, + -0.03966439887881279, + 0.007433597464114428, + 0.03084699623286724, + 0.03282187134027481, + -0.007329290732741356, + 0.013469483703374863, + -0.0631403774023056, + -0.02348989062011242, + -0.003010989399626851, + 0.004353070165961981, + -0.0016602164832875133, + 0.009637948125600815, + -0.030819181352853775, + 0.006300130393356085, + 0.03170926496386528, + -0.02492237091064453, + -0.023309091106057167, + -0.011571100912988186, + 0.07109551131725311, + -0.01344862300902605, + -0.03835708647966385, + -0.02387930266559124, + 0.016689086332917213, + 0.0326271653175354, + 0.002835406456142664, + 0.00954059511423111, + 0.04152801260352135, + 0.05098516121506691, + -0.039052464067935944, + 0.03908028081059456, + -0.01565992645919323, + 0.02211304008960724, + 0.03084699623286724, + 0.02157064527273178, + 0.018705684691667557, + -0.034629855304956436, + 0.0044087003916502, + 0.004464330617338419, + -0.01522879209369421, + 0.005601274780929089, + -0.027620438486337662, + 0.01036114152520895, + -0.01125122606754303, + -0.004791158717125654, + -0.023072663694620132, + 0.01433870755136013, + 0.011063474230468273, + -0.009832654148340225, + -0.06731265038251877, + 0.035158343613147736, + -0.01933152601122856, + 0.03638220950961113, + 0.002758914837613702, + 0.07365450263023376, + -0.003177880309522152, + 0.0026424387469887733, + -0.039247170090675354, + -0.02625749632716179, + 0.0009318073862232268, + 4.631330375559628e-05, + -0.010089944116771221, + -0.023587243631482124, + 0.02269715815782547, + 0.0022008733358234167, + 0.019957367330789566, + -0.0128297358751297, + -0.028649600222706795, + 0.0003159626794513315, + -0.006122808903455734, + -0.04472675547003746, + -0.08355669677257538, + -0.013163517229259014, + 0.030207248404622078, + 0.01638312079012394, + -0.032738424837589264, + -0.07665853947401047, + -0.005038018338382244, + 0.017120221629738808, + 0.043447256088256836, + 0.00351861584931612, + 0.019109005108475685, + -0.08122022449970245, + -0.0025433474220335484, + 0.03162581846117973, + 0.03290531784296036, + -0.00308400415815413, + 0.04856524243950844, + 0.02005472034215927, + -0.002296488033607602, + 0.0414445661008358, + 0.0011838821228593588, + 0.024588588625192642, + 0.03282187134027481, + 0.015506943687796593, + -0.025367412716150284, + 0.021403754130005836, + -0.023378629237413406, + 0.012843643315136433, + -0.015965893864631653, + 0.03229338303208351, + 0.005410045851022005, + 0.02197396568953991, + 0.0026580847334116697, + 0.07115114480257034, + 0.01148070115596056, + -0.02775951474905014, + -0.009422380477190018, + 0.01966530829668045, + -0.04111078381538391, + 0.01710631512105465, + 0.016355305910110474, + 0.027203211560845375, + -0.005872472655028105, + 0.06364104896783829, + -0.03757826238870621, + -0.006894679274410009, + 0.01862224005162716, + 0.032599348574876785, + 0.0009422380244359374, + -0.031069517135620117, + -0.015868540853261948, + -0.0663113072514534, + -0.021431569010019302, + 0.06247281655669212, + -0.0705392062664032, + -0.004561683628708124, + -0.039302799850702286, + -0.01127904187887907, + -0.0150340860709548, + -0.0035012313164770603, + -0.012356878258287907, + 0.008309775032103062, + -0.02347598224878311, + 0.018385810777544975, + 0.013851942494511604, + 0.010674062184989452, + -0.04177834838628769, + 0.018330181017518044, + 0.08984292298555374, + 0.009874376468360424, + -0.006620004773139954, + -0.016925515606999397, + -0.03410136699676514, + -0.0331556536257267, + 0.012398600578308105, + -0.03031850792467594, + 0.009637948125600815, + 0.00028206294518895447, + -0.01901165209710598, + 0.004012334626168013, + 0.023712411522865295, + 0.03960876539349556, + 0.003866305109113455, + -0.038523975759744644, + -0.008295866660773754, + -0.04322473704814911, + -0.013754589483141899, + 0.00506583321839571, + -0.024519050493836403, + -0.013580745086073875, + -0.017982492223381996, + -0.012043957598507404, + 0.08494745194911957, + 0.054768022149801254, + 0.037522632628679276, + -0.060025084763765335, + 0.02024942636489868, + -0.009721393696963787, + 0.028232373297214508, + -0.023072663694620132, + 0.010382003150880337, + 0.07298693805932999, + -0.0012664583045989275, + 0.012002235278487206, + -0.007169353775680065, + -0.008483619429171085, + -0.01597980037331581, + 0.04984474182128906, + 0.03215430676937103, + -0.01848316378891468, + 0.055880628526210785, + 0.04895465448498726, + -0.0065887123346328735, + 0.0011995281092822552, + 0.013469483703374863, + 0.02546476572751999, + -0.006526128388941288, + 0.01240555476397276, + 0.03999817743897438, + -0.05757734924554825, + -0.021807074546813965, + 0.0001643918512854725, + -0.033851031213998795, + 0.045283056795597076, + -0.018650054931640625, + -0.02024942636489868, + -0.006522651761770248, + 0.021612368524074554, + 0.04044322296977043, + 0.011932697147130966, + 0.02329518459737301, + 0.024574680253863335, + -0.040749188512563705, + -0.04414263740181923, + 0.015479128807783127, + 0.025033630430698395, + 0.0014124878216534853, + 0.02329518459737301, + 0.025868084281682968, + 0.04703541100025177, + -0.02401837706565857, + 0.056742895394563675, + -0.04675725847482681, + 0.050818271934986115, + 0.01020120456814766, + -0.030179433524608612, + -0.029845651239156723, + 0.012259525246918201, + 0.012043957598507404, + -0.025172706693410873, + -0.0022582421079277992, + 0.015771187841892242, + -0.0347411148250103, + 0.028315817937254906, + -0.032988760620355606, + 0.01842753402888775, + 0.031152963638305664, + 0.016842070966959, + -0.03112514689564705, + 0.0005862911348231137, + -0.0231004785746336, + -0.007802148349583149, + -0.005830749869346619, + 0.05841180682182312, + 0.06892593204975128, + 0.01055584754794836, + 0.018538793548941612, + -0.038051117211580276, + -0.03807893395423889, + -0.03410136699676514, + 0.03974784165620804, + 0.05165272578597069, + 0.012551584281027317, + 0.024421697482466698, + 0.052403733134269714, + -0.025283966213464737, + -0.03972002863883972, + -0.034240443259477615, + -0.007092861924320459, + -0.008073345758020878, + -0.027801238000392914, + 0.016007615253329277, + -0.03412918373942375, + -0.0194010641425848, + 0.03501926735043526, + -0.012384693138301373, + 0.005024110432714224, + 0.03507489711046219, + 0.004106211010366678, + 0.024032285436987877, + 0.03323910012841225, + 0.04951095953583717, + 0.04080481827259064, + 0.010792276822030544, + 0.01345557626336813, + -0.0016437012236565351, + 0.011007843539118767, + -0.04138893634080887, + 0.016842070966959, + -0.015812909230589867, + 0.0011169519275426865, + 0.02419917657971382, + -0.06831399351358414, + -0.004412177484482527, + 0.005743827670812607, + -0.0027519608847796917, + 0.010861814022064209, + -0.06441987305879593, + 0.06503181159496307, + -0.0061610545963048935, + -0.027912497520446777, + 0.0015011485666036606, + 0.020179888233542442, + 0.009561455808579922, + 0.008789585903286934, + -0.027536993846297264, + 0.05702104791998863, + -0.007273660507053137, + -0.019720938056707382, + -0.031013887375593185, + -0.026354849338531494, + 0.00977007020264864, + -0.009818746708333492, + 0.047007594257593155, + -0.01716194488108158, + 0.049038100987672806, + -0.03546430915594101, + -0.009484964422881603, + -0.000794470077380538, + -0.010437632910907269, + 0.02816283516585827, + 0.02394884079694748, + -0.003633353393524885, + -0.06486491858959198, + 0.01814938150346279, + -0.015590389259159565, + -0.010973074473440647, + -0.011564146727323532, + 0.027717791497707367, + 0.015965893864631653, + 0.006154100876301527, + 0.016369212418794632, + -0.017092406749725342, + 0.006887725554406643, + 0.03663254529237747, + 0.005437860731035471, + 0.007683933712542057, + -0.005743827670812607, + -2.2545478714164346e-05, + 0.012050911784172058, + -0.007176307495683432, + -0.010569754987955093, + -0.015896355733275414, + -0.03268279507756233, + 0.010875721462070942, + 0.0028023759368807077, + -0.05359978601336479, + -0.037995487451553345, + -0.04061011224985123, + 0.0066130505874753, + -0.0007909932173788548, + -0.016160599887371063, + -0.015882447361946106, + -0.013406899757683277, + -0.0022234732750803232, + -0.04842616617679596, + -0.012704567983746529, + -0.043196920305490494, + -0.011459839530289173, + -0.026813799515366554, + -0.02158455364406109, + -0.017189759761095047, + 0.021167324855923653, + -0.016939423978328705, + -0.011035659350454807, + -0.015562573447823524, + 0.008678325451910496, + -0.026869431138038635, + 0.02111169509589672, + 0.02329518459737301, + -0.0002746745594777167, + 0.04984474182128906, + -0.06486491858959198, + 0.008142883889377117, + -0.04169490188360214, + -0.00819156039506197, + 0.0056638591922819614, + 0.010020405985414982, + -0.026215774938464165, + 0.028329726308584213, + 0.0023434259928762913, + 0.008907800540328026, + 0.016035431995987892, + -0.011765806935727596, + -0.0073084295727312565, + 0.006560897454619408, + 0.0347411148250103, + 0.011786667630076408, + -0.0149923637509346, + -0.01756526343524456, + -0.02137593924999237, + -0.009095552377402782, + -0.03131985291838646, + 0.046534739434719086, + 0.02992909587919712, + -0.007579626981168985, + 0.020096441730856895, + -8.393437747145072e-05, + -0.018914299085736275, + -0.001161282300017774, + -0.0315701887011528, + -0.002225211588665843, + -0.062139034271240234, + 0.03243245929479599, + 0.02599325403571129, + -0.0305966604501009, + 0.02862178534269333, + -0.030040357261896133, + 0.01618841476738453, + 0.004467807710170746, + -0.029122456908226013, + 0.005799457896500826, + 0.04191742464900017, + 0.028440985828638077, + -0.011988327838480473, + -0.0022043501958251, + 0.0034403856843709946, + -0.029817836359143257, + -0.006581758614629507, + 0.023128293454647064, + 0.015673834830522537, + -0.017801692709326744, + 0.01735665090382099, + -0.022669343277812004, + 0.026424387469887733, + -0.01994345895946026, + -0.016355305910110474, + -0.011696268804371357, + 0.015868540853261948, + -0.03585372120141983, + 0.016341397538781166, + -0.0030353276524692774, + 0.028121111914515495, + -0.026619093492627144, + -0.016397027298808098, + -0.006953786127269268, + -0.007565719541162252, + -0.005027587525546551, + 0.0186917781829834, + 0.010076036676764488, + -0.021807074546813965, + -0.017926860600709915, + 0.013775451108813286, + -0.05359978601336479, + 0.0038071980234235525, + 0.030485399067401886, + -0.007315383292734623, + -0.00862269476056099, + 0.018650054931640625, + -0.012516815215349197, + 0.017148036509752274, + 0.02657737210392952, + -0.00028075912268832326, + 0.007843870669603348, + -0.018246734514832497, + -0.03393447771668434, + 0.005771642550826073, + 0.05835617333650589, + -0.00467294454574585, + 0.028538338840007782, + 0.016216229647397995, + 0.05735483020544052, + -0.005556075368076563, + 0.028315817937254906, + -0.05212558060884476, + -0.009366749785840511, + 0.0414445661008358, + 0.00799685437232256, + 0.017523542046546936, + 0.014436060562729836, + -0.025937622413039207, + -0.02104215696454048, + 0.01453341357409954, + 0.04422608017921448, + -0.002040936378762126, + -0.0028858212754130363, + 0.012927088886499405, + -0.02571510151028633, + -0.048787765204906464, + -0.01127904187887907, + -0.013545976020395756, + -0.047063227742910385, + 0.014011879451572895, + 0.020374594256281853, + -0.002604193054139614, + 0.00989523809403181, + 0.021890519186854362, + 0.012551584281027317, + 0.019901735708117485, + 0.014171816408634186, + 0.05919063091278076, + -0.03524179011583328, + 0.012078726664185524, + 0.013761542737483978, + 0.013066164217889309, + -0.03532523289322853, + 0.013525114394724369, + -0.007440551184117794, + -0.023781949654221535, + 0.013052256777882576, + 0.028065482154488564, + 0.03755044564604759, + -0.002383410232141614, + -0.049705665558576584, + 0.0532660037279129, + 0.06475365906953812, + -0.007040708791464567, + -0.003181357169523835, + 0.01947060227394104, + -0.00266503868624568, + -0.004401746671646833, + 0.04013725370168686, + -0.0002154587273253128, + 0.001366419019177556, + -0.011960512027144432, + 0.028037667274475098, + -0.013698958791792393, + 0.022460730746388435, + -0.015187069773674011, + -0.02303094044327736, + -0.057521719485521317, + -0.024574680253863335, + -0.0052431547082960606, + 0.042668431997299194, + -0.019428879022598267, + -0.020541485399007797, + -0.032321199774742126, + -0.020805729553103447, + 0.0022930109407752752, + 0.019234172999858856, + 0.005514352582395077, + -0.018914299085736275, + 0.01906728185713291, + -0.013643329031765461, + 0.038579605519771576, + -0.0033725863322615623, + 0.0019835676066577435, + 0.00966576300561428, + -0.021542830392718315, + 0.019109005108475685, + -0.022989217191934586, + -0.025562118738889694, + 0.026619093492627144, + 0.0029953434132039547, + -0.028329726308584213, + -0.03040195442736149, + -0.018858669325709343, + -0.010548894293606281, + 0.033044394105672836, + -0.049705665558576584, + 0.007280614227056503, + 0.007238891441375017, + 0.028385356068611145, + 0.008469711989164352, + 0.02652174048125744, + 0.011800575070083141, + 0.008052484132349491, + -0.03148674592375755, + 0.03243245929479599, + 0.010757507756352425, + -0.0025016246363520622, + -0.04066574200987816, + 0.010548894293606281, + -0.003706368152052164, + 0.027536993846297264, + 0.013344315811991692, + -0.010924397967755795, + 0.0075518121011555195, + 0.05070700868964195, + -0.001788861583918333, + -0.01789904572069645, + -0.034963637590408325, + 0.012419462203979492, + -0.005111033096909523, + -0.028204556554555893, + 0.04631221666932106, + -0.02348989062011242, + 0.02454686537384987, + -0.0048711271956563, + -0.012996627017855644, + 0.030179433524608612, + -0.018205013126134872, + 0.03310002386569977, + -0.009352842345833778, + -0.01585463248193264, + -0.03468548506498337, + -0.006974647752940655, + 0.00839321967214346, + -0.012676752172410488, + -0.0039045510347932577, + 0.01233601663261652, + 0.04998381435871124, + -0.012391647323966026, + 0.03118077851831913, + 0.0013333884999155998, + 0.03913591057062149, + -0.005413522478193045, + 0.018705684691667557, + -0.0449770912528038, + -0.01085486076772213, + -0.017787786200642586, + 0.015812909230589867, + -0.006355760619044304, + 0.002348641399294138, + 0.010861814022064209, + 0.01032637245953083, + 0.0004967611166648567, + 0.0269806906580925, + 0.029233718290925026, + -0.004137502983212471, + -0.04800894111394882, + -0.03521397337317467, + -0.036604732275009155, + 0.017078498378396034, + 0.0027728222776204348, + 0.02158455364406109, + 0.021987872198224068, + -0.00996477622538805, + -0.08088644593954086, + 0.00785777810961008, + 0.012655891478061676, + -0.020708376541733742, + 0.016021523624658585, + 0.019456693902611732, + 0.07665853947401047, + 0.040943894535303116, + -0.008567065000534058, + -0.0398591049015522, + 0.008427988737821579, + -0.03145892918109894, + -0.01954014040529728, + 0.03671599179506302, + -0.004311347380280495, + 0.004923280794173479, + 0.020096441730856895, + -0.010861814022064209, + 0.01611887663602829, + -0.014950640499591827, + -0.030012542381882668, + 0.0023781948257237673, + -0.036549102514982224, + -0.006074132397770882, + -0.02243291400372982, + -0.017926860600709915, + -0.015353959985077381, + 0.02033287100493908, + -0.008740909397602081, + 0.04283532500267029, + 0.02901119738817215, + 0.01986001431941986, + -0.025895901024341583, + 0.04183397814631462, + -0.04244591295719147, + -0.005656905006617308, + 0.015632111579179764, + 0.026827707886695862, + 0.027397917583584785, + 0.02237728424370289, + 0.012662844732403755, + 0.024435605853796005, + 0.006797326263040304, + 0.014825472608208656, + 0.04817583039402962, + 0.007082431577146053, + -0.029261533170938492, + 0.03357287868857384, + -0.05270969867706299, + 0.003967135213315487, + 0.05952440947294235, + -0.03788422793149948, + 0.029261533170938492, + -0.004092303104698658, + 0.029094642028212547, + 0.01549303624778986, + -0.011571100912988186, + -0.022279931232333183, + -0.014123139902949333, + -0.022266024723649025, + 0.014700304716825485, + 0.03730010986328125, + 0.03677162155508995, + -0.026758169755339622, + -0.018010307103395462, + 0.006039363332092762, + -0.0163135826587677, + -0.00374113698489964, + -0.0097005320712924, + 0.009610132314264774, + 0.002369502792134881, + 0.00442260829731822, + 0.010208158753812313, + 0.013233055360615253, + -0.0225719902664423, + -0.003057927591726184, + 0.03387884795665741, + -0.00845580454915762, + 0.036270949989557266, + -0.06703449785709381, + 0.02237728424370289, + -0.0007640472613275051, + -0.014686396345496178, + -0.025840269401669502, + -0.019762661308050156, + -0.0034490779507905245, + -0.00950582604855299, + 0.01391452644020319, + 0.008295866660773754, + 0.02486673928797245, + 0.019693123176693916, + 0.0034264782443642616, + 0.004599929787218571, + -0.017092406749725342, + -0.007030277978628874, + 0.021473292261362076, + -0.008803493343293667, + -0.010507171042263508, + 0.01730102114379406, + -0.024366067722439766, + 0.007586580701172352, + 0.020944803953170776, + -0.001383803435601294, + 0.00016558704373892397, + 0.015743372961878777, + 0.07309820502996445, + -0.009380658157169819, + 0.011598915793001652, + 0.008664418011903763, + -0.013956248760223389, + 0.011807529255747795, + 0.01994345895946026, + -0.03012380190193653, + 0.00957536417990923, + -0.026007160544395447, + 0.01571555621922016, + 0.032654982060194016, + 0.01078532263636589, + -0.006376622244715691, + 0.020040811970829964, + -0.003433431964367628, + 0.005343984812498093, + -0.027801238000392914, + -0.0022930109407752752, + 0.024491235613822937, + -0.022126948460936546, + 0.017982492223381996, + 0.03179271146655083, + -0.0027171920519322157, + -0.0033117407001554966, + 0.03540867939591408, + 0.009630993939936161, + -0.054823651909828186, + 0.01691160909831524, + -0.02590980753302574, + -0.04439297318458557, + 0.02506144531071186, + 0.005090171471238136, + -0.032070863991975784, + -0.008490572683513165, + -0.007530950475484133, + -0.0035985843278467655, + -0.019373249262571335, + -0.008427988737821579, + -0.02282232604920864, + 0.0038245825562626123, + -0.02499190717935562, + 0.015840725973248482, + -0.03972002863883972, + -0.0363265797495842, + 0.005257062613964081, + 0.004001903813332319, + 0.028510523959994316, + 0.0299847275018692, + -0.021167324855923653, + 0.01479765772819519, + 0.0019122912781313062, + -0.003664645366370678, + 0.0013081810902804136, + -0.0073779672384262085, + -0.009756161831319332, + 0.04044322296977043, + 0.028760859742760658, + -0.010931352153420448, + 0.03379540145397186, + -0.02347598224878311, + -0.014164863154292107, + -0.008594879880547523, + 0.050623565912246704, + -0.022015687078237534, + -0.01973484642803669, + -0.009658808819949627, + 0.01101479772478342, + 0.03913591057062149, + 9.242287887900602e-06, + 0.010924397967755795, + 0.033517248928546906, + -0.015270514413714409, + -0.057076677680015564, + 0.019832199439406395, + -0.02421308308839798, + -0.005145801696926355, + -0.011438978835940361, + 0.045422133058309555, + 0.040220700204372406, + 0.017606986686587334, + 0.00143421848770231, + 0.023309091106057167, + 0.047063227742910385, + 0.020708376541733742, + 0.00021361162362154573, + -0.00010360054875491187, + 0.000568037445191294, + 0.022724973037838936, + -0.007656118832528591, + -0.019039466977119446, + -0.010312465019524097, + 0.03835708647966385, + 0.011925743892788887, + -0.020082535222172737, + -0.011209503747522831, + 0.021946148946881294, + 0.03613187372684479, + -0.001794076873920858, + 0.010778368450701237, + 0.03755044564604759, + 0.020611023530364037, + 0.04467112198472023, + -0.05387793481349945, + 0.012732382863759995, + 0.029122456908226013, + -0.011098243296146393, + 0.0016124092508107424, + 0.03323910012841225, + -0.0023938410449773073, + 0.007565719541162252, + -0.05418390408158302, + 0.030958257615566254, + -0.021153418347239494, + 0.0031292038038372993, + -0.027926405891776085, + -0.042195577174425125, + -0.023072663694620132, + 0.010187297128140926, + 0.0009291996830143034, + 0.033183466643095016, + -0.018274551257491112, + -0.005086694844067097, + -0.048064570873975754, + 0.014742027036845684, + -0.01888648420572281, + 0.03499145433306694, + 0.02867741510272026, + -0.016410935670137405, + -0.006310561206191778, + -0.015590389259159565, + 0.030624475330114365, + 0.007579626981168985, + -0.025506488978862762, + -0.011230365373194218, + -0.0038176286034286022, + 0.00954059511423111, + 0.0033239098265767097, + 0.0016089322743937373, + -0.004565160721540451, + 0.014053601771593094, + 0.038774311542510986, + -0.0077951946295797825, + 0.006314037833362818, + 0.02236337773501873, + -0.024449512362480164, + 0.003310002386569977, + 0.03031850792467594, + -0.018900390714406967, + 0.0132261011749506, + 0.0024825017899274826, + 0.02230774611234665, + 0.009554502554237843, + -0.01433870755136013, + -0.04341944307088852, + -0.018663963302969933, + 0.022405099123716354, + 0.02663300186395645, + 0.001187358982861042, + -0.0017332312418147922, + 0.0037133218720555305, + 0.014296984300017357, + -0.00421051774173975, + 0.016661271452903748, + -0.02901119738817215, + -0.02211304008960724, + -0.008149837143719196, + -0.006122808903455734, + -0.009130321443080902, + -0.022335560992360115, + 0.00034051822149194777, + 0.005142325069755316, + -0.0352696031332016, + -0.04817583039402962, + 0.0003770256007555872, + -0.0243382528424263, + 0.013803265988826752, + -0.005830749869346619, + 0.021946148946881294, + -0.01617450639605522, + -0.044087003916502, + -0.023865394294261932, + -0.010771415196359158, + 0.011362486518919468, + 0.001699331565760076, + 0.014004925265908241, + -0.00973530113697052, + 0.03488019108772278, + -0.043641962110996246, + -0.04369759187102318, + 0.0053474619053304195, + -0.025631656870245934, + -0.007593534886837006, + 0.005107556004077196, + -0.0022356424015015364, + 0.01565992645919323, + -0.011529377661645412, + 0.002618100494146347, + -0.0029866511467844248, + 0.009686624631285667, + 0.002233903855085373, + 0.012294294312596321, + -0.03546430915594101, + -0.009651855565607548, + -0.009331981651484966, + -0.026493925601243973, + 0.018789131194353104, + 0.010541940107941628, + -0.01216912642121315, + -0.021403754130005836, + 0.005194478202611208, + 0.012210848741233349, + 0.014658581465482712, + -0.013017487712204456, + 0.012718475423753262, + 0.009053830057382584, + -0.01901165209710598, + 0.006724311504513025, + -0.022850142791867256, + -0.00041831372072920203, + 0.008045530878007412, + -0.009491918608546257, + -0.002993605099618435, + 0.000760135764721781, + -0.021097788587212563, + -0.019637493416666985, + -0.020346779376268387, + -0.0010256834793835878, + 0.010409818030893803, + -0.023907117545604706, + 0.02735619619488716, + -0.003588153747841716, + -0.018205013126134872, + 0.007329290732741356, + 0.02150110714137554, + -0.018636146560311317, + 0.0008979076519608498, + -0.0076213497668504715, + -0.0005002379766665399, + 0.014296984300017357, + -0.007725656498223543, + -0.005166663322597742, + -0.030902625992894173, + 0.03666036203503609, + 0.0455055795609951, + 0.07276441901922226, + -0.001255158451385796, + -0.0033673709258437157, + 0.00728756794705987, + 0.02414354681968689, + 0.031737081706523895, + 0.013698958791792393, + 0.014241354539990425, + 0.015868540853261948, + -0.032015230506658554, + -0.0028319295961409807, + 0.0014724642969667912, + 0.05001163110136986, + 0.014700304716825485, + 0.017078498378396034, + 0.018316272646188736, + -0.027008505538105965, + -0.02940060943365097, + 0.007760425563901663, + -0.02539522759616375, + 0.050373226404190063, + 0.02691115252673626, + 0.0027015460655093193, + -0.01973484642803669, + 0.02590980753302574, + -0.019122911617159843, + 0.025019723922014236, + -0.013100933283567429, + 0.0013977111084386706, + -0.001366419019177556, + 0.026201866567134857, + -0.025562118738889694, + 0.01841362565755844, + 0.030235063284635544, + -0.01479765772819519, + -0.006546990014612675, + 0.006383575964719057, + -0.016953330487012863, + 0.009130321443080902, + 0.021431569010019302, + 0.004154887516051531, + 0.01677253283560276, + -0.0011169519275426865, + -0.001858399366028607, + 0.00728756794705987, + 0.022780604660511017, + -0.013066164217889309, + 0.002190442755818367, + -0.03730010986328125, + -0.00815679132938385, + 0.026215774938464165, + -0.022474637255072594, + -0.003908027894794941, + -0.021431569010019302, + 0.01476984191685915, + -0.026396572589874268, + 0.026674725115299225, + 0.027022413909435272, + 0.024769386276602745, + 0.03104170225560665, + -0.04124986007809639, + -0.003480370156466961, + -0.01128599513322115, + 0.0050727869383990765, + -0.0057299197651445866, + -0.0014620336005464196, + -0.014185723848640919, + 0.006491359323263168, + 0.0018862145952880383, + -0.010514125227928162, + -0.03343380615115166, + -0.000815331470221281, + 0.0037133218720555305, + 0.011432024650275707, + -0.0014455183409154415, + 0.022975310683250427, + 0.01698114536702633, + -0.029428424313664436, + -0.023893209174275398, + 0.008219375275075436, + -0.01717585138976574, + -0.013497299514710903, + -0.01750963367521763, + -0.02184879593551159, + -0.0015298329526558518, + -0.03190397098660469, + 0.013935388065874577, + 0.0038489208091050386, + -0.01309398002922535, + 0.022474637255072594, + -0.0039706118404865265, + 0.016327491030097008, + 0.0019835676066577435, + 0.04386448487639427, + 0.02059711515903473, + 0.011313810013234615, + 0.004074918571859598, + 0.00575773511081934, + -0.010952213779091835, + -0.027119766920804977, + -0.009304165840148926, + 0.001772346324287355, + 0.026591278612613678, + 0.02920590341091156, + -0.03415699675679207, + -0.01670299470424652, + -0.002233903855085373, + -0.023698503151535988, + -0.007023324258625507, + 0.018566610291600227, + 0.019526232033967972, + 0.00013407769438344985, + 0.011578054167330265, + -0.010973074473440647, + 0.0029605745803564787, + 0.013552929274737835, + -0.03131985291838646, + -0.0009170305565930903, + 0.005337031092494726, + -0.01874740794301033, + 0.007047662511467934, + 0.007224984001368284, + -0.014700304716825485, + -0.01967921480536461, + -0.02354552038013935, + -0.0005615182453766465, + 0.04341944307088852, + -0.024185268208384514, + -0.001260373741388321, + 0.02967876009643078, + 0.012468138709664345, + 0.037522632628679276, + -0.00263026962056756, + 0.017078498378396034, + 0.0232812762260437, + -0.0052431547082960606, + -0.008275005966424942, + -0.002301703207194805, + -0.010952213779091835, + -0.008142883889377117, + -0.025868084281682968, + -0.004780727904289961, + 0.006734741851687431, + -0.010319419205188751, + 0.02742573246359825, + 0.023976655676960945, + 0.010027360171079636, + -0.024491235613822937, + -0.015771187841892242, + -0.00199052132666111, + 0.033684141933918, + -0.028788674622774124, + 0.008963430300354958, + -0.002571162534877658, + -0.006133239716291428, + -0.015576481819152832, + -0.010722738690674305, + -0.00529530830681324, + 0.02407400868833065, + 0.002040936378762126, + 0.0003146588278468698, + -0.005218816455453634, + -0.002925805514678359, + -0.01075055357068777, + 0.022321654483675957, + 0.004293962847441435, + -0.0039706118404865265, + 0.009624040685594082, + 0.007767379283905029, + 0.025089260190725327, + 0.008935615420341492, + -0.006873817648738623, + -0.0039462735876441, + -0.010479356162250042, + 0.02051367051899433, + -0.05176398530602455, + 0.032460276037454605, + 0.010493263602256775, + -0.011466793715953827, + -0.00242687133140862, + -0.015562573447823524, + 0.023587243631482124, + -0.027773423120379448, + -0.021556736901402473, + -0.013156563974916935, + 0.022585898637771606, + -0.01342080719769001, + -0.0071206772699952126, + 0.042584989219903946, + -0.03257153555750847, + -0.027203211560845375, + -0.009478011168539524, + 0.0050588794983923435, + -0.0015011485666036606, + 0.016494380310177803, + 0.02743964083492756, + -0.020875265821814537, + -0.009318073280155659, + -0.012593306601047516, + 0.024560773745179176, + 0.008532295934855938, + -0.0059315795078873634, + -0.0006545251235365868, + -0.0097005320712924, + -0.031737081706523895, + -0.017328836023807526, + -0.01585463248193264, + 0.01828845776617527, + -0.007426643744111061, + -0.009554502554237843, + -0.017857322469353676, + -0.041277676820755005, + -0.010945259593427181, + -0.02546476572751999, + -0.022905772551894188, + -0.010089944116771221, + -0.024519050493836403, + 0.020026905462145805, + -0.020305056124925613, + -0.0030596659053117037, + 0.010368095710873604, + -0.015103624202311039, + -0.0026076699141412973, + 0.003887166501954198, + -0.012899274006485939, + 0.0005254455027170479, + 0.03412918373942375, + -0.0027693454176187515, + 0.011751898564398289, + 0.008747863583266735, + -0.021334215998649597, + 0.019053375348448753, + -0.002605931367725134, + 0.03735573962330818, + -0.025311782956123352, + -0.006063701584935188, + -0.012892319820821285, + 0.0026719924062490463, + -0.026410480961203575, + 0.002190442755818367, + 0.0009231151198036969, + 0.03412918373942375, + 0.01479765772819519, + 0.005496968049556017, + -0.0003724621783476323, + -0.003148326650261879, + 0.015506943687796593, + -0.02283623442053795, + -0.018274551257491112, + 0.0074961818754673, + -0.033461619168519974, + 0.0132261011749506, + 0.007989900186657906, + -0.027342287823557854, + 0.03165363520383835, + -0.042279019951820374, + 0.009450195357203484, + 0.003369109472259879, + -0.028051573783159256, + 0.010006498545408249, + 0.01737055741250515, + -0.023865394294261932, + -0.01127904187887907, + 0.000571948941797018, + 0.02624358981847763, + -0.006981601472944021, + -0.03257153555750847, + 0.018928205594420433, + -0.01698114536702633, + -0.007899501360952854, + 0.009512779302895069, + -0.022794511169195175, + -0.011000890284776688, + 0.00038897740887477994, + -0.019192449748516083, + 0.0010569755686447024, + 0.010465448722243309, + -0.02664690837264061, + 0.005875949282199144, + -0.03590935096144676, + -0.006772988010197878, + -0.008511434309184551, + -0.002984912833198905, + 0.0068320948630571365, + 0.011209503747522831, + 0.015187069773674011, + -0.0409160777926445, + 0.05791113153100014, + 0.04061011224985123, + 0.038051117211580276, + -0.002110474044457078, + 0.02671644650399685, + 0.025047538802027702, + -0.027787329629063606, + 0.017746062949299812, + -0.01913681998848915, + 0.012892319820821285, + -0.006571328267455101, + 0.012071773409843445, + 0.00815679132938385, + 0.021417662501335144, + 0.009290258400142193, + 0.03538086637854576, + 0.018246734514832497, + -0.0015220099594444036, + -0.01036114152520895, + 0.023809764534235, + 0.0212507713586092, + -0.005041494965553284, + 0.007593534886837006, + -0.001640224363654852, + -0.01841362565755844, + 0.01770433969795704, + -0.007398828864097595, + -0.0017923384439200163, + -0.008073345758020878, + 0.03565901517868042, + -0.017328836023807526, + -0.0027606531511992216, + 0.013831080868840218, + 0.024964092299342155, + 0.0070546162314713, + 0.02170972153544426, + -0.03813456371426582, + 0.02906682714819908, + -0.007982946932315826, + 0.006001117639243603, + -0.004798112437129021, + 0.02848270907998085, + -0.02881649136543274, + 0.016271859407424927, + 0.02347598224878311, + 0.030680105090141296, + 0.03310002386569977, + 0.0035429541021585464, + 0.012913181446492672, + 0.00726670678704977, + -0.017022868618369102, + 0.018956022337079048, + 0.014477782882750034, + 0.009199859574437141, + 0.0019070758717134595, + -0.00506235659122467, + -0.0019487986573949456, + -0.010986982844769955, + 0.027856867760419846, + -0.006901632994413376, + -0.03916372358798981, + 0.02716149017214775, + 0.027745608240365982, + 0.04887121170759201, + 0.015242699533700943, + -0.032738424837589264, + 0.010847906582057476, + -0.02013816498219967, + 0.008608787320554256, + -0.012614168226718903, + 0.01735665090382099, + -0.0006719095981679857, + 0.018330181017518044, + 0.00017916865181177855, + 0.032988760620355606, + 0.01994345895946026, + -0.01933152601122856, + 0.012468138709664345, + -0.0028545293025672436, + -0.00027402263367548585, + -0.054573316127061844, + 0.012023096904158592, + -0.0020722283516079187, + -0.003348248079419136, + 0.02394884079694748, + 0.034045737236738205, + -0.03079136647284031, + 0.0010986982379108667, + -0.03577027842402458, + -0.012704567983746529, + 0.010771415196359158, + -0.020277241244912148, + -0.012287340126931667, + 0.0023329954128712416, + -0.05421171709895134, + 0.021236862987279892, + -0.002445994410663843, + -0.00028162833768874407, + -0.013991017825901508, + -0.02197396568953991, + -0.028051573783159256, + 0.01762089505791664 + ], + "how_to_create_self_fueling_mining_system": [ + -0.027847176417708397, + 0.003349206643179059, + 0.026252655312418938, + -0.028701383620500565, + -0.016571631655097008, + -0.025298789143562317, + 0.013581904582679272, + 0.03949287533760071, + 0.008058027364313602, + -0.01665705256164074, + 0.018422415480017662, + -0.038894932717084885, + -0.0042710392735898495, + -0.027590913698077202, + 0.028786804527044296, + 0.007744817994534969, + -0.028701383620500565, + 0.022437192499637604, + -0.016272660344839096, + 0.007944133132696152, + 0.014635427854955196, + -0.03243142366409302, + 0.03522183746099472, + -0.011652818880975246, + 0.012386013753712177, + -0.018678678199648857, + 0.020871145650744438, + 0.03564894199371338, + -0.05640619248151779, + -0.021924668923020363, + 0.023846635594964027, + -0.037955302745103836, + -0.024700844660401344, + -0.036844830960035324, + -0.017710575833916664, + -0.014087310992181301, + 0.016258422285318375, + 0.02596791833639145, + 0.025668945163488388, + 0.007588213309645653, + -0.007360424380749464, + -0.036844830960035324, + -0.021924668923020363, + 0.008421065285801888, + -0.01455712504684925, + 0.028715619817376137, + -0.027548203244805336, + 0.03288700059056282, + 0.029527118429541588, + 0.010684716515243053, + -0.03134942799806595, + 0.0028829514048993587, + -0.021269775927066803, + -0.041144344955682755, + -0.0081861587241292, + -0.027491256594657898, + -0.01645773835480213, + -0.004598485771566629, + -0.017141103744506836, + 0.011958910152316093, + 0.015560819767415524, + 0.003219295758754015, + 0.022380245849490166, + 0.027818702161312103, + -0.0001675048260949552, + 0.005491844844073057, + -0.03448152542114258, + 0.038467828184366226, + -0.019604070112109184, + 0.032260581851005554, + -0.019077308475971222, + 0.03804072365164757, + -0.023974766954779625, + -0.03994845226407051, + 0.019589833915233612, + -0.06702684611082077, + -0.005523877218365669, + 0.031577218323946, + -0.05372967571020126, + -0.019390517845749855, + -0.032488372176885605, + -0.07215209305286407, + -0.011738239787518978, + -0.037642091512680054, + -0.007275003474205732, + -0.04356459900736809, + -0.04316597059369087, + 0.007687870878726244, + -0.028502069413661957, + -0.08940708637237549, + -0.02779022790491581, + -0.031121639534831047, + 0.009972876869142056, + 0.012307711876928806, + 0.05022742226719856, + -0.004598485771566629, + 0.023519190028309822, + -0.0025608439464122057, + 0.013717154040932655, + 0.009410522878170013, + 0.00425324309617281, + -0.021938905119895935, + -0.006314019672572613, + -0.04589943587779999, + 0.06309748440980911, + -0.0025946563109755516, + -0.022721929475665092, + 0.02880104072391987, + -0.025412684306502342, + -0.0270072054117918, + -0.05273309722542763, + -0.0073675429448485374, + 0.031093165278434753, + -0.0007358644506894052, + 0.011546042747795582, + 0.002911425195634365, + 0.018749862909317017, + 0.008620381355285645, + -0.007687870878726244, + -0.011239951476454735, + -0.02408866211771965, + -0.027249230071902275, + -0.009118668735027313, + -0.027106862515211105, + -0.008456657640635967, + -0.013994771987199783, + -0.0011798746418207884, + -0.013460892252624035, + -0.0535588338971138, + 0.02532726339995861, + -0.03593367710709572, + 0.01709839329123497, + 0.0037086857482790947, + 0.028359699994325638, + -0.011083346791565418, + -0.04211244732141495, + -0.052419889718294144, + -0.029498644173145294, + -0.0009823390282690525, + 0.038752563297748566, + -0.019248150289058685, + -0.03989150747656822, + -0.015233373269438744, + -0.0035965710412710905, + -0.018792573362588882, + 0.0018107426585629582, + -0.04749395698308945, + 0.003094723913818598, + 0.01193755492568016, + -0.032346002757549286, + -0.011560279875993729, + -0.03069453500211239, + -0.015162189491093159, + -0.026224181056022644, + -0.018365468829870224, + -0.03134942799806595, + -0.0362468883395195, + 0.04823426902294159, + 0.02203856222331524, + -0.04026166349649429, + -0.030893851071596146, + -0.010307441465556622, + -0.045586224645376205, + 0.013688680715858936, + -0.06167380511760712, + -0.019475938752293587, + -0.022522613406181335, + -0.020572172477841377, + -0.05233446881175041, + 0.02109893411397934, + 0.0011896623764187098, + -0.011368082836270332, + -0.012236527167260647, + 0.01725499890744686, + -0.005538114346563816, + 0.018322758376598358, + -0.02918543480336666, + -0.03100774437189102, + -0.007766173221170902, + -0.006160974036902189, + 0.013332760892808437, + -0.0003441300941631198, + 0.0020216251723468304, + 0.011368082836270332, + 0.013019551523029804, + 0.02329140156507492, + -0.03342800214886665, + 0.042966656386852264, + 0.02969796024262905, + 0.02400324121117592, + -0.0007082806550897658, + 0.03536420688033104, + 0.002390002366155386, + 0.008107855916023254, + -0.001009922823868692, + -0.004925931803882122, + 0.024416107684373856, + -0.013396826572716236, + 0.07648007571697235, + 0.015617767348885536, + -0.007780409883707762, + 0.023448005318641663, + 0.048575952649116516, + -0.01943322829902172, + 0.00037683022674173117, + -0.01226500142365694, + -0.05865560472011566, + 0.04131518676877022, + 0.03775598853826523, + -0.0011069109896197915, + -0.012528382241725922, + -0.006381644401699305, + 0.01426527090370655, + 0.0017431179294362664, + -0.00010616424697218463, + 0.003589452477172017, + -0.04948710650205612, + 0.04723769426345825, + 0.007050774060189724, + -0.024615423753857613, + -0.019846096634864807, + 0.023775452747941017, + 0.039549823850393295, + -0.007189582567662001, + -0.004691024776548147, + 0.03869561478495598, + 0.019903043285012245, + -0.03174806013703346, + 0.05102468281984329, + 0.024772027507424355, + -0.021070459857583046, + 0.0025359296705573797, + 0.04837663844227791, + -0.03638925403356552, + -0.02343376912176609, + -0.015219136141240597, + -0.036645516753196716, + 0.011724002659320831, + 0.02663704752922058, + -0.015375741757452488, + -0.05572282522916794, + 0.015105241909623146, + -0.017212288454174995, + -0.042824286967515945, + 0.021369433030486107, + 0.016699763014912605, + -0.023775452747941017, + -0.01884952001273632, + 0.02575436607003212, + 0.01600215956568718, + 0.03909424692392349, + -0.008485130965709686, + 0.016941789537668228, + 0.03584825620055199, + 0.002196026034653187, + -0.04088808223605156, + -0.02387510985136032, + -0.011218596249818802, + 0.03063758835196495, + -0.04185618460178375, + -0.016528921201825142, + 0.06452116370201111, + -0.08200395107269287, + 0.026665521785616875, + 0.015660477802157402, + -0.010435572825372219, + 0.038667142391204834, + -0.01331852376461029, + -0.02000270038843155, + -0.01863596774637699, + 0.00042754883179441094, + 0.03382663056254387, + 0.03781293332576752, + -0.07796069979667664, + -0.015446925535798073, + -0.001049073995091021, + 0.04803495481610298, + 0.04786411300301552, + -0.007114839740097523, + -0.018208863213658333, + -0.056292299181222916, + 0.013425299897789955, + 0.0291142500936985, + 0.06679905205965042, + -0.029128488153219223, + -0.008883761242032051, + -0.02094232849776745, + 0.03069453500211239, + 0.035107944160699844, + -0.013368353247642517, + -0.0014236797578632832, + 0.01978914812207222, + 0.04327986389398575, + 0.007851594127714634, + 0.04365001991391182, + -0.025939445942640305, + -0.0030075234826654196, + -0.01615876518189907, + 0.04088808223605156, + -0.006491979584097862, + 0.028829514980316162, + 0.05407135561108589, + -0.005876237992197275, + 0.05102468281984329, + -0.023590372875332832, + -0.06440727412700653, + 0.01761091873049736, + -0.044134072959423065, + 0.014735085889697075, + 0.014891690574586391, + -0.0014850759180262685, + 0.0029861682560294867, + 0.02648044377565384, + 0.007929896004498005, + 0.05153720825910568, + 0.028345463797450066, + 0.02568318322300911, + 0.02801801823079586, + -0.0030164215713739395, + -0.0291142500936985, + -0.045073699206113815, + -0.00031565650715492666, + 0.0353357307612896, + -0.04723769426345825, + 0.03237447887659073, + -0.017781760543584824, + 0.029783381149172783, + 0.01847936399281025, + -0.03308631852269173, + 0.015105241909623146, + -0.002085690852254629, + -0.02081419713795185, + 0.0026622810401022434, + -0.02502829022705555, + -0.030893851071596146, + -0.031036218628287315, + 0.033655788749456406, + 0.04447575658559799, + 0.02373274229466915, + 0.040347084403038025, + 0.0035360646434128284, + 0.007388897705823183, + 0.013346998021006584, + -0.005552351009100676, + 0.002640926046296954, + 0.03465236350893974, + -0.008890880271792412, + 0.03354189544916153, + 0.004484591074287891, + 0.04402017965912819, + 0.007944133132696152, + 0.013119208626449108, + -0.0001662813447182998, + 0.004150026477873325, + -0.04302360117435455, + 0.0007434277795255184, + -0.0034381865989416838, + -0.012905657291412354, + -0.03863866999745369, + -0.02838817425072193, + -0.010834203101694584, + 0.08314289897680283, + 0.01745431311428547, + -0.009809153154492378, + -0.029142724350094795, + 0.010997925885021687, + 0.007410252932459116, + -0.007659397087991238, + -0.029669485986232758, + 0.051992785185575485, + 0.05637772008776665, + 0.04823426902294159, + 0.005207108799368143, + -0.005096773616969585, + -0.07983995974063873, + 0.0016087581170722842, + 0.036132991313934326, + 0.024686606600880623, + 0.0002362418599659577, + 0.017141103744506836, + 0.048860687762498856, + -0.04780716449022293, + 0.008798341266810894, + -0.0011362744262441993, + -0.013233102858066559, + -0.01317615620791912, + 0.051252469420433044, + 0.037869881838560104, + -0.0794982761144638, + -0.033655788749456406, + 0.053957462310791016, + -0.054242197424173355, + 0.03972066566348076, + 0.0034453049302101135, + -0.007716344203799963, + -0.00642435485497117, + 0.029128488153219223, + 0.010101008228957653, + 0.008449539542198181, + 0.05484014376997948, + 0.03872409090399742, + 0.0013169037410989404, + 0.003993421792984009, + 0.013069380074739456, + 0.027847176417708397, + 0.02088538184762001, + 0.03653162345290184, + 0.015091005712747574, + -0.02975490689277649, + -0.01560353022068739, + 0.06212938576936722, + -0.04097350314259529, + 0.042738866060972214, + -0.041941605508327484, + 0.012813117355108261, + -0.02975490689277649, + 0.02539844624698162, + -0.027491256594657898, + 0.0024149168748408556, + 0.02212398312985897, + -0.030011169612407684, + -0.012350422330200672, + -0.0008466445724479854, + -0.025668945163488388, + -0.012677867896854877, + 0.013781219720840454, + 0.04077418893575668, + -0.0589403435587883, + 0.021796537563204765, + -0.026451969519257545, + 0.015005584806203842, + -0.005306766368448734, + 0.015347267501056194, + 0.055922139436006546, + 0.020614882931113243, + -0.018393943086266518, + -0.007004504557698965, + -0.03257379308342934, + -0.016386553645133972, + 0.03761361911892891, + 0.04211244732141495, + -0.021269775927066803, + 0.02669399604201317, + 0.005420660600066185, + -0.07363271713256836, + 0.0015420231502503157, + -0.029783381149172783, + 0.00485830707475543, + -0.01863596774637699, + -0.02676517888903618, + 0.023974766954779625, + -0.05142331123352051, + 0.0009049264481291175, + 0.022152457386255264, + -0.018806809559464455, + 0.011126057244837284, + 0.022721929475665092, + -0.008228869177401066, + 0.044788964092731476, + 0.020202016457915306, + 0.043109022080898285, + 0.059566762298345566, + -0.025711655616760254, + -0.0035093706101179123, + -0.009374931454658508, + 0.017212288454174995, + -0.036844830960035324, + 0.05603603646159172, + 0.023006664589047432, + -0.0070899249985814095, + -0.018465125933289528, + -0.043109022080898285, + -0.04288123548030853, + 0.004666110500693321, + -0.0042710392735898495, + -0.019703727215528488, + -0.07152567058801651, + 0.05563740432262421, + -0.05711803212761879, + -0.037727512419223785, + -0.010129481554031372, + -0.013147682882845402, + -0.00756685808300972, + -0.00345776230096817, + 0.0397491380572319, + 0.10182157903909683, + -0.015119479037821293, + -0.013603259809315205, + -0.056434664875268936, + -0.04430491477251053, + 0.0078943045809865, + -0.001671933918260038, + 0.03821156546473503, + -0.017511261627078056, + 0.006926202215254307, + -0.06007928401231766, + -0.04974336922168732, + -0.038524772971868515, + 0.0023455123882740736, + 0.00898341927677393, + 0.039549823850393295, + 0.04968642443418503, + -0.015532346442341805, + -0.005694719031453133, + -0.024259503930807114, + -0.040204714983701706, + -0.036787886172533035, + 0.0035876729525625706, + -0.013403944671154022, + -0.006470624357461929, + -0.04205549880862236, + -0.012428724206984043, + -0.005812172777950764, + 0.011040636338293552, + -0.00471238000318408, + 0.02538421005010605, + 0.005666245240718126, + -0.012535500340163708, + 0.028117675334215164, + -0.001775150652974844, + -0.02640925906598568, + -0.011481977067887783, + -0.010129481554031372, + -0.003027099184691906, + 0.006036402191966772, + -0.027192283421754837, + -0.04535843804478645, + -0.029584065079689026, + 0.0011923317797482014, + -0.007278562523424625, + -0.027477018535137177, + -0.008549196645617485, + 0.010613532736897469, + 0.005463371053338051, + -0.049601003527641296, + 0.01273481547832489, + -0.04829121753573418, + -0.00833564531058073, + -0.0008559874258935452, + -0.00913290586322546, + -0.004206973593682051, + 0.05865560472011566, + 0.00018285386613570154, + 0.028615962713956833, + -0.016471974551677704, + 0.010748782195150852, + 0.0026017746422439814, + -0.007502792403101921, + 0.04436185956001282, + -0.008570551872253418, + 0.011724002659320831, + -0.025071000680327415, + -0.01936204545199871, + -0.0453869104385376, + 0.02138366922736168, + -0.0016532480949535966, + -0.014720848761498928, + -0.04635501280426979, + 0.02285006083548069, + 0.012571091763675213, + -0.003025319427251816, + -0.008606144227087498, + 0.010172192007303238, + 0.0073960162699222565, + -0.014735085889697075, + 0.044646598398685455, + 0.012336185202002525, + -0.038382407277822495, + -0.010243375785648823, + -0.017739050090312958, + -0.01920543983578682, + -0.024174083024263382, + 0.021796537563204765, + -0.007271444424986839, + 0.009858982637524605, + 0.0017653629183769226, + -0.0053815096616744995, + 0.044191017746925354, + 0.0369587279856205, + -0.02890069968998432, + -0.014863216318190098, + -0.05532419681549072, + -0.000887575326487422, + -0.000125684222439304, + -0.04026166349649429, + 0.02065759338438511, + -0.0081861587241292, + 0.01732618175446987, + 0.02203856222331524, + -0.012656512670218945, + -0.03171958401799202, + 0.005986573174595833, + 0.02488592267036438, + -0.0005530106136575341, + -0.03297242149710655, + -0.01222940906882286, + -0.009851863607764244, + 0.01904883421957493, + -0.004893898963928223, + 0.0163723174482584, + -0.0012261441443115473, + -0.021938905119895935, + -0.021739589050412178, + 0.03849630057811737, + -0.001513549592345953, + -0.04088808223605156, + -0.012065686285495758, + -0.004199855495244265, + -0.08149142563343048, + 0.04265344515442848, + -0.04962947592139244, + -0.006086230743676424, + -0.01426527090370655, + -0.03644620254635811, + -0.006189447827637196, + -0.012165343388915062, + 0.007296358700841665, + 0.056349243968725204, + 0.0012759729288518429, + -0.02998269535601139, + 0.02196737937629223, + -0.021582985296845436, + -0.000993016641587019, + 0.013660207390785217, + -0.025512341409921646, + 0.020771486684679985, + -0.0010499638738110662, + 0.0219816155731678, + -0.019262386485934258, + 0.018650203943252563, + 0.002635587239637971, + 0.03149179741740227, + 0.01287718303501606, + -0.007246530149132013, + -0.02851630561053753, + -0.011709765531122684, + 0.0493447408080101, + 0.013104972429573536, + 0.02458694949746132, + 0.000502736889757216, + -0.002350851194933057, + -0.01826581172645092, + 0.04561470076441765, + -0.03092232346534729, + -0.0065916371531784534, + 0.0593959204852581, + -0.012542618438601494, + 0.050398264080286026, + 0.024985579773783684, + -0.037214986979961395, + 0.024287976324558258, + -0.011923317797482014, + 0.023917820304632187, + -0.005701837595552206, + 0.0024095780681818724, + 0.00020676723215728998, + 0.011546042747795582, + -0.06207243725657463, + -0.023519190028309822, + -0.009595601819455624, + -0.03237447887659073, + -0.004954405594617128, + -0.03245989978313446, + 0.028573252260684967, + -0.02247990295290947, + 0.003904441837221384, + 0.010741664096713066, + 0.039464402943849564, + 0.02444458194077015, + 0.006420795805752277, + 0.009965757839381695, + 0.0016238847747445107, + -0.032716162502765656, + 0.012151106260716915, + -0.003064470598474145, + 0.014820505864918232, + 0.006933320313692093, + -0.049145426601171494, + 0.0045771305449306965, + 0.03980608657002449, + -0.03362731635570526, + -0.008449539542198181, + -0.049373213201761246, + 0.04051792621612549, + 0.049657948315143585, + 0.0018214202718809247, + -0.03556352108716965, + -0.014564244076609612, + 0.02603910304605961, + 0.017739050090312958, + -0.001032167812809348, + 0.009225444868206978, + 0.015404215082526207, + -0.012008738704025745, + 0.004669669549912214, + 0.012307711876928806, + 0.04868984594941139, + 0.004185618367046118, + -0.022664980962872505, + -0.042169395834207535, + 0.028615962713956833, + -0.010763019323348999, + 0.024359161034226418, + -0.01338258944451809, + -0.061218228191137314, + -0.018749862909317017, + -0.014393402263522148, + -0.00456645293161273, + 0.015091005712747574, + 0.013361234217882156, + -0.031975846737623215, + -0.004965083207935095, + -0.040631819516420364, + 0.028559016063809395, + -0.019233914092183113, + 0.011410793289542198, + -0.01480626966804266, + -0.029270855709910393, + 0.04532996192574501, + -0.014080192893743515, + 0.007157550193369389, + 0.007235852535814047, + -0.0023028019350022078, + -0.018422415480017662, + -0.0362468883395195, + 0.021369433030486107, + -9.443001181352884e-05, + 0.017141103744506836, + 0.010599295608699322, + -0.0166001059114933, + -0.004883221350610256, + -0.010848439298570156, + 0.006787393242120743, + 0.0512239970266819, + 0.004303072113543749, + 0.0024149168748408556, + -0.018365468829870224, + 0.020315909758210182, + 0.003573436290025711, + 0.021554511040449142, + -0.019319334998726845, + -0.014357809908688068, + 0.03898034989833832, + 0.0011104701552540064, + 0.0002349071583012119, + 0.0022422955371439457, + 0.004868984688073397, + 0.06605874001979828, + -0.014706611633300781, + 0.011517569422721863, + -0.04487438499927521, + 0.013126327656209469, + 0.0036517386324703693, + 0.024572713300585747, + 0.011916199699044228, + -0.014606954529881477, + 0.028986120596528053, + 0.005253378301858902, + -0.016130290925502777, + 0.015532346442341805, + -0.004025454632937908, + -0.003968507517129183, + 0.002411357592791319, + 0.00500423414632678, + -0.013766983523964882, + 0.006079112645238638, + -0.02918543480336666, + -0.00378342904150486, + -0.0004595816135406494, + 0.003100062720477581, + 0.039549823850393295, + -0.01593097671866417, + 0.024914395064115524, + -0.03257379308342934, + 0.04077418893575668, + -0.042340237647295, + -0.009332221001386642, + -0.004751531407237053, + -0.021340958774089813, + -0.05586519464850426, + 0.01432933658361435, + -0.012314829975366592, + 0.0019842537585645914, + 0.05748818814754486, + 0.02060064673423767, + 0.027847176417708397, + -0.008250224404036999, + 0.05179347097873688, + 0.030609114095568657, + -0.040489453822374344, + -0.06087654456496239, + -0.028046490624547005, + -0.0020020497031509876, + -0.004715939052402973, + 0.03003964200615883, + 0.019831858575344086, + 0.00978067982941866, + -0.0996575802564621, + -0.0516795739531517, + 0.019618306308984756, + -0.007673633750528097, + -0.0050505041144788265, + 0.051850415766239166, + 0.05139483883976936, + 0.04943016171455383, + -0.00839971099048853, + -0.043906282633543015, + -0.008663090877234936, + 0.011531805619597435, + -0.01904883421957493, + 0.02263650856912136, + 0.016130290925502777, + 0.03581978380680084, + 0.018151916563510895, + 0.008378355763852596, + 0.05515335500240326, + -0.007050774060189724, + -0.0161445289850235, + -0.011745357885956764, + -0.0067055318504571915, + 0.02058640867471695, + -0.01782447099685669, + 0.012300592847168446, + -0.005164398346096277, + -0.00015527007053606212, + -0.01229347474873066, + 0.03755667060613632, + 0.01237177662551403, + 0.014962874352931976, + 0.007153990678489208, + 0.04356459900736809, + -0.00614673737436533, + -0.0009841186692938209, + 0.006221480667591095, + 0.039692193269729614, + 0.020059647038578987, + 0.035905204713344574, + 0.018094969913363457, + 0.004950846545398235, + 0.006228598766028881, + 0.027234993875026703, + 0.031605690717697144, + 0.02662281133234501, + -0.0178956538438797, + 0.02007388509809971, + 0.01062776893377304, + 0.022309061139822006, + 0.027533967047929764, + -0.00534591730684042, + -0.00675180135294795, + -0.022138219326734543, + -0.0007532155723311007, + 0.027605149894952774, + -0.02008812129497528, + -0.0011514009675011039, + -0.00012479443103075027, + 0.012300592847168446, + 0.032773107290267944, + 0.022024326026439667, + -0.010421335697174072, + 0.016998736187815666, + -0.0024683047086000443, + 0.005829968489706516, + 0.00469458382576704, + -0.00533168064430356, + -0.003925797063857317, + 0.0025412682443857193, + 0.02554081566631794, + -0.017795996740460396, + -0.008584789000451565, + 0.021269775927066803, + 0.0015420231502503157, + -0.012649394571781158, + -0.03564894199371338, + -0.029441697522997856, + 0.029783381149172783, + -0.0404609777033329, + 0.030238958075642586, + 0.039549823850393295, + -0.014528651721775532, + 0.007189582567662001, + -0.014364928938448429, + -0.014051719568669796, + 0.003747836919501424, + 0.029299329966306686, + 0.01621571183204651, + 0.017568208277225494, + 0.020130831748247147, + 0.010442690923810005, + -0.00957424659281969, + -0.03581978380680084, + 0.0034506437368690968, + 0.029356276616454124, + 0.01459271740168333, + -0.03450999781489372, + 0.02000270038843155, + -0.004826274234801531, + -0.005883356556296349, + 0.01790989190340042, + -0.03804072365164757, + 0.0003221075457986444, + -0.005324562080204487, + 0.03898034989833832, + -0.009396286681294441, + 0.004050368908792734, + -0.004224769771099091, + -0.019120018929243088, + 0.027249230071902275, + 0.004836951848119497, + -0.0066841766238212585, + 0.013795456849038601, + -0.033285632729530334, + -0.005246259737759829, + -0.026152996346354485, + -0.0016772727249190211, + 0.008677328005433083, + 0.004085960797965527, + -0.00722517492249608, + 0.05210667848587036, + -0.008428184315562248, + 0.004758649505674839, + -0.026252655312418938, + -0.013169038109481335, + 0.028274279087781906, + 0.003098282963037491, + -0.031178586184978485, + -0.017283471301198006, + 0.029441697522997856, + 0.04345070570707321, + -0.0320327952504158, + 0.004004099406301975, + -0.03189042583107948, + -0.012165343388915062, + 0.031178586184978485, + 0.014692375436425209, + -0.04014777019619942, + 0.00011990052735200152, + -0.00807226449251175, + -0.0357913076877594, + -0.04683906212449074, + -0.01305514294654131, + -0.0014993126969784498, + 0.023106321692466736, + 0.016030633822083473, + -0.011154530569911003, + -0.011332490481436253, + -0.02465813420712948, + 0.0064065586775541306, + -0.005773021373897791, + -0.008727156557142735, + 0.03208974003791809, + -0.03399747237563133, + 0.009531536139547825, + -0.0056413309648633, + -0.04621264338493347, + -0.02007388509809971, + 0.041286714375019073, + -0.007652278523892164, + 0.04017624258995056, + 0.010713189840316772, + -0.017553972080349922, + -0.0038973232731223106, + -0.02008812129497528, + 0.03126400709152222, + 0.010471164248883724, + 0.03861019387841225, + -0.024857448413968086, + -0.019262386485934258, + 0.022650744765996933, + -0.003057352267205715, + 0.004445440135896206, + 0.007310595363378525, + -0.0018756981007754803, + -0.006246394943445921, + -0.04083113372325897, + -0.03251684457063675, + 0.04285275936126709, + 0.016315370798110962, + -0.025597762316465378, + 0.011624345555901527, + 0.017952602356672287, + 0.04154297336935997, + -0.0062143621034920216, + -0.006936879828572273, + 0.03630383312702179, + 0.014649664983153343, + 0.014407639391720295, + 0.04444728046655655, + 0.02306361123919487, + -0.009332221001386642, + -0.000664235558360815, + -0.0044632358476519585, + 0.01320462953299284, + -0.0004313304671086371, + 0.028359699994325638, + -0.009161379188299179, + 0.0001857457245932892, + 0.014635427854955196, + -0.017653629183769226, + 0.008307171054184437, + -0.006559604313224554, + 0.007339069154113531, + 0.014934401027858257, + -0.0043849335052073, + -0.006061316467821598, + -0.05156568065285683, + 0.012507027015089989, + 0.006815867032855749, + -0.019661016762256622, + -0.007171786855906248, + -0.013774101622402668, + -0.00974508747458458, + 0.031406376510858536, + -0.01276328880339861, + 0.034367628395557404, + -0.013980534859001637, + -0.02874409407377243, + 0.014977110549807549, + -0.044788964092731476, + 0.01819462701678276, + 0.011375200934708118, + -0.028174621984362602, + 0.004192736931145191, + -0.013332760892808437, + 0.009595601819455624, + -0.001547361956909299, + 0.023633083328604698, + -0.010812847875058651, + 0.025270314887166023, + 0.013994771987199783, + -0.004861866589635611, + 0.02633807621896267, + -0.006634347606450319, + 0.02373274229466915, + -0.013581904582679272, + -0.011617226526141167, + -0.016044870018959045, + 0.005794376600533724, + 0.014635427854955196, + 0.022821586579084396, + -0.027192283421754837, + 0.009880337864160538, + 0.014962874352931976, + 0.013396826572716236, + 0.017582444474101067, + -0.0024060187861323357, + -0.013268695212900639, + -0.005933185573667288, + -0.00691196508705616, + -0.020700303837656975, + -0.01368156261742115, + 0.0411728173494339, + -0.01237177662551403, + 0.040717240422964096, + -0.009645430371165276, + 0.010001350194215775, + -0.01701297238469124, + 0.006837221793830395, + 0.028117675334215164, + 0.021013513207435608, + -0.009695258922874928, + 0.01244296133518219, + -0.004979319870471954, + -0.027775991708040237, + 0.0011878828518092632, + 0.00691196508705616, + 0.019817622378468513, + 0.009075958281755447, + -0.01994575373828411, + -0.007666515652090311, + 0.012386013753712177, + -0.00425324309617281, + -0.005221345461905003, + 0.02138366922736168, + -0.017041446641087532, + -0.0006566722877323627, + -0.036787886172533035, + -0.009524417109787464, + -0.022864297032356262, + 0.02357613667845726, + 0.02051522582769394, + -0.0032228550408035517, + 0.016500448808073997, + 0.015318794175982475, + -0.022351771593093872, + 0.014087310992181301, + 0.007193142082542181, + 0.010720308870077133, + 0.00298260897397995, + 0.046525854617357254, + -0.011667056009173393, + 0.0073675429448485374, + -0.009168497286736965, + -0.02431645058095455, + 0.005591502413153648, + -0.009033247828483582, + -0.04140060767531395, + 0.007851594127714634, + -0.016557395458221436, + -0.013994771987199783, + 0.002295683603733778, + 0.00040218952926807106, + -0.025042526423931122, + 0.03254532068967819, + -0.033883579075336456, + 0.015048295259475708, + -0.000988567597232759, + -0.022664980962872505, + 0.010962334461510181, + 0.018379705026745796, + 0.005605739075690508, + -0.01630113273859024, + 0.013944943435490131, + 0.046525854617357254, + 0.0056413309648633, + -0.033513423055410385, + 0.037585146725177765, + -0.0013960959622636437, + 0.008093619719147682, + 0.013446655124425888, + -0.0032388714607805014, + -0.013268695212900639, + -0.023006664589047432, + -0.013653089292347431, + -0.012058567255735397, + 0.009054603055119514, + 0.004178500268608332, + 0.014322218485176563, + 0.002651603426784277, + -0.010919624008238316, + -0.007381779607385397, + -0.031406376510858536, + -0.03732888400554657, + -0.0453869104385376, + 0.03331410512328148, + -0.012122632935643196, + -0.010314559563994408, + 0.02299242839217186, + 0.014720848761498928, + -0.023746978491544724, + -0.013048024848103523, + -0.010442690923810005, + 0.013816812075674534, + 0.006089790258556604, + 0.010670479387044907, + 0.05859865993261337, + 0.008058027364313602, + 0.08633194118738174, + 0.013432418927550316, + -0.04473201930522919, + -0.016528921201825142, + 0.024430343881249428, + 0.0005223125335760415, + 0.02552657760679722, + -0.013653089292347431, + 0.012058567255735397, + 0.0022600917145609856, + -0.010542348958551884, + -0.014272389933466911, + 0.05563740432262421, + 0.011353845708072186, + 0.02824580669403076, + -0.023391058668494225, + -0.003194381482899189, + -0.028402410447597504, + 0.021639931946992874, + 0.014457467943429947, + 0.02969796024262905, + 0.00989457406103611, + 0.0013249119510874152, + -0.0057623437605798244, + -0.0044383215717971325, + -0.0008533180807717144, + 0.0012733035255223513, + -0.03593367710709572, + -0.0009209428681060672, + 0.03317173942923546, + -0.0049366094172000885, + -0.027234993875026703, + 0.03570588678121567, + 0.037585146725177765, + -0.007524147629737854, + 0.003375900676473975, + -0.014307981356978416, + -0.019589833915233612, + -0.008207513950765133, + 0.024629659950733185, + -0.0267794169485569, + 0.015461161732673645, + 0.015119479037821293, + 0.0008657752769067883, + 0.005442015826702118, + -0.011083346791565418, + 0.011852134019136429, + -0.010421335697174072, + -0.03422526270151138, + 0.007609568070620298, + 0.04211244732141495, + -0.022907007485628128, + 0.012464316561818123, + -0.019746437668800354, + 0.003003964200615883, + -0.05552351102232933, + -0.010570822283625603, + 0.02437339723110199, + -0.006983149331063032, + 0.013581904582679272, + -0.032118216156959534, + -0.04854748025536537, + 0.013332760892808437, + 0.0015384639846161008, + -0.0018045140895992517, + -0.0003221075457986444, + -0.02880104072391987, + -0.005773021373897791, + -0.008086500689387321, + 0.00978067982941866, + -0.05748818814754486, + -0.008228869177401066, + -0.010556585155427456, + 0.022081272676587105, + -0.012784644030034542, + -0.0055772652849555016, + -0.02341953106224537, + -0.004573571030050516, + -0.01095521543174982, + 0.003349206643179059, + 0.0007710115751251578, + -0.023960530757904053, + -0.03943593055009842, + 0.02495710551738739, + -0.008250224404036999, + -0.011211478151381016, + 0.03530725836753845, + 0.020429804921150208, + -0.007022300269454718, + 0.014834742993116379, + -0.02307784929871559, + 0.02685059979557991, + 0.0036695345770567656, + -0.012599566020071507, + -0.008563433773815632, + 0.0020056087523698807, + -0.010848439298570156, + 0.020273199304938316, + -0.04336528480052948, + -0.027847176417708397, + 0.017126867547631264, + 0.0073960162699222565, + 0.04760785028338432, + -0.019191203638911247, + -0.04293818026781082, + 0.01527608372271061, + 0.018863756209611893, + -0.03502252325415611, + 0.010542348958551884, + 0.04251107573509216, + 0.011474858969449997, + -0.017653629183769226, + 0.018949177116155624, + -0.018579021096229553, + 0.014386284165084362, + 0.00485830707475543, + -0.003039556322619319, + 0.017212288454174995, + -0.009296628646552563, + -0.0008074933430179954, + 0.02030167356133461, + -0.017625154927372932, + 0.01244296133518219, + -0.016400789842009544, + 0.021269775927066803, + -0.004559334367513657, + 0.020031174644827843, + -0.026879074051976204, + 0.013311405666172504, + 0.007844475097954273, + 0.020557936280965805, + 0.024757791310548782, + 0.00642435485497117, + -0.002559064421802759, + -0.014507296495139599, + -0.002471863990649581, + -0.010798610746860504, + 0.011667056009173393, + 0.011538924649357796, + 0.02138366922736168, + -0.06474895775318146, + -0.01225788239389658, + -0.03792683035135269, + 0.010307441465556622, + 0.040489453822374344, + 0.027918359264731407, + 0.01709839329123497, + -0.005979455076158047, + -0.006719768512994051, + 0.011140294373035431, + 0.018009549006819725, + -0.02285006083548069, + -0.004424084909260273, + -0.02168264240026474, + -0.022608034312725067, + -0.0006753581110388041, + -0.019248150289058685, + -0.020500987768173218, + 0.0053494768217206, + -0.008122093044221401, + 0.006943997927010059, + -0.008285815827548504, + 0.036417726427316666, + -0.011012163013219833, + 0.008762748911976814, + 0.0047728861682116985, + 0.009147142060101032, + -0.01936204545199871, + -0.011453503742814064, + 0.005943863186985254, + -0.012286356650292873, + -0.02242295630276203, + -0.039037298411130905, + -0.0144432308152318, + -0.027747519314289093, + -0.028331227600574493, + 0.007008063606917858, + 0.023604610934853554, + -0.019831858575344086, + -0.015333031304180622, + -0.00678383419290185, + 0.01746855117380619, + 0.002019845647737384, + -0.012179580517113209, + -0.016827894374728203, + 0.012549737468361855, + 0.010093889199197292, + -0.012208053842186928, + 0.0420839749276638, + -0.01956135965883732, + -0.021639931946992874, + 0.012983959168195724, + -0.007851594127714634, + -0.027918359264731407, + 0.027178047224879265, + -0.005360154435038567, + -0.01615876518189907, + -0.0018792572664096951, + -0.008720038458704948, + 0.03180500492453575, + 0.008278697729110718, + -0.008100737817585468, + 0.021355196833610535, + -0.022067036479711533, + -0.018735624849796295, + 0.019390517845749855, + 0.0033171738032251596, + 0.006079112645238638, + -0.0024006799794733524, + -0.02074301429092884, + -0.04982879012823105, + -0.022451430559158325, + -0.010293204337358475, + -0.03049522079527378, + 0.02648044377565384, + 0.009417641907930374, + -0.0030146418139338493, + 0.016941789537668228, + 0.018892230466008186, + 0.01687060482800007, + 0.01716957800090313, + -0.018507836386561394, + 0.01007253397256136, + 0.012400250881910324, + -0.02497134357690811, + 0.03610451892018318, + 0.02320598065853119, + -0.0012626260286197066, + 0.03596214950084686, + -0.03106469288468361, + 0.0044169663451612, + 0.018379705026745796, + -0.015347267501056194, + 0.039976928383111954, + -0.005872678942978382, + -0.004206973593682051, + -0.004036132246255875, + -0.006862136535346508, + -4.3572385038714856e-05, + -0.030466746538877487, + -0.012599566020071507, + 0.008449539542198181, + -0.012969722971320152, + -0.00018040691793430597, + 0.03026743233203888, + 0.013873759657144547, + 0.005755225196480751, + -0.007993961684405804, + 0.001465500332415104, + -0.02203856222331524, + -0.0031961610075086355, + 0.011225715279579163, + 0.007588213309645653, + -0.02969796024262905, + 0.019176965579390526, + -0.005559469573199749, + 0.0027797347865998745, + 0.0011674173874780536, + -0.035762835294008255, + -0.012143988162279129, + -0.02189619466662407, + 0.003658856963738799, + 0.013261577114462852, + -0.014307981356978416, + -0.01306226197630167, + -0.015404215082526207, + -0.035250309854745865, + 0.04977184534072876, + 0.0008390812436118722, + -0.013738509267568588, + 0.012613802216947079, + -0.03413984179496765, + 0.007011622656136751, + -0.022366009652614594, + -0.027975307777523994, + 0.0132117485627532, + -0.0327446348965168, + -0.04077418893575668, + -0.010748782195150852, + -0.019604070112109184, + 0.025355735793709755, + -0.021284012123942375, + -0.00924680009484291, + -0.0013729612110182643, + 0.016386553645133972, + -0.03616146743297577, + -0.04570012167096138, + 0.047778692096471786, + 0.018393943086266518, + 0.0051003326661884785, + 0.033285632729530334, + -0.013147682882845402, + 0.017340419813990593, + 0.00313921389169991, + 0.0029292211402207613, + -0.010770137421786785, + 0.03804072365164757, + -0.014357809908688068, + -0.007171786855906248, + 0.013959179632365704, + -0.008741393685340881, + -0.01622994989156723, + -0.022394482046365738, + 0.009268155321478844, + -0.0046020448207855225, + 0.007944133132696152, + 0.02088538184762001, + 0.03556352108716965, + 0.021440617740154266, + -0.002635587239637971, + -0.03308631852269173, + -0.005538114346563816, + -0.02074301429092884, + -0.01724076271057129, + 0.01812344416975975, + -0.030295904725790024, + 0.018821045756340027, + -0.009737969376146793, + -0.006196565926074982, + 0.02189619466662407, + 0.010748782195150852, + -0.012934130616486073, + 0.038240037858486176, + -0.018237337470054626, + -0.009510180912911892, + -0.03980608657002449, + -0.01681365817785263, + -0.021412143483757973, + -0.0023917818907648325, + 0.006281986832618713, + 0.02655162662267685, + 0.029356276616454124, + 0.03152026981115341, + 0.008677328005433083, + 0.009552891366183758, + 0.013724273070693016, + 0.016044870018959045, + -0.012684986926615238, + 0.0052640559151768684, + 0.0009654328459873796, + -0.011069109663367271, + -0.007808883674442768, + -0.01287718303501606, + 0.010777255520224571, + 0.024900158867239952, + 0.015532346442341805, + -0.001181654166430235, + 0.0022084831725806, + 0.030979271978139877, + 0.009147142060101032, + 0.033143263310194016, + 0.0169560257345438, + -0.012243646197021008, + 0.016400789842009544, + -0.034310683608055115, + -0.0012973281554877758, + 0.016329606994986534, + 0.013133445754647255, + -0.02023048885166645, + 0.04669669643044472, + -0.011702647432684898, + -0.012193816713988781, + -0.001744897454045713, + -0.019091544672846794, + 0.003274463349953294, + 0.020543698221445084, + -0.002274328377097845, + -0.025797076523303986, + -0.018294284120202065, + -0.02961253933608532, + -0.023590372875332832, + -0.00832852628082037, + 0.04575706645846367, + -0.011304017156362534, + 0.03280157968401909, + -0.01768210344016552, + -0.011097583919763565, + 0.006196565926074982, + 0.012051449157297611, + -0.001530455774627626, + 0.049885738641023636, + -0.023974766954779625, + 0.015347267501056194, + -0.02596791833639145, + 0.008100737817585468, + -0.0012679648352786899, + -0.031605690717697144, + -0.04168534278869629, + 0.02189619466662407 + ], + "how_to_launch_a_rocket": [ + -0.01556536927819252, + -0.015353435650467873, + 0.013234095647931099, + -0.05147639662027359, + -0.004721416626125574, + -0.008589210920035839, + 0.051994454115629196, + -0.01012573204934597, + 0.0011435601627454162, + 0.04297548905014992, + 0.002042807638645172, + -0.03767714276909828, + -0.01876792684197426, + -0.04292839393019676, + -0.04803835600614548, + 0.01650729775428772, + -0.036170054227113724, + 0.01921534165740013, + 0.006664144340902567, + -0.024678528308868408, + 0.07464783638715744, + -0.023089023306965828, + -0.03138976916670799, + 0.013010388240218163, + 0.003349733306095004, + -0.04325806722044945, + 0.033815234899520874, + 0.06000084802508354, + -0.03873681277036667, + 0.004792061634361744, + 0.05076994746923447, + -0.013716834597289562, + -0.021334681659936905, + -0.014988438226282597, + -0.03423910215497017, + -0.025950131937861443, + 0.0072822850197553635, + 0.015577143058180809, + 0.0009617973701097071, + -0.012975065968930721, + -0.010320005007088184, + 0.019945336505770683, + -0.037559401243925095, + -0.03541651368141174, + -0.04193936660885811, + 0.02635045163333416, + -0.053878311067819595, + -0.016919391229748726, + -0.007405912969261408, + 0.0005636853748001158, + -0.016672134399414062, + 0.03817165270447731, + -2.7043652153224684e-05, + -0.013987638987600803, + 0.016189396381378174, + -0.05477314442396164, + -0.01438795868307352, + -0.0038030364084988832, + -0.018132124096155167, + -0.009825492277741432, + -0.018061479553580284, + -0.0060989875346422195, + -0.0010523108066990972, + 0.02167613059282303, + 0.04789706692099571, + -0.010584921576082706, + -0.04742610082030296, + 0.009001304395496845, + 0.022947734221816063, + 0.050864141434431076, + 0.005492620635777712, + 0.03518103063106537, + -7.906129030743614e-05, + -0.0328497588634491, + 0.031460411846637726, + -0.04457676783204079, + -0.03301459550857544, + 0.06791304796934128, + 0.013186999596655369, + -0.02354821376502514, + -0.05025188624858856, + -0.06018923223018646, + 0.014764729887247086, + -0.028752367943525314, + -0.03247298672795296, + -0.011827089823782444, + -0.019203567877411842, + 0.019921788945794106, + -0.03711198270320892, + -0.06800723820924759, + -0.03442748636007309, + 0.012692486867308617, + -0.009554687887430191, + 0.03367394581437111, + 0.08350196480751038, + -0.025432070717215538, + 0.053313154727220535, + 0.04321097210049629, + 0.03645263612270355, + 0.029882682487368584, + 0.05656280741095543, + -0.0454009547829628, + -0.03993777185678482, + -0.046554818749427795, + 0.056233134120702744, + 0.00407678447663784, + -0.01989823952317238, + 0.0343097485601902, + -0.009395737200975418, + -0.053689926862716675, + -0.07516589760780334, + 0.0007660528062842786, + 0.012774906121194363, + 0.05053446441888809, + 0.019674532115459442, + -0.006246163509786129, + 0.028681723400950432, + 0.02653883583843708, + -0.023194991052150726, + -0.022488543763756752, + -0.035110387951135635, + -0.04288129508495331, + -0.02569110132753849, + 0.006934948731213808, + 0.01614230126142502, + -0.017037132754921913, + 0.0710214152932167, + -0.023689502850174904, + 0.03153105825185776, + 0.06932593882083893, + 0.0008447921718470752, + -0.03414490818977356, + 0.01097935438156128, + -0.03814810514450073, + 0.010861613787710667, + 0.025573359802365303, + -0.03894874453544617, + -0.042528074234724045, + -0.018426477909088135, + 0.02335982769727707, + 0.004544805269688368, + -0.04542450234293938, + 0.011220723390579224, + 0.010896936058998108, + -0.016471974551677704, + -0.002872881945222616, + -0.04344645515084267, + 0.006781885400414467, + -0.037182629108428955, + -0.028940754011273384, + -0.005001051817089319, + -0.015883270651102066, + -0.022618059068918228, + -0.02905849553644657, + 0.04883899539709091, + -0.034380391240119934, + -0.03715908154845238, + 0.029835587367415428, + 0.008871789090335369, + -0.020769523456692696, + 0.03421555459499359, + 0.005972415674477816, + 0.01857954077422619, + -0.01575375534594059, + -0.039042938500642776, + -0.02418401464819908, + 0.012150878086686134, + 0.0010832177940756083, + -0.0572221577167511, + -0.009766621515154839, + 0.020180819556117058, + 0.004689037799835205, + -0.015188598074018955, + 0.02101678028702736, + 0.03442748636007309, + 0.005769312381744385, + -0.041962917894124985, + -0.030589129775762558, + 0.025149492546916008, + 0.020816620439291, + 0.01670745760202408, + -0.026209162548184395, + -0.04558934271335602, + -0.023136120289564133, + 0.022676929831504822, + 0.028469789773225784, + -0.02484336495399475, + 0.009725412353873253, + -0.011291367933154106, + -0.024984654039144516, + -0.03153105825185776, + -0.00030999016598798335, + -0.025620456784963608, + 0.012774906121194363, + 0.013916994445025921, + 0.013210548087954521, + 0.012315715663135052, + -0.012810228392481804, + 0.06033052131533623, + -0.01933308318257332, + -0.010749759152531624, + 0.03480425849556923, + 0.04452967271208763, + -0.03715908154845238, + 0.048791900277137756, + -0.018885666504502296, + -0.051146719604730606, + 0.04528321325778961, + 0.015353435650467873, + 0.01792019046843052, + -0.009295657277107239, + -0.00857743714004755, + 0.01680164970457554, + 0.016012785956263542, + -0.06066019833087921, + -0.01101467665284872, + -0.03730037063360214, + 0.04949834570288658, + -0.05279509350657463, + -0.015365209430456161, + -0.03866616636514664, + 0.027268830686807632, + 0.003493966069072485, + -0.04191581904888153, + 0.03449813276529312, + 0.05783441290259361, + 0.05877634137868881, + -0.06899626553058624, + 0.05806989595293999, + -0.007417687214910984, + -0.02165258303284645, + 0.025714648887515068, + -0.004044405650347471, + 0.007747362367808819, + -0.00863630697131157, + 0.008383164182305336, + -0.00017743946227710694, + -0.009348641149699688, + 0.011356125585734844, + -0.010938145220279694, + -0.016636813059449196, + -0.04836802929639816, + -0.004385854583233595, + -0.053030576556921005, + 0.046649012714624405, + -0.023277409374713898, + -0.024984654039144516, + -0.05872924625873566, + 0.006434549577534199, + -0.02474917285144329, + 0.060518909245729446, + -0.018697282299399376, + 0.04045582935214043, + 0.021593712270259857, + 0.005781086627393961, + -0.05632732808589935, + -0.019486146047711372, + 0.00024118521832861006, + 0.00778268463909626, + -0.00867162924259901, + -0.02345401979982853, + 0.0199806597083807, + -0.0984315350651741, + 0.024078048765659332, + -0.016448426991701126, + -0.0018338171066716313, + -0.007894538342952728, + -0.0050452048890292645, + -0.019074052572250366, + -0.023983854800462723, + -0.015800850465893745, + -0.0005302027566358447, + 0.0015674280002713203, + -0.01959211379289627, + -0.033909428864717484, + 0.017366807907819748, + 0.015000212006270885, + -0.0077885715290904045, + -0.02061646059155464, + -0.013516674749553204, + -0.024254659190773964, + 0.008459695614874363, + -0.016825199127197266, + 0.027716247364878654, + 0.006917287595570087, + 0.008659855462610722, + 0.02111097425222397, + 0.008241875097155571, + 0.01172112300992012, + -0.024395950138568878, + 0.05632732808589935, + -0.0015468233032152057, + 0.0016321855364367366, + 0.006970271002501249, + 0.01922711543738842, + -0.004188638646155596, + 0.020015981048345566, + -0.031272027641534805, + -0.019180020317435265, + 0.03800681605935097, + 0.0029508855659514666, + 0.03647618368268013, + 0.05288928747177124, + -0.007152769714593887, + 0.015871495008468628, + -0.016389556229114532, + 0.019521469250321388, + -0.05496152862906456, + -0.03602876514196396, + 0.00359698967076838, + 0.06282663345336914, + 0.04062066972255707, + 0.007040916010737419, + -0.05821118503808975, + 0.03979647904634476, + 0.036334894597530365, + -0.02073420211672783, + 0.04716707020998001, + 0.019015181809663773, + 0.024513689801096916, + 0.014576343819499016, + -0.030047520995140076, + 0.03421555459499359, + -0.016177622601389885, + -0.013822801411151886, + -0.035204578191041946, + 0.010637905448675156, + 0.008759935386478901, + 0.007553089410066605, + 0.005383710376918316, + 0.023418698459863663, + -0.03374458849430084, + 0.013563770800828934, + 0.011038225144147873, + 0.017107777297496796, + -0.020310334861278534, + 0.04014970362186432, + -0.006664144340902567, + 0.0314839631319046, + 0.02268870361149311, + -0.006416887976229191, + 0.008430260233581066, + -0.014105379581451416, + 0.023760147392749786, + -0.03518103063106537, + 0.028540434315800667, + 0.010337665677070618, + -0.020204367116093636, + -0.006093100178986788, + 0.0041121067479252815, + 0.011632817797362804, + 0.015400531701743603, + -0.048156097531318665, + 0.022676929831504822, + -0.00670535396784544, + 0.013022162020206451, + 0.008306632749736309, + -0.02071065455675125, + -0.020592913031578064, + -0.020180819556117058, + 0.005945923738181591, + 0.07681427150964737, + 0.016483750194311142, + 0.023100797086954117, + -0.035039741545915604, + 0.050958335399627686, + 0.024866914376616478, + -0.016931165009737015, + -0.0433051660656929, + 0.005304235033690929, + 0.03772423788905144, + 0.032308150082826614, + 0.038972292095422745, + 0.02814011462032795, + -0.06315630674362183, + 0.027033349499106407, + 0.02569110132753849, + 0.00288171274587512, + -0.0298120379447937, + -0.01699003577232361, + 0.04052647575736046, + -0.012916195206344128, + -0.007352929562330246, + -0.005419032648205757, + -0.013234095647931099, + -0.0015468233032152057, + 0.017484549432992935, + -0.005460241809487343, + -0.031460411846637726, + -0.021122748032212257, + 0.0012399606639519334, + -0.07168076187372208, + 0.045989662408828735, + 0.015459402464330196, + 0.03927842155098915, + 0.014446829445660114, + 0.006416887976229191, + 0.0199806597083807, + 0.038689713925123215, + 0.016106978058815002, + 0.05759892985224724, + -0.026279807090759277, + -0.008082924410700798, + -0.025267232209444046, + 0.012174426577985287, + -0.015365209430456161, + 0.0482267402112484, + -0.004415289964526892, + -0.02062823437154293, + 0.0007303625461645424, + 0.0770968496799469, + 0.0012988311937078834, + 0.03282621130347252, + -0.0395374521613121, + 0.01969808153808117, + -0.007541315164417028, + 0.01270426157861948, + 0.0015218033222481608, + -0.027975277975201607, + 0.026091421023011208, + -0.02877591736614704, + -0.04109163209795952, + 0.03346201032400131, + -0.008759935386478901, + -0.021617259830236435, + 0.03711198270320892, + 0.04408225417137146, + -0.009825492277741432, + 0.027339475229382515, + -0.027056897059082985, + -0.027363024652004242, + -0.03720617666840553, + 0.04071485996246338, + 0.040550023317337036, + 0.023277409374713898, + -0.028281403705477715, + -0.06442791223526001, + 0.005778142716735601, + -0.023112570866942406, + 0.02587948739528656, + 0.016636813059449196, + -0.02974139340221882, + 0.03084816038608551, + 0.045612890273332596, + -0.039160680025815964, + -0.039419710636138916, + -0.02503175102174282, + -0.040550023317337036, + -0.02974139340221882, + 0.00938396342098713, + -0.013422481715679169, + -0.009854927659034729, + 0.011038225144147873, + 0.014234894886612892, + 0.021169843152165413, + -0.0392313227057457, + 0.0006144611979834735, + -0.017037132754921913, + 0.04259871691465378, + 0.037276823073625565, + 0.005683950148522854, + 0.037653595209121704, + -0.036523278802633286, + -0.012810228392481804, + 0.004965729545801878, + 0.015259242616593838, + 0.006081325933337212, + 0.02259451150894165, + -0.042151302099227905, + 0.0007351458189077675, + -0.011697575449943542, + -0.05194735899567604, + -0.02127581089735031, + -0.013434255495667458, + -0.0040797279216349125, + 0.000807998061645776, + -0.055573783814907074, + 0.03638198971748352, + -0.0010052144061774015, + 0.006917287595570087, + -0.03186073154211044, + 0.03485135734081268, + -0.00370590016245842, + 0.003467474365606904, + 0.010425971820950508, + 0.0543963722884655, + -0.006269712001085281, + -0.014034735038876534, + -0.043564196676015854, + 0.027998825535178185, + -0.015153275802731514, + 0.030424291267991066, + 0.005095244850963354, + -0.010867500677704811, + 0.04097389057278633, + -0.06843110918998718, + -0.02449014224112034, + -0.015011985786259174, + 0.0250552985817194, + 0.014340861700475216, + 0.012080233544111252, + -0.010337665677070618, + 0.004485934507101774, + 0.047214169055223465, + -0.02927042916417122, + -0.054537661373615265, + -0.04452967271208763, + 0.03890164941549301, + 0.02625625766813755, + 0.045824822038412094, + -0.009784283116459846, + 0.0032261053565889597, + 0.01642487943172455, + -0.020816620439291, + 0.015624240040779114, + 0.001641016104258597, + -0.0008580380235798657, + 0.009849040769040585, + 0.018155673518776894, + -0.002569698728621006, + -0.017390355467796326, + 0.035675544291734695, + -0.006522855255752802, + 0.02401917800307274, + -0.03383878245949745, + 0.009896136820316315, + -0.0418451763689518, + -0.03788907453417778, + -0.00597830256447196, + 0.004759682808071375, + -0.016248267143964767, + -0.015918591991066933, + 0.004459443036466837, + 0.015247467905282974, + -0.018603088334202766, + 0.02224128693342209, + -0.03209621459245682, + -0.015117953531444073, + -0.04292839393019676, + -0.037841979414224625, + -0.02896430343389511, + 0.030801063403487206, + 0.0062167285941541195, + -0.0020766581874340773, + -0.011915395967662334, + 0.015223920345306396, + 0.006581725552678108, + 0.03388587757945061, + 0.03551070764660835, + -0.0013282664585858583, + 0.00754720252007246, + -0.014752956107258797, + 0.015518272295594215, + -0.016566168516874313, + -0.00043049079249612987, + 0.0022105886600911617, + -0.03993777185678482, + -0.03414490818977356, + 0.02625625766813755, + -0.03426264971494675, + 0.010685001499950886, + 0.007841555401682854, + 0.0022326649632304907, + 0.0019294817466288805, + -0.017873093485832214, + 0.007435348350554705, + 0.015624240040779114, + -0.025761745870113373, + -0.013092806562781334, + -0.009119045920670033, + -0.030871707946062088, + -0.033532656729221344, + 0.001860308926552534, + 0.01623649336397648, + 0.0018588370876386762, + -0.010060974396765232, + 0.01727261394262314, + 0.011962492018938065, + 0.001074387226253748, + -0.019368406385183334, + -0.006923174951225519, + -0.0487448014318943, + -0.01177410688251257, + 0.008530340157449245, + -0.07483622431755066, + 0.006169632077217102, + -0.019474372267723083, + 0.02325385995209217, + -0.004115050192922354, + 0.020098399370908737, + -0.008177117444574833, + -0.011226611211895943, + 0.06103697046637535, + 0.041209373623132706, + -0.014599892310798168, + -0.0037853752728551626, + 0.020310334861278534, + 0.007017367519438267, + 0.0005511753843165934, + 0.014364410191774368, + 0.004945124965161085, + 0.006793659646064043, + -0.029505912214517593, + 0.017967287451028824, + 0.0005585341714322567, + -0.011002902872860432, + 0.004382911138236523, + -0.002481393050402403, + -0.029223332181572914, + 0.017861319705843925, + -0.033509109169244766, + 0.008742274716496468, + -0.039725836366415024, + -0.02757495827972889, + 0.00796518288552761, + 0.0031083642970770597, + -0.0007355137495324016, + 0.08929482847452164, + -0.013716834597289562, + -0.05524411052465439, + 0.0298120379447937, + 0.03367394581437111, + -0.0022547414992004633, + 0.01932130940258503, + 0.02127581089735031, + -0.04511837661266327, + -0.009172028861939907, + -0.00012601973139680922, + -0.013481352478265762, + 0.02167613059282303, + 0.03471006825566292, + 0.008783483877778053, + 0.008553888648748398, + -0.004006139934062958, + -0.013481352478265762, + 0.03383878245949745, + 0.02334805391728878, + -0.007341155782341957, + 0.012339264154434204, + 0.02372482605278492, + -0.01054371241480112, + -0.016295364126563072, + 0.00835372880101204, + -0.024160467088222504, + -0.013493126258254051, + 0.05373702198266983, + 0.007847442291676998, + 0.05698667839169502, + 0.03162525221705437, + -0.03927842155098915, + -0.013599093072116375, + -0.005257138516753912, + 0.03405071794986725, + -0.040856149047613144, + 0.03682940453290939, + 0.0166839100420475, + -0.04888609051704407, + 0.01510617882013321, + -0.0401732511818409, + -0.008883563801646233, + -0.02418401464819908, + 4.783230906468816e-05, + -0.02757495827972889, + 0.04455322027206421, + -0.0069055138155817986, + 0.04817964509129524, + -0.011185401119291782, + -0.012810228392481804, + -0.003985535353422165, + -0.015541820786893368, + -0.05660990625619888, + 0.0036970695946365595, + -0.04172743484377861, + 0.006711240857839584, + -0.012115555815398693, + 0.004256339743733406, + 0.011008789762854576, + -0.04893318936228752, + 0.026138516142964363, + 0.038030363619327545, + -0.033626850694417953, + -0.02006307803094387, + -0.01922711543738842, + 0.021817419677972794, + 0.029482362791895866, + -0.054349277168512344, + -0.015035534277558327, + 0.004574240650981665, + 0.006781885400414467, + -0.0060342298820614815, + -0.009866701439023018, + -0.008477357216179371, + 0.0024122202303260565, + 0.007935747504234314, + -0.0020442793611437082, + 0.008453808724880219, + 0.02298305556178093, + -0.02748076431453228, + -0.02138177864253521, + -0.09287415444850922, + -0.01388167217373848, + 0.00990202371031046, + 0.005180607084184885, + -0.007199866231530905, + -0.023030152544379234, + -0.01228039339184761, + -0.014223121106624603, + 0.0025535093154758215, + -0.0027669151313602924, + -0.009772508405148983, + -0.008730500005185604, + 0.017578741535544395, + -0.01959211379289627, + -0.02587948739528656, + -0.033344268798828125, + 0.011815316043794155, + -0.030071068555116653, + -0.042787104845047, + 0.00834195502102375, + -0.011933057568967342, + -0.0033055804669857025, + -0.00023327449162025005, + -0.005657458212226629, + 0.02503175102174282, + -0.0487448014318943, + -0.006387453060597181, + 0.027268830686807632, + 0.025997227057814598, + 0.01093225833028555, + -0.0189327634871006, + 0.017366807907819748, + 0.02026323787868023, + -0.020793072879314423, + 0.012657164596021175, + 0.003564610844478011, + -0.02326563559472561, + -0.0425751693546772, + 0.02118161879479885, + 0.02325385995209217, + 0.007900425232946873, + -0.03800681605935097, + 0.0029759055469185114, + -0.01724906638264656, + 0.02148774452507496, + 0.014788278378546238, + -0.03421555459499359, + 0.020687105134129524, + 0.013104581274092197, + -0.004909802693873644, + 0.01003742590546608, + -0.0250552985817194, + 0.0074235741049051285, + -0.006487532984465361, + -0.010337665677070618, + 0.02738657221198082, + -0.010072748176753521, + 0.012457004748284817, + 0.015047308057546616, + -0.006363904569298029, + 0.00796518288552761, + -0.03275556489825249, + -0.017566967755556107, + -0.01933308318257332, + -0.019545016810297966, + -0.022370802238583565, + -0.02964720129966736, + 0.034286197274923325, + -0.00719397934153676, + 0.021911611780524254, + 0.018497122451663017, + 0.015977462753653526, + -0.017001809552311897, + -0.008653968572616577, + -0.0026432869490236044, + -0.008453808724880219, + -0.020286785438656807, + -0.014599892310798168, + 0.031083641573786736, + -0.004989277571439743, + -0.03697069361805916, + -0.0012502629542723298, + -0.015447627753019333, + -0.007841555401682854, + -0.0015438797418028116, + 0.01961566135287285, + 0.031272027641534805, + -0.02138177864253521, + 0.04226904362440109, + 0.018355833366513252, + -0.03233169764280319, + -0.026279807090759277, + -0.022853542119264603, + -0.008665742352604866, + -0.028069470077753067, + 0.011285481043159962, + 0.027739794924855232, + 0.010320005007088184, + -0.07964006066322327, + -0.04125646874308586, + 0.01744922623038292, + -0.02814011462032795, + 0.0057251593098044395, + -0.0027433668728917837, + 0.011609269306063652, + 0.010773307643830776, + -0.0004948804271407425, + -0.02802237495779991, + 0.028352048248052597, + -0.02016904577612877, + -0.03461587429046631, + 0.0066818054765462875, + 0.005772255826741457, + 0.009531139396131039, + 0.00626382464542985, + 0.0076060728169977665, + 0.011785880662500858, + -0.02738657221198082, + -0.014258443377912045, + -0.038124557584524155, + 0.006511081010103226, + -0.009060175158083439, + -0.005745763890445232, + -0.02729238010942936, + 0.015153275802731514, + -0.004856818821281195, + 0.02015727013349533, + 0.005869392305612564, + 0.0314839631319046, + 0.02165258303284645, + -0.003255540505051613, + 0.007982844486832619, + 0.0033968298230320215, + 0.002521130722016096, + 0.01121483650058508, + 0.011532737873494625, + 0.01894453726708889, + 0.028823012486100197, + 0.02992977946996689, + -0.005828182678669691, + 0.02157016284763813, + -0.01790841668844223, + 0.06546403467655182, + 0.007229301612824202, + -0.04530676454305649, + 0.018920989707112312, + 0.015306338667869568, + 0.02898785099387169, + 0.013340063393115997, + -0.017778901383280754, + -0.012975065968930721, + -0.010537825524806976, + 0.0373474657535553, + 0.04820319265127182, + -0.05204155296087265, + -0.01388167217373848, + -0.01670745760202408, + -0.011632817797362804, + 0.01054371241480112, + 0.03817165270447731, + 0.01753164455294609, + -0.03339136764407158, + -0.01510617882013321, + 0.012716035358607769, + -0.012174426577985287, + 0.010178714990615845, + -0.022994831204414368, + 0.01022581197321415, + 0.03129557520151138, + 0.01514150109142065, + -0.01298683974891901, + 0.013292966410517693, + 0.017107777297496796, + 0.008942433632910252, + -0.008842354640364647, + -0.016825199127197266, + -0.013799252919852734, + -0.013622641563415527, + -0.03704134002327919, + 0.01537698321044445, + 0.011403222568333149, + 0.027221735566854477, + -0.042433880269527435, + 0.009743073023855686, + -0.0060342298820614815, + 0.013351837173104286, + -0.0029243938624858856, + 0.02569110132753849, + 0.008483244106173515, + -0.023489343002438545, + 0.004388798493891954, + -0.02943526767194271, + -0.001346663455478847, + 0.008683403953909874, + -0.0040797279216349125, + -0.02550271525979042, + 0.027810439467430115, + -0.028563983738422394, + 0.010296456515789032, + 0.030730418860912323, + -0.014599892310798168, + -0.008047602139413357, + -0.05745764076709747, + 0.03920777514576912, + 0.014505699276924133, + 0.0011796182952821255, + -0.011656365357339382, + 0.0037765447050333023, + 0.01435263641178608, + 0.0022311932407319546, + -0.003046550089493394, + 0.061743415892124176, + 0.017331484705209732, + 0.03854842483997345, + -0.004067953675985336, + -0.010143392719328403, + 0.01883857138454914, + 0.0040031964890658855, + -0.03209621459245682, + 0.04241033270955086, + -0.028540434315800667, + 0.02109919860959053, + -0.029953327029943466, + 0.007040916010737419, + -0.001707245479337871, + 0.03181363642215729, + -0.035392966121435165, + -0.019168246537446976, + 0.0373474657535553, + 0.03047138825058937, + -0.03252008184790611, + 0.006151970941573381, + -0.03751230239868164, + 0.002632984658703208, + 0.03301459550857544, + -0.012268619611859322, + -0.026562385261058807, + -0.0032467099372297525, + -0.012786679901182652, + 0.014458603225648403, + -0.0487448014318943, + -0.013210548087954521, + 0.007341155782341957, + 0.03920777514576912, + 0.025855937972664833, + -0.007800345774739981, + -0.028823012486100197, + -0.017684709280729294, + 0.01223329734057188, + 0.004032631404697895, + 0.02109919860959053, + 0.023030152544379234, + -0.03744165971875191, + -0.008471469394862652, + -0.013763930648565292, + -0.01630713790655136, + -0.041774529963731766, + 0.01772003062069416, + -0.008830579929053783, + 0.05138220265507698, + 0.009042513556778431, + 0.01256297156214714, + 0.03885455057024956, + 0.017979061231017113, + -0.002990623004734516, + 0.002603549277409911, + -0.01190950907766819, + -0.034922000020742416, + -0.0122921671718359, + -0.00017127646424341947, + 0.004447668790817261, + 0.003738278988748789, + -0.011279594153165817, + 0.009878475219011307, + -0.045636437833309174, + -0.030612677335739136, + -0.0709272176027298, + 0.03685295581817627, + -0.011026451364159584, + 0.0045212567783892155, + -0.0022370803635567427, + 0.03569909185171127, + 0.02755141071975231, + -0.010143392719328403, + -0.009054288268089294, + 0.025290781632065773, + 0.03131912276148796, + 0.017955513671040535, + 0.0010493672452867031, + -0.011032338254153728, + -0.007688491605222225, + -0.004591901786625385, + -0.04615449905395508, + 0.019639210775494576, + -0.008683403953909874, + 0.001319435890763998, + -0.018532443791627884, + -0.016271814703941345, + 0.022582735866308212, + 0.017672933638095856, + -0.014458603225648403, + 0.014140701852738857, + 0.023889662697911263, + -0.0073058330453932285, + -0.01556536927819252, + 0.011903622187674046, + -0.05279509350657463, + -0.019921788945794106, + 0.004335814621299505, + -0.05538539960980415, + 0.007258736994117498, + 0.042339686304330826, + -0.016931165009737015, + 0.00436230655759573, + -0.04846222326159477, + -0.005442580673843622, + -0.013752156868577003, + -0.031012997031211853, + -0.04259871691465378, + -0.06536984443664551, + -0.015047308057546616, + 0.03572263941168785, + 0.005786973517388105, + 0.02305370196700096, + -0.054914433509111404, + -0.010908709838986397, + 0.011891847476363182, + 0.01865018531680107, + -0.013540223240852356, + 0.008330180309712887, + 0.003897229442372918, + -0.011785880662500858, + 0.0033379592932760715, + -0.017508096992969513, + 0.0011229554656893015, + 0.011597495526075363, + 0.018603088334202766, + -0.009819605387747288, + 0.009631219319999218, + -0.0017101890407502651, + -0.008218326605856419, + -0.020275011658668518, + 0.0018146842485293746, + 0.03536941856145859, + 0.041020989418029785, + 0.020463397726416588, + -0.014929567463696003, + 0.024607883766293526, + 0.006764224264770746, + -0.017884867265820503, + -0.012339264154434204, + -0.040008414536714554, + 0.03433329612016678, + -0.013528448529541492, + 0.013151677325367928, + 0.01050839014351368, + -0.02936462312936783, + -0.030447840690612793, + -0.011297255754470825, + 0.00215613329783082, + 0.011362013407051563, + -0.00597830256447196, + 0.018061479553580284, + -0.026279807090759277, + -0.037841979414224625, + 0.009931459091603756, + 0.02625625766813755, + -0.0027742739766836166, + -0.0006843699375167489, + -0.0227004773914814, + 0.005065809469670057, + 0.015341660939157009, + -0.013787479139864445, + -0.005633910186588764, + 0.005807578098028898, + -0.045895468443632126, + -0.005633910186588764, + -0.015400531701743603, + -0.013434255495667458, + 0.023783694952726364, + -0.014034735038876534, + 0.011232498101890087, + -0.011138305068016052, + -0.021817419677972794, + 0.020192593336105347, + -0.026091421023011208, + -0.006781885400414467, + 0.042339686304330826, + 0.028752367943525314, + -0.0003088863450102508, + 0.01724906638264656, + -0.025667551904916763, + 0.0008102057036012411, + 0.009489930234849453, + 0.0038501329254359007, + 0.02167613059282303, + -0.007235188502818346, + -0.025149492546916008, + -0.040008414536714554, + -0.032496534287929535, + 0.0006497835274785757, + -0.004588958341628313, + 0.0075295413844287395, + -0.032402340322732925, + 0.022653382271528244, + -0.03536941856145859, + -0.009160255081951618, + -0.022559188306331635, + 0.01392876822501421, + -0.024819817394018173, + 0.019262438639998436, + 0.006363904569298029, + 0.013081032782793045, + 0.00705857714638114, + 0.03482780605554581, + 0.003349733306095004, + 0.013234095647931099, + -0.003829528111964464, + -0.010214037261903286, + 0.02738657221198082, + -0.010714436881244183, + -0.012598293833434582, + -0.006004794500768185, + -0.006128422450274229, + -0.024348853155970573, + 0.016165848821401596, + 0.02373659983277321, + 0.0026123798452317715, + 0.005572095979005098, + -0.006269712001085281, + -0.009813717566430569, + -0.021122748032212257, + -0.023583535104990005, + -0.012197975069284439, + -0.013493126258254051, + -0.009024852886795998, + -0.05076994746923447, + 0.03591102734208107, + -0.008748161606490612, + -0.022476769983768463, + -0.025761745870113373, + -0.0045948452316224575, + 0.02917623706161976, + 0.00389134231954813, + -0.011750558391213417, + -0.013198773376643658, + 0.010661453939974308, + 0.03346201032400131, + 0.07356461882591248, + -0.021252263337373734, + -0.017661159858107567, + -0.01837938092648983, + 0.021346455439925194, + 0.0030347760766744614, + 0.01633068546652794, + 0.014493925496935844, + 0.009154368191957474, + -0.010255247354507446, + -0.03247298672795296, + -0.022464996203780174, + 0.020769523456692696, + -0.00035727056092582643, + 0.048791900277137756, + -0.026680126786231995, + 0.028728820383548737, + -0.014705859124660492, + 0.03056558035314083, + -0.02373659983277321, + 0.03682940453290939, + 0.015730205923318863, + 0.010443632490932941, + -0.0328497588634491, + -0.02635045163333416, + -0.014423280954360962, + 0.02449014224112034, + 9.088138904189691e-05, + -0.003944325726479292, + 0.02776334434747696, + 0.020557589828968048, + 0.024443045258522034, + -0.0010648207971826196, + 0.014482151716947556, + 0.007152769714593887, + -0.008112359791994095, + 0.015117953531444073, + -0.027786891907453537, + 0.005157058592885733, + 0.004686094354838133, + -0.018897442147135735, + 0.02512594312429428, + 0.005681006703525782, + -0.017884867265820503, + -0.0030097560957074165, + -0.004138598684221506, + -0.020687105134129524, + -0.026138516142964363, + -0.0009632690926082432, + -0.008112359791994095, + 0.030141713097691536, + 0.016460200771689415, + -0.02165258303284645, + -0.013128128834068775, + 0.006069552153348923, + -0.008424373343586922, + 0.008889450691640377, + 0.008330180309712887, + 0.015282790176570415, + 0.01696648821234703, + -0.02644464373588562, + -0.055573783814907074, + -0.007982844486832619, + 0.02597367949783802, + -0.03383878245949745, + -0.011603382416069508, + -0.023171441629529, + 0.012457004748284817, + -0.001822042977437377, + 0.000254615064477548, + -0.04921576753258705, + 0.015282790176570415, + -0.010608470067381859, + 0.03393297642469406, + -0.03186073154211044, + 0.02710399404168129, + 0.014976663514971733, + -0.010184602811932564, + -0.01199781522154808, + 0.04097389057278633, + -0.018155673518776894, + 0.014281991869211197, + 0.014964889734983444, + -0.0022047015372663736, + -0.0009743073605932295, + 0.022288383916020393, + 0.047308359295129776, + 0.03002397157251835, + -0.0028669950552284718, + 0.01485892292112112, + -0.019957110285758972, + 0.0003719881933648139, + 0.008424373343586922, + -0.007458896841853857, + 0.0053601618856191635, + 0.023512890562415123, + -0.017508096992969513, + -0.0010339136933907866, + 9.78722600848414e-05, + -0.031931377947330475, + 0.016283590346574783, + 0.013787479139864445, + 0.021063877269625664, + 0.0002599502040538937, + -0.039160680025815964, + -0.03927842155098915, + -0.025361426174640656, + -0.026609480381011963, + 0.009695976972579956, + -0.0029140913393348455, + -0.005975359119474888, + -0.010997015982866287, + 0.025432070717215538, + -0.028823012486100197, + 0.006899626459926367, + 0.015506498515605927, + -0.024984654039144516, + -6.995475268922746e-05, + 0.028210759162902832, + -0.025078848004341125, + 0.04344645515084267, + -0.0071409959346055984, + 0.006187293212860823, + -0.027315927669405937, + -0.00501871295273304, + 0.02804592251777649, + -0.004268113523721695, + -0.011362013407051563, + 0.021735001355409622, + -0.017684709280729294, + 0.0019206511788070202, + 0.03376813977956772, + -0.02823430858552456, + -0.03461587429046631, + 0.028352048248052597, + 0.0009169085533358157, + -0.010072748176753521, + 0.026279807090759277, + 0.003617594251409173, + 0.010667340829968452, + -0.023948533460497856, + 0.0026712503749877214, + -0.00886001531034708, + -0.018508896231651306, + 0.012256844900548458, + -0.000868340372107923, + 0.005898827686905861, + -0.023877888917922974, + -0.01933308318257332, + -0.003994365688413382, + 0.007588411681354046, + -0.001345191732980311, + 0.02333628013730049, + 0.012951517477631569, + 0.006575838662683964, + -0.01874437741935253, + -0.03770069032907486, + -0.028540434315800667, + 0.011626929976046085, + -0.03423910215497017, + 0.030353646725416183, + -0.012480553239583969, + -0.008077037520706654, + 0.006393339950591326, + 0.009548800997436047, + 0.023854339495301247, + 0.005919432267546654, + -0.004683150909841061, + 0.008159455843269825, + -0.01106766052544117, + 0.0195096954703331, + -0.025008203461766243, + -0.013092806562781334, + 0.007093899417668581, + 0.021534841507673264, + -0.01458811853080988, + 0.0010258191032335162, + 0.033226530998945236, + -0.02729238010942936, + -0.0010339136933907866, + -0.004179807845503092, + -0.01660148985683918, + -0.05044027417898178, + -0.010072748176753521, + 0.02157016284763813, + 0.031083641573786736, + -0.014800052158534527, + -0.014270217157900333, + -0.002453429391607642, + -0.0068407561630010605, + -0.008259535767138004, + 0.0179908350110054, + -0.006411001086235046, + -0.01817922107875347, + 0.010637905448675156, + 0.01303393580019474, + -0.013940542005002499, + -0.01176233310252428, + 0.02420756407082081, + -0.021440647542476654, + 0.0045860144309699535, + -0.007770910393446684, + 0.032779112458229065, + -0.02005130425095558, + 0.006917287595570087, + 0.012445230968296528, + 0.010861613787710667, + 0.013245870359241962, + 0.006552290637046099, + 0.0245843343436718, + -0.0018367606680840254, + -0.0015747867291793227, + -0.03499264642596245, + -0.026868510991334915, + 0.01345780398696661, + -7.036868191789836e-05, + -0.010896936058998108, + 0.023501116782426834, + 0.0316958948969841, + 0.02185274288058281, + -0.021040329709649086, + -0.013775705359876156, + 0.023512890562415123, + -0.011020563542842865, + -0.020757749676704407, + 0.02971784584224224, + 0.01595391519367695, + 0.003935495391488075, + -0.00896009523421526, + -0.004006139934062958, + -0.003985535353422165, + 0.010096296668052673, + -0.0007016632007434964, + 0.01886211894452572, + 0.009407510980963707, + -0.030518485233187675, + 0.005012826062738895, + 0.011885960586369038, + 0.002537319902330637, + -0.012315715663135052, + 0.00383247178979218, + 0.005472016055136919, + -0.03626424819231033, + 0.026468191295862198, + 0.014646988362073898, + 0.016165848821401596, + 0.016848746687173843, + -0.009966781362891197, + -0.045165471732616425, + -0.008053489029407501, + 0.02578529343008995, + -0.026750771328806877, + 0.00894832145422697, + -0.053124770522117615, + 0.023100797086954117, + -0.012068459764122963, + 0.016895843669772148, + -0.025290781632065773, + -0.00811824668198824, + 0.050204791128635406, + -0.01912114955484867, + -0.00033041086862795055, + 0.0069584972225129604, + -0.011650478467345238, + -0.008365502581000328, + -0.018402928486466408, + 0.001582145574502647, + -0.006169632077217102, + 0.025549812242388725, + 0.030047520995140076, + -0.018544217571616173, + -0.05076994746923447, + 0.016660360619425774, + -0.009454607963562012, + -0.03857197239995003, + 0.013245870359241962, + 0.014070057310163975, + -0.02023969031870365, + 0.002839031396433711, + -0.00412682443857193, + -0.006670031696557999, + -0.009548800997436047, + -0.011491527780890465, + -0.013116355054080486, + -0.004012026824057102, + 0.0066818054765462875, + -0.02371305041015148, + 0.020428074523806572, + 0.011032338254153728, + 0.03292040154337883, + 0.027268830686807632, + 0.028634628280997276, + 0.012421682476997375, + -0.01482360064983368, + 0.0042946054600179195, + -0.011815316043794155, + 0.016530845314264297, + 0.0011472395854070783, + -0.001792607712559402, + 0.051523491740226746, + 0.005901771131902933, + 0.034474585205316544, + -0.000748023740015924, + 0.02559690736234188, + 0.01397586427628994, + 0.02297128178179264, + 0.0008801145013421774, + -0.010031539015471935, + 0.00670535396784544, + 0.02054581604897976, + -0.019391953945159912, + -0.005937093403190374, + -0.027151091024279594, + -0.0011406166013330221, + 0.005878222640603781, + -0.017861319705843925, + -0.028069470077753067, + -0.042716458439826965, + -0.01968630589544773, + 0.028940754011273384, + -0.00039884785655885935, + 0.01810857653617859, + 0.03555780276656151, + -0.01770825684070587, + -0.007299946155399084, + 0.025832390412688255, + 0.03000042401254177, + -0.03273201733827591, + 0.003920777700841427, + -0.038077462464571, + 0.02185274288058281, + 0.04137421026825905, + 0.016448426991701126, + -0.004038518760353327, + -0.0125276492908597, + 0.012916195206344128, + 0.01345780398696661, + -0.007700265850871801, + 0.02540852315723896, + -0.008288971148431301, + 0.018143897876143456, + 0.0063344696536660194, + -0.010102183558046818, + 0.007623733952641487, + -0.0010375931160524487, + 0.013022162020206451, + 0.03113073855638504, + -0.018085027113556862, + -0.03235524520277977, + 0.02352466620504856, + 0.009725412353873253, + -0.0011921282857656479, + 0.009578235447406769, + -0.0036381990648806095, + -0.043093230575323105, + 0.00788276456296444, + -0.012256844900548458, + 0.010549599304795265, + -0.027221735566854477, + -0.004839157685637474, + -0.009719525463879108, + 0.00896009523421526, + -0.01763761229813099, + 0.036240700632333755, + 0.032779112458229065, + 0.008571549318730831, + 0.013775705359876156, + -0.03256718069314957, + 0.005430806893855333, + -0.033509109169244766, + 0.013245870359241962, + -0.010614356957376003, + 0.053595732897520065, + -0.024537239223718643, + -0.020498719066381454, + -0.03918422758579254, + 0.004371137358248234, + -0.022382577881217003, + -0.023948533460497856, + 0.012351037934422493, + 0.01487069670110941, + -0.021452423185110092, + 0.017390355467796326, + -0.020392753183841705, + 0.01228039339184761, + -0.0010250831255689263, + -0.004347588866949081, + -0.0470728799700737, + -0.0044123465195298195 + ], + "how_to_setup_chemical_plants": [ + -0.01982002519071102, + 0.010435127653181553, + 0.018965188413858414, + -0.009336050599813461, + -0.0033796625211834908, + 0.019038459286093712, + 0.005651088897138834, + -0.00020130668417550623, + -0.04664972424507141, + -0.020137537270784378, + 0.03424236178398132, + -0.013591921888291836, + 0.014239155687391758, + -0.023092834278941154, + 0.00901853945106268, + -0.032972317188978195, + 0.011479251086711884, + 0.061010997742414474, + 0.012224181555211544, + 0.010856440290808678, + 0.026255734264850616, + -0.010685472749173641, + 0.004982483573257923, + -0.0056541417725384235, + -0.004075744654983282, + -0.027647897601127625, + 0.05739625543355942, + 0.037515170872211456, + -0.0216273982077837, + -0.019551362842321396, + 0.040519315749406815, + -0.025742830708622932, + -0.05378151312470436, + 0.004545905627310276, + 0.010978559963405132, + -0.023642372339963913, + 0.02510780841112137, + 0.0023569101467728615, + 0.014593303203582764, + 0.010917500592768192, + -0.012712660245597363, + 0.022128088399767876, + -0.01580228842794895, + 0.02479029819369316, + -0.015057357959449291, + 0.00515039823949337, + -0.022091452032327652, + 0.04408520832657814, + 0.04894557222723961, + -0.03079858608543873, + 0.023141682147979736, + 0.0023385921958833933, + -0.013103443197906017, + -0.09344598650932312, + 0.003642219817265868, + -0.036025308072566986, + -0.03485295921564102, + 0.01494745071977377, + -0.01862325333058834, + -0.03475526347756386, + 0.0366603322327137, + 0.010563353076577187, + 0.04066585749387741, + 0.046454332768917084, + -0.04242438077926636, + 0.00014291820116341114, + -0.038125768303871155, + 0.028185224160552025, + 0.023825552314519882, + -0.012712660245597363, + -0.0023706485517323017, + 0.023251589387655258, + -0.01791495829820633, + 0.0048756287433207035, + 0.005989971105009317, + -0.04349903389811516, + -0.022262420505285263, + 0.05959441140294075, + -0.06062021479010582, + -0.05011792108416557, + -0.0636487826704979, + -0.04875018075108528, + 0.016571642830967903, + -0.043401338160037994, + -0.0027858554385602474, + -0.04835939779877663, + -0.006035765632987022, + -0.009653561748564243, + -0.0710248127579689, + -0.04870133474469185, + -0.02413085103034973, + 0.007302757818251848, + 0.0016379303997382522, + 0.0051931398920714855, + 0.04313267394900322, + 0.013811737298965454, + 0.03211747854948044, + 0.01995435729622841, + 0.0005483937566168606, + 0.024533845484256744, + 0.030505498871207237, + -0.04574603587388992, + -0.040152955800294876, + -0.010624413378536701, + 0.04056816175580025, + 0.015338233672082424, + 0.00934215635061264, + 0.037588439881801605, + -0.014129248447716236, + -0.03863866999745369, + -0.02647554874420166, + -0.01676703430712223, + 0.028478311374783516, + -0.0017218876164406538, + -0.003190377028658986, + -0.006044924724847078, + -0.002489715116098523, + -0.00044688174966722727, + 0.023031774908304214, + 0.020711500197649002, + -0.0503133125603199, + 0.0052175638265907764, + 0.008658286184072495, + -0.009445957839488983, + 0.021285463124513626, + -0.0006342591368593276, + 0.016449522227048874, + -0.032312870025634766, + 0.004124592524021864, + 0.023911036550998688, + -0.03162899985909462, + 0.004710766952484846, + -0.004091009497642517, + -0.0372709296643734, + 0.017524175345897675, + -0.019783390685915947, + -0.00518092792481184, + -0.002205786993727088, + 0.011686854995787144, + 0.005083232186734676, + 0.030896281823515892, + -0.012474526651203632, + -0.017719566822052002, + 0.033094435930252075, + -0.02989490143954754, + 0.015460353344678879, + -0.007809554226696491, + -0.06047367304563522, + 0.0029537701047956944, + 0.004881734494119883, + -0.015179477632045746, + 0.024594906717538834, + -0.012834779918193817, + -0.044964469969272614, + 0.04630778729915619, + -0.02618246152997017, + -0.010648837313055992, + 0.037466321140527725, + 0.02006426639854908, + -0.02540089562535286, + 0.012303559109568596, + -0.005925857927650213, + -0.045379675924777985, + -0.025132233276963234, + -0.010221417993307114, + -0.016791457310318947, + -0.06506536900997162, + -0.01057556550949812, + -0.057591646909713745, + 0.011192269623279572, + -0.027476930990815163, + 0.004988589324057102, + -0.0009609293192625046, + 0.036391668021678925, + -0.016254130750894547, + -0.006673841271549463, + -0.008151489309966564, + -0.01473984681069851, + 0.006765430793166161, + 0.05275570601224899, + 0.029846053570508957, + -0.0003096878936048597, + -0.05656583979725838, + -0.05207183584570885, + 0.044475991278886795, + 0.0047474028542637825, + -0.03319213166832924, + 0.03382715582847595, + -0.006429601926356554, + 0.015961043536663055, + -0.015264961868524551, + 0.01988108642399311, + 0.011210587806999683, + 0.006484555546194315, + -0.0038040284998714924, + 0.0016791457310318947, + 0.03876078873872757, + -0.004066585563123226, + 0.06760545819997787, + -0.05558888241648674, + 0.01605873927474022, + 0.024729236960411072, + 0.013787313364446163, + -0.018891915678977966, + -0.024704813957214355, + -0.017829475924372673, + -0.02257993072271347, + 0.01138155534863472, + 0.013066806830465794, + -0.004521481692790985, + -0.010355750098824501, + -0.02480250969529152, + 0.0064723435789346695, + 0.05451422929763794, + -0.045672766864299774, + -0.005055755376815796, + -0.07219716161489487, + 0.054953861981630325, + -0.012419573031365871, + -0.048774603754282, + -0.0579824298620224, + -0.0012509636580944061, + 0.046991657465696335, + -0.028307344764471054, + -0.014324639923870564, + 0.04850594326853752, + -0.011070149950683117, + -0.03844327852129936, + 0.06941283494234085, + 0.0038131873589009047, + -0.0083224568516016, + -0.0017600500723347068, + -0.001492150011472404, + -0.031067250296473503, + 0.017951594665646553, + -0.03121379390358925, + -0.022860806435346603, + -0.0053671603091061115, + -0.002326380228623748, + -0.011467039585113525, + -0.029455270618200302, + -0.015582473017275333, + -0.026206886395812035, + -0.03756401687860489, + 0.043450187891721725, + 0.0024530792143195868, + -0.01527717337012291, + -0.07634922862052917, + 0.05607736110687256, + 0.010538929142057896, + -0.0020073424093425274, + 0.002940031699836254, + 0.024546058848500252, + -0.010386279784142971, + -0.006783748976886272, + -0.07302757352590561, + -0.05510040372610092, + -0.016815882176160812, + 0.01036185584962368, + 0.012785932049155235, + 0.009537547826766968, + 0.023495828732848167, + -0.059203628450632095, + 0.019307123497128487, + 0.013909433037042618, + -0.003599477931857109, + 0.00515039823949337, + 0.05632160231471062, + -0.048847876489162445, + -0.048554789274930954, + 0.017866110429167747, + 0.007626374717801809, + 0.019746754318475723, + -0.03187324106693268, + -0.04071470722556114, + -0.022005967795848846, + 0.012413466349244118, + 0.009940543211996555, + -0.00646623782813549, + 0.032923467457294464, + -0.07058518379926682, + -0.044231753796339035, + 0.026524396613240242, + 0.03143360838294029, + -0.03580549359321594, + 0.0075775268487632275, + 0.004881734494119883, + -0.010563353076577187, + 0.02036956511437893, + -0.014031552709639072, + 0.01898961141705513, + 0.022091452032327652, + 0.03539028763771057, + -0.006069348659366369, + 0.01636403799057007, + 0.023337073624134064, + -0.014422335661947727, + 0.008572802878916264, + 0.02330043725669384, + -0.04362115263938904, + 0.011717384681105614, + 0.03475526347756386, + 0.051485661417245865, + 0.028893519192934036, + -0.029430845752358437, + -0.033460795879364014, + 0.03924926742911339, + -0.052560314536094666, + 0.01796380616724491, + 0.014520031400024891, + 0.05641929805278778, + -0.03876078873872757, + 0.07840084284543991, + -0.06062021479010582, + 0.01569238118827343, + 0.01665712520480156, + 0.04276631772518158, + 0.03641609102487564, + -0.04293728247284889, + -0.015582473017275333, + -0.0064418138936161995, + -0.024350667372345924, + 0.07766812294721603, + -0.04186262935400009, + 0.0010395438876003027, + -0.025083385407924652, + -0.033582914620637894, + -0.00984895322471857, + -0.008792618289589882, + 0.026158038526773453, + -0.010593883693218231, + -0.01081369910389185, + -0.001375372987240553, + -0.011021302081644535, + -0.015619108453392982, + 0.004277242347598076, + 0.02916218340396881, + 0.01317671500146389, + 0.058910541236400604, + 0.02527877688407898, + -0.004313878249377012, + 0.006698265206068754, + -0.011729596182703972, + 0.02916218340396881, + 0.013262198306620121, + -0.015838924795389175, + 0.02306840941309929, + 0.03922484442591667, + 0.033460795879364014, + 0.016400674358010292, + -0.013555285520851612, + 0.032434988766908646, + -0.06897320598363876, + -0.007034094072878361, + 0.012095955200493336, + 0.0003659774665720761, + -0.03179996833205223, + 0.011943305842578411, + -0.0622810423374176, + -0.02067486383020878, + -0.009220036678016186, + 0.041887056082487106, + -0.00464360136538744, + -0.003281966783106327, + -0.00342240440659225, + 0.020467260852456093, + -0.037222083657979965, + 0.005275570787489414, + 0.018782008439302444, + 0.04672299325466156, + 0.03832115978002548, + 0.030334532260894775, + 0.02659766934812069, + 0.03485295921564102, + -0.03072531521320343, + 0.0022134194150567055, + 0.0017554705264046788, + 0.016498370096087456, + -0.027086148038506508, + 0.029186606407165527, + 0.009067387320101261, + 0.01665712520480156, + 0.009995496831834316, + 0.013579709455370903, + -0.009690197184681892, + -0.03211747854948044, + -0.011021302081644535, + 0.025254352018237114, + -0.04127645492553711, + -0.003483464242890477, + 0.053048793226480484, + -0.0464787557721138, + 0.04388981685042381, + 0.025352047756314278, + 0.012553904205560684, + 0.03204420581459999, + 0.06868011504411697, + 0.009366580285131931, + 0.018476709723472595, + 0.025840526446700096, + 0.011283859610557556, + -0.032019782811403275, + -0.019563574343919754, + 0.008957479149103165, + 0.02018638513982296, + -0.0072355917654931545, + -0.0012631756253540516, + -0.0011509781470522285, + -0.004726032260805368, + -0.026377853006124496, + 0.05607736110687256, + -0.032923467457294464, + 0.02755020186305046, + -0.00958639569580555, + 0.005675512831658125, + -0.02803868055343628, + 0.022506659850478172, + 0.025254352018237114, + -0.029992597177624702, + 0.005397690460085869, + 0.018537769094109535, + 0.004826780874282122, + 0.03585434332489967, + -0.005727413576096296, + -0.029137758538126945, + 0.013140078634023666, + 0.03311885893344879, + -0.02419191040098667, + -0.023862188681960106, + -0.0409589447081089, + -0.024094214662909508, + 0.03258153423666954, + 0.005348842591047287, + 0.006026607006788254, + 0.050704095512628555, + -0.013066806830465794, + -0.015594684518873692, + -0.04247323051095009, + -0.03319213166832924, + -0.010435127653181553, + -0.013579709455370903, + -0.023520253598690033, + 0.07107365876436234, + 0.008871995843946934, + -0.07840084284543991, + -0.02121219038963318, + 0.000941848149523139, + -0.017951594665646553, + -0.009415428154170513, + 0.012834779918193817, + 0.006047977600246668, + 0.02035735361278057, + -0.01587555930018425, + 0.06071791052818298, + -0.007333287503570318, + 0.033143285661935806, + 0.048896726220846176, + -0.017035696655511856, + 0.023080622777342796, + -0.002599623054265976, + 0.017353208735585213, + 0.06667735427618027, + 0.0316045768558979, + 0.008554484695196152, + -0.02406979165971279, + 0.023862188681960106, + -0.0029827735852450132, + 0.003858982352539897, + 0.01036185584962368, + -0.05871514976024628, + -0.004796250723302364, + -0.046381060034036636, + 0.007742388639599085, + -0.00901853945106268, + -0.012590540573000908, + -0.020809195935726166, + 0.007730176672339439, + 0.05485616624355316, + -0.02474145032465458, + -0.028356192633509636, + -0.005171768832951784, + 0.03238614276051521, + -0.020589379593729973, + 0.013885009102523327, + 0.012810355983674526, + 0.08978239446878433, + 0.029259879142045975, + -0.04911654070019722, + -0.07796121388673782, + 0.011656324379146099, + -0.017682932317256927, + 0.006136514712125063, + 0.0012906525516882539, + -0.012285240925848484, + 0.01975896582007408, + -0.04599027708172798, + -0.053586121648550034, + -0.04205802083015442, + 0.00904906913638115, + 0.004771826788783073, + 0.029259879142045975, + -0.007748494390398264, + -0.007565314881503582, + 0.03636724501848221, + -0.023862188681960106, + -0.054758470505476, + 0.03031010739505291, + 0.029064487665891647, + 0.015729015693068504, + 0.011235011741518974, + 0.015533625148236752, + -0.0005308390245772898, + 0.000865523295942694, + 0.024655966088175774, + -0.011692960746586323, + 0.011277753859758377, + 0.004564223345369101, + 0.0025980963837355375, + 0.015704592689871788, + 0.04440271854400635, + 0.009165083058178425, + -0.0013005747459828854, + -0.02138315886259079, + 0.05329303443431854, + -0.0020455047488212585, + -0.0033002847339957952, + -0.0025736724492162466, + -0.0061700972728431225, + 0.010044344700872898, + -0.036440517753362656, + 0.03661148250102997, + -0.010410703718662262, + -0.007864507846534252, + 0.05114372819662094, + -0.04733359441161156, + 0.011235011741518974, + -0.06413726508617401, + -0.015961043536663055, + -0.012315770611166954, + -0.012260816991329193, + -0.02210366353392601, + 0.021004587411880493, + -0.026573244482278824, + 0.048847876489162445, + -0.01713339239358902, + -0.004145963583141565, + -0.001263938844203949, + 0.01114342175424099, + 0.03158015385270119, + 0.024729236960411072, + -0.0059716529212892056, + -0.04931193217635155, + -0.026499973610043526, + -0.050411008298397064, + -0.016461733728647232, + -0.004191758576780558, + -0.011851715855300426, + -0.02689075656235218, + 0.031042825430631638, + -0.027843289077281952, + 0.006338011939078569, + -0.014422335661947727, + 0.020210810005664825, + -0.003391874488443136, + 0.014324639923870564, + 0.06633541733026505, + 0.06755661219358444, + -0.013640769757330418, + 0.006072401534765959, + -0.01188835222274065, + -0.02718384377658367, + -0.03978659585118294, + 0.03683130070567131, + -0.06516306847333908, + -0.010441233403980732, + 0.016266342252492905, + -0.005229775793850422, + -0.012199757620692253, + 0.013872796669602394, + -0.021541913971304893, + -0.014520031400024891, + -0.0632091537117958, + 0.025303199887275696, + 0.008011051453649998, + -0.04066585749387741, + -0.024582693353295326, + -0.0038528763689100742, + 0.02282417006790638, + 0.012224181555211544, + -0.03905387595295906, + -0.04252207651734352, + -0.007589738816022873, + -0.017353208735585213, + -0.0009723780676722527, + -0.009250566363334656, + 0.0022821116726845503, + 2.5711919079185463e-05, + 0.016852516680955887, + -0.005281676538288593, + 0.005220616701990366, + -0.024289606139063835, + 0.0263045821338892, + -0.018904129043221474, + 0.04132530465722084, + -0.027354810386896133, + 0.0009945122292265296, + -0.006447919644415379, + -0.007675222586840391, + -0.04174051061272621, + 0.027867713943123817, + -0.032850198447704315, + 0.009977178648114204, + -0.02486356906592846, + -0.020748136565089226, + -0.005159556865692139, + 0.0074187712743878365, + -0.0006018211133778095, + 0.02486356906592846, + -0.010068768635392189, + -0.03187324106693268, + -0.0191727913916111, + 0.03521931916475296, + -0.024277394637465477, + -0.022506659850478172, + -0.0037460215389728546, + -0.013103443197906017, + -0.007595845032483339, + 0.0011067097075283527, + -0.031287066638469696, + 0.014214731752872467, + 0.03360733762383461, + 0.009061281569302082, + -0.01989329792559147, + 0.01218754518777132, + -0.02342255786061287, + -0.0012173806317150593, + 0.033143285661935806, + 0.02486356906592846, + -0.001581449992954731, + 0.01831795461475849, + 0.004848151933401823, + -0.024704813957214355, + 0.053830359131097794, + -0.009763468988239765, + 0.0077057527378201485, + 0.03324098140001297, + -0.02144421823322773, + 0.03990871459245682, + 0.03446217626333237, + -0.024839146062731743, + -0.03319213166832924, + 0.03922484442591667, + 0.01898961141705513, + 0.005080179311335087, + -0.0017020432278513908, + -0.007748494390398264, + -0.006594463251531124, + -0.030285684391856194, + -0.057591646909713745, + -0.009836740791797638, + -0.044769078493118286, + 0.004799304064363241, + -0.0028148589190095663, + 0.008694922551512718, + -0.003956677857786417, + -0.0008548378245905042, + 0.02066265232861042, + -0.007699646521359682, + 0.004817621782422066, + 0.018549980595707893, + -0.027599049732089043, + 0.012291346676647663, + 0.019014036282896996, + -0.0051931398920714855, + -0.022836383432149887, + 0.0007029514526948333, + -0.00023069173039402813, + -0.02413085103034973, + 0.006753218825906515, + 0.024167487397789955, + -0.010770956985652447, + 0.006252528168261051, + -0.03414466604590416, + 0.017218876630067825, + 0.03155572712421417, + -0.050948336720466614, + -0.039151571691036224, + 0.02156633697450161, + -0.027770018205046654, + 0.013384317979216576, + -0.0009548233356326818, + 4.534170511760749e-05, + -0.024643754586577415, + -0.007272227667272091, + 0.02119997888803482, + -0.018952976912260056, + 0.018354589119553566, + 0.019844450056552887, + -0.012120379135012627, + -0.05285340175032616, + 0.004426838830113411, + -0.041178759187459946, + 0.009274990297853947, + -0.02730596251785755, + -0.029088910669088364, + -0.0006147962994873524, + -0.019453667104244232, + -0.0056694066151976585, + 0.03409581631422043, + 0.002715636743232608, + -0.00342240440659225, + 0.007528678979724646, + -0.042448803782463074, + 0.03223959729075432, + -0.025791678577661514, + 0.005009960383176804, + 0.005223670043051243, + -0.025229929015040398, + 0.009647455997765064, + -0.008597226813435555, + -0.007882826030254364, + 0.0034590403083711863, + -0.028307344764471054, + 0.03035895526409149, + -0.015521412715315819, + 0.018305741250514984, + 0.019929934293031693, + 0.0018043185118585825, + 0.0025889375247061253, + 0.017499752342700958, + 0.00012221510405652225, + 0.001973759615793824, + 0.012712660245597363, + 0.002961402526125312, + -0.01684030517935753, + 0.0053457897156476974, + -0.04809073358774185, + 0.002106564585119486, + 0.024546058848500252, + -0.008469000458717346, + -0.019929934293031693, + -0.011338813230395317, + 0.010410703718662262, + 0.0020317663438618183, + 0.003920041956007481, + -0.013994916342198849, + -0.031164946034550667, + 0.05754280090332031, + -0.038296736776828766, + -0.0227020513266325, + -0.030041445046663284, + 0.00829192716628313, + -0.016278555616736412, + 0.005565605126321316, + 0.013604133389890194, + 0.004851204808801413, + 0.00622810423374176, + 0.0033521854784339666, + -0.024167487397789955, + 0.01317671500146389, + -0.03265480697154999, + 0.037637289613485336, + -0.02354467660188675, + -0.015142842195928097, + 0.00324838375672698, + -0.001955441664904356, + 0.019978782162070274, + -0.026158038526773453, + -0.022616567090153694, + -0.009806211106479168, + 0.011357131414115429, + -0.0355856791138649, + 0.014825331047177315, + 0.010728214867413044, + -0.007479831110686064, + -0.036269549280405045, + -0.011613583192229271, + -0.019075095653533936, + -0.01033743191510439, + -0.014373487792909145, + 0.026158038526773453, + -0.03265480697154999, + -0.0047321380116045475, + 0.04239995777606964, + 0.04230226203799248, + -0.00802936963737011, + -0.005080179311335087, + 0.025498591363430023, + -0.0037734985817223787, + -0.07493264228105545, + -0.053341880440711975, + -0.021053435280919075, + 0.02043062448501587, + 0.010783168487250805, + 0.012004366144537926, + -0.002230210928246379, + -0.01641288585960865, + -0.09398331493139267, + -0.010013815015554428, + 0.01754860021173954, + -0.04086124897003174, + -0.020332928746938705, + -0.017206665128469467, + 0.010966348461806774, + 0.0005205351626500487, + 0.02395988442003727, + -0.053097642958164215, + 0.026329005137085915, + -0.010099298320710659, + -0.005699936766177416, + 0.018110349774360657, + -0.006127355620265007, + 0.016632702201604843, + 0.04413405805826187, + -0.003297231625765562, + 0.02143200673162937, + -0.001644036383368075, + -0.01161968894302845, + -0.02623130939900875, + 0.015973255038261414, + -0.008096535690128803, + -0.02701287530362606, + 0.0075469971634447575, + -0.005577817093580961, + 0.003605583915486932, + 0.018488921225070953, + 0.016083164140582085, + 0.029870476573705673, + 0.05485616624355316, + -0.011912776157259941, + 0.022506659850478172, + -0.01240125484764576, + -0.02544974349439144, + 0.023190530017018318, + 0.04420732706785202, + 0.00453674653545022, + 0.033094435930252075, + 0.03546356037259102, + 0.013311046175658703, + 0.032801348716020584, + 0.01270044781267643, + 0.033338677138090134, + -0.002384386956691742, + -0.03167784959077835, + -0.010117616504430771, + -0.012590540573000908, + 0.013042382895946503, + 0.020455049350857735, + -0.015777863562107086, + 0.05109487846493721, + 0.013298834674060345, + 0.02491241693496704, + 0.039420235902071, + -0.03844327852129936, + -0.02491241693496704, + -0.024509422481060028, + -0.020039841532707214, + 0.01796380616724491, + 0.01503293402493, + -0.005296941846609116, + -0.023349285125732422, + -0.00781565997749567, + -0.007656904868781567, + -0.03138476237654686, + -0.028136376291513443, + -0.02192048542201519, + -0.003272807691246271, + 0.0027522726450115442, + 0.010709896683692932, + -0.025181081146001816, + 0.02210366353392601, + -0.0021126705687493086, + 0.018940763548016548, + 0.005675512831658125, + -0.02066265232861042, + 0.0139582809060812, + -0.03248383849859238, + 0.027989832684397697, + 0.051192574203014374, + -0.018366802483797073, + -0.003013303503394127, + -0.026524396613240242, + 0.00531831244006753, + -0.012047107331454754, + 0.053048793226480484, + 0.027770018205046654, + 0.03695341944694519, + 0.027330387383699417, + 0.01216312125325203, + -0.0210900716483593, + -0.01892855204641819, + -0.011491463519632816, + 0.01911173202097416, + -0.018342377617955208, + -0.03397369757294655, + 0.0090124337002635, + -0.0003352567146066576, + -0.006246422417461872, + 0.02593822218477726, + -0.0075531029142439365, + 0.002176783513277769, + 0.03741747513413429, + 0.051241423934698105, + 0.0366603322327137, + -0.0028331768698990345, + -0.0317511186003685, + -0.032190751284360886, + -0.013921644538640976, + -0.035194896161556244, + 0.018647676333785057, + 0.044720232486724854, + -0.02803868055343628, + -0.013701829127967358, + -0.01785389892756939, + -0.008633862249553204, + 0.00490921176970005, + 0.002158465562388301, + -0.003932253923267126, + 0.01245620846748352, + -0.026573244482278824, + 0.012517268769443035, + 0.005458750296384096, + -0.009116235189139843, + -0.0020638226997107267, + 0.011326601728796959, + -0.03170227259397507, + -0.01581449992954731, + -0.0039536249823868275, + 0.01299353502690792, + -0.038125768303871155, + 0.027843289077281952, + -0.02689075656235218, + -0.02647554874420166, + 0.02253108285367489, + 0.001270808046683669, + -0.013555285520851612, + 0.009470381774008274, + -0.022677626460790634, + -0.03653821349143982, + -0.023569101467728615, + -0.0013524756068363786, + 0.006991352420300245, + 0.016852516680955887, + -0.007760706357657909, + 0.010502293705940247, + -0.016815882176160812, + -0.05207183584570885, + 0.0030636778101325035, + 0.008737663738429546, + 0.014178096316754818, + 0.02916218340396881, + -0.07361374795436859, + 0.016193071380257607, + -0.0010944977402687073, + -0.04960501939058304, + 0.01684030517935753, + 0.003974996041506529, + -0.04977598786354065, + 0.013249986805021763, + 0.023263800889253616, + 0.0035201001446694136, + -0.01983223855495453, + -0.03521931916475296, + -0.01089918240904808, + 0.0026988452300429344, + 0.03348521888256073, + -0.028527161106467247, + -0.02718384377658367, + -0.004002472851425409, + -0.003498729085549712, + 0.01682809367775917, + 0.0007227959576994181, + 0.007492043077945709, + 0.04098336771130562, + -0.03709996119141579, + -0.03353406861424446, + 0.022848594933748245, + -0.010404597967863083, + -0.010429021902382374, + -0.03612300381064415, + 0.009409322403371334, + 0.027354810386896133, + -0.03121379390358925, + 0.01622970774769783, + 0.020137537270784378, + 0.02977278083562851, + 0.006460131611675024, + 0.02671978808939457, + 0.01844007335603237, + -0.0031323700677603483, + 0.000841099361423403, + -0.0009151344420388341, + 0.02107785828411579, + 0.008475106209516525, + 0.009659667499363422, + -0.0014104824513196945, + 0.010313007980585098, + 0.05085064098238945, + -0.0061456733383238316, + 0.03302116319537163, + -0.008633862249553204, + 0.00045985696488060057, + -0.006850914563983679, + -0.01653500646352768, + -0.01947809010744095, + -0.022628778591752052, + 0.04078797623515129, + 0.038370005786418915, + -0.01647394709289074, + -0.006356330122798681, + 0.03885848447680473, + -0.026524396613240242, + 0.002330959541723132, + -0.010490081273019314, + -0.007644692901521921, + -0.03294789418578148, + -0.008853677660226822, + 0.014910814352333546, + -0.050166770815849304, + -0.035781070590019226, + 0.016730397939682007, + -0.010648837313055992, + 0.034950654953718185, + 0.0185621939599514, + -0.011277753859758377, + 0.011265541426837444, + 0.011961624026298523, + -0.010893076658248901, + 0.010343537665903568, + 0.01215701550245285, + -0.0017707354854792356, + 0.011247223243117332, + -0.028258496895432472, + 0.03731977939605713, + 0.01239514909684658, + 0.0028911838307976723, + -0.013677405193448067, + -0.0010777063434943557, + -0.012053214013576508, + 0.0316045768558979, + 7.312870729947463e-05, + -0.013286622241139412, + 0.02606034278869629, + 0.007223379798233509, + -0.0006674604373984039, + 0.017328783869743347, + 0.00103343790397048, + -0.023703431710600853, + 0.0038803531788289547, + -0.006301376037299633, + -0.009488699957728386, + 0.039981987327337265, + -0.01796380616724491, + 0.024033155292272568, + 0.01929491199553013, + -0.0075531029142439365, + -0.015460353344678879, + -0.0004071928560733795, + 0.03380272909998894, + 0.044524841010570526, + 0.019502514973282814, + -0.011576946824789047, + 0.008884207345545292, + -0.032801348716020584, + -0.009097917005419731, + 0.040519315749406815, + -0.02911333553493023, + -0.011363237164914608, + 0.0019615476485341787, + 0.019453667104244232, + -0.004069638904184103, + 0.027232691645622253, + -0.0003098787274211645, + 0.004857310559600592, + -0.034877385944128036, + -0.01616864651441574, + -0.03731977939605713, + -0.030261259526014328, + 0.013555285520851612, + -0.010825910605490208, + 0.0263045821338892, + 0.007168426178395748, + 0.004707714077085257, + -0.015203901566565037, + -0.01165021862834692, + 0.005235882010310888, + 0.00620062742382288, + 0.028258496895432472, + 0.03646494075655937, + 0.02073592320084572, + -0.05392805486917496, + -0.0012486738851293921, + -0.009732939302921295, + -0.017695143818855286, + -0.014129248447716236, + -0.023495828732848167, + -0.02115113101899624, + 0.03360733762383461, + -0.023679008707404137, + 0.019624633714556694, + 0.016620490700006485, + 0.008670498616993427, + -0.03419351577758789, + 0.00805989932268858, + -0.03316770866513252, + 0.02701287530362606, + -0.01785389892756939, + -0.018256893381476402, + 0.014275792054831982, + 0.025669559836387634, + 0.02828291989862919, + -0.04655202850699425, + 0.042497653514146805, + 0.018977399915456772, + 0.0035170470364391804, + -0.011784550733864307, + -0.00023164579761214554, + 0.0026011494919657707, + -0.0018440074054524302, + 0.035072777420282364, + -0.014458972029387951, + -0.032068632543087006, + 0.006655523087829351, + 0.008151489309966564, + -0.01737763173878193, + 0.01404376421123743, + 0.019014036282896996, + 0.006765430793166161, + 0.009415428154170513, + -0.04723589867353439, + -0.015130629763007164, + -0.05617505684494972, + 0.036391668021678925, + -0.010465657338500023, + -0.04467138275504112, + -0.0038895122706890106, + 0.008249185048043728, + 0.025620711967349052, + -0.005009960383176804, + -0.012578328140079975, + -0.00925667304545641, + -0.010581671260297298, + -0.005358001682907343, + -0.005681618582457304, + 0.019746754318475723, + 0.024594906717538834, + 0.022628778591752052, + 0.0612063892185688, + 0.007198955863714218, + -0.05021561682224274, + -0.01321335043758154, + 0.022189147770404816, + 0.0056388769298791885, + 0.0134209543466568, + -0.005989971105009317, + -0.03424236178398132, + -0.04840824753046036, + -0.0077362824231386185, + 0.008310245350003242, + 0.05065524950623512, + -0.006127355620265007, + 0.0038223464507609606, + -0.0006380754057317972, + -0.041178759187459946, + -0.01404376421123743, + 0.0048908935859799385, + -0.011057938449084759, + 0.011308283545076847, + -0.006527297664433718, + -0.010404597967863083, + 0.011534204706549644, + 0.03607415780425072, + 0.005590029060840607, + 0.0316045768558979, + -0.007479831110686064, + 0.01524053793400526, + 0.00518092792481184, + -0.003407139331102371, + -0.045379675924777985, + 0.05470962077379227, + 0.01348201371729374, + -0.01110678631812334, + -0.006484555546194315, + 0.011222799308598042, + -0.01814698614180088, + -0.021773941814899445, + 0.024778084829449654, + -0.03355849161744118, + 0.037588439881801605, + 0.008639968000352383, + 0.008841466158628464, + 0.016669338569045067, + 0.024900205433368683, + 0.03265480697154999, + -0.00310031371191144, + -0.02222578413784504, + -0.005324418656527996, + 0.030774163082242012, + -0.00907349307090044, + 0.022836383432149887, + -0.03434005752205849, + 0.0008456788491457701, + -0.03597646206617355, + -0.0035689480137079954, + -0.027721170336008072, + 0.029675085097551346, + 0.01988108642399311, + -0.023752279579639435, + 5.194857294554822e-05, + -0.0062891640700399876, + -0.0017692090477794409, + 0.007492043077945709, + 0.008035475388169289, + 0.012004366144537926, + 0.004555064719170332, + -0.017634084448218346, + 0.0022790587972849607, + -0.002433234825730324, + -0.013164502568542957, + -0.012749295681715012, + 0.02808752842247486, + 0.004319984000176191, + 0.009903906844556332, + 0.0002539707929827273, + -0.016144223511219025, + -0.019307123497128487, + -0.004069638904184103, + -0.028136376291513443, + -0.033143285661935806, + -0.04152069613337517, + 0.0013135499320924282, + 0.005403796210885048, + 0.024228546768426895, + 0.031164946034550667, + 0.004628336522728205, + -0.010441233403980732, + -0.0022225785069167614, + -0.030285684391856194, + -0.002735481131821871, + 0.03595203906297684, + -0.010245841927826405, + 0.021725093945860863, + 0.007241697981953621, + -0.020198596641421318, + 0.020809195935726166, + -0.022665414959192276, + -0.007437089458107948, + 0.02330043725669384, + -0.043938666582107544, + 0.01808592677116394, + 0.008163701742887497, + -0.023373709991574287, + 0.01773178018629551, + -0.03341194614768028, + -0.008066006004810333, + -0.004799304064363241, + 0.007540890946984291, + -0.005354948341846466, + -0.021480854600667953, + 0.051485661417245865, + 0.0037582335062325, + -0.021114494651556015, + 0.013823948800563812, + -0.02181057631969452, + -0.005416008178144693, + 0.0017020432278513908, + -0.020223021507263184, + -0.011186163872480392, + 0.005904487334191799, + 0.01611979864537716, + -0.009873377159237862, + -0.01012372225522995, + 0.016730397939682007, + 0.0014532243367284536, + -0.016070950776338577, + -0.022787535563111305, + -0.023214953020215034, + 0.0284538883715868, + 0.022067029029130936, + -0.011002983897924423, + -0.005648035556077957, + 0.004381043836474419, + -0.024692602455615997, + -0.020516108721494675, + 0.01701127365231514, + -0.013408741913735867, + 0.01837901398539543, + 0.0009151344420388341, + 0.009097917005419731, + 0.007156214211136103, + -0.014324639923870564, + 0.049385204911231995, + 0.010465657338500023, + -0.013017958961427212, + -0.027061723172664642, + -0.011851715855300426, + 0.007461513392627239, + 0.012327983044087887, + -0.0038620352279394865, + -0.004481792915612459, + 0.01730436086654663, + 0.0077851302921772, + -0.02036956511437893, + -0.0051626102067530155, + -0.009494805708527565, + 0.0131522910669446, + -0.03018798865377903, + 0.01215701550245285, + 0.0015264961402863264, + 0.006109037436544895, + -0.020100900903344154, + -0.0012532533146440983, + 0.030700890347361565, + -0.011009090580046177, + -0.0155702605843544, + -0.002735481131821871, + 0.0008113327203318477, + -0.01083812303841114, + -0.006618887186050415, + -0.01690136454999447, + 0.011027407832443714, + 0.009097917005419731, + -0.0009632190922275186, + 0.008817042224109173, + 0.037954799830913544, + -0.043157100677490234, + -0.004961112514138222, + -0.005272517912089825, + 0.02198154479265213, + 0.009757363237440586, + 0.004814568907022476, + -0.04191147908568382, + 0.006881444714963436, + -0.010349644348025322, + 0.0028530212584882975, + 0.017719566822052002, + -0.008066006004810333, + -0.029015639796853065, + 0.011912776157259941, + -0.0022424228955060244, + -0.025913799181580544, + 0.03954235464334488, + 0.015655744820833206, + -0.011906670406460762, + 0.008407941088080406, + -0.013616345822811127, + -0.004258924163877964, + 0.0021645715460181236, + -0.01009319256991148, + -0.021419793367385864, + -0.04767552763223648, + -0.014104824513196945, + -0.009122340939939022, + -0.003898671129718423, + 0.023324862122535706, + 0.016632702201604843, + -0.0013181294780224562, + -0.025254352018237114, + -0.018403436988592148, + -0.0038040284998714924, + -0.0008556011016480625, + -0.023105045780539513, + 0.0016745663015171885, + -0.04069028049707413, + 0.006060189567506313, + 0.011955518275499344, + 0.016425099223852158, + -0.0005171005614101887, + 0.007742388639599085, + 0.05500270798802376, + 0.03700226545333862, + -0.014104824513196945, + 0.021456429734826088, + 0.004704661201685667, + -0.023911036550998688, + -0.003739915555343032, + -0.0035689480137079954, + 0.005400743335485458, + 0.019062884151935577, + -0.028551584109663963, + 0.03700226545333862, + 0.0047321380116045475, + -0.010190888307988644, + 0.024228546768426895, + -0.02084583230316639, + -0.02245781198143959, + 0.00987948291003704, + -0.01375067699700594, + 0.0032361717894673347, + -0.024399515241384506, + 0.0005690014222636819, + -0.0004010868724435568, + -0.03372946009039879, + 0.014422335661947727, + -0.009720727801322937, + 0.010819804854691029, + -0.023398132994771004, + -0.009513123892247677, + 0.014129248447716236, + -0.0013059175107628107, + -0.017328783869743347, + -0.0031323700677603483, + -0.00045184287591837347, + 0.006618887186050415, + -0.027232691645622253, + 0.0030590982642024755, + -0.0205527450889349, + 0.005040490534156561, + 0.008426258340477943, + -0.04125203192234039, + -0.01581449992954731, + 0.002225631382316351, + 0.007144002243876457, + -0.005095444153994322, + 0.017389845103025436, + -0.005055755376815796, + 0.010453445836901665, + 0.010477869771420956, + 0.002793487859889865, + -0.001205931999720633, + 0.008939161896705627, + -0.04149627313017845, + 0.007302757818251848, + 0.027623474597930908, + -0.023398132994771004, + 0.02192048542201519, + -0.037954799830913544, + 0.02779444120824337, + -0.05402575060725212, + 0.012614964507520199, + -0.009091811254620552, + 0.02820964902639389, + -0.018549980595707893, + -0.01785389892756939, + 0.035072777420282364, + 0.005248093977570534, + 0.021456429734826088, + 0.029064487665891647, + -0.011576946824789047, + 0.007168426178395748, + -0.014874178916215897, + 0.020137537270784378, + 0.008224761113524437, + 0.030285684391856194, + -0.035365864634513855, + 0.0038223464507609606, + 0.0014890970196574926, + 0.019270487129688263, + 0.009806211106479168, + 0.01923385076224804, + 0.01935597136616707, + 0.008859783411026001, + 0.02402094379067421, + 0.017035696655511856, + 0.014544455334544182, + -0.024949053302407265, + 0.006557827349752188, + 0.0007430220139212906, + 0.0073943473398685455, + -0.023984307423233986, + -0.013298834674060345, + -0.012541692703962326, + -0.013115654699504375, + -0.011180058121681213, + -0.009183401241898537, + -0.009403216652572155, + 0.03018798865377903, + 0.032850198447704315, + -0.01317671500146389, + 0.029723932966589928, + -0.017597448080778122, + 0.019136155024170876, + -0.0010372541146352887, + -0.001686778268776834, + -0.008523954078555107, + -0.000779657915700227, + -0.017951594665646553, + 0.03304558992385864, + 0.023129470646381378, + 0.031287066638469696, + 0.005412955302745104, + 0.0002978575648739934, + -0.042668621987104416, + -0.007400453556329012, + -0.02928430214524269, + 0.006747113075107336, + -0.01677924580872059, + -0.014214731752872467, + -0.005412955302745104, + -0.03184881433844566, + 0.02468038909137249, + 0.011393767781555653, + 0.004210076294839382, + 0.04132530465722084, + -0.005110708996653557, + 0.00382539932616055, + 0.028527161106467247, + 0.03595203906297684, + 0.0134209543466568, + -0.013616345822811127, + 0.0009097917354665697, + -0.034584298729896545, + 0.0002707622479647398, + -0.021590761840343475, + 0.0033796625211834908, + -0.008542272262275219, + 0.02247002348303795, + 0.03260595723986626, + 0.03839443251490593, + 0.013262198306620121, + -0.0037551806308329105, + 0.019075095653533936, + -0.008182018995285034, + 0.02510780841112137, + -0.07253909856081009, + 0.006081560626626015, + -0.019514726474881172, + 0.0005785420653410256, + 0.01814698614180088, + 0.05641929805278778, + -0.03084743395447731, + -5.738671461585909e-05, + -0.021297674626111984, + -0.04706493020057678, + -0.01622970774769783, + -0.010416809469461441, + 0.012602752074599266, + 0.03277692571282387, + -0.0213220976293087, + -0.015289385803043842, + -0.0057823676615953445, + 0.029626237228512764, + -0.00853616651147604, + -0.05803127959370613, + -0.017560811713337898, + 0.017218876630067825 + ], + "how_to_setup_crude_oil_production": [ + -0.05198383703827858, + 0.019580086693167686, + 0.030422359704971313, + 0.006171850021928549, + 0.026385735720396042, + 0.0027936389669775963, + -0.007384067866951227, + -0.019075509160757065, + 0.01672491431236267, + -0.0006941793253645301, + 0.06990250945091248, + 0.005624198354780674, + -0.040587760508060455, + 0.00025421191821806133, + 0.034655891358852386, + 0.009543907828629017, + -0.031554583460092545, + 0.045879676938056946, + 0.01418971735984087, + 0.02100767381489277, + 0.02786255069077015, + -0.03327753394842148, + -0.011525299400091171, + -0.025019682943820953, + 0.02441665157675743, + -0.026878006756305695, + 0.034655891358852386, + 0.06020476669073105, + -0.005064239725470543, + -0.010183860547840595, + 0.04647039994597435, + -0.013352856040000916, + -0.05188538506627083, + 0.0494486428797245, + 0.02173377387225628, + -0.02847788855433464, + 0.004895021673291922, + 0.019260110333561897, + 0.0036951107904314995, + 0.020983058959245682, + -0.011500685475766659, + -0.021979909390211105, + -0.05050702393054962, + 0.013968194834887981, + -0.02088460512459278, + 0.02078615128993988, + -0.01459584105759859, + 0.013352856040000916, + 0.04957170784473419, + 0.052771471440792084, + -0.007347147446125746, + 0.010848426260054111, + -0.05966326966881752, + -0.042778365314006805, + 0.006424139253795147, + -0.043615229427814484, + -0.023862846195697784, + 0.007968639954924583, + -0.01272521074861288, + -0.03157919645309448, + 0.02921629510819912, + 0.024465879425406456, + 0.012288319878280163, + 0.019297031685709953, + -0.017327945679426193, + 0.013931275345385075, + -0.04489513486623764, + 0.047233421355485916, + -0.026656486093997955, + 0.025278126820921898, + -0.0015706528211012483, + 0.01599881425499916, + -0.018521703779697418, + 0.02140149101614952, + 0.025696557015180588, + -0.04698728770017624, + -0.04093234986066818, + 0.03615732118487358, + -0.02953627146780491, + -0.03251451253890991, + -0.03834792599081993, + -0.048291806131601334, + -0.04971938952803612, + -0.0343359149992466, + 0.00457196868956089, + -0.04779953509569168, + -0.048587165772914886, + -0.013894354924559593, + -0.035591207444667816, + -0.04967016354203224, + -0.0033351373858749866, + 0.03524661809206009, + 0.0061010862700641155, + 0.05434674024581909, + 0.03844638168811798, + -0.0160234272480011, + 0.01672491431236267, + -0.022693702951073647, + 0.002693646354600787, + 0.03805256262421608, + 0.031062312424182892, + -0.046519629657268524, + -0.03369596228003502, + -0.026976462453603745, + 0.05405137687921524, + 0.001946009579114616, + -0.014386625960469246, + 0.04836564511060715, + -0.014017422683537006, + -0.04565815255045891, + -0.06168157979846001, + -0.012220632284879684, + 0.03482818603515625, + 0.02963472530245781, + 0.003295140340924263, + 0.045264337211847305, + -0.005208844784647226, + 0.01633109711110592, + 0.034360527992248535, + -0.013488231226801872, + -0.07974793761968613, + -0.016700301319360733, + 0.015125032514333725, + -0.018866293132305145, + 0.04649501293897629, + -0.015112726017832756, + 0.01310672052204609, + 0.016712607815861702, + -0.019617008045315742, + 0.028034845367074013, + -0.06114008277654648, + 0.02392438054084778, + 0.04514126852154732, + -0.027813322842121124, + 0.011211476288735867, + -0.052033066749572754, + -0.009586981497704983, + 0.004015087150037289, + 0.016244949772953987, + 0.010909960605204105, + 0.030299292877316475, + -0.06817956268787384, + -0.03443437069654465, + 0.02337057515978813, + -0.031456127762794495, + 0.0038889425341039896, + -0.03728954493999481, + -0.06000785902142525, + -0.00410123448818922, + -0.0008445527637377381, + -0.015740372240543365, + -0.008965489454567432, + -0.030791563913226128, + -0.02909322828054428, + -0.01705719716846943, + -0.04031701013445854, + -0.01695874333381653, + 0.05636505037546158, + -0.026681099086999893, + -0.019567780196666718, + -0.03785565495491028, + 0.004999629221856594, + -0.01054691057652235, + 0.0058272602036595345, + -0.030496200546622276, + -0.010928420349955559, + -0.03096385858952999, + -0.021266115829348564, + -0.041744597256183624, + 0.0702470988035202, + -0.014706602320075035, + -0.0012345238355919719, + 0.0007891722489148378, + 0.03379441797733307, + -0.021782999858260155, + -0.016884902492165565, + -0.06552129983901978, + -0.0008145549800246954, + 0.0032643734011799097, + 0.0040489304810762405, + 0.03150535747408867, + 0.012306779623031616, + -0.05262378975749016, + -0.04418133944272995, + 0.021290728822350502, + 0.018127886578440666, + -0.01460814755409956, + 0.047651853412389755, + 0.006273380946367979, + 0.007777885068207979, + 0.02121688798069954, + -0.0037197242490947247, + -0.005005782935768366, + -0.005002705845981836, + 0.01754946820437908, + 0.002861326327547431, + 0.019567780196666718, + 0.03044697269797325, + 0.07231464236974716, + -0.01891552098095417, + 0.021376876160502434, + 0.04041546583175659, + 0.022706009447574615, + -0.019284723326563835, + -0.005073470063507557, + 0.018029432743787766, + 0.006405679043382406, + 0.011143789626657963, + 0.03743722289800644, + -0.04223686829209328, + -0.00951314065605402, + -0.036329615861177444, + 0.028330206871032715, + 0.017204878851771355, + 0.021278422325849533, + -0.03150535747408867, + -0.009753122925758362, + 0.06576742976903915, + -0.06881951540708542, + -0.03596040979027748, + -0.02702568843960762, + 0.02618882805109024, + -0.0007445602095685899, + 0.008024020120501518, + 0.025081217288970947, + 0.026853393763303757, + 0.015051191672682762, + -0.04292604699730873, + 0.10948111116886139, + -0.013242094777524471, + -0.0004276605905033648, + 0.033843643963336945, + 0.014460466802120209, + -0.018780145794153214, + 0.02847788855433464, + -0.012959038838744164, + 0.004599659238010645, + 0.009777736850082874, + -0.03066849522292614, + -0.0438859760761261, + -0.0001726795017020777, + -0.03089001774787903, + -0.049104053527116776, + -0.024268969893455505, + 0.01309441402554512, + 0.007094858679920435, + -0.004885791800916195, + -0.04137539491057396, + 0.03448359668254852, + 0.0035412758588790894, + 0.03443437069654465, + -0.030397746711969376, + -0.01527271419763565, + 0.007174852769821882, + 0.006264151073992252, + -0.03677265718579292, + -0.012934425845742226, + 0.018214033916592598, + -0.02993008866906166, + 0.017697149887681007, + 0.03977551311254501, + 0.052771471440792084, + -0.07600667327642441, + 0.01622033677995205, + -0.02120458148419857, + -0.01745101436972618, + 0.04445208981633186, + -0.017500240355730057, + -0.023456722497940063, + -0.012774437665939331, + -0.010374615900218487, + 0.038717128336429596, + 0.03650191053748131, + -0.015321941114962101, + -0.032366830855607986, + -0.0006576435407623649, + 0.03519739210605621, + -0.043590616434812546, + -0.028305593878030777, + -0.013906661421060562, + -0.023752085864543915, + -0.03108692541718483, + 0.04531356319785118, + 0.07964947819709778, + -0.026558030396699905, + -0.009027022868394852, + -0.013426696881651878, + 0.03898787871003151, + 0.008485524915158749, + -0.00867628026753664, + 0.02307521179318428, + 0.011789895594120026, + 0.014091262593865395, + -0.0069164102897048, + 0.04302450269460678, + -0.0058703338727355, + -0.013734366744756699, + -0.01455892063677311, + 0.01870630495250225, + -0.044427476823329926, + -0.015826519578695297, + 0.013980502262711525, + 0.01766022853553295, + 0.00023882844834588468, + -0.06453675776720047, + -0.03231760486960411, + 0.05454364791512489, + -0.07827112078666687, + 0.006417985539883375, + -0.03354828059673309, + 0.023616710677742958, + -0.01189450267702341, + 0.053263742476701736, + -0.041424620896577835, + -0.0005861104000359774, + 0.020195426419377327, + 0.010362308472394943, + 0.017623309046030045, + -0.046396560966968536, + -0.021130740642547607, + -0.04654424265027046, + 0.0022244504652917385, + 0.03992319479584694, + -0.02921629510819912, + -0.001419894746504724, + -0.04085851088166237, + -0.02202913537621498, + -0.017598696053028107, + -0.02818252518773079, + 0.03148074448108673, + 0.003127460367977619, + 0.03948014974594116, + -0.008393224328756332, + 0.008079401217401028, + -0.03460666537284851, + -0.007340994197875261, + 0.014841976575553417, + 0.015063499100506306, + 0.024453571066260338, + -0.027911776676774025, + -0.053608331829309464, + 0.006737961899489164, + 0.03438514471054077, + -0.0037166476249694824, + 0.010823813267052174, + -0.004842718131840229, + 0.02266908809542656, + 0.025007376447319984, + -0.009519293904304504, + 0.021143047139048576, + 0.01651569828391075, + 0.043590616434812546, + -0.05218074843287468, + 0.025967305526137352, + -0.004347370006144047, + 0.020404640585184097, + -0.01273751724511385, + 0.003704340662807226, + -0.039677057415246964, + -0.008036327548325062, + -0.025130445137619972, + 0.04083389416337013, + -0.01683567464351654, + -0.009586981497704983, + -0.01418971735984087, + 0.012762131169438362, + -0.027050301432609558, + -0.025081217288970947, + 0.001753716147504747, + 0.02660725824534893, + 0.05818645656108856, + 0.05385446920990944, + 0.022521406412124634, + 0.0023013679310679436, + -0.04147384688258171, + -0.002433665795251727, + -0.011236090213060379, + 0.029339363798499107, + 0.0033136005513370037, + 0.054100602865219116, + 0.03566505014896393, + 0.0034582051448524, + 0.008067094720900059, + 0.013586685061454773, + -0.026656486093997955, + 0.009334692731499672, + 0.04085851088166237, + -0.01768484339118004, + -0.020872298628091812, + 0.01216525211930275, + 0.015198873355984688, + -0.05621737241744995, + 0.015260406769812107, + 0.0074886754155159, + 0.007685584016144276, + -0.020416947081685066, + 0.04327064007520676, + 0.0022275270894169807, + 0.020946139469742775, + 0.054937466979026794, + -0.01055921707302332, + 0.00018239032942801714, + -0.02504429779946804, + -0.00843014381825924, + 0.038618676364421844, + 0.03443437069654465, + 1.6429070456069894e-05, + -0.02682878077030182, + -0.02953627146780491, + -0.01724179834127426, + 0.01684798114001751, + -0.027394892647862434, + 0.026754939928650856, + -0.015001964755356312, + 0.03305600956082344, + -0.0014375856844708323, + 0.04285220801830292, + -0.02391207404434681, + -0.02254602126777172, + 0.020318493247032166, + -0.01570345088839531, + 0.007322533987462521, + 0.015949586406350136, + -0.002162916585803032, + 0.0015245024114847183, + 0.05124543234705925, + 0.047873374074697495, + -0.03288371488451958, + -0.01315594743937254, + -0.04248300567269325, + 0.016072655096650124, + -0.0011506839655339718, + -0.0393078550696373, + 0.016368016600608826, + 0.056906551122665405, + -0.023838233202695847, + 0.019087815657258034, + 0.007236386649310589, + -0.04533817619085312, + 0.005947251338511705, + -0.005731882993131876, + -0.004528895020484924, + 0.010374615900218487, + 0.013229788281023502, + -0.07797575742006302, + 0.020613856613636017, + 0.018374022096395493, + -0.03160380944609642, + -0.05050702393054962, + 0.04831641912460327, + 0.00374433770775795, + -0.004731956869363785, + -0.00769173726439476, + 0.02702568843960762, + -0.0016229565953835845, + 0.0009868498891592026, + 0.034754347056150436, + 0.0036428067833185196, + 0.0007726350449956954, + -0.01055921707302332, + 0.015518849715590477, + 0.03209608048200607, + -0.0005122697330079973, + 0.03509893640875816, + 0.006454905960708857, + 0.03189917281270027, + -0.016491085290908813, + 0.027148757129907608, + -0.016700301319360733, + 0.001250676461495459, + -0.0012545223580673337, + -0.042581457644701004, + 0.006645661313086748, + -0.0006764883291907609, + 0.005076546687632799, + -0.034262076020240784, + 0.02277985028922558, + 0.033942099660634995, + -0.03669881820678711, + -0.05739882215857506, + -0.011543759144842625, + -0.005048856604844332, + -0.05085161328315735, + 0.013968194834887981, + 0.022115282714366913, + 0.044648997485637665, + 0.021992215886712074, + -0.01039307564496994, + -0.06808110326528549, + -0.01578959822654724, + -0.02025695890188217, + 0.0033074470702558756, + 0.052771471440792084, + -0.012423694133758545, + 0.03802794963121414, + -0.020958445966243744, + -0.03253912553191185, + -0.03687111288309097, + 0.035615820437669754, + 0.04317218437790871, + 0.005614968482404947, + -0.009777736850082874, + -0.01523579377681017, + 0.008799348026514053, + 0.004956555552780628, + -0.03374519199132919, + 0.022299885749816895, + 0.03980012610554695, + 0.019284723326563835, + 0.003925862722098827, + -0.0009083941695280373, + 0.010663825087249279, + 0.008276309818029404, + 0.011556066572666168, + 0.007888645865023136, + 0.03578811511397362, + -0.002545965136960149, + 0.0011106869205832481, + 0.0511469766497612, + 0.028231753036379814, + 0.0046734996140003204, + -0.010602290742099285, + 0.005602661520242691, + 0.03349905461072922, + -0.019592393189668655, + -0.021672239527106285, + -0.05380524322390556, + 0.0019598547369241714, + 0.02586885169148445, + -0.024761240929365158, + 0.01533424761146307, + -0.013574378564953804, + 0.03773258626461029, + 0.03344982862472534, + -0.045067429542541504, + 0.00538113946095109, + -0.047258034348487854, + -0.05538050830364227, + -0.014620454981923103, + -0.0009391611674800515, + -0.025598103180527687, + 0.01881706714630127, + -0.061583127826452255, + -0.0007080244249664247, + -0.021389182657003403, + 0.032071467489004135, + 0.012762131169438362, + -0.005990325007587671, + 0.004605812486261129, + 0.026041146367788315, + 0.027985617518424988, + -0.004415057133883238, + -0.04450131580233574, + -0.006141083315014839, + -0.0051350039429962635, + 0.005996478721499443, + -0.01017770729959011, + -0.0328344888985157, + 0.021266115829348564, + -0.017697149887681007, + 0.014878896996378899, + 0.020232345908880234, + 0.03391748666763306, + -0.008657819591462612, + 0.016663379967212677, + 0.0893472209572792, + 0.03354828059673309, + 0.0038089484442025423, + 0.0256719421595335, + -0.043590616434812546, + 0.015211179852485657, + -0.01903858780860901, + 0.004347370006144047, + -0.024785853922367096, + 0.03391748666763306, + 0.012306779623031616, + 0.022189123556017876, + -0.0002644034684635699, + 0.03509893640875816, + 0.012860585004091263, + -0.02589346468448639, + -0.05023627728223801, + 0.007888645865023136, + -0.0010768432402983308, + -0.018866293132305145, + -0.01674952730536461, + 0.00010076176113216206, + 0.008670126087963581, + 0.0029520888347178698, + -0.03502509742975235, + -0.044279795140028, + -0.005387292709201574, + -0.035615820437669754, + -0.003461281768977642, + -0.04046469181776047, + 0.03898787871003151, + -0.003965859767049551, + -0.003310523694381118, + -0.02474893443286419, + -0.011869889684021473, + -0.04701190069317818, + -0.007648663595318794, + -0.01571575738489628, + 0.029487045481801033, + -0.0025644253473728895, + -0.022484486922621727, + -0.01590036042034626, + -0.00011672211257973686, + -0.03138228878378868, + 0.008220928721129894, + 0.0005157309933565557, + -0.03219453617930412, + -0.005002705845981836, + 0.003510508919134736, + 0.004898098297417164, + 0.008707046508789062, + -0.004898098297417164, + 0.03677265718579292, + 0.003510508919134736, + -0.051836155354976654, + -0.02805945836007595, + -0.00804863404482603, + -0.02690262161195278, + 0.03596040979027748, + -0.0006076472345739603, + 0.019407792016863823, + -0.016084961593151093, + 0.014091262593865395, + -0.004876561462879181, + 0.01580190472304821, + 0.01622033677995205, + 0.027370277792215347, + -0.016060348600149155, + 0.015297327190637589, + -0.019912369549274445, + -0.018964748829603195, + 0.018583238124847412, + -0.00795018021017313, + 0.021979909390211105, + -0.0220414437353611, + -0.03792949765920639, + 0.005402676295489073, + 0.03219453617930412, + -0.002070615766569972, + 0.009187011048197746, + 0.043590616434812546, + -0.03189917281270027, + 0.048291806131601334, + 0.041006192564964294, + -0.026262668892741203, + -0.00884242169559002, + 0.03593579679727554, + 0.02860095724463463, + -0.01654031313955784, + 0.025696557015180588, + -0.014805056154727936, + -0.02234911173582077, + -0.021438410505652428, + -0.06173080950975418, + 0.009790043346583843, + -0.041621528565883636, + 0.037141863256692886, + -0.021770693361759186, + -0.01567883789539337, + -0.013918967917561531, + 0.006590280681848526, + 0.004085850901901722, + 0.0035043556708842516, + 0.01455892063677311, + 0.006405679043382406, + -0.011839122511446476, + -0.0004703497397713363, + -0.009654669091105461, + 0.0047288802452385426, + 0.019580086693167686, + 0.01533424761146307, + -0.013697446323931217, + -0.05033472925424576, + 0.007137932348996401, + 0.03408978134393692, + -0.026754939928650856, + 0.006516439840197563, + -0.030742336064577103, + 0.02993008866906166, + 0.024601252749562263, + -0.014780443161725998, + -0.024145903065800667, + 0.015051191672682762, + -0.024822775274515152, + -1.5647878171876073e-05, + -0.01559269055724144, + 0.0063441451638937, + 0.006830262951552868, + -0.007045631296932697, + 0.026164215058088303, + 0.029290135949850082, + -0.00019710077322088182, + 0.011716054752469063, + -0.03719108924269676, + -0.06256766617298126, + 0.0047288802452385426, + -0.023358268663287163, + 0.0024459725245833397, + -0.014435852877795696, + -0.04875946044921875, + 0.012823664583265781, + 0.014448159374296665, + 0.017512548714876175, + 0.03795411065220833, + -0.007870186120271683, + -0.01820172742009163, + 0.00201523513533175, + -0.04066159948706627, + 0.03349905461072922, + -0.008731660433113575, + 0.0374126099050045, + -0.030496200546622276, + -0.036329615861177444, + 0.015248100273311138, + -0.009980798698961735, + 0.025093523785471916, + -0.004359676968306303, + -0.03504971042275429, + 0.016872595995664597, + -0.03756029158830643, + -0.010466916486620903, + 0.013845127075910568, + -0.012774437665939331, + -0.010214627720415592, + 0.02682878077030182, + 0.0018244801321998239, + -0.006830262951552868, + 0.02631189487874508, + -0.007021017838269472, + 0.003673573723062873, + -0.0030413130298256874, + -0.030643882229924202, + 0.010657671838998795, + 0.01423894427716732, + -0.009285465814173222, + -0.0026382659561932087, + -0.0061903102323412895, + 0.029437817633152008, + -0.006018015556037426, + 0.03596040979027748, + -0.008239389397203922, + 0.01570345088839531, + 0.029167069122195244, + -0.0038120250683277845, + -0.004415057133883238, + -0.019309338182210922, + 0.008559365756809711, + -0.008177855052053928, + 0.013635911978781223, + 0.01138992514461279, + -0.002724413527175784, + 0.009611595422029495, + 0.0034274382051080465, + -0.022213738411664963, + -0.013980502262711525, + -0.01902628131210804, + 0.026434963569045067, + -0.030717723071575165, + -0.0021767616271972656, + 0.00821477547287941, + -0.01143915206193924, + 0.0029967008158564568, + 0.002482892945408821, + 0.019776996225118637, + -0.032489899545907974, + 0.028034845367074013, + 0.011088408529758453, + 0.02410898171365261, + 0.0016875672154128551, + -0.009230084717273712, + -0.024072062224149704, + 0.018337102606892586, + -0.0059934016317129135, + -0.008688586764037609, + -0.03856944665312767, + -0.002545965136960149, + -0.02277985028922558, + -0.01809096708893776, + 0.03298217058181763, + 0.022164510563015938, + -0.007882492616772652, + -0.019715461879968643, + 0.031037699431180954, + -0.01901397481560707, + -0.028847092762589455, + 0.008873187936842442, + -0.04679037630558014, + 0.02017081156373024, + 0.02212759107351303, + 0.048587165772914886, + -0.007987100630998611, + 0.00919316429644823, + -0.09323616325855255, + -0.02152455784380436, + 0.009586981497704983, + -0.02317366749048233, + -0.008811654523015022, + 0.02297675795853138, + -0.010614598169922829, + 0.02462586760520935, + 0.028404047712683678, + -0.04019394516944885, + -0.007470215205103159, + -0.019924676045775414, + -0.0349266417324543, + 0.02808407135307789, + 0.008017866872251034, + -0.0018598621245473623, + 0.02120458148419857, + 0.008965489454567432, + 0.005119620356708765, + -0.010171554051339626, + 0.0032920637167990208, + -0.029167069122195244, + 0.02495815046131611, + 0.010971494019031525, + -0.016798755154013634, + 0.032366830855607986, + 0.037264928221702576, + -0.01686028763651848, + -0.004919635131955147, + 0.021684546023607254, + 0.018238648772239685, + 0.021549170836806297, + 0.011980650015175343, + 0.006528746802359819, + -0.008485524915158749, + 0.004544278606772423, + -0.005384216085076332, + 0.028625570237636566, + 0.008110168389976025, + -0.007531749550253153, + -0.008251695893704891, + 0.009168551303446293, + 0.014349705539643764, + 0.03536968678236008, + 0.05405137687921524, + 0.04201534762978554, + -0.010829966515302658, + -0.014091262593865395, + -0.03901249170303345, + 0.03783104196190834, + 0.04979323223233223, + -0.036748044192790985, + 0.023961300030350685, + 0.008559365756809711, + 0.01215294562280178, + 0.025745783001184464, + -0.011457611806690693, + -0.016392631456255913, + -0.012036031112074852, + -0.03285910189151764, + 0.016786448657512665, + 0.020823070779442787, + 0.004107387736439705, + -0.013020573183894157, + -0.007297920528799295, + 0.013857434503734112, + 0.006897950079292059, + -0.02234911173582077, + -0.003153612371534109, + -0.023752085864543915, + -0.0006426446489058435, + -0.012177558615803719, + 0.012386773712933064, + 0.02463817410171032, + 0.003978166729211807, + -0.01654031313955784, + 0.013931275345385075, + -0.025598103180527687, + 0.01746332086622715, + -0.03450820967555046, + 0.001359130023047328, + 0.016909515485167503, + -0.0016260333359241486, + 0.014435852877795696, + 0.005673425737768412, + -0.006664121523499489, + -0.011808355338871479, + 0.007710197474807501, + 0.023481335490942, + 0.029708566144108772, + 0.011980650015175343, + 0.01190680917352438, + -0.018361715599894524, + -0.04292604699730873, + -0.0046734996140003204, + -0.00956852175295353, + 0.0016398783773183823, + -0.008670126087963581, + -9.960799798136577e-05, + 0.002307521179318428, + -0.009968492202460766, + 0.015051191672682762, + 0.005547280889004469, + 0.02287830412387848, + -0.017327945679426193, + 0.04573199525475502, + 0.041523076593875885, + 0.0006080318707972765, + 0.0005753419827669859, + -0.042655300348997116, + 0.009956184774637222, + -0.005734959617257118, + -0.003953553270548582, + 0.022533714771270752, + -0.016121881082654, + -0.012946732342243195, + -0.023936687037348747, + -0.0011545297456905246, + -0.027468733489513397, + 0.015617303550243378, + 0.003230529837310314, + 0.026878006756305695, + -0.016257256269454956, + 0.01642955094575882, + -0.004128924570977688, + -0.017734069377183914, + 0.02276754379272461, + 0.043295253068208694, + -0.021684546023607254, + 0.019887756556272507, + 0.02506891079246998, + 0.0006514901760965586, + -0.058678727596998215, + 0.022373726591467857, + -0.044353634119033813, + -0.011082255281507969, + 0.05163924768567085, + 0.028256366029381752, + 0.00011258780432399362, + -0.030914630740880966, + -0.02015850506722927, + -0.03593579679727554, + -0.016995662823319435, + 0.042556844651699066, + -0.016589539125561714, + 0.019912369549274445, + -0.0023936687503010035, + 0.03438514471054077, + -0.025191979482769966, + -0.040809281170368195, + -0.0008614746038801968, + -0.0029905475676059723, + -0.009519293904304504, + 0.0037689513992518187, + -0.0658658891916275, + -0.006571820471435785, + -0.02577039785683155, + -0.015248100273311138, + 0.008663972839713097, + 0.018681691959500313, + -0.009457760490477085, + 0.009863884188234806, + 0.002115227747708559, + 0.0009237776976078749, + 0.018534010276198387, + -0.029782406985759735, + 0.01954316720366478, + 0.014263558201491833, + 0.011180710047483444, + -0.043713681399822235, + -0.0231859739869833, + 0.02754257433116436, + -0.005879564210772514, + 0.01138992514461279, + -0.0007745579350739717, + -0.006119546480476856, + 0.04206457361578941, + -0.02266908809542656, + -0.043098341673612595, + -0.0029182452708482742, + -0.0012045260518789291, + 0.016035733744502068, + -0.014349705539643764, + 0.007168699521571398, + 0.03709263354539871, + -0.006285687908530235, + 0.010589984245598316, + 0.02130303531885147, + -0.0011545297456905246, + 0.012189865112304688, + 0.028108686208724976, + 0.04533817619085312, + 0.024687400087714195, + -0.013980502262711525, + -0.009648515842854977, + 0.03458205237984657, + -0.010386922396719456, + 0.0126882903277874, + -0.017401786521077156, + 0.02961011230945587, + 0.033400602638721466, + 0.001782944775186479, + 0.033006783574819565, + -0.00210753595456481, + 0.00966697558760643, + -0.022201431915163994, + -0.0061995405703783035, + 0.009648515842854977, + -0.03312985226511955, + 0.02921629510819912, + 0.0006353374919854105, + 0.0021229195408523083, + -0.0210938211530447, + 0.0024598175659775734, + -0.028354821726679802, + -0.008036327548325062, + -0.0014521999983116984, + -0.021807614713907242, + -0.014042035676538944, + -0.047873374074697495, + -0.0031336138490587473, + -0.05237765610218048, + -0.021155355498194695, + -0.019370872527360916, + -0.0026013455353677273, + 0.04459977149963379, + 0.016798755154013634, + -0.009894651360809803, + 0.019604699686169624, + -0.004627349320799112, + -0.010516143403947353, + 0.016368016600608826, + -0.008534751832485199, + 0.02815791219472885, + 0.023222893476486206, + -0.015321941114962101, + 0.017820216715335846, + 0.007236386649310589, + 0.01184527575969696, + -0.033425215631723404, + 0.010060792788863182, + -0.012983652763068676, + 0.02786255069077015, + -0.02360440418124199, + 0.007279460318386555, + 0.019075509160757065, + 0.035517368465662, + -0.004836564417928457, + 0.0463719479739666, + -0.01964162103831768, + -0.04691344499588013, + 0.015518849715590477, + 0.012515995651483536, + -0.03844638168811798, + 0.04044007882475853, + -0.020663084462285042, + 0.010048486292362213, + -0.02370285801589489, + -0.04299988970160484, + -0.02078615128993988, + -0.0029074768535792828, + 0.030397746711969376, + 0.026730326935648918, + 0.008036327548325062, + 0.011469919234514236, + 0.00274133519269526, + -0.020195426419377327, + -0.007587129715830088, + 0.016921821981668472, + -0.042138416320085526, + 0.024687400087714195, + -0.029240909963846207, + -0.015518849715590477, + 0.025918077677488327, + 0.01310672052204609, + -0.01933395117521286, + -0.005365755874663591, + -0.025942692533135414, + -0.013968194834887981, + -0.04314757138490677, + -0.004642732907086611, + -0.02100767381489277, + -0.007377914618700743, + 0.004885791800916195, + -0.023456722497940063, + -0.015961892902851105, + 0.009230084717273712, + -0.005436520092189312, + 0.004722726996988058, + 0.01962931454181671, + 0.02163532003760338, + 0.04728264734148979, + 0.024490492418408394, + -0.03586195781826973, + -0.03347444161772728, + -0.012811358086764812, + -0.016454163938760757, + -0.0020783075597137213, + -0.02808407135307789, + -0.02349364385008812, + 0.012749823741614819, + -0.027887163683772087, + -0.010971494019031525, + 0.00815324205905199, + -0.0010399229358881712, + 0.009857730939984322, + -0.00040458538569509983, + -0.002882863162085414, + 0.00012893274833913893, + -0.023050598800182343, + -0.019284723326563835, + 0.010977647267282009, + 0.03743722289800644, + 0.03125922009348869, + 0.016343403607606888, + 0.020909219980239868, + -0.04499358683824539, + -0.003202839521691203, + -0.040390852838754654, + -0.008768580853939056, + -0.007513289339840412, + 0.0068610296584665775, + 0.06473366171121597, + -0.016675686463713646, + 0.005787263158708811, + -0.03709263354539871, + -0.009242392145097256, + 0.006285687908530235, + 0.016663379967212677, + 0.030520813539624214, + 0.008454757742583752, + 0.002887478331103921, + -0.037141863256692886, + -0.00457196868956089, + -0.04789798706769943, + 0.018570931628346443, + -0.0021767616271972656, + -0.00639337208122015, + -0.015937279909849167, + 0.0013791285455226898, + 0.01860785111784935, + 0.015174259431660175, + -0.01008540578186512, + -0.020613856613636017, + -0.03251451253890991, + -0.007433295249938965, + 9.248112291970756e-06, + -0.030176224187016487, + 0.05547896400094032, + 0.016048040241003036, + 0.06827801465988159, + -0.019567780196666718, + -0.03376980498433113, + -0.011365311220288277, + -0.003608963219448924, + -0.019776996225118637, + 0.028231753036379814, + -0.01423894427716732, + 0.0020598473493009806, + -0.047553397715091705, + -0.013709752820432186, + 0.013328243046998978, + 0.051393114030361176, + 0.003793564857915044, + 0.005987248383462429, + -0.04044007882475853, + -0.04117848724126816, + -0.0029659338761121035, + 0.01714334450662136, + -0.015506542287766933, + 0.012140638194978237, + 0.00858397874981165, + 0.008220928721129894, + -0.014226637780666351, + -0.009790043346583843, + 0.0021798384841531515, + 0.004559662193059921, + -0.02184453420341015, + 0.0031213071197271347, + 0.003218222875148058, + 0.011832969263195992, + -0.013955888338387012, + 0.05646350607275963, + 0.003130537224933505, + 0.008196315728127956, + 0.011685287579894066, + 0.02257063426077366, + -0.028847092762589455, + -0.02172146737575531, + 0.02857634238898754, + -0.017943285405635834, + 0.03285910189151764, + 0.022102976217865944, + -0.027148757129907608, + 0.027714869007468224, + 0.00971620250493288, + 0.04536278918385506, + -0.015445008873939514, + -0.013402082957327366, + 0.009107016958296299, + 0.027616413310170174, + 0.020220039412379265, + 0.0005864949780516326, + -0.027296438813209534, + 0.0030859250109642744, + -0.046322718262672424, + -0.020540015771985054, + -0.002019850304350257, + -0.009445453993976116, + 0.01768484339118004, + -0.030914630740880966, + 0.015198873355984688, + -0.004824257921427488, + 0.019776996225118637, + 0.002982855774462223, + -0.021709159016609192, + -0.013722059316933155, + 0.007494829129427671, + 0.010651517659425735, + 0.016380324959754944, + 0.006368758622556925, + 0.01996159739792347, + 0.010786892846226692, + 0.03317907825112343, + 0.012774437665939331, + -0.026459576562047005, + -0.0006268766010180116, + -0.025524262338876724, + -0.007427141536027193, + -0.009334692731499672, + -0.0370187945663929, + -0.035689663141965866, + -0.041326168924570084, + 0.005291915498673916, + 0.0008822422823868692, + 0.024502798914909363, + 0.03972628712654114, + 0.014128183014690876, + 0.021807614713907242, + -0.018521703779697418, + 0.004738110117614269, + 0.001285289297811687, + 0.027985617518424988, + 0.007137932348996401, + 0.010060792788863182, + 0.010805352590978146, + -0.009599287994205952, + 0.028108686208724976, + -0.04799644276499748, + -0.007722504436969757, + 0.02921629510819912, + -0.01642955094575882, + 0.02847788855433464, + 0.018324796110391617, + -0.0020967675372958183, + -0.0001858516043284908, + 0.002449049148708582, + 0.007420988287776709, + 0.023776698857545853, + 0.038003336638212204, + 0.01428817119449377, + 0.0003178610641043633, + 0.03266219422221184, + -0.03374519199132919, + -0.00042343014501966536, + -0.0025659636594355106, + -0.036649592220783234, + 0.01944471150636673, + -0.005027319770306349, + -0.024453571066260338, + -0.004913481883704662, + 0.03305600956082344, + 0.015026578679680824, + -0.001610649866051972, + -0.018447862938046455, + -0.010977647267282009, + 0.039357081055641174, + -0.016294175758957863, + -0.002953627146780491, + 0.006941023748368025, + 0.05208229273557663, + 0.04479667916893959, + -0.020195426419377327, + -0.020613856613636017, + 0.006067242473363876, + -0.001224524574354291, + -0.03948014974594116, + 0.015309634618461132, + 0.0020290804095566273, + -0.003104385221377015, + -0.01934625767171383, + 0.011156096123158932, + 0.0054303668439388275, + -0.013082107529044151, + 0.05168847739696503, + -0.007322533987462521, + 0.019617008045315742, + -0.028354821726679802, + -0.021709159016609192, + 0.023653630167245865, + 0.03012699820101261, + -0.004119694698601961, + 0.009051636792719364, + 0.017315639182925224, + 0.0052980687469244, + -0.020736923441290855, + -0.025278126820921898, + -0.00929777231067419, + 0.044009044766426086, + -0.043098341673612595, + 0.009408533573150635, + -0.01091611385345459, + 0.014263558201491833, + 0.0088793421164155, + -0.01179604884237051, + -0.0007249462651088834, + 0.03391748666763306, + 0.02599191851913929, + -0.008485524915158749, + -0.015580383129417896, + -0.012392926961183548, + -0.008116321638226509, + -0.010183860547840595, + 0.006614894140511751, + 0.025647329166531563, + -0.01724179834127426, + 0.02067539095878601, + 0.010860733687877655, + -0.0459781289100647, + -0.004405827261507511, + -0.021770693361759186, + 0.01386974100023508, + 0.0256719421595335, + -0.014841976575553417, + -0.02067539095878601, + 0.04523972421884537, + 0.017340252175927162, + -2.0407140254974365e-05, + 0.03640345484018326, + -0.003387441160157323, + -0.041744597256183624, + -0.012386773712933064, + 0.017758684232831, + -0.011648367159068584, + 0.014817362651228905, + -0.002384438645094633, + -0.006104162894189358, + -0.02402283437550068, + -0.0014468157896772027, + 0.021795308217406273, + -0.004159691743552685, + -0.02296445146203041, + -0.02494584210216999, + -0.0045842756517231464, + -0.004565815441310406, + -0.01850939728319645, + 0.005544204264879227, + 0.00475657032802701, + -0.002358286641538143, + -0.005359602626413107, + -0.04762723669409752, + -0.0026521109975874424, + -0.007531749550253153, + 0.00799940712749958, + -0.015358861535787582, + -0.01767253689467907, + -0.02339518815279007, + 0.0074886754155159, + -0.0011445304844528437, + 0.016995662823319435, + -0.011156096123158932, + -0.011826815083622932, + 0.03460666537284851, + 0.02297675795853138, + -0.001655261847190559, + 0.024453571066260338, + 0.054937466979026794, + 0.0017275642603635788, + 0.0010291545186191797, + -0.01694643683731556, + -0.01571575738489628, + 0.008140934631228447, + -0.02690262161195278, + 0.037584904581308365, + 0.005098083522170782, + -0.01726641319692135, + -0.003109000390395522, + 0.005793416872620583, + -0.0018337102374061942, + 0.007021017838269472, + 0.0032643734011799097, + 0.009703896008431911, + 0.015986507758498192, + 0.007094858679920435, + 0.020527709275484085, + -0.0100238723680377, + 0.03214531019330025, + -0.019776996225118637, + 0.0037966417148709297, + -0.027591800317168236, + 0.02286599762737751, + 0.020872298628091812, + 0.008731660433113575, + -0.028748637065291405, + 0.004716573283076286, + 0.0008583979215472937, + 0.026164215058088303, + -0.020872298628091812, + -0.018693998456001282, + -0.01903858780860901, + -0.013279015198349953, + 0.02130303531885147, + 0.005938021466135979, + 0.006430292502045631, + -0.014571227133274078, + -0.0012191403657197952, + 0.006830262951552868, + 0.038618676364421844, + -0.011814508587121964, + 0.009353152476251125, + 0.0003186302201356739, + -0.033622123301029205, + -0.001562961027957499, + 0.01704489067196846, + -0.015346555039286613, + 0.04108003154397011, + 0.027911776676774025, + -0.020183119922876358, + 0.01652800478041172, + -0.03143151476979256, + -0.005651888903230429, + -0.040686216205358505, + 0.01017770729959011, + 0.0026582644786685705, + 0.033105239272117615, + -0.011697594076395035, + -0.044132113456726074, + 0.04644578695297241, + 0.03241605684161186, + 0.008017866872251034, + 0.038815584033727646, + -0.002447510836645961, + -0.011777588166296482, + -0.024921229109168053, + 0.024035140872001648, + -0.009845423512160778, + 0.01789405755698681, + -0.0061072395183146, + 0.0029428587295114994, + -0.00423660920932889, + 0.020453868433833122, + -0.011752975173294544, + 0.0013975887559354305, + 0.01817711442708969, + 0.01578959822654724, + -0.0011229936499148607, + 0.012239092960953712, + 0.00914393737912178, + -0.010873040184378624, + 0.007864031940698624, + 0.008233236148953438, + -0.039430923759937286, + 0.021266115829348564, + 0.008633206598460674, + 0.0012299087829887867, + -0.009790043346583843, + 0.004144308157265186, + -0.02505660429596901, + -0.022829076275229454, + 0.0027321050874888897, + 0.03770797327160835, + -0.00961774867027998, + 0.03906172141432762, + -0.001684490474872291, + 0.01449738722294569, + -0.03731415793299675, + -0.012325240299105644, + -0.026041146367788315, + -0.01257137581706047, + -0.03847099468111992, + 0.04066159948706627, + 0.011882196180522442, + 0.009260851889848709, + -0.00019998518109787256, + 0.014177410863339901, + -0.021155355498194695, + 0.00018287105194758624, + -0.009014716371893883, + 0.007297920528799295, + -0.0034120548516511917, + -0.007181006018072367, + -0.006381065584719181, + 0.020921526476740837, + -0.011722208000719547, + 0.029290135949850082, + -0.00826400239020586, + 0.0326375812292099, + 0.0076609705574810505, + 0.027936389669775963, + -0.0005826491396874189, + 0.02017081156373024, + -0.009728509932756424, + -0.021044593304395676, + 0.03086540475487709, + -0.008503984659910202, + -0.016269562765955925, + -0.0010030025150626898, + 0.0077286576852202415, + 0.00940238032490015, + 0.0071563925594091415, + -0.011974496766924858, + 0.036428067833185196, + -0.02070000395178795, + 0.0007453293655999005, + 0.0395047627389431, + 0.014768135733902454, + 0.014817362651228905, + -0.03182533383369446, + -0.0017383326776325703, + -0.04208918660879135, + -0.02493353560566902, + 0.005205767694860697, + 0.07108396291732788, + -0.0049380953423678875, + 0.02483508177101612, + -0.01465737447142601, + -0.015580383129417896, + 0.012528302147984505, + 0.007162545807659626, + -0.015986507758498192, + 0.020207732915878296, + -0.037683360278606415, + -0.008042480796575546, + -0.005368832964450121, + 0.023641323670744896, + 0.011469919234514236, + -0.05262378975749016, + -0.01912473514676094, + 0.0189032144844532 + ], + "how_to_setup_oil_refineries": [ + -0.0468955896794796, + 0.017991766333580017, + 0.019734829664230347, + -0.005244116298854351, + -0.014362371526658535, + 0.022253915667533875, + -0.010637467727065086, + 0.003524929517880082, + -0.011926857754588127, + -0.0027892012149095535, + 0.04887743294239044, + -0.023340346291661263, + -0.0019654242787510157, + -0.003987557720392942, + 0.017442580312490463, + -0.014087779447436333, + -0.0013162522809579968, + 0.07674258202314377, + 0.024068612605333328, + 0.03595965355634689, + 0.0383235365152359, + -0.054345399141311646, + -0.02965596877038479, + 0.0017236636485904455, + 0.0038741393946111202, + -0.025596778839826584, + 0.05348580703139305, + 0.04536742717027664, + -0.0370580218732357, + -0.024307388812303543, + 0.016487477347254753, + -0.024211877956986427, + -0.03428822383284569, + 0.006536490749567747, + -0.00590373482555151, + -0.043672114610672, + 0.032186996191740036, + -0.006960317958146334, + 0.02631310746073723, + 0.040448639541864395, + -0.015747271478176117, + 0.01029124204069376, + -0.017764927819371223, + 0.029727602377533913, + -0.01961544156074524, + 0.03818026930093765, + -0.02870086580514908, + 0.019663197919726372, + 0.05253070220351219, + 0.003927864134311676, + 0.012428286485373974, + -0.021286873146891594, + -0.024032795801758766, + -0.09699077904224396, + -0.0070319510996341705, + -0.05205314978957176, + -0.030252909287810326, + 0.02185993641614914, + -0.00402635894715786, + -0.011467213742434978, + 0.018481256440281868, + 0.02345973439514637, + 0.04527191445231438, + 0.04792232811450958, + -0.043791502714157104, + -0.0011849255533888936, + -0.02776964008808136, + 0.056112341582775116, + 0.01052404846996069, + 0.013514717109501362, + 0.002225093077868223, + 0.01852901093661785, + -0.012476041913032532, + 0.014636963605880737, + 0.02779351733624935, + -0.05157560110092163, + -0.027196576818823814, + 0.05382009223103523, + -0.05525274947285652, + -0.04904457554221153, + -0.06251153349876404, + -0.050859272480010986, + 0.005250085610896349, + -0.049713145941495895, + 0.01660686545073986, + -0.04063966125249863, + -0.022719528526067734, + -0.008548177778720856, + -0.049235593527555466, + -0.03591189906001091, + -0.024641675874590874, + -0.009491343051195145, + 0.009974864311516285, + 0.016069618985056877, + 0.051480088382959366, + -0.013120736926794052, + 0.011461243964731693, + 0.007998993620276451, + 0.010464354418218136, + 0.03801312670111656, + 0.01660686545073986, + -0.04004272073507309, + -0.05382009223103523, + -0.008816801011562347, + 0.04894906282424927, + 0.007664707023650408, + 0.012308898381888866, + 0.025787800550460815, + -0.011138896457850933, + -0.04274088889360428, + -0.033452507108449936, + -0.012941654771566391, + 0.042502112686634064, + -0.00018840913253370672, + 0.002684736857190728, + 0.02027207612991333, + -0.003048870014026761, + -0.011688081547617912, + 0.013383390381932259, + -0.022122589871287346, + -0.058165814727544785, + -0.021191362291574478, + 0.008804862387478352, + -0.0034324037842452526, + 0.026050454005599022, + -0.0017415719339624047, + 0.013837064616382122, + -0.002536994172260165, + -0.017955949530005455, + 0.028772499412298203, + -0.04469885304570198, + 0.030372297391295433, + 0.009915170259773731, + -0.03560148924589157, + 0.000660737743601203, + -0.029250049963593483, + -0.015030944719910622, + 0.009533128701150417, + 0.03591189906001091, + -0.0010506140533834696, + 0.028653111308813095, + -0.05262621492147446, + -0.044460076838731766, + 0.009348077699542046, + -0.014147473499178886, + 0.010392721742391586, + -0.03669985756278038, + -0.08104054629802704, + 0.005563478916883469, + -0.01270287949591875, + -0.007825881242752075, + 0.004017404746264219, + -0.042549870908260345, + -0.05348580703139305, + 0.03209148347377777, + -0.005444090813398361, + -0.01485186256468296, + 0.03271230310201645, + -0.02024819888174534, + 0.01132991723716259, + -0.009801751933991909, + 0.01801564358174801, + -0.048758044838905334, + -0.0016177068464457989, + -0.01771717332303524, + -0.014959311112761497, + -0.05424989014863968, + -0.0216927919536829, + -0.05444091185927391, + 0.041427623480558395, + -0.003420465160161257, + 0.00459046708419919, + 0.010565834119915962, + 0.03600740805268288, + -0.004169624764472246, + -0.007784095127135515, + -0.007300573866814375, + 0.009592822752892971, + -0.010022619739174843, + 0.02441483736038208, + 0.01963931880891323, + -0.014899617992341518, + -0.05033396556973457, + -0.06017153337597847, + 0.015436863526701927, + 0.006584246177226305, + -0.03276005759835243, + 0.038562312722206116, + 0.003745797323063016, + 0.021036159247159958, + 0.021740548312664032, + 0.015090638771653175, + -0.017024723812937737, + 0.01381318736821413, + 0.005262024234980345, + 0.02712494507431984, + 0.013395329006016254, + 0.007915421389043331, + 0.04727763310074806, + -0.04209619387984276, + 0.02874862030148506, + 0.014613086357712746, + 0.023579122498631477, + 0.0014416095800697803, + -0.012476041913032532, + 0.004289012402296066, + -0.014493698254227638, + 0.00010455773735884577, + 0.014971250668168068, + -0.015198087319731712, + -0.0030951329972594976, + -0.049999676644802094, + 0.03526720404624939, + 0.057544998824596405, + -0.0032473525498062372, + -0.0463225282728672, + -0.022612079977989197, + 0.031542301177978516, + -0.03498067334294319, + -0.056876424700021744, + -0.05358131602406502, + 0.04231109470129013, + 0.02045115828514099, + -0.024355143308639526, + 0.002438499126583338, + 0.026456372812390327, + 0.015460740774869919, + -0.04742089658975601, + 0.06814664602279663, + 0.0021937538404017687, + -0.003307046601548791, + 0.011210529133677483, + 0.02683841437101364, + -0.024928206577897072, + 0.05310376361012459, + -0.012332776561379433, + 0.0018534980481490493, + -0.01221935823559761, + -0.014469821006059647, + -0.022086773067712784, + -0.03235413879156113, + -0.03127964586019516, + -0.025620656087994576, + -0.03875333070755005, + 0.0034025569912046194, + -0.012858083471655846, + 0.000546199909877032, + -0.05964622646570206, + 0.03015739843249321, + -0.005632127169519663, + 0.002575795166194439, + 0.021000342443585396, + 0.015699516981840134, + 0.017335131764411926, + 0.005554524715989828, + -0.07091645151376724, + -0.056733157485723495, + 0.0012520812451839447, + -0.009461496025323868, + 0.011628387495875359, + 0.010249456390738487, + 0.032640669494867325, + -0.060553573071956635, + 0.020558606833219528, + 0.004736717324703932, + -0.015424924902617931, + 0.012571552768349648, + 0.060267042368650436, + -0.03674761578440666, + -0.03388230502605438, + -0.003169750329107046, + 0.02664739266037941, + 0.01868421584367752, + -0.016380028799176216, + -0.0440780371427536, + -0.013275940902531147, + 0.020319830626249313, + -0.002771293045952916, + -0.012631245888769627, + -0.006518582813441753, + -0.024176063016057014, + -0.049235593527555466, + 0.0338345468044281, + 0.06251153349876404, + -0.026742903515696526, + -0.014684719033539295, + -0.0055306474678218365, + -0.01021960936486721, + 0.010321089066565037, + 0.0010506140533834696, + 0.021465955302119255, + 0.0064588887616992, + 0.06193847581744194, + -0.012320837937295437, + 0.04197680577635765, + 0.01036287471652031, + 0.01562788337469101, + -0.03094535879790783, + 0.03562536835670471, + -0.02874862030148506, + 0.028151681646704674, + 0.031709443777799606, + 0.020833199843764305, + 0.027244333177804947, + -0.041260480880737305, + -0.04527191445231438, + 0.038228023797273636, + -0.08299851417541504, + 0.01597410999238491, + -0.013323696330189705, + 0.03729679808020592, + -0.022074833512306213, + 0.05940745025873184, + -0.07640829682350159, + 0.012094000354409218, + 0.014792168512940407, + 0.04441232234239578, + 0.022385243326425552, + -0.057688262313604355, + -0.009240628220140934, + -0.039875578135252, + -0.015054821968078613, + 0.062320515513420105, + -0.019985545426607132, + 0.0018788680899888277, + -0.03858618810772896, + -0.036317817866802216, + -0.014147473499178886, + -0.028987396508455276, + 0.03946965932846069, + 0.003608501050621271, + 0.02824719250202179, + -0.028056170791387558, + 0.01140154991298914, + -0.037869859486818314, + 0.020367586985230446, + 0.0026593669317662716, + 0.017132172361016273, + 0.060267042368650436, + 0.027411475777626038, + -0.03223475068807602, + 0.0051366668194532394, + -0.006417103111743927, + 0.010727007873356342, + 0.0293455608189106, + -0.009377924725413322, + 0.0027802472468465567, + 0.039326395839452744, + 0.018063398078083992, + 0.01740676537156105, + -0.0255490243434906, + 0.02409248985350132, + -0.04966539144515991, + 0.006029092241078615, + 0.009622669778764248, + 0.011055325157940388, + -0.031088626012206078, + 0.013431145809590816, + -0.05649438500404358, + -0.008864556439220905, + -0.054154377430677414, + 0.05238743871450424, + -0.008315371349453926, + -0.0036174552515149117, + -0.0383235365152359, + 0.021024219691753387, + -0.03927863761782646, + -0.015019005164504051, + 0.004915799479931593, + 0.05424989014863968, + 0.06981807947158813, + 0.05534825846552849, + 0.008816801011562347, + 0.03603128716349602, + -0.03552985563874245, + 0.004387507680803537, + 0.008882463909685612, + 0.0016266609309241176, + -0.022301672026515007, + 0.03378679230809212, + 0.013323696330189705, + -0.0015639823395758867, + -0.008524300530552864, + -0.0041666398756206036, + -0.023567182943224907, + -0.015520434826612473, + -0.014111656695604324, + 0.008954097516834736, + -0.008524300530552864, + -0.01690533570945263, + 0.03973231464624405, + -0.04388701543211937, + 0.039971090853214264, + 0.0082138916477561, + 0.03178107365965843, + -0.0022713560611009598, + 0.06494705379009247, + 0.012583491392433643, + 0.016391966491937637, + 0.03302270919084549, + 0.006178326904773712, + -0.024689430370926857, + -0.009222719818353653, + -0.005578402429819107, + 0.0031846738420426846, + 0.008739198558032513, + 0.006500674411654472, + -0.010983692482113838, + -0.0019952713046222925, + -0.010088282637298107, + 0.04899682104587555, + -0.04512865096330643, + 0.017466459423303604, + -0.013144614174962044, + 0.027339844033122063, + -0.014266861602663994, + 0.03495679423213005, + -0.02619371935725212, + -0.03801312670111656, + 0.0008372080628760159, + 0.010565834119915962, + 0.013550533913075924, + 0.0056739128194749355, + 0.0004066652327310294, + -0.011126957833766937, + 0.03242576867341995, + 0.03908761963248253, + -0.019269216805696487, + -0.018958808854222298, + -0.031828831881284714, + -0.016177069395780563, + 0.028032293543219566, + -0.015997987240552902, + 0.009061546064913273, + 0.046656813472509384, + -0.027053311467170715, + 0.001601291005499661, + -0.013049104250967503, + -0.03818026930093765, + 0.0021459986455738544, + -0.014768291264772415, + -0.002295233542099595, + 0.023340346291661263, + 0.0003883839526679367, + -0.07640829682350159, + 0.010691192001104355, + 0.005211284384131432, + -0.022218098863959312, + -0.01645166054368019, + 0.02250463142991066, + 0.007605012971907854, + 0.019114011898636818, + 0.013765431940555573, + 0.030825970694422722, + 0.010965784080326557, + -0.006948379334062338, + 0.040615785866975784, + -0.0032891384325921535, + 0.011550785042345524, + 0.013037165626883507, + -0.0019385620253160596, + 0.038084760308265686, + 0.028032293543219566, + 0.020033299922943115, + -0.009688332676887512, + 0.02903515286743641, + -0.019925851374864578, + 0.011771652847528458, + 0.007008073385804892, + -0.046370282769203186, + -0.028199436143040657, + -0.04195293039083481, + 0.01864839904010296, + 0.007599043659865856, + -0.025644533336162567, + -0.01801564358174801, + 0.010571803897619247, + 0.023340346291661263, + -0.03371515870094299, + -0.04130823537707329, + -0.028939642012119293, + 0.018158908933401108, + -0.029942501336336136, + 0.022922487929463387, + 0.0024608843959867954, + 0.06585440039634705, + 0.017144111916422844, + -0.029297806322574615, + -0.11948347091674805, + -0.004396461881697178, + -0.014159412123262882, + 0.020212382078170776, + 0.0013863927451893687, + -0.011270223185420036, + 0.027101067826151848, + -0.041093334555625916, + -0.06666623800992966, + -0.04694334790110588, + 0.01204624492675066, + 0.023543305695056915, + 0.009676394052803516, + 0.01149109099060297, + 0.003283168887719512, + 0.041427623480558395, + -0.018242480233311653, + -0.024546165019273758, + 0.020618300884962082, + 0.03495679423213005, + -3.8754453271394596e-05, + 0.025978820398449898, + -0.015401046723127365, + -0.00177589594386518, + 0.009222719818353653, + 0.030706584453582764, + -0.013992269523441792, + 0.02585943229496479, + 0.0027921858709305525, + -0.005444090813398361, + 0.05033396556973457, + 0.0221822839230299, + 0.01238053198903799, + -0.011204560287296772, + -0.005850010085850954, + 0.05124131217598915, + 0.0145295150578022, + -0.0066618481650948524, + -0.041236601769924164, + 0.006423072423785925, + 0.013789309188723564, + -0.033452507108449936, + 0.023065753281116486, + -0.004211410414427519, + 0.020212382078170776, + 0.0393025167286396, + -0.049378860741853714, + 0.004491972271353006, + -0.04789844900369644, + -0.04290803149342537, + 0.01005246676504612, + -0.028294946998357773, + -0.019878095015883446, + 0.019400544464588165, + -0.03896823152899742, + 0.02987086772918701, + -0.02378208190202713, + 0.017299314960837364, + -0.021167485043406487, + -0.007097614463418722, + 0.023841775953769684, + 0.059598471969366074, + 0.013132675550878048, + -0.025477390736341476, + -0.025978820398449898, + -0.03094535879790783, + -0.01132394839078188, + -0.006769297178834677, + 0.0043815383687615395, + -0.025954943150281906, + 0.031160257756710052, + -0.0127745121717453, + 0.02633698470890522, + 0.011234407313168049, + 0.017191866412758827, + -0.0031399033032357693, + 0.020331770181655884, + 0.08051524311304092, + 0.05396335944533348, + -0.017490336671471596, + 0.014242983423173428, + -0.019913911819458008, + -0.00934210792183876, + -0.04933110624551773, + 0.039660681039094925, + -0.04472273215651512, + 0.0328555665910244, + 0.019102074205875397, + 0.0070140426978468895, + 0.006793174892663956, + 0.030825970694422722, + -0.017657479271292686, + -0.012631245888769627, + -0.053533561527729034, + 0.009616700001060963, + -0.020033299922943115, + -0.011664203368127346, + -0.021573403850197792, + -0.003742812667042017, + 0.01851707324385643, + 0.024546165019273758, + -0.0007998993387445807, + -0.05038172006607056, + -0.0037249044980853796, + -0.01578308828175068, + -0.014541453681886196, + -0.020809320732951164, + 0.020821260288357735, + -0.008452667854726315, + 0.014768291264772415, + -0.0055694482289254665, + 0.018457379192113876, + -0.02122717909514904, + 0.013538594357669353, + -0.027817394584417343, + 0.0463225282728672, + -0.0335480161011219, + -0.022230038419365883, + -0.0181827861815691, + 0.004318859428167343, + -0.02726821042597294, + 0.004584497772157192, + -0.024068612605333328, + -0.014708597213029861, + -0.025477390736341476, + -0.004483018070459366, + -0.0025787800550460815, + 0.003396587446331978, + -0.007575165946036577, + 0.03739231079816818, + 0.0036144705954939127, + -0.030706584453582764, + -0.027554741129279137, + 0.025310248136520386, + -0.024319328367710114, + 0.0018072352977469563, + 0.0036861032713204622, + -0.005417228676378727, + 0.0018624522490426898, + 0.020343707874417305, + -0.01869615539908409, + 0.02077350579202175, + 0.04529579356312752, + 0.03746394068002701, + 0.0023176188115030527, + -0.00860787183046341, + -0.002644443418830633, + 0.012344715185463428, + 0.03512393683195114, + 0.0258355550467968, + 0.015436863526701927, + 0.009610731154680252, + -0.03235413879156113, + -0.015556251630187035, + 0.043672114610672, + -0.0006476796697825193, + -0.004512865096330643, + 0.04617926478385925, + -0.029250049963593483, + 0.044937629252672195, + 0.032974954694509506, + -0.0325690358877182, + -0.027960659936070442, + 0.040138233453035355, + 0.034240465611219406, + 0.0006424564635381103, + 0.01565176248550415, + 0.015233904123306274, + -0.00013822887558490038, + -0.019842280074954033, + -0.04305129870772362, + -0.026742903515696526, + -0.042860276997089386, + 0.030205154791474342, + -0.016666559502482414, + -0.021633097901940346, + -0.0026190734934061766, + 0.015759211033582687, + 0.009939047507941723, + 0.0026354892179369926, + 0.02312544733285904, + 0.007115522399544716, + -0.0019191615283489227, + -0.006954348646104336, + 0.008010932244360447, + -0.00013169983867555857, + -0.008757106959819794, + 0.0030742399394512177, + -0.0039994968101382256, + -0.056589893996715546, + -0.010727007873356342, + 0.01086430437862873, + -0.00828552432358265, + 0.0066618481650948524, + -0.028939642012119293, + 0.01645166054368019, + 0.042549870908260345, + -0.048447635024785995, + -0.03739231079816818, + 0.009545067325234413, + -0.024379022419452667, + 0.016093498095870018, + -0.009288383647799492, + 0.015771150588989258, + 0.00434870645403862, + -0.0008581009460613132, + 0.026623515412211418, + 0.021979324519634247, + 0.01694115251302719, + 0.010750886052846909, + -0.022086773067712784, + -0.04305129870772362, + 0.014445943757891655, + -0.01301328744739294, + 0.013275940902531147, + -0.03784598410129547, + -0.03330923989415169, + -0.0117238974198699, + 0.013132675550878048, + -0.01021960936486721, + 0.03846680000424385, + -0.012870022095739841, + -0.01913789100944996, + 0.008261647075414658, + -0.026551881805062294, + 0.024689430370926857, + -0.022743405774235725, + 0.023089632391929626, + -0.0015072730602696538, + -0.024952083826065063, + 0.019042380154132843, + 0.004423324018716812, + 0.012111908756196499, + -0.0057783774100244045, + -0.0231612641364336, + 0.015305536799132824, + -0.015305536799132824, + 0.004635237623006105, + 0.005032202694565058, + -0.009425679221749306, + -0.008154197596013546, + 0.02076156623661518, + 0.007712462451308966, + 0.013837064616382122, + 0.007575165946036577, + 0.0022027078084647655, + -0.026408616453409195, + 0.0008782476652413607, + -0.035362713038921356, + 0.004811334889382124, + 0.026456372812390327, + -0.0075572580099105835, + -0.02011687122285366, + -0.023519428446888924, + 0.026217596605420113, + -0.020654117688536644, + 0.005357534624636173, + -0.018887175247073174, + -0.011204560287296772, + 0.04744477570056915, + -0.019687075167894363, + -0.0068289912305772305, + -0.009837567806243896, + 0.007664707023650408, + -0.005641081370413303, + 0.019722891971468925, + 0.02679065801203251, + -0.01626064069569111, + 0.0057783774100244045, + -0.0006368601461872458, + -0.04617926478385925, + 0.01757390797138214, + -0.020713811740279198, + 0.02951270341873169, + -0.03586414456367493, + -0.016308395192027092, + 0.004724778700619936, + -0.0024176063016057014, + 0.014684719033539295, + -0.0007984070107340813, + 0.0077244010753929615, + -0.01229695975780487, + 0.04152313247323036, + -0.011664203368127346, + 0.016678499057888985, + -0.019901972264051437, + -0.006417103111743927, + -0.025310248136520386, + -0.012416347861289978, + 0.005384397227317095, + -0.012905838899314404, + -0.024665553122758865, + 0.007151338737457991, + -0.03543434664607048, + -0.009927108883857727, + 0.031351279467344284, + 0.03732067719101906, + -0.019543809816241264, + -0.013025227002799511, + 0.024641675874590874, + -0.0025549023412168026, + -0.04579722136259079, + -0.02757861837744713, + -0.04419742152094841, + 0.03512393683195114, + 0.004390492103993893, + 0.02636086195707321, + -0.007998993620276451, + -0.03161393105983734, + -0.08949321508407593, + -0.019687075167894363, + 0.015257781371474266, + -0.023400040343403816, + -0.002268371172249317, + 0.001735602505505085, + 0.010804610326886177, + 0.007772156503051519, + 0.009992772713303566, + -0.030611073598265648, + 0.0054261828772723675, + -0.015042883343994617, + -0.015114516019821167, + 0.021597282961010933, + 0.0073901149444282055, + 0.010721039026975632, + 0.03603128716349602, + 0.021454015746712685, + 0.009443587623536587, + 0.014362371526658535, + 0.0005831355811096728, + -0.023006059229373932, + 0.03242576867341995, + -0.0029011275619268417, + -0.03323761001229286, + 0.04517640545964241, + 0.025501267984509468, + -0.009377924725413322, + 0.011711958795785904, + 0.011335887014865875, + 0.03708190098404884, + 0.04933110624551773, + 0.01435043290257454, + 0.006417103111743927, + 0.014541453681886196, + -0.032783932983875275, + 0.010888181626796722, + 0.028963519260287285, + -0.007121491711586714, + 0.055491525679826736, + 0.003092148108407855, + 0.009133178740739822, + 0.0024504379834979773, + 0.02440289966762066, + 0.05253070220351219, + 0.002241509035229683, + -0.01045241579413414, + -0.0012252189917489886, + -0.01578308828175068, + 0.02970372512936592, + 0.0133356349542737, + -0.02633698470890522, + 0.026886168867349625, + 0.0015460740542039275, + 0.012237265706062317, + 0.05276947841048241, + -0.011861193925142288, + -0.04233497008681297, + -0.012464103288948536, + -0.04933110624551773, + 0.016009924933314323, + 0.010744916275143623, + -0.00934210792183876, + -0.02757861837744713, + 0.0055694482289254665, + 0.010022619739174843, + -0.014147473499178886, + -0.03190046176314354, + -0.02091677114367485, + -0.013144614174962044, + 0.002684736857190728, + -0.005521693266928196, + -0.014827984385192394, + 0.014696657657623291, + -0.005351565312594175, + 0.011556754820048809, + 0.006082816515117884, + -0.020463095977902412, + 0.013431145809590816, + -0.04756416380405426, + 0.00853623915463686, + 0.0038502616807818413, + -0.00314885750412941, + 0.018552890047430992, + -0.01900656335055828, + -0.0031309493351727724, + -0.019400544464588165, + 0.017741050571203232, + 0.042239461094141006, + 0.03378679230809212, + 0.023985041305422783, + 0.015162271447479725, + -0.027196576818823814, + -0.052578456699848175, + -0.008834709413349628, + 0.014636963605880737, + -0.030921481549739838, + -0.023268714547157288, + 0.016403906047344208, + 0.002787709003314376, + -0.0038204146549105644, + 0.014756351709365845, + -0.03001413308084011, + 0.002878742292523384, + 0.019555747509002686, + 0.04775518551468849, + 0.04656130447983742, + -0.008034809492528439, + -0.011061294935643673, + -0.04918783903121948, + -0.009670425206422806, + -0.046513549983501434, + 0.01341920718550682, + 0.038084760308265686, + -0.012714818120002747, + -0.0010864303912967443, + -0.014577270485460758, + -0.021931568160653114, + -0.009395832195878029, + 0.021477894857525826, + -0.013825125992298126, + 0.002198230940848589, + -0.023996980860829353, + 0.038060881197452545, + 0.009019760414958, + -0.023388100787997246, + 0.009831598959863186, + 0.020510852336883545, + -0.013538594357669353, + 0.014887678436934948, + 0.013968391343951225, + 0.0146727804094553, + -0.07769768685102463, + 0.013132675550878048, + -0.040305376052856445, + 0.010189762338995934, + 0.040329255163669586, + 0.031828831881284714, + -0.00694241002202034, + -0.018564827740192413, + -0.036079041659832, + -0.036079041659832, + -0.0009312261245213449, + 0.02283891662955284, + 0.015114516019821167, + 0.03049168549478054, + -0.006787205580621958, + -0.004814319312572479, + -0.022373303771018982, + -0.04770743101835251, + 0.018290236592292786, + 0.015544313006103039, + 0.0002173233951907605, + 0.0038383230566978455, + -0.06423072516918182, + -0.0034532968420535326, + -0.008154197596013546, + -0.0488535538315773, + 0.01800370402634144, + 0.015066760592162609, + -0.012929716147482395, + 0.02523861452937126, + 0.02808004803955555, + -0.008094503544270992, + 0.009157056920230389, + -0.03770271688699722, + 0.00466209976002574, + -0.0017908194568008184, + 0.03419271111488342, + -0.04405415803194046, + -0.014386249706149101, + 0.012511858716607094, + -0.020869014784693718, + 0.00411590002477169, + 0.008022870868444443, + -0.0016535233007743955, + 0.023364223539829254, + -0.025644533336162567, + -0.03555373474955559, + 0.024808818474411964, + 0.014111656695604324, + -0.018146969377994537, + -0.016057681292295456, + 0.0008081072592176497, + 0.024617796763777733, + -0.025262491777539253, + 0.003802506485953927, + 0.027554741129279137, + 0.0015386122977361083, + 0.02236136607825756, + 0.042072318494319916, + 0.03450312092900276, + 0.006178326904773712, + -0.0027533848769962788, + -0.005656004883348942, + 0.023722387850284576, + 0.027889028191566467, + 0.0091630257666111, + -0.016797885298728943, + 0.024641675874590874, + 0.060887861996889114, + 0.0044382475316524506, + 0.03307046368718147, + 0.003665210446342826, + 0.010207670740783215, + -0.030133521184325218, + -0.012726756744086742, + -0.023662693798542023, + -0.034097202122211456, + 0.029297806322574615, + 0.016081558540463448, + -0.014016146771609783, + -0.01092996820807457, + 0.015078699216246605, + -0.010553895495831966, + -0.02092870883643627, + -0.008381035178899765, + -0.02153758890926838, + -0.018170848488807678, + -0.015604006126523018, + -0.004933707416057587, + -0.06809889525175095, + -0.030515562742948532, + 0.00629771500825882, + 0.0015371199697256088, + 0.03445536643266678, + 0.02457004226744175, + -0.0027757701463997364, + -0.0032413832377642393, + 0.01205818448215723, + -0.00678123626857996, + 0.032306380569934845, + -0.02250463142991066, + 0.00011808215640485287, + 0.034550875425338745, + -0.029608214274048805, + 0.01869615539908409, + 0.0013304295716807246, + 0.008775015361607075, + -0.03927863761782646, + 0.005718683358281851, + -0.018791664391756058, + 0.005772408097982407, + -0.011532876640558243, + -0.006745419930666685, + 0.022755345329642296, + 0.040926191955804825, + 0.021262995898723602, + 0.03428822383284569, + -0.014792168512940407, + -0.024689430370926857, + 0.016224823892116547, + -0.0024205909576267004, + -0.019281156361103058, + 0.03882496431469917, + -0.02519086003303528, + 0.00836909655481577, + -0.003032454289495945, + -0.011425428092479706, + -0.03371515870094299, + -0.010368844494223595, + 0.055634789168834686, + 0.03748781979084015, + 0.007837819866836071, + 0.005336641799658537, + 0.005730621982365847, + -0.032186996191740036, + -0.020510852336883545, + 0.026432495564222336, + -0.04711049050092697, + 0.011992520652711391, + -0.01975870691239834, + 0.011556754820048809, + -0.00650664372369647, + 0.028509845957159996, + 0.0049695237539708614, + 0.009348077699542046, + -0.039684560149908066, + -0.02281503938138485, + -0.04371987283229828, + -0.02106003649532795, + -0.004990416578948498, + -0.005372458137571812, + 0.02138238400220871, + -0.009461496025323868, + 0.0033458475954830647, + -0.007121491711586714, + -0.0009080946911126375, + -0.0019146844279021025, + 0.014744413085281849, + 0.03395393490791321, + 0.04371987283229828, + 0.035649243742227554, + -0.06838542222976685, + -4.122615428059362e-05, + -0.010953845456242561, + -0.02808004803955555, + -0.001749033690430224, + -0.015890536829829216, + -0.0221822839230299, + 0.03254515677690506, + -0.024176063016057014, + -0.004047251772135496, + 0.0008864555857144296, + 0.010243487544357777, + -0.011550785042345524, + 0.015269719995558262, + -0.01836186833679676, + 0.020845137536525726, + -0.03163781017065048, + -0.017944009974598885, + -0.006255929358303547, + 0.03746394068002701, + 0.02822331339120865, + -0.0165710486471653, + 0.0386100672185421, + 0.009395832195878029, + 0.0016356150154024363, + -0.02650412730872631, + 0.0007357283029705286, + 0.005151590332388878, + -0.002930974354967475, + 0.03927863761782646, + -0.00017749631660990417, + -0.016475537791848183, + -0.017144111916422844, + 0.0026145963929593563, + 0.002480285009369254, + 0.014541453681886196, + 0.02123911865055561, + -0.0038204146549105644, + -0.0021489833015948534, + -0.04202456399798393, + -0.021800242364406586, + -0.04839988052845001, + 0.026575760915875435, + -0.00015856213576626033, + -0.026289228349924088, + -0.009616700001060963, + 0.0055694482289254665, + 0.030229032039642334, + 0.0165710486471653, + -0.003223475068807602, + -0.013526655733585358, + -0.002526547759771347, + -0.0024340220261365175, + 0.017454519867897034, + 0.00027739047072827816, + 0.04754028469324112, + 0.025143105536699295, + 0.06537684798240662, + -1.2300224625505507e-05, + -0.05042947456240654, + -0.0011886564316228032, + 0.01581890508532524, + 0.005766438320279121, + 0.02602657489478588, + -0.0012632738798856735, + -0.011282162740826607, + -0.06585440039634705, + -0.00948537327349186, + 0.0051306975074112415, + 0.05276947841048241, + 0.0033010770566761494, + 0.0017012784956023097, + -0.018731970340013504, + -0.04639416188001633, + 0.01437431015074253, + 0.007599043659865856, + -0.0010028588585555553, + 0.026742903515696526, + -0.014517576433718204, + -0.00538738165050745, + 0.00622608233243227, + 0.01787237823009491, + -0.011150836013257504, + 0.006834961008280516, + -0.025811677798628807, + 0.010894151404500008, + 0.013980329968035221, + -0.0009357031667605042, + -0.037440065294504166, + 0.06298908591270447, + 0.023805959150195122, + -0.007957207970321178, + 0.008166136220097542, + 0.03254515677690506, + -0.007515472359955311, + -0.02151370979845524, + 0.018087275326251984, + -0.013980329968035221, + 0.030085766687989235, + 0.029488826170563698, + -0.002687721513211727, + 0.016809824854135513, + 0.021131668239831924, + 0.04823273792862892, + -0.012016397900879383, + -0.021012281998991966, + -0.0034592661540955305, + 0.027244333177804947, + -0.0034144956152886152, + 0.012738695368170738, + -0.026456372812390327, + 0.017335131764411926, + -0.030372297391295433, + -0.010673283599317074, + -0.018922992050647736, + -0.005766438320279121, + 0.023555245250463486, + -0.04035313054919243, + 0.008381035178899765, + 0.017908195033669472, + 0.021131668239831924, + -0.004578528460115194, + -0.01236859243363142, + 0.0018982685869559646, + 0.01629645749926567, + 0.0049874321557581425, + 0.02953658252954483, + 0.00950328167527914, + -0.007640829309821129, + -0.0030951329972594976, + 0.030587196350097656, + 0.004509880207479, + 0.008273585699498653, + 0.0001714336540317163, + -0.018039520829916, + -0.006852868944406509, + -0.004297966603189707, + -0.02347167395055294, + -0.017597785219550133, + -0.03638945147395134, + -0.001399077707901597, + 0.002375820418819785, + 0.022409120574593544, + 0.02602657489478588, + 0.013431145809590816, + -0.003032454289495945, + 0.015723394230008125, + -0.01597410999238491, + 0.014935433864593506, + 0.03147066757082939, + -0.0020713810808956623, + 0.03292720019817352, + 0.01901850290596485, + -0.0057843467220664024, + 0.01821860298514366, + -0.04754028469324112, + -0.0014416095800697803, + 0.026742903515696526, + -0.04080680385231972, + 0.03655659407377243, + 0.026074331253767014, + -0.016869518905878067, + 0.0003057451103813946, + -0.020475035533308983, + -0.0049008759669959545, + 0.01524584274739027, + 0.02490432932972908, + -0.016200946643948555, + -0.008470576256513596, + 0.03400169312953949, + -0.0164277832955122, + -0.007234910503029823, + 0.005536616779863834, + -0.015293598175048828, + 0.0023862668313086033, + 0.007975115440785885, + -0.0068707773461937904, + -0.0008043763809837401, + 0.01524584274739027, + 0.032306380569934845, + -0.016153190284967422, + -0.020701872184872627, + 0.011926857754588127, + 0.014744413085281849, + -0.019233400002121925, + -0.01061358954757452, + -0.016702376306056976, + 0.05950295925140381, + 0.04001884534955025, + -0.018863297998905182, + -0.015412985347211361, + 0.0030593164265155792, + -0.0102136405184865, + -0.029966378584504128, + 0.012905838899314404, + 0.0007241626153700054, + 0.01341920718550682, + 0.007073736749589443, + 0.013431145809590816, + 0.021991262212395668, + -0.02012881077826023, + 0.04947436973452568, + -0.008070626296103, + 0.006423072423785925, + -0.012159664183855057, + -0.00948537327349186, + 0.004297966603189707, + 0.03132740035653114, + -0.0034861285239458084, + -0.0012259650975465775, + 0.00710358377546072, + 0.01252379734069109, + -0.024952083826065063, + -0.02471330761909485, + -0.009939047507941723, + 0.01341920718550682, + -0.03142291307449341, + 0.027554741129279137, + -0.014983189292252064, + 0.0016102450899779797, + 0.008273585699498653, + 0.0020863045938313007, + 0.017848500981926918, + 0.01020170096307993, + -0.0022638943046331406, + -0.010900121182203293, + 0.015257781371474266, + -0.010547926649451256, + 0.003313015913590789, + -0.0117238974198699, + 0.018314113840460777, + 0.013383390381932259, + -0.003665210446342826, + 0.02107197605073452, + 0.04467497393488884, + -0.02858147770166397, + -0.004223349038511515, + -0.017597785219550133, + 0.02348361164331436, + 0.008428789675235748, + 0.0003628274716902524, + -0.03340475261211395, + 0.021286873146891594, + -0.012416347861289978, + 0.002925005042925477, + 0.017275437712669373, + -0.016165129840373993, + -0.03701026737689972, + 0.008870525285601616, + 0.005658989306539297, + -0.010894151404500008, + 0.021477894857525826, + 0.01963931880891323, + 0.002308664610609412, + -0.004080083686858416, + -0.013132675550878048, + -0.0009110794053412974, + 0.004151716362684965, + -0.008172105997800827, + -0.02282697893679142, + -0.031088626012206078, + -0.03925476223230362, + -0.012977471575140953, + -0.01340726763010025, + 0.023352285847067833, + -0.006178326904773712, + 0.00331003125756979, + -0.04472273215651512, + -0.02459391951560974, + -0.014159412123262882, + -0.01772911287844181, + -0.009097362868487835, + 0.019818400964140892, + -0.01899462379515171, + -0.011831346899271011, + 0.019233400002121925, + 0.023089632391929626, + -0.005262024234980345, + -0.0026713055558502674, + 0.03049168549478054, + 0.02104809693992138, + -0.00363237876445055, + 0.027101067826151848, + 0.014087779447436333, + -0.015544313006103039, + -0.014636963605880737, + -0.006369347684085369, + -0.0005286647938191891, + 0.009634608402848244, + -0.033762916922569275, + 0.029751479625701904, + -0.0016923242947086692, + -0.0013065519742667675, + 0.013216247782111168, + -0.0032473525498062372, + -0.009264505468308926, + 0.010673283599317074, + -0.0068707773461937904, + 0.0023026952985674143, + -0.009049607440829277, + 0.015365230850875378, + -0.003086178796365857, + -0.03443148732185364, + 0.01627257838845253, + -0.0025951957795768976, + 0.0005241877515800297, + -0.025429636240005493, + 0.008906342089176178, + 0.02153758890926838, + 0.013646043837070465, + -0.023495551198720932, + -0.016236763447523117, + -0.009067515842616558, + 0.024928206577897072, + -0.024331266060471535, + -0.020176565274596214, + -0.016726253554224968, + 0.004909829702228308, + 0.012285021133720875, + -0.028605354949831963, + -0.011377672664821148, + -0.0009558498859405518, + 0.008339249528944492, + 0.013849003240466118, + 0.025310248136520386, + -0.017621662467718124, + 0.0010267364559695125, + 0.011437366716563702, + -0.024689430370926857, + -0.014959311112761497, + 0.008088534697890282, + -0.023256774991750717, + 0.028820253908634186, + 0.02457004226744175, + -0.01913789100944996, + 0.007825881242752075, + -0.025262491777539253, + 0.019818400964140892, + -0.02328065223991871, + 0.026886168867349625, + 0.009557005949318409, + 0.019913911819458008, + -0.014040024019777775, + -0.01788431592285633, + 0.04742089658975601, + 0.02202707901597023, + 0.0007984070107340813, + 0.036628227680921555, + -0.012285021133720875, + -0.008631750009953976, + -0.01851707324385643, + 0.03782210499048233, + 0.014362371526658535, + 0.0004906099056825042, + -0.025954943150281906, + 0.00314885750412941, + 0.011359764263033867, + 0.040759049355983734, + 0.007664707023650408, + 0.021824119612574577, + 0.01932891085743904, + 0.008100473321974277, + 0.016033804044127464, + -0.0011610479559749365, + 0.003802506485953927, + -0.013287880457937717, + 0.0008849632577039301, + 0.008381035178899765, + -0.007676646113395691, + -0.010344967246055603, + -0.006596184801310301, + -0.0036801339592784643, + -0.0165710486471653, + -0.003039916045963764, + -0.02490432932972908, + -0.022062895819544792, + 0.013622166588902473, + 0.0258355550467968, + -0.004145747050642967, + 0.04161864146590233, + 0.004560620058327913, + 0.02808004803955555, + -0.01252379734069109, + 0.0007349821389652789, + -0.009867414832115173, + 0.00042606578790582716, + -0.01772911287844181, + 0.03593577817082405, + 0.012631245888769627, + 0.05119355767965317, + -0.006954348646104336, + 0.0017505260184407234, + -0.019925851374864578, + -0.015484618954360485, + -0.0268145352602005, + -0.003930848557502031, + -0.006291745696216822, + -0.006560368463397026, + -0.011783591471612453, + -0.005384397227317095, + 0.010344967246055603, + 0.01316849235445261, + -0.003420465160161257, + 0.02636086195707321, + 0.006261898670345545, + 0.024928206577897072, + 0.018911052495241165, + 0.04995192214846611, + 0.028676988556981087, + -0.007802003063261509, + 0.006393225397914648, + -0.024832695722579956, + -0.0014886186691001058, + -0.029297806322574615, + -0.009562975727021694, + -0.00537842744961381, + 0.02490432932972908, + 0.012320837937295437, + 0.01771717332303524, + 0.005691821221262217, + -0.017848500981926918, + 0.02361493930220604, + 0.012858083471655846, + 0.011831346899271011, + -0.06141316890716553, + 0.006399194709956646, + -0.03844292461872101, + -0.015902476385235786, + 0.005250085610896349, + 0.05854785442352295, + -0.021119730547070503, + 0.004614344798028469, + -0.025501267984509468, + -0.019842280074954033, + 0.005909704137593508, + 0.005214269272983074, + 0.0034324037842452526, + 0.04371987283229828, + -0.01678594760596752, + -0.023340346291661263, + -0.014863801188766956, + 0.03906374052166939, + -0.005667943507432938, + -0.05501397326588631, + -0.003718934953212738, + 0.010715069249272346 + ], + "how_to_setup_storage_tanks": [ + -0.02346336655318737, + 0.002342242980375886, + 0.019814029335975647, + 0.0026522025000303984, + 0.022621212527155876, + 0.0038978897500783205, + -0.023217737674713135, + 0.0009700862574391067, + -0.04037664085626602, + -0.03586175665259361, + 0.02846950851380825, + -0.005713785998523235, + -0.0029139139223843813, + -0.0250307098031044, + 0.009760807268321514, + -0.007994621992111206, + -0.03983859717845917, + 0.06278731673955917, + -0.01063220389187336, + 0.014363417401909828, + 0.05754724144935608, + -0.012573838233947754, + -0.015205571427941322, + -0.004789755214005709, + -0.008117436431348324, + -0.038879476487636566, + 0.034972816705703735, + 0.05548863857984543, + -0.027650747448205948, + -0.023568635806441307, + 0.047628529369831085, + -0.023521849885582924, + -0.0034768125042319298, + 0.014035912230610847, + 0.022118259221315384, + 0.017720339819788933, + -0.009942105039954185, + 0.012293119914829731, + 0.008380609564483166, + 0.020059658214449883, + -0.017638463526964188, + 0.031534016132354736, + -0.026317335665225983, + 0.019603490829467773, + 0.011655655689537525, + 0.053242895752191544, + -0.01659746654331684, + 0.026176976040005684, + 0.017732035368680954, + 0.00418738042935729, + 0.02393123134970665, + -0.010070767253637314, + -0.011076673865318298, + -0.0916077196598053, + -0.003348149824887514, + -0.050435710698366165, + -0.046996913850307465, + 0.008889411576092243, + -0.011930525302886963, + -0.034972816705703735, + -0.010240367613732815, + 0.016620859503746033, + 0.018971875309944153, + 0.014141181483864784, + -0.016223175451159477, + 0.00259956787340343, + -0.0350663885474205, + 0.04823675379157066, + -0.04968712851405144, + 0.01894848234951496, + -0.002903679385781288, + 0.01422305777668953, + -0.01796596869826317, + 0.008398153819143772, + 0.013310723938047886, + -0.024913745000958443, + -0.023521849885582924, + 0.035768184810876846, + -0.02690216526389122, + -0.048564255237579346, + -0.04287971183657646, + -0.03352243825793266, + 0.002409498207271099, + -0.015369324013590813, + -0.00047663619625382125, + -0.02031698264181614, + -0.015591559000313282, + 0.001561495242640376, + -0.031650982797145844, + -0.043558113276958466, + -0.019919298589229584, + 0.0334288664162159, + 0.013649924658238888, + 0.02016492746770382, + 0.06288088858127594, + -0.023825962096452713, + 0.04082111269235611, + -0.029218090698122978, + -0.023100772872567177, + 0.014714314602315426, + -0.00869056861847639, + -0.026644840836524963, + -0.03319493308663368, + -0.0026668233331292868, + 0.044330090284347534, + -0.020866723731160164, + -0.0011089832987636328, + 0.03200187906622887, + -0.02673841267824173, + -0.02877362072467804, + -0.01941634528338909, + -0.023089075461030006, + 0.04187380522489548, + 0.0021375524811446667, + 0.0009072170360013843, + -0.014035912230610847, + -0.0012983218766748905, + 0.022586122155189514, + -0.004924266133457422, + 0.01565004140138626, + -0.0298497062176466, + -0.021650394424796104, + 0.024960530921816826, + -0.04348793625831604, + 0.027112703770399094, + -0.0031522319186478853, + 0.013030005618929863, + -0.0679338127374649, + -0.01455056294798851, + 0.03703141584992409, + -0.026410909369587898, + 0.0067723277024924755, + 0.0200128722935915, + -0.012983218766748905, + 0.0011689283419400454, + -0.0431838221848011, + 0.007555999327450991, + 0.008579451590776443, + 0.02566232718527317, + -0.015614952892065048, + 0.04475116729736328, + -0.044938310980796814, + 0.022492550313472748, + 0.028703439980745316, + -0.03894965723156929, + 0.004128897562623024, + -0.03539389371871948, + -0.017474710941314697, + 0.01376689039170742, + -0.029428629204630852, + -0.013030005618929863, + 0.017135510221123695, + -0.01924089714884758, + -0.05300896242260933, + 0.009427454322576523, + -0.019743850454688072, + 0.00418738042935729, + 0.04734781011939049, + 0.010760866105556488, + -0.012105974368751049, + -0.037756603211164474, + -0.011135157197713852, + -0.03078543394804001, + 0.006994563154876232, + -0.0005475467769429088, + -0.022398976609110832, + -0.028750227764248848, + -0.0024051121436059475, + -0.05408504977822304, + 0.025077497586607933, + -0.01671443320810795, + -0.0019080068450421095, + -0.016071120277047157, + 0.010684838518500328, + 0.006164104677736759, + -0.01924089714884758, + -0.022937020286917686, + -0.015591559000313282, + 0.023545242846012115, + 0.009883621707558632, + 0.009450847283005714, + -0.00813498068600893, + -0.0726124569773674, + -0.02046903967857361, + 0.03628283366560936, + 0.039019837975502014, + -0.03595532849431038, + 0.037312135100364685, + 0.0036551854573190212, + 0.03705480694770813, + -0.04781567305326462, + 0.037452492862939835, + 0.039183590561151505, + 0.05081000179052353, + 0.006123166996985674, + -0.030995972454547882, + 0.016234872862696648, + 0.0030264935921877623, + 0.05736009404063225, + -0.039043229073286057, + 0.03567460924386978, + 0.018983570858836174, + 0.007924442179501057, + -0.027253063395619392, + -0.01608281582593918, + -0.0192525926977396, + -0.007901049219071865, + 0.028563082218170166, + -0.03111293911933899, + -0.023708995431661606, + -0.022317100316286087, + -0.024586239829659462, + -0.02048073522746563, + 0.018387045711278915, + -0.028188791126012802, + -0.023545242846012115, + -0.05759402737021446, + 0.043113645166158676, + -0.04409615695476532, + -0.028352543711662292, + -0.03623604774475098, + 0.049827490001916885, + 0.044657595455646515, + -0.0316275879740715, + -0.023978017270565033, + 0.021030474454164505, + 0.009421606548130512, + -0.06119657680392265, + 0.05890404433012009, + 0.003099597292020917, + -0.019966084510087967, + 0.006538395769894123, + -0.015006729401648045, + -0.034809064120054245, + 0.017322655767202377, + -0.02188432589173317, + -0.008497575297951698, + -0.009345578029751778, + 0.021217620000243187, + -0.0037692273035645485, + -0.00890695583075285, + -0.012562141753733158, + -0.008357216604053974, + -0.046692803502082825, + 0.013568048365414143, + 0.013392599299550056, + -0.014597348868846893, + -0.06526698917150497, + 0.0816890075802803, + 0.009784200228750706, + -0.009409909136593342, + -0.007737296633422375, + 0.012152761220932007, + 0.011655655689537525, + -0.007286977954208851, + -0.06924383342266083, + -0.028212184086441994, + -0.006099773570895195, + -0.0021565593779087067, + -0.01400082278996706, + 0.03848179429769516, + 0.013918946497142315, + -0.043862227350473404, + 0.0046201543882489204, + -0.001081203925423324, + -0.03473888337612152, + 0.02046903967857361, + 0.033873334527015686, + -0.027323242276906967, + -0.01797766424715519, + 0.022083168849349022, + 0.031674373894929886, + -0.008082346059381962, + -0.03284403681755066, + -0.06072871387004852, + -0.005184514913707972, + 0.016854790970683098, + 0.008211009204387665, + -0.0001913489686558023, + 0.041359156370162964, + -0.0591379776597023, + -0.06531377881765366, + 0.008942046202719212, + 0.04082111269235611, + -0.026247156783938408, + 0.015334234572947025, + -0.029592381790280342, + 0.013579744845628738, + 0.016328444704413414, + 0.0056465305387973785, + 0.07031992077827454, + 0.03703141584992409, + 0.008596996776759624, + -0.01501842588186264, + 0.04271595925092697, + 0.027486994862556458, + -0.01477279793471098, + -0.004105504602193832, + 0.031183118000626564, + -0.03064507618546486, + -0.017954271286725998, + 0.0189133919775486, + 0.02500731684267521, + 0.026364121586084366, + -0.020574308931827545, + -0.04554653540253639, + 0.02891398034989834, + -0.03925376757979393, + 0.0004082842206116766, + 0.019159020856022835, + 0.01628165878355503, + -0.029592381790280342, + 0.08154865354299545, + -0.05488041788339615, + 0.007281129714101553, + -0.018866606056690216, + 0.045125458389520645, + 0.054646484553813934, + -0.018188202753663063, + -0.015767008066177368, + -0.006672906689345837, + -0.02236388623714447, + 0.05834260955452919, + -0.054740060120821, + 0.03125329688191414, + -0.053570397198200226, + -0.03967484459280968, + -0.02442248724400997, + -0.03083222173154354, + 0.02877362072467804, + -0.005579275079071522, + 0.006971169728785753, + 0.00457336800172925, + -0.005781041458249092, + -0.0031434595584869385, + 0.005266391206532717, + 0.0385051853954792, + 0.005658227019011974, + 0.050295352935791016, + 0.00986022874712944, + -0.0209719929844141, + 0.02828236296772957, + -0.019346166402101517, + 0.051839303225278854, + 0.020422251895070076, + 0.033569224178791046, + 0.039978958666324615, + 0.045148853212594986, + 0.0021360903047025204, + 0.00429557403549552, + -0.005447688512504101, + 0.05240073800086975, + -0.04879818856716156, + -0.03003685176372528, + -0.012983218766748905, + 0.030691862106323242, + -0.008485878817737103, + -0.02706591784954071, + -0.04084450379014015, + -0.0025410850066691637, + -0.022141652181744576, + 0.011550386436283588, + -0.007754841819405556, + 0.005079245660454035, + -0.005485702306032181, + 0.014714314602315426, + -0.006813265848904848, + -0.03003685176372528, + -0.01048599649220705, + 0.022562729194760323, + 0.06096264719963074, + 0.029007552191615105, + 0.03551085665822029, + 0.0261301901191473, + -0.01080180425196886, + 0.00492134178057313, + 0.006871748715639114, + 0.019778938964009285, + -0.040587179362773895, + 0.031814735382795334, + 0.018808122724294662, + 0.02439909428358078, + 0.03546407073736191, + 0.04072754085063934, + -0.007275281473994255, + 0.005383357405662537, + -0.02720627747476101, + 0.036961235105991364, + -0.029990065842866898, + 0.016843095421791077, + 0.01525235828012228, + -0.04624833166599274, + -0.0067021483555436134, + 0.032305993139743805, + -0.020702971145510674, + 0.014831280335783958, + 0.058576539158821106, + 0.011369088664650917, + 0.014059305191040039, + 0.01910053752362728, + 0.06040120869874954, + -0.008409851230680943, + -0.04367507994174957, + -0.011831104755401611, + 0.04365168884396553, + 0.01226972695440054, + 0.03429441154003143, + 0.0038744965568184853, + -0.002141938777640462, + -0.03616586700081825, + 0.03579157590866089, + -0.0676530972123146, + 0.029475415125489235, + -0.006977017968893051, + 0.015731917694211006, + -0.004354056902229786, + -0.015825491398572922, + 0.014433596283197403, + -0.02830575592815876, + -0.0005263467319309711, + 0.019802333787083626, + 0.019778938964009285, + 0.020679578185081482, + -0.03253992274403572, + -0.013217151165008545, + 0.05244752764701843, + 0.028352543711662292, + -0.017275867983698845, + -0.005070473533123732, + -0.0896894782781601, + -0.03249313682317734, + 0.016024332493543625, + -0.042458634823560715, + 0.02704252488911152, + 0.02080824039876461, + -0.021463248878717422, + 0.004199076909571886, + -0.0204924326390028, + -0.038715723901987076, + -0.029030945152044296, + -0.044330090284347534, + -0.03141704946756363, + 0.06835488975048065, + -0.016796307638287544, + -0.05581614375114441, + -0.013123578391969204, + 0.0029592381324619055, + -0.02376747876405716, + -0.022235224023461342, + 0.016644252464175224, + 0.019814029335975647, + 0.02314755879342556, + -0.07116207480430603, + 0.0734546110033989, + -0.02080824039876461, + 0.014410203322768211, + 0.01940464973449707, + -0.02863326109945774, + 0.027720926329493523, + 0.007632027380168438, + 0.03270367532968521, + 0.059980131685733795, + 0.012760983780026436, + 0.010111705400049686, + 0.004389146808534861, + -0.012714196927845478, + 0.028680047020316124, + 0.01477279793471098, + 0.012211243622004986, + -0.06872918456792831, + -0.013111881911754608, + -0.045148853212594986, + 0.02484356425702572, + -0.020094748586416245, + -0.017790518701076508, + -0.02411837689578533, + -0.01639862358570099, + 0.04818996414542198, + -0.007380550727248192, + -0.04201416298747063, + 0.032305993139743805, + 0.07031992077827454, + -0.05268145725131035, + 0.014304934069514275, + -0.009023921564221382, + 0.05923154950141907, + 0.0429031066596508, + -0.024141769856214523, + -0.09259023517370224, + -0.015720222145318985, + -0.016609162092208862, + -0.015041819773614407, + 0.03284403681755066, + -0.011164398863911629, + 0.008322126232087612, + -0.03983859717845917, + -0.039464306086301804, + -0.07191065698862076, + 0.03958127275109291, + 0.0004788293153978884, + 0.03579157590866089, + -0.006743086036294699, + -0.00048723621875979006, + 0.041686661541461945, + -0.017626766115427017, + -0.031089546158909798, + 0.03017721138894558, + 0.005377508699893951, + 0.027767714112997055, + 0.010942162945866585, + -0.004260484129190445, + -0.03359261527657509, + -0.0030557350255548954, + 0.014644134789705276, + 0.02423534169793129, + -0.003602550830692053, + 0.010059070773422718, + 0.0009057549759745598, + 0.007333764340728521, + 0.028422722592949867, + -0.009895318187773228, + -0.008596996776759624, + -0.0025279263500124216, + 0.037592850625514984, + -0.017240779474377632, + -0.011228729970753193, + -0.044985100626945496, + -0.025615539401769638, + 0.038388218730688095, + -0.028258970007300377, + 0.02860986813902855, + -0.024024803191423416, + 0.0063103120774030685, + 0.0425054207444191, + -0.03595532849431038, + 0.00931048858910799, + -0.04124218970537186, + -0.016527287662029266, + -0.028516294434666634, + -0.02910112589597702, + -0.01765015907585621, + 0.01691327430307865, + -0.02657466009259224, + 0.04739459604024887, + -0.017088722437620163, + 0.01783730462193489, + -0.000182667892659083, + -0.0032721220050007105, + 0.03195509314537048, + 0.04535939171910286, + 0.019767243415117264, + -0.049640342593193054, + -0.03298439458012581, + -0.036680515855550766, + 0.01911223493516445, + -0.004880403634160757, + -0.02110065519809723, + -0.03375636786222458, + -0.005041231866925955, + -0.011766773648560047, + -0.020375465974211693, + -0.0015951229725033045, + 0.034177444875240326, + -0.030879007652401924, + 0.006117318291217089, + 0.06835488975048065, + 0.04000234976410866, + 0.002590795513242483, + -0.01453886553645134, + -0.02519446238875389, + 0.008409851230680943, + 0.0028525067027658224, + 0.021194227039813995, + -0.019732153043150902, + -0.005725482478737831, + 0.006386340130120516, + 0.010579569265246391, + 0.005938945338129997, + 0.006661210209131241, + -0.007415640167891979, + -0.010234519839286804, + -0.05567578598856926, + -0.010819349437952042, + 0.005321950186043978, + -0.019814029335975647, + -0.017123812809586525, + -0.017112117260694504, + 0.018410438671708107, + 0.02015323005616665, + -0.07555999606847763, + -0.03897304832935333, + -0.02425873465836048, + -0.02549857459962368, + -0.018656067550182343, + 0.014573955908417702, + 0.00026865614927373827, + 0.0060529871843755245, + 0.016386928036808968, + -0.023521849885582924, + 0.023896140977740288, + -0.021977899596095085, + 0.03270367532968521, + -0.020305287092924118, + 0.017147205770015717, + -0.03768642619252205, + -0.021217620000243187, + -0.0052459221333265305, + -0.004427160602062941, + -0.03359261527657509, + 0.02645769529044628, + -0.012760983780026436, + -0.019322773441672325, + -0.03473888337612152, + -0.02391953393816948, + 0.004605533555150032, + 0.011445117183029652, + -0.02690216526389122, + 0.030107032507658005, + -0.011608868837356567, + -0.04411955177783966, + -0.010363182052969933, + 0.023510152474045753, + -0.024165162816643715, + -0.00986022874712944, + 0.0007083749515004456, + 0.017544889822602272, + -0.008421547710895538, + -0.0070471977815032005, + -0.02846950851380825, + 0.004365753382444382, + 0.015708524733781815, + -0.015427807345986366, + 0.007152467034757137, + 0.016293354332447052, + -0.017486408352851868, + -0.007637875620275736, + 0.019159020856022835, + 0.03752267360687256, + -0.0016375230625271797, + 0.01063805166631937, + 0.012690803967416286, + -0.017872394993901253, + 0.04648226499557495, + -0.01816480979323387, + 0.02125271037220955, + 0.048564255237579346, + -0.037312135100364685, + 0.058716900646686554, + 0.02734663523733616, + -0.02204807847738266, + -0.00381308957003057, + 0.004453477915376425, + 0.03158080205321312, + 0.0035411438439041376, + -0.009971345774829388, + -0.0037809237837791443, + -0.020094748586416245, + -0.025919651612639427, + -0.03225920349359512, + -0.008029711432754993, + -0.02207147143781185, + 0.011205337010324001, + -0.018036147579550743, + 0.02519446238875389, + -0.031370263546705246, + 0.00812913291156292, + 0.017100419849157333, + -0.024492667987942696, + 0.024796778336167336, + -0.00804140791296959, + -0.02331131137907505, + 0.004684485960751772, + 0.010409967973828316, + -0.00238756719045341, + -0.005453536752611399, + -0.0053336466662585735, + -0.004678637254983187, + -0.022083168849349022, + -0.018293472006917, + 0.022469155490398407, + -0.013989126309752464, + 0.01610620878636837, + -0.035276927053928375, + 0.004011931829154491, + 0.008474182337522507, + -0.038879476487636566, + -0.05427219346165657, + 0.036657124757766724, + -0.013474475592374802, + 0.029779527336359024, + -0.014503776095807552, + 0.004769286140799522, + -0.0027106855995953083, + 0.00781917292624712, + 0.023077379912137985, + -0.0008480030228383839, + 0.0459442213177681, + -0.006707996595650911, + 0.009895318187773228, + -0.057968318462371826, + -0.0066846031695604324, + -0.03586175665259361, + -0.03251653164625168, + -0.02844611555337906, + -0.02973274141550064, + 0.013146971352398396, + 0.005485702306032181, + 0.0072343433275818825, + 0.02657466009259224, + 0.0028174170292913914, + -0.03618926182389259, + -0.01226972695440054, + -0.031978487968444824, + 0.016059422865509987, + -0.044821348041296005, + 0.010790107771754265, + -0.03611908107995987, + -0.028867192566394806, + 0.019275985658168793, + -0.00955026876181364, + 0.010579569265246391, + -0.01017603650689125, + -0.035440679639577866, + 0.05099714919924736, + -0.020562611520290375, + -0.014889763668179512, + 0.0014372189762070775, + -0.0067021483555436134, + 0.008199311792850494, + 0.004330663941800594, + 0.005476930178701878, + 0.0068659004755318165, + -0.014737707562744617, + -0.0203520730137825, + 0.006725541315972805, + 0.007936138659715652, + -0.04907890781760216, + -0.007175859995186329, + 0.015767008066177368, + -0.012620624154806137, + -0.036984629929065704, + -0.035089779645204544, + 0.014761101454496384, + -0.01766185648739338, + 0.0346687026321888, + -0.014258147217333317, + -0.03078543394804001, + 0.058576539158821106, + -0.022597819566726685, + 0.0008048718445934355, + -0.019673669710755348, + 0.006824962329119444, + -0.0008326512761414051, + -0.009152584709227085, + 0.003000176278874278, + -0.01988421007990837, + 0.004742968827486038, + 0.017907485365867615, + -0.009579510428011417, + 0.007977076806128025, + -0.0036405648570507765, + 0.009667234495282173, + -0.039955563843250275, + 0.0026726715732365847, + -0.0005830021109431982, + 0.014211361296474934, + 0.0019080068450421095, + -0.0018334410851821303, + -0.02376747876405716, + -0.018819818273186684, + 0.014410203322768211, + -0.0321890264749527, + -0.0017281717155128717, + 0.01894848234951496, + -0.016632556915283203, + -0.027954859659075737, + -0.02596643753349781, + -0.014328327029943466, + 0.002903679385781288, + -0.0328674279153347, + -0.005561730358749628, + -0.02173227071762085, + 0.012293119914829731, + 0.03375636786222458, + 0.03616586700081825, + -0.0004393532872200012, + 0.005117259919643402, + 0.006462368182837963, + -0.014141181483864784, + -0.07017955929040909, + -0.028820406645536423, + -0.015486289747059345, + 0.022282011806964874, + 0.019205806776881218, + 0.025849472731351852, + 0.018270079046487808, + 0.0005109949270263314, + -0.08589978516101837, + -0.014141181483864784, + 0.0099362563341856, + -0.04489152505993843, + -0.009263701736927032, + 0.011088370345532894, + -0.0016594541957601905, + 0.003687351243570447, + 0.011866194196045399, + -0.06564128398895264, + 0.010719927959144115, + -0.033732976764440536, + -0.029358450323343277, + 0.018328562378883362, + -0.004713727161288261, + 0.02470320649445057, + 0.027627354487776756, + -0.0031727009918540716, + 0.02141646295785904, + 0.006895142141729593, + -0.0016857715090736747, + -0.008947893977165222, + 0.03551085665822029, + 0.013111881911754608, + -0.02362711913883686, + 0.03048132359981537, + 0.016960060223937035, + 0.011614717543125153, + -0.0028115687891840935, + 0.019650276750326157, + 0.019123930484056473, + 0.05609686300158501, + 0.036961235105991364, + 0.0240715891122818, + -0.027580568566918373, + -0.041078437119722366, + 0.020457342267036438, + 0.027486994862556458, + 0.01784900203347206, + 0.04599100723862648, + 0.004918417427688837, + 0.004330663941800594, + 0.020691273733973503, + 0.03785017877817154, + 0.046388689428567886, + 0.0018188203684985638, + -0.033241719007492065, + -0.0037750755436718464, + -0.0030849764589220285, + 0.005260542966425419, + 0.009573661722242832, + -0.022083168849349022, + 0.054973989725112915, + 0.03263349458575249, + 0.04032985493540764, + 0.02828236296772957, + -0.015264054760336876, + -0.023978017270565033, + -0.033732976764440536, + -0.004549975041300058, + 0.01039242371916771, + 0.016351837664842606, + -0.01515878550708294, + 0.00011212281242478639, + 0.008912804536521435, + 0.012328209355473518, + -0.004327739588916302, + -0.017404532060027122, + 0.003011872759088874, + -0.01690157875418663, + -0.005842448677867651, + 0.004193228669464588, + -0.02096029557287693, + 0.021381372585892677, + 0.01705363392829895, + 0.019977781921625137, + 0.005164046306163073, + -0.017895787954330444, + 0.0072343433275818825, + -0.0024372776970267296, + 0.004772210028022528, + 0.04828353971242905, + -0.02078484743833542, + 0.005813207011669874, + -0.005166970193386078, + -0.024352308362722397, + -0.02739342302083969, + 0.031066153198480606, + 0.017579980194568634, + 0.029685955494642258, + 0.039628058671951294, + -0.0024986849166452885, + 0.00914088822901249, + -0.022258616983890533, + 0.013100184500217438, + 0.019474828615784645, + -0.03207205981016159, + -0.03677409142255783, + 0.027580568566918373, + -0.00852096825838089, + 0.009585358202457428, + 0.01955670490860939, + -0.022469155490398407, + 0.022235224023461342, + 0.01597754657268524, + 0.024305522441864014, + 0.019486524164676666, + -0.011778470128774643, + -0.010304698720574379, + -0.05174573138356209, + -0.0023203117307275534, + -0.029756134375929832, + 0.005573426838964224, + 0.018644370138645172, + -0.019287683069705963, + -0.0014810811262577772, + -0.014129485003650188, + -0.028492901474237442, + -0.031346872448921204, + -0.0006308850133791566, + -0.023100772872567177, + -0.0035733093973249197, + -0.013123578391969204, + -0.007620330899953842, + -0.0002748699625954032, + 0.008269491605460644, + -0.011164398863911629, + 0.02158021554350853, + -0.032937608659267426, + -0.003564536804333329, + -0.005994504317641258, + 0.016550680622458458, + -0.05389790236949921, + 0.02547518163919449, + -0.01797766424715519, + 0.014246450737118721, + 0.014176271855831146, + 0.02566232718527317, + 0.025568753480911255, + 0.0025235400535166264, + -0.011901283636689186, + -0.02566232718527317, + -0.02015323005616665, + -0.0020176623947918415, + -0.0030440385453402996, + 0.02066788077354431, + -0.02204807847738266, + -0.001332680694758892, + -0.01676121912896633, + -0.05207323655486107, + -0.021065564826130867, + 0.002867127535864711, + 0.007778234779834747, + 0.020913509652018547, + -0.048423897475004196, + 0.014784494414925575, + 0.009912863373756409, + -0.02816539816558361, + -0.008322126232087612, + 0.0034329502377659082, + -0.01644541136920452, + 0.04201416298747063, + 0.021065564826130867, + -0.0011265281355008483, + -0.010749169625341892, + -0.01611790619790554, + 0.0024168086238205433, + 0.027650747448205948, + -0.003213639138266444, + -0.026504481211304665, + -0.027112703770399094, + -0.011948070488870144, + -0.013357509858906269, + 0.024609632790088654, + -0.02317095175385475, + -0.009942105039954185, + 0.03972163051366806, + -0.022913627326488495, + -0.01906544715166092, + 0.03003685176372528, + 0.01368501503020525, + -0.010310547426342964, + -0.0010044450173154473, + 0.013182060793042183, + 0.034037087112665176, + -0.031206510961055756, + 0.004956431686878204, + 0.01892508938908577, + 0.007555999327450991, + -0.0014152878429740667, + 0.01611790619790554, + 0.021463248878717422, + 0.00955026876181364, + 0.008000469766557217, + 0.019615188241004944, + 0.026715019717812538, + 0.018047843128442764, + 0.006047138944268227, + 0.018574191257357597, + 0.012351603247225285, + 0.040750931948423386, + -0.01565004140138626, + 0.04828353971242905, + -2.586043774499558e-05, + 0.02409498207271099, + 0.002139014657586813, + -0.020246803760528564, + -0.025241248309612274, + -0.02361542172729969, + 0.037475887686014175, + 0.04201416298747063, + -0.009971345774829388, + 0.011252122931182384, + 0.007439033593982458, + -0.02346336655318737, + 0.006082228850573301, + 0.009205219335854053, + -0.001184280146844685, + -0.03595532849431038, + -0.020258499309420586, + -0.0069594732485711575, + -0.0690566897392273, + -0.07635536044836044, + -0.011164398863911629, + -0.014573955908417702, + 0.04337096959352493, + 0.011836952529847622, + -0.0013107495615258813, + -0.004734196234494448, + -0.0021507111378014088, + -0.028656654059886932, + 0.03394351527094841, + 0.0016653025522828102, + 0.022246921434998512, + 0.014948247000575066, + 0.00017078853852581233, + 0.03300778567790985, + 0.021393069997429848, + 0.003099597292020917, + -0.025311429053544998, + 0.007731448393315077, + -0.01782560907304287, + 0.03174455463886261, + -0.008947893977165222, + -0.03312475234270096, + 0.018983570858836174, + 0.026551267132163048, + 0.004906720947474241, + 0.001674074912443757, + 0.01738113723695278, + -0.024282127618789673, + 0.027299849316477776, + -0.011948070488870144, + -0.0240715891122818, + 0.07003920525312424, + -0.012445176020264626, + 0.011217033490538597, + 7.954597822390497e-05, + -0.04973391443490982, + -0.0356278233230114, + -0.000767588964663446, + 0.030434535816311836, + 0.04142933338880539, + 0.03034096397459507, + -0.0077665382996201515, + 0.003497281577438116, + -0.03237617015838623, + -0.034645311534404755, + 0.013275633566081524, + -0.007830869406461716, + -0.011082522571086884, + -0.010795955546200275, + 0.0387859046459198, + -0.004348208662122488, + -0.0005603399476967752, + -0.016808005049824715, + 0.040119316428899765, + -0.022282011806964874, + -0.017088722437620163, + -0.03518335521221161, + -0.027767714112997055, + 0.011807710863649845, + -0.009029770269989967, + -0.0021229316480457783, + -0.020422251895070076, + -0.014246450737118721, + -0.009988890960812569, + 0.015381020493805408, + 0.012913038954138756, + 0.012258030474185944, + 0.0200128722935915, + 0.02582607790827751, + 0.0378267839550972, + -0.03609568625688553, + -0.01639862358570099, + 0.0004558016371447593, + -0.018199900165200233, + -0.01831686496734619, + -0.024937137961387634, + -0.03579157590866089, + 0.014024215750396252, + -0.0061465599574148655, + 0.0037926204968243837, + 0.003845255123451352, + 0.0099362563341856, + -0.016948364675045013, + 0.00338031561113894, + -0.00931048858910799, + 0.020106444135308266, + -0.01445699017494917, + 0.004646471701562405, + 0.014351719990372658, + 0.024282127618789673, + 0.041382547467947006, + -0.03955787792801857, + 0.04624833166599274, + -0.00015269537107087672, + 0.006386340130120516, + -0.01768524944782257, + 0.005666999612003565, + -0.009099950082600117, + 0.003596702590584755, + 0.018504010513424873, + -0.021521732211112976, + -0.029335057362914085, + 0.009561965242028236, + 0.018176507204771042, + -0.004006083123385906, + 0.01171998679637909, + 0.027814500033855438, + 0.03920698165893555, + 0.024188555777072906, + -0.04851746931672096, + -0.003991462755948305, + -0.0525410994887352, + 0.001399936038069427, + -0.02032868005335331, + -0.02877362072467804, + -0.005681620445102453, + 0.013579744845628738, + 0.025872865691781044, + -0.012854556553065777, + -0.02376747876405716, + 0.002925610402598977, + -0.026223763823509216, + 0.014129485003650188, + -0.01718229614198208, + 0.001016141613945365, + 0.02566232718527317, + 0.04435348138213158, + 0.05899761989712715, + -0.0017471787286922336, + -0.050108205527067184, + -0.002174104331061244, + 0.019509918987751007, + 0.019673669710755348, + 0.02751038782298565, + 0.003286742838099599, + -0.019743850454688072, + -0.04671619459986687, + -0.002264752984046936, + 0.024937137961387634, + 0.01752149686217308, + 0.0008582375594414771, + 0.02063279040157795, + -0.04393240436911583, + -0.01907714456319809, + 0.025896258652210236, + 0.021650394424796104, + -0.023393187671899796, + 0.04645887017250061, + -0.020539218559861183, + -0.03691444918513298, + -0.00574887590482831, + 0.00390958646312356, + 0.016819702461361885, + 0.029779527336359024, + -0.030223997309803963, + 0.013240544125437737, + 0.015685131773352623, + 0.017322655767202377, + -0.03799053654074669, + 0.034785669296979904, + 0.033849943429231644, + 0.008696417324244976, + -0.011012342758476734, + 0.0019591795280575752, + -0.011146853677928448, + -0.008152525871992111, + 0.024188555777072906, + -0.02036377042531967, + 0.009556117467582226, + 0.03139365836977959, + 0.023194344714283943, + 0.043394360691308975, + 0.010573720559477806, + 0.02175566367805004, + -0.03359261527657509, + -0.00539212953299284, + -0.008404002524912357, + 0.027089310809969902, + -0.017626766115427017, + 0.0053892056457698345, + -0.02987310104072094, + -0.000270300981355831, + -0.01658576913177967, + 0.02566232718527317, + -0.008778293617069721, + 0.005409674718976021, + -0.008275340311229229, + -0.03221241757273674, + -0.04086789861321449, + 0.01101819146424532, + -0.009351426735520363, + -0.02111235074698925, + 0.006971169728785753, + 0.0006648782291449606, + 0.017463013529777527, + -0.02265630103647709, + -0.009988890960812569, + 0.007421488873660564, + -0.010275457985699177, + -0.013076791539788246, + 0.01133399922400713, + 0.01801275461912155, + 0.014035912230610847, + -0.010076615028083324, + -0.010205278173089027, + -0.01910053752362728, + -0.014983336441218853, + -0.0063278572633862495, + -0.045265816152095795, + -0.03127669170498848, + 0.012000705115497112, + -0.014562259428203106, + 0.003810165449976921, + 0.02767414040863514, + 0.0016813853289932013, + 0.01525235828012228, + 0.011152702383697033, + -0.014854674227535725, + 0.014024215750396252, + 0.0189133919775486, + -0.0005088018369860947, + 0.001505936379544437, + 0.029779527336359024, + 0.00240657408721745, + 0.0356278233230114, + -0.01734604872763157, + -0.008433244191110134, + 0.006456519477069378, + -0.012620624154806137, + 0.009439150802791119, + 0.020761454477906227, + -0.018960177898406982, + 0.008480030111968517, + -0.013240544125437737, + 0.0033949362114071846, + -0.009544420056045055, + -0.00700041139498353, + 0.005050004459917545, + -0.02204807847738266, + 0.06456519663333893, + 0.006555940955877304, + -0.008474182337522507, + 0.024796778336167336, + -0.008035560138523579, + -0.013649924658238888, + -0.017112117260694504, + -0.018737943843007088, + 0.01415287796407938, + 0.020726364105939865, + 0.030083639547228813, + -0.006661210209131241, + 0.002409498207271099, + 0.016071120277047157, + 0.026481088250875473, + -0.020586004480719566, + -0.029779527336359024, + -0.031206510961055756, + 0.025147676467895508, + 0.006725541315972805, + -0.0028758998960256577, + -0.013193757273256779, + 0.018480617552995682, + -0.00406456645578146, + -0.021463248878717422, + 0.003415405284613371, + 0.017544889822602272, + -0.0005764227826148272, + 0.007070590741932392, + 0.025709113106131554, + 0.01463243830949068, + -0.011918828822672367, + 0.023498456925153732, + 0.008807535283267498, + 0.013275633566081524, + -0.02687877230346203, + 0.005634834058582783, + -0.0008363064262084663, + 0.008982984349131584, + -0.02142816036939621, + 0.0005669192760251462, + 0.012714196927845478, + 0.027136096730828285, + -0.01188958715647459, + -0.016503892838954926, + -0.022726481780409813, + 0.009585358202457428, + -0.019346166402101517, + 0.01463243830949068, + 9.402964496985078e-05, + 0.005383357405662537, + 0.0027399270329624414, + -0.007772386539727449, + 0.022738177329301834, + 0.02484356425702572, + -0.013310723938047886, + -0.0006992369890213013, + -0.0044885678216814995, + 0.0048950244672596455, + -0.018188202753663063, + -0.0058716898784041405, + 0.012573838233947754, + 0.027159489691257477, + -0.0015571090625599027, + 0.013649924658238888, + 0.02987310104072094, + -0.03581497073173523, + -0.02797825261950493, + -0.007637875620275736, + 0.016468804329633713, + 0.014269844628870487, + 0.0004941810620948672, + -0.01768524944782257, + 0.0009817827958613634, + -0.03752267360687256, + -0.018878301605582237, + 0.019042054191231728, + -0.013205454684793949, + -0.026200369000434875, + 0.005181591026484966, + -0.0007310371147468686, + -0.013404296711087227, + 0.029802920296788216, + 0.015486289747059345, + -0.001657992135733366, + 0.012503658421337605, + 0.01593076065182686, + -0.005994504317641258, + 0.01845722459256649, + -0.011860346421599388, + -0.01910053752362728, + -0.047605134546756744, + 0.0006553747807629406, + -0.009135039523243904, + -0.009035618975758553, + 0.008637933991849422, + 0.006655361969023943, + -0.013579744845628738, + -0.0397450253367424, + -0.01612960174679756, + -0.006152408197522163, + -0.014667528681457043, + -0.03876250982284546, + -0.010234519839286804, + -0.036353014409542084, + -0.0051231081597507, + 0.0025235400535166264, + 0.015065212734043598, + 0.020609397441148758, + 0.009754959493875504, + 0.034926027059555054, + 0.018211595714092255, + -0.013544655404984951, + 0.01800105720758438, + 0.0017588753253221512, + -0.02907773107290268, + 0.021942809224128723, + -0.007532606367021799, + -0.013568048365414143, + 0.0012054801918566227, + -0.009363123215734959, + 0.02096029557287693, + -0.010018132627010345, + -0.0020893041510134935, + 0.01581379398703575, + -0.002163869794458151, + -0.00269606476649642, + 0.007573544513434172, + -0.02016492746770382, + 0.0016667646123096347, + 0.001751564908772707, + 0.00851512048393488, + 0.03864554688334465, + -0.03988538309931755, + -0.004193228669464588, + -0.020562611520290375, + 0.014082699082791805, + 0.005462309345602989, + 0.009503481909632683, + 0.009047315455973148, + 0.01267910748720169, + -0.03172116354107857, + 0.007409791927784681, + -0.03064507618546486, + -0.0027691684663295746, + -0.0015220192726701498, + -0.023896140977740288, + -0.018691156059503555, + 0.010942162945866585, + 0.01782560907304287, + -0.019439738243818283, + -0.011322302743792534, + 0.0154044134542346, + 0.002403649967163801, + -0.0250307098031044, + 0.007292826194316149, + -0.012258030474185944, + -0.015614952892065048, + 0.008585299365222454, + -0.02046903967857361, + -0.010105856694281101, + -0.0011469972087070346, + -0.039323948323726654, + 0.006409733090549707, + 0.023381490260362625, + -0.01610620878636837, + 0.02218843810260296, + -0.03036435693502426, + 0.0360255092382431, + -0.021042171865701675, + 0.0073103709146380424, + -0.016386928036808968, + 0.03780338913202286, + -0.02205977588891983, + -0.0250307098031044, + 0.01658576913177967, + 0.02753378078341484, + 0.03305457532405853, + 0.04926605150103569, + -0.010965556837618351, + 0.008392306044697762, + -0.002681444166228175, + 0.03639980033040047, + 0.018866606056690216, + 0.012316512875258923, + -0.025545360520482063, + -0.014129485003650188, + 0.008860169909894466, + 0.018504010513424873, + 0.005561730358749628, + 0.010509389452636242, + 0.017579980194568634, + -0.0025220781099051237, + 0.0030440385453402996, + 0.013743497431278229, + 0.02786128595471382, + -0.024024803191423416, + 0.016644252464175224, + -0.007526758126914501, + -0.016351837664842606, + -0.016620859503746033, + -0.014351719990372658, + 0.009240308776497841, + -0.03876250982284546, + 0.0067723277024924755, + -0.0055909715592861176, + -0.0007482164655812085, + 0.021030474454164505, + 0.050108205527067184, + 0.000646602304186672, + 0.04362829402089119, + -0.017135510221123695, + 0.02036377042531967, + 0.0005384088144637644, + 0.017954271286725998, + -0.012597231194376945, + -0.022773267701268196, + -0.00938066840171814, + 0.04133576154708862, + 0.005099714733660221, + 0.00796538032591343, + 0.007848414592444897, + -0.00312883872538805, + -0.02050412818789482, + 0.02629394270479679, + -0.010199429467320442, + 0.009953801520168781, + -0.007111528888344765, + -0.02786128595471382, + -0.010643900372087955, + -0.03515996038913727, + 0.014340023510158062, + 0.022480852901935577, + 0.02081993594765663, + 0.029124518856406212, + -0.002722382079809904, + 0.007877656258642673, + 0.005938945338129997, + 0.035417284816503525, + 0.006766479462385178, + -0.016655949875712395, + 0.007842565886676311, + -0.035440679639577866, + -0.018644370138645172, + 0.01906544715166092, + -0.005003218073397875, + -0.009462544694542885, + 0.005251770373433828, + 0.03169776871800423, + 0.019919298589229584, + 0.01738113723695278, + -0.008415699005126953, + 0.012854556553065777, + -0.0038598759565502405, + 0.014375113882124424, + -0.06358268111944199, + -0.004289725795388222, + -0.017135510221123695, + -0.018971875309944153, + -0.005430143792182207, + 0.040446821600198746, + -0.030411142855882645, + -0.0272296704351902, + -0.038715723901987076, + -0.0497807040810585, + -0.011392482556402683, + -0.005643606651574373, + 0.003345225704833865, + 0.045125458389520645, + -0.019030358642339706, + -0.00637464364990592, + -0.016012636944651604, + 0.034013696014881134, + 0.011100067757070065, + -0.042622387409210205, + -0.008094042539596558, + 0.029171304777264595 + ], + "how_to_set_up_multiple_drill_plate_mine": [ + -0.031254541128873825, + -0.022310860455036163, + 0.04423496499657631, + -0.04906938970088959, + -0.02281847409904003, + -0.021803244948387146, + 0.038143593817949295, + 0.02523568458855152, + -0.006284749135375023, + -0.0035563220735639334, + 0.030601894482970238, + -0.008617358282208443, + 0.021827416494488716, + -0.02741117589175701, + 0.03488035872578621, + 0.00933647807687521, + -0.014285718090832233, + -0.0008603761089034379, + 0.01596567966043949, + 0.020183714106678963, + 0.04829588159918785, + 0.016702929511666298, + 0.008381679654121399, + -0.028692297637462616, + -0.012061883695423603, + 0.015361377038061619, + 0.05071309208869934, + 0.038095250725746155, + -0.04350980371236801, + 0.014043997041881084, + 0.012460723519325256, + -0.019784873351454735, + -0.04853760078549385, + 0.033357515931129456, + -0.0075779571197927, + -0.0091733168810606, + 0.052260108292102814, + 0.031544607132673264, + 0.01665458455681801, + 0.03763597831130028, + 0.04911773279309273, + -0.02335026115179062, + -0.0009162741480395198, + -0.04114093631505966, + -0.003041153773665428, + 0.004701475612819195, + -0.061010412871837616, + 0.033478375524282455, + 0.029489977285265923, + 0.0459270142018795, + 0.010599471628665924, + 0.02980421483516693, + -0.04660383239388466, + -0.04904521629214287, + -0.01844332180917263, + -0.01609862595796585, + -0.012521154247224331, + -0.007191203534603119, + 0.007318106945604086, + -0.028861502185463905, + 0.017923621460795403, + -0.003529128385707736, + 0.07449845224618912, + 0.025066480040550232, + 0.014624128118157387, + 0.03420354053378105, + -0.05806141346693039, + 0.0055505214259028435, + 0.019470635801553726, + 0.030795270577073097, + -0.05279189348220825, + 0.02313271164894104, + 0.013210059143602848, + 0.004773992113769054, + 0.03882041200995445, + -0.07633552700281143, + -0.03538797050714493, + 0.047643233090639114, + -0.06357265263795853, + 0.004562485963106155, + -0.024486349895596504, + -0.04085087031126022, + -0.002367356326431036, + 0.013355092145502567, + -0.0021316781640052795, + -0.049407798796892166, + -0.021766986697912216, + 0.004976433701813221, + -0.01867295615375042, + -0.08291034400463104, + -0.03930385410785675, + -0.035919759422540665, + 0.007354365196079016, + 0.03014262393116951, + 0.027048593387007713, + -0.004532271064817905, + 0.035678036510944366, + 0.0012184255756437778, + -0.007445010356605053, + 0.013294661417603493, + 0.0036560320295393467, + -0.03033600002527237, + 3.413366721360944e-05, + -0.02538071759045124, + 0.003399203298613429, + -0.003937033005058765, + 0.008677788078784943, + 0.026250913739204407, + -0.0467730388045311, + -0.024135854095220566, + -0.05317864567041397, + 0.0049975840374827385, + 0.02513899654150009, + -0.011270247399806976, + -0.003208847949281335, + 0.02105391025543213, + 0.022177912294864655, + 0.0275803804397583, + 0.028257198631763458, + 0.006009791512042284, + -0.052066728472709656, + 0.013173800893127918, + 0.00627870624884963, + -0.021501094102859497, + -0.012509068474173546, + -0.02293933369219303, + 7.124163676053286e-05, + -0.033575065433979034, + -0.007698817644268274, + 0.019796960055828094, + -0.038143593817949295, + 0.017597297206521034, + 0.02057046815752983, + 0.038022734224796295, + -0.0076625593937933445, + -0.02078801579773426, + -0.04950448498129845, + 0.04133431240916252, + -0.010671987198293209, + 0.042712122201919556, + -0.014769160188734531, + -0.021634040400385857, + -0.033889301121234894, + 0.011167516000568867, + -0.002045565051957965, + 0.024413833394646645, + -0.08866330981254578, + -0.007354365196079016, + 0.03642737492918968, + -0.01058134250342846, + -0.00345359044149518, + -0.007372494321316481, + 0.005870801862329245, + -0.0188905056566, + 0.001105874078348279, + -0.01262992899864912, + -0.027072764933109283, + 0.04587866738438606, + 0.026468463242053986, + -0.04667634889483452, + -0.05627267807722092, + 0.005054993089288473, + -0.021899932995438576, + 0.012448637746274471, + -0.02813633903861046, + 0.007668602745980024, + -0.01630409061908722, + -0.014757074415683746, + -0.04788495600223541, + 0.036185652017593384, + 0.03248731791973114, + -0.028716469183564186, + -0.04314722120761871, + 0.022286687046289444, + 0.027266142889857292, + -0.012642014771699905, + -0.08585934340953827, + -0.021259373053908348, + -0.0006930597592145205, + -0.014563697390258312, + 0.0014548590406775475, + 0.003326687030494213, + -0.01851583831012249, + -0.009088714607059956, + -0.001614999258890748, + 0.012956252321600914, + -0.03973895311355591, + -0.029151568189263344, + 0.008708002977073193, + 0.0026408033445477486, + 0.002687636762857437, + -0.0009600860648788512, + -0.01609862595796585, + 0.04350980371236801, + -0.021658211946487427, + -0.016932563856244087, + 0.035774726420640945, + 0.02803965099155903, + 0.09456130117177963, + -0.025090651586651802, + 0.01287165004760027, + 0.06197729706764221, + 0.033671751618385315, + -0.028619781136512756, + -0.008436067029833794, + -0.019700272008776665, + -0.019603582099080086, + 0.03666909411549568, + 0.052211761474609375, + 0.019470635801553726, + 0.008387723006308079, + -0.021513180807232857, + 0.026323430240154266, + 0.01266618724912405, + 0.01826203055679798, + -0.035750553011894226, + -0.049987927079200745, + 0.007100557908415794, + -0.01388687826693058, + -0.014865849167108536, + -0.01656998321413994, + 0.00585267273709178, + 0.028788985684514046, + 0.0151559142395854, + 0.01880590245127678, + 0.04660383239388466, + 0.013222145847976208, + -0.04452503100037575, + 0.09958910197019577, + 0.031351231038570404, + -0.004012570716440678, + -0.01644912175834179, + 0.02353155054152012, + -0.03463863581418991, + 0.01594150811433792, + -0.001858231145888567, + -0.01854000985622406, + -0.028426403179764748, + -0.00398235535249114, + -0.004233140964061022, + -0.0513899102807045, + 0.0013241785345599055, + -0.024075424298644066, + -0.01891467720270157, + 0.02042543515563011, + 0.0016980909276753664, + -0.01648538000881672, + -0.035678036510944366, + 0.008853035978972912, + 0.04367900639772415, + 0.05752962827682495, + -0.02796713449060917, + -0.01614697091281414, + 0.012992510572075844, + -0.02516316808760166, + -0.031302884221076965, + -0.06265411525964737, + -0.012605756521224976, + 0.0010484653757885098, + -0.019893648102879524, + 0.005417574662715197, + 0.04109258949756622, + -0.061542198061943054, + 0.056466054171323776, + 0.019277259707450867, + 0.0037285482976585627, + 0.036185652017593384, + 0.00761421537026763, + 0.0011965195881202817, + -0.06623158603906631, + 0.002347716363146901, + 0.011372978799045086, + 0.03739425912499428, + -0.06057531386613846, + -0.030553549528121948, + 0.007565871346741915, + 0.02583998814225197, + 0.031036991626024246, + 0.011379022151231766, + -0.033478375524282455, + -0.035774726420640945, + -0.010678030550479889, + 0.05371043458580971, + 0.06449119746685028, + -0.024667641147971153, + -0.0015696765622124076, + -0.024075424298644066, + 0.01829828880727291, + -0.009674888104200363, + -0.030916132032871246, + 0.03297076001763344, + 0.002908207243308425, + 0.024993963539600372, + -0.01279913354665041, + 0.020232057198882103, + -0.0006171442219056189, + -0.02295142039656639, + 0.0035321498289704323, + 0.012956252321600914, + 0.00525139132514596, + -0.0456852912902832, + 0.030698582530021667, + 0.05080977827310562, + 0.0459270142018795, + -0.03546048700809479, + -0.061783917248249054, + -0.007493354845792055, + -0.07256468385457993, + 0.03541214391589165, + 0.008937638252973557, + -0.0003059282898902893, + -0.008133916184306145, + 0.01661832630634308, + -0.019905734807252884, + 0.052211761474609375, + 0.01029127649962902, + 0.014890020713210106, + 0.0014556143432855606, + -0.038264453411102295, + -0.05124487727880478, + 0.009862221777439117, + 0.002454980043694377, + 0.054048843681812286, + -0.03500121831893921, + 0.008363550528883934, + -0.0046259379014372826, + 0.054000500589609146, + -0.012980423867702484, + -0.0070461705327034, + -0.014116513542830944, + -0.007154945284128189, + -0.04085087031126022, + -0.035774726420640945, + -0.030553549528121948, + -0.038312796503305435, + 0.004970390349626541, + 0.01139110792428255, + 0.06468456983566284, + 0.03002176247537136, + 0.05308195948600769, + -0.006393523886799812, + 0.02571912668645382, + 0.008653616532683372, + -0.004381195176392794, + -0.024993963539600372, + 0.011294419877231121, + -0.027072764933109283, + 0.059221673756837845, + -0.02298767864704132, + 0.07280640304088593, + 0.023628240451216698, + -0.002477641450241208, + 0.009995168074965477, + 0.002161893295124173, + 0.01156031247228384, + 0.0034777626860886812, + -0.003245105966925621, + -0.01265410054475069, + -0.006889051757752895, + -0.006653374060988426, + -0.059560082852840424, + 0.05815810337662697, + -0.01820160076022148, + -0.004344937391579151, + -0.008859079331159592, + 0.04193861410021782, + 0.0081701735034585, + -0.019059710204601288, + -0.033744268119335175, + 0.04220450669527054, + 0.06507132947444916, + 0.04014987871050835, + -0.019228914752602577, + 0.006024898961186409, + -0.06231570616364479, + 0.009294177405536175, + 0.024510521441698074, + 0.02338651940226555, + 0.013403436169028282, + 0.008955767378211021, + 0.004912981763482094, + -0.035750553011894226, + 0.02784627303481102, + -0.008121829479932785, + -0.03275321051478386, + -0.0017524781869724393, + 0.02322939969599247, + 0.031278714537620544, + -0.054628971964120865, + -0.06507132947444916, + 0.06951899826526642, + -0.023918304592370987, + 0.05366208776831627, + 0.021706556901335716, + 0.00754774222150445, + -0.017935708165168762, + 0.02808799408376217, + 0.03004593588411808, + -0.007831764407455921, + 0.0030094280373305082, + -0.003967247903347015, + -0.024341316893696785, + -0.013161715120077133, + -0.007360408082604408, + -0.003807107685133815, + 0.008798648603260517, + 0.009366693906486034, + 0.008949724957346916, + -0.0024700877256691456, + -0.021392319351434708, + 0.04909355938434601, + 0.0033840956166386604, + 0.05071309208869934, + -0.008695917204022408, + 0.025090651586651802, + -0.019095968455076218, + -0.014829590916633606, + -0.004012570716440678, + 0.004511120263487101, + -0.005478004924952984, + -0.021972449496388435, + -0.013911050744354725, + -0.0046138521283864975, + 0.00415458157658577, + -0.0031997833866626024, + 0.02087261900305748, + 0.02297559194266796, + -0.03495287522673607, + 0.03695916011929512, + -0.038530346006155014, + -0.03512207791209221, + 0.019543152302503586, + 0.03686247020959854, + 0.04694224148988724, + 0.0011172047816216946, + -0.013137542642652988, + -0.033405859023332596, + -0.06724681705236435, + 0.009898480027914047, + 0.017246801406145096, + 0.006064178887754679, + 0.029296599328517914, + 0.026057537645101547, + 0.01282330509275198, + -0.06884217262268066, + -0.0024157005827873945, + -0.04099590331315994, + 0.009656758978962898, + 4.178187373327091e-05, + -0.008550885133445263, + 0.03057772107422352, + -0.028716469183564186, + -0.011252118274569511, + 0.05308195948600769, + 0.0509064681828022, + -0.008061399683356285, + 0.06246073916554451, + 0.02760455198585987, + 0.006756105460226536, + 0.004000484477728605, + 0.03649988770484924, + 0.014684557914733887, + -0.033405859023332596, + -0.03879623860120773, + -0.020026594400405884, + 0.02816051058471203, + -0.02538071759045124, + -0.00258943741209805, + 0.029296599328517914, + -0.015639357268810272, + 0.007886151783168316, + -0.044960130006074905, + 0.0024111683014780283, + 0.013645157217979431, + -0.007698817644268274, + 0.011324634775519371, + -0.059318363666534424, + 0.03422771021723747, + -0.0364515446126461, + -0.04923859238624573, + 0.006822578608989716, + -0.0005975043750368059, + -0.011826205998659134, + 0.0008769944543018937, + 0.03683830052614212, + 0.059366706758737564, + -0.0021482964511960745, + -0.028982361778616905, + -0.047425683587789536, + -0.012013539671897888, + -0.019651927053928375, + -0.001538706012070179, + 0.016956737264990807, + -0.011693259701132774, + 0.014019825495779514, + -0.05796472355723381, + -0.05868988856673241, + -0.031447917222976685, + -0.01261784229427576, + 0.037805184721946716, + 0.04817501828074455, + 0.0053208861500024796, + -0.023724928498268127, + 0.04176941141486168, + -0.03981146961450577, + -0.019011367112398148, + -0.01843123510479927, + -0.03546048700809479, + -0.01386270672082901, + 0.02794296108186245, + -0.0053239078260958195, + -0.024196283891797066, + -0.01649746671319008, + 0.029224082827568054, + 0.013560554943978786, + 0.042736295610666275, + 0.030795270577073097, + 0.0026544001884758472, + 0.02586415968835354, + -0.00927000492811203, + -0.024389661848545074, + 0.014938365668058395, + -0.009614457376301289, + 0.022552581503987312, + 0.014418665319681168, + -0.023761186748743057, + -0.026033364236354828, + -0.02087261900305748, + -0.011113128624856472, + -0.005009670276194811, + -0.019095968455076218, + -0.009596328251063824, + 0.0006058135768398643, + 0.009819920174777508, + -0.028861502185463905, + -0.01279913354665041, + -0.02077593095600605, + -0.009765533730387688, + 0.002648357069119811, + -0.008822821080684662, + -0.004347958602011204, + 0.06695675104856491, + -0.015143828466534615, + 0.01598985306918621, + -0.0374184288084507, + -0.007868022657930851, + 0.021295631304383278, + 0.0227217860519886, + 0.005768070463091135, + 0.005484047811478376, + -0.007432924583554268, + -0.017017167061567307, + -0.056659430265426636, + -0.04696641489863396, + -0.004299614578485489, + -0.004891831427812576, + -0.00518189650028944, + -0.025042308494448662, + 0.003308557905256748, + 0.0035140207037329674, + 0.015313033014535904, + -0.003906817641109228, + -0.021537352353334427, + -0.00761421537026763, + 0.02579164318740368, + 0.03886875510215759, + 0.008375637233257294, + -0.013222145847976208, + -0.011808076873421669, + -0.015264688991010189, + -0.005544478073716164, + -0.040464114397764206, + 0.052163418382406235, + -0.011886635795235634, + -0.0008966343011707067, + 0.008436067029833794, + -0.017331404611468315, + 0.0019065754022449255, + 0.0008694406715221703, + -0.05308195948600769, + -0.012436551973223686, + -0.049746207892894745, + -0.018092826008796692, + -0.03437274321913719, + -0.037998560816049576, + -0.011874550022184849, + -0.010001211427152157, + 0.021899932995438576, + 0.02087261900305748, + -0.00018535100389271975, + -0.02518734149634838, + 0.031327057629823685, + 0.001950387260876596, + -0.031012820079922676, + -0.011022482998669147, + -0.0365724042057991, + -0.011644914746284485, + 0.033768441528081894, + 0.009995168074965477, + 0.029586665332317352, + 0.00016306733596138656, + -0.024365488439798355, + -0.006351222284138203, + 0.023978736251592636, + -0.007626301608979702, + 0.010641772300004959, + -0.026081709191203117, + -0.004293571226298809, + -0.0377810113132, + -0.008834906853735447, + -0.05322699248790741, + -0.00521513307467103, + 0.005118444561958313, + -0.017851104959845543, + 0.014587869867682457, + -0.007209332659840584, + 0.01640077866613865, + 0.03647571802139282, + 0.012255260720849037, + -0.005009670276194811, + 0.008357508108019829, + 0.007626301608979702, + 0.010182502679526806, + 0.008822821080684662, + -0.00751148397102952, + 0.03495287522673607, + -0.011101042851805687, + 0.03763597831130028, + -0.054580628871917725, + 0.038385313004255295, + -0.01046652439981699, + -0.03234228491783142, + 0.00920957513153553, + -0.035919759422540665, + -0.014817505143582821, + -0.004635002464056015, + 0.02098139375448227, + -0.0034203538671135902, + 0.016980908811092377, + -0.00345661211758852, + -0.02791878953576088, + 0.004635002464056015, + 0.019905734807252884, + -0.01810491271317005, + 0.003059282898902893, + 0.04421079158782959, + 0.043316423892974854, + 0.013270489871501923, + 0.0031363314483314753, + -0.05622433125972748, + 0.012992510572075844, + 4.650298797059804e-05, + 0.01647329516708851, + -0.030988648533821106, + 0.029393289238214493, + -0.01613488420844078, + -0.006532513536512852, + -0.06550642102956772, + -0.03437274321913719, + -0.028716469183564186, + -0.033792611211538315, + 0.002445915713906288, + -0.024232542142271996, + 0.007106600794941187, + 0.027266142889857292, + -0.010375878773629665, + -0.006804449483752251, + 0.0037617848720401525, + 0.010188545100390911, + 0.029417460784316063, + -0.01641286350786686, + -0.0021649147383868694, + -0.02755620703101158, + 0.009034327231347561, + -0.001315869390964508, + -0.013415521942079067, + -0.01170534547418356, + -0.031351231038570404, + 0.015651442110538483, + -0.007880108430981636, + -0.0023175012320280075, + -0.0017147092148661613, + -0.018963022157549858, + 0.04829588159918785, + 0.01033962145447731, + 0.011064784601330757, + 0.005843608174473047, + -0.01491419319063425, + 0.0105088260024786, + -0.0051939827390015125, + -0.0014148239279165864, + -0.008345421403646469, + 0.02552575059235096, + 0.004647088702768087, + 0.040415771305561066, + -0.04812667518854141, + 0.045105163007974625, + -0.00801305565983057, + -0.017742330208420753, + -0.06473291665315628, + 0.007861979305744171, + 0.014769160188734531, + 0.0026362710632383823, + 0.022359203547239304, + -0.031085336580872536, + -0.008925552479922771, + -0.0458061508834362, + 0.033502548933029175, + 0.007626301608979702, + 0.014249459840357304, + -0.00415760325267911, + -0.02782210148870945, + -0.028353888541460037, + 0.03500121831893921, + -0.02772541344165802, + 0.01508339773863554, + -0.02997341938316822, + -0.026758527383208275, + 0.01863669790327549, + 0.0027813035994768143, + 0.012521154247224331, + -0.0026619539130479097, + 0.020219972357153893, + -0.03770849481225014, + -0.014890020713210106, + 0.029320772737264633, + 0.0012735681375488639, + -0.01060551404953003, + 0.01607445441186428, + -0.02127145789563656, + 0.007608172483742237, + 0.01259367074817419, + 0.028523093089461327, + 0.0205342099070549, + 0.004589679650962353, + 0.00378897855989635, + -0.03021514043211937, + 0.049891240894794464, + 0.006369351409375668, + 0.006568771321326494, + 0.00913705863058567, + -0.021331889554858208, + 0.04184192791581154, + 0.005474983248859644, + -0.01377810351550579, + 0.005003627389669418, + 0.005408510100096464, + 0.05327533558011055, + -0.008224560879170895, + 0.047594889998435974, + -0.047377340495586395, + 0.008575056679546833, + -0.03437274321913719, + 0.03301910683512688, + 0.008085571229457855, + -0.0162799172103405, + 0.007342278957366943, + 0.0001106629497371614, + -0.011294419877231121, + -0.02127145789563656, + -0.019482722505927086, + 0.006538556423038244, + 0.01501088123768568, + -0.005538435187190771, + -0.006266620010137558, + -0.010696159675717354, + -0.038288626819849014, + 0.012714531272649765, + -0.01847958005964756, + 0.0319555327296257, + 0.011989368125796318, + -0.017971964552998543, + 0.049552831798791885, + -0.019760701805353165, + 0.02308436669409275, + -0.00462291669100523, + 0.008454196155071259, + 0.024776415899395943, + -0.004589679650962353, + -0.061300475150346756, + -0.026686012744903564, + -0.0026755507569760084, + -0.011505925096571445, + 0.03884458541870117, + 0.03284990042448044, + 0.012811219319701195, + -0.011928937397897243, + 0.017125941812992096, + -0.012285475619137287, + -0.03391347452998161, + -0.031085336580872536, + -0.026710184291005135, + 0.021694470196962357, + 0.005275563336908817, + 0.006333093624562025, + -0.03417936712503433, + 0.008816777728497982, + -0.10510034114122391, + -0.03688664361834526, + 0.0036318597849458456, + -0.002631738781929016, + -0.05027799308300018, + 0.01156031247228384, + 0.03884458541870117, + 0.04585449770092964, + -0.030505206435918808, + -0.016545811668038368, + -0.01501088123768568, + 0.009832006879150867, + -0.01143340952694416, + 0.006284749135375023, + 0.0001430498086847365, + 0.021694470196962357, + 0.020099110901355743, + 0.022492149844765663, + 0.0046410453505814075, + 0.003172589698806405, + -0.022310860455036163, + -0.017621470615267754, + -0.014503267593681812, + 0.024595124647021294, + -0.03923133760690689, + -0.017416005954146385, + -0.006012812722474337, + -0.006206189747899771, + 0.019410206004977226, + 0.04815084859728813, + -0.006236405111849308, + -0.01873338781297207, + 0.0021513178944587708, + 0.030601894482970238, + -0.02106599509716034, + -0.006441867910325527, + 0.020062852650880814, + 0.025888333097100258, + 0.009221660904586315, + 0.040584977716207504, + 0.002705765888094902, + 0.017996137961745262, + 0.011088956147432327, + -0.003450568998232484, + 0.021368147805333138, + 0.027362830936908722, + 0.021609868854284286, + 0.012037712149322033, + -0.005976554937660694, + 0.012956252321600914, + 0.028813157230615616, + -0.011179601773619652, + -0.0009502661414444447, + 0.012255260720849037, + 0.022153740748763084, + 0.01843123510479927, + -0.04551608860492706, + 0.013536382466554642, + -0.006021877285093069, + -0.007360408082604408, + 0.0253323744982481, + 0.019627755507826805, + 0.0026211633812636137, + 0.008490454405546188, + -0.02567078359425068, + 0.008708002977073193, + -0.014370320364832878, + 0.0046440670266747475, + -0.01855209656059742, + 0.014285718090832233, + 0.019241001456975937, + 0.0074208383448421955, + -0.003601644653826952, + 0.020123284310102463, + 0.0057771350257098675, + -0.022202085703611374, + -0.015856904909014702, + 0.005665338598191738, + 0.04208364710211754, + -0.047836609184741974, + 0.01283539179712534, + 0.06405609846115112, + -0.01574813202023506, + 0.020377090200781822, + -0.01176577527076006, + -0.029248256236314774, + 0.010255018249154091, + 0.009016198106110096, + 0.027096938341856003, + 0.03676578402519226, + 0.010049555450677872, + 0.008049312978982925, + 0.007299977820366621, + -0.013294661417603493, + -0.02089679054915905, + 0.022335032001137733, + -0.03408267721533775, + -0.0210176520049572, + 0.011759732849895954, + 0.03688664361834526, + -0.024099595844745636, + 0.0275803804397583, + 0.028378060087561607, + 0.009977038949728012, + 0.019095968455076218, + 0.03040851652622223, + 0.033405859023332596, + -0.016606241464614868, + 0.010351707227528095, + -0.01831037551164627, + 0.019857389852404594, + -0.0069676111452281475, + 0.017005080357193947, + 0.01149383932352066, + -0.047522373497486115, + -0.0042724208906292915, + -0.03642737492918968, + -0.04005318880081177, + -0.016932563856244087, + -0.01039400789886713, + 0.02343486249446869, + 0.030553549528121948, + -0.008327292278409004, + -0.019059710204601288, + -0.013947308994829655, + -0.02048586495220661, + 0.004777013789862394, + 0.008992025628685951, + -0.0554024800658226, + -0.00912497192621231, + 0.007638387382030487, + 0.05158328637480736, + -0.0024640446063131094, + 0.02571912668645382, + 0.0005302756908349693, + -0.007892194204032421, + 0.020207885652780533, + -0.02285473234951496, + -0.014309890568256378, + -0.004925068002194166, + -0.012212960049510002, + -0.029079051688313484, + -0.02124728634953499, + -0.03468698263168335, + -0.020026594400405884, + 0.024280887097120285, + 0.0001692992082098499, + 0.007299977820366621, + -0.02562243863940239, + -0.01603819616138935, + 0.03026348538696766, + -0.012521154247224331, + 0.01632826216518879, + 0.019253088161349297, + -0.040560804307460785, + -0.001932258252054453, + -0.021766986697912216, + -0.036016445606946945, + -0.0014714773278683424, + 0.005607930012047291, + 0.009608414955437183, + 0.04336477071046829, + 0.009251875802874565, + -0.015663528814911842, + -0.0041455174796283245, + -0.017174284905195236, + 0.040415771305561066, + -0.0037829356733709574, + 0.029079051688313484, + -0.0027631744742393494, + 0.0015303968684747815, + -0.005100315902382135, + -0.013222145847976208, + -0.003320643911138177, + 0.03541214391589165, + 0.029659181833267212, + 0.0035230852663517, + -0.052501827478408813, + -0.035702209919691086, + 0.0419144444167614, + 0.01607445441186428, + -0.014563697390258312, + 0.013113371096551418, + 0.01641286350786686, + 0.00471960473805666, + -0.03749094530940056, + -0.004589679650962353, + 0.017234716564416885, + 0.02811216562986374, + -0.0019262152491137385, + -0.002758642192929983, + 0.010949966497719288, + -0.008049312978982925, + -0.01619531586766243, + 0.03456611931324005, + -0.00800701230764389, + 0.02055838145315647, + 0.004178754054009914, + 0.007952624931931496, + -0.01843123510479927, + 0.01620740070939064, + -0.037805184721946716, + -0.02765289694070816, + 0.026105880737304688, + -0.022504236549139023, + 0.01601402461528778, + 0.01600193791091442, + 0.008019098080694675, + -0.051631633192300797, + 0.019494809210300446, + 0.008871165104210377, + -0.0206550695002079, + 0.02530820108950138, + -0.015856904909014702, + 0.0044174534268677235, + 0.016702929511666298, + -0.03007010743021965, + 0.02813633903861046, + -0.006520427297800779, + -0.020062852650880814, + -0.026468463242053986, + -0.040294911712408066, + -0.006991783622652292, + 0.0008618868887424469, + -0.017500609159469604, + 0.031012820079922676, + 0.004320764914155006, + -0.0366932675242424, + -0.024945620447397232, + 0.018008222803473473, + 0.0092337466776371, + 0.010128115303814411, + 0.026250913739204407, + 0.008913466706871986, + 0.024196283891797066, + 0.013584727421402931, + 0.00797679740935564, + -0.01618322916328907, + 0.010212717577815056, + -0.02082427404820919, + 0.0012478852877393365, + 0.0006156335002742708, + -0.008828864432871342, + -0.009590285830199718, + -0.009892436675727367, + 0.007674645632505417, + 0.011348806321620941, + 0.003912860527634621, + 0.001841612858697772, + -0.0023507378064095974, + 0.0030532400123775005, + -0.012001453898847103, + -0.017621470615267754, + -0.010962053202092648, + 0.014297804795205593, + 0.00028288926114328206, + 0.022189998999238014, + -0.024993963539600372, + 0.00824269000440836, + -0.003912860527634621, + -0.005728790536522865, + 0.04868263378739357, + 0.022516323253512383, + 0.0015742088435217738, + 0.0016754295211285353, + -0.02356780879199505, + 0.010690116323530674, + 0.013802275992929935, + 0.007402709219604731, + -0.00047022310900501907, + -0.006459997035562992, + -0.011995410546660423, + -0.024583037942647934, + -0.0034626550041139126, + -0.0037829356733709574, + 0.00514865992590785, + 0.0036953117232769728, + -0.03009427897632122, + 0.008587142452597618, + -0.03662075102329254, + -0.011511968448758125, + -0.005423617549240589, + 0.03698333352804184, + -0.006194103974848986, + -0.011300462298095226, + -0.011608656495809555, + 0.0010786805069074035, + -0.010248975828289986, + 0.017778588458895683, + 0.02550157904624939, + 0.01152405422180891, + 0.01829828880727291, + 0.01054508425295353, + -0.022709699347615242, + 0.01838289201259613, + 0.000441141048213467, + -0.01878173090517521, + -0.013173800893127918, + -0.004804207477718592, + -0.028982361778616905, + 0.009964953176677227, + -0.009511725977063179, + -0.0043872385285794735, + 0.001614999258890748, + -0.011971239000558853, + -0.005130530800670385, + 0.0024882168509066105, + -0.00412134500220418, + 0.001670897239819169, + 0.01139715127646923, + 0.0025622439570724964, + 0.024135854095220566, + 0.024558866396546364, + 0.00019658725068438798, + -0.028764814138412476, + -0.004976433701813221, + 0.021875761449337006, + -0.004009549040347338, + -0.017573125660419464, + 0.022625096142292023, + -0.010055598802864552, + 0.017089683562517166, + 0.007469182834029198, + 0.0069373962469398975, + 0.006333093624562025, + -0.036088962107896805, + -0.013028768822550774, + -0.016545811668038368, + 0.031085336580872536, + 0.015711873769760132, + -0.010647815652191639, + 0.017065512016415596, + -0.006647330708801746, + -0.02571912668645382, + -0.06047862395644188, + 0.00021698247292079031, + -0.031544607132673264, + 0.017234716564416885, + -0.019458550959825516, + 0.009221660904586315, + 0.030650237575173378, + 0.002044054213911295, + -0.0075356559827923775, + 0.011270247399806976, + -0.028837330639362335, + 0.009046413004398346, + 0.020171627402305603, + 0.02343486249446869, + 0.04181775450706482, + 0.03202804923057556, + 0.06197729706764221, + 0.0031665468122810125, + -0.05080977827310562, + 0.013427608646452427, + 0.04643462598323822, + 0.022250428795814514, + 0.009046413004398346, + -0.019579410552978516, + -0.0019473658176138997, + -0.031254541128873825, + -0.017851104959845543, + -0.031520433723926544, + 0.03973895311355591, + 0.019410206004977226, + 0.02552575059235096, + -0.03016679547727108, + -0.019772788509726524, + -0.02571912668645382, + 0.024087509140372276, + 0.015699787065386772, + 0.02567078359425068, + -0.0015371952904388309, + 0.006496255286037922, + 0.027169454842805862, + 0.010962053202092648, + -0.021827416494488716, + -0.001705644652247429, + -0.024160025641322136, + -0.0051275091245770454, + 0.03263235092163086, + -0.036088962107896805, + -0.028329715132713318, + 0.06163888797163963, + 0.01598985306918621, + -0.03202804923057556, + 0.017935708165168762, + 0.02321731299161911, + -0.026057537645101547, + 0.019591497257351875, + -0.015554754063487053, + -0.04234953969717026, + 0.01601402461528778, + 0.0008815267356112599, + 0.0037799139972776175, + -0.015663528814911842, + -0.005160746164619923, + 0.027000250294804573, + 0.016642499715089798, + -0.0081701735034585, + 0.02072758600115776, + 0.031713809818029404, + -0.010702203027904034, + 0.02767706848680973, + -0.007735075894743204, + -0.022576753050088882, + -0.05259851738810539, + -0.007602129131555557, + 0.009215617552399635, + 0.019071796908974648, + 0.02975586988031864, + -0.030795270577073097, + 0.001465434324927628, + 0.038457829505205154, + 0.01574813202023506, + 0.006248490884900093, + 0.015687700361013412, + -0.01885424740612507, + -0.013669329695403576, + 0.007457096595317125, + 0.006647330708801746, + -0.011215860024094582, + 0.0037406343035399914, + -0.0037466774228960276, + 0.01847958005964756, + 0.01810491271317005, + 0.0007685976452194154, + 0.01255741249769926, + -0.02063089795410633, + -0.014732902869582176, + -0.010671987198293209, + -0.009112886153161526, + -0.02518734149634838, + -0.01850375160574913, + 0.004767949227243662, + -0.007414795458316803, + -0.0298283863812685, + 0.03014262393116951, + 0.014769160188734531, + -0.022250428795814514, + 0.04416244849562645, + -0.024389661848545074, + 0.028619781136512756, + 0.042953845113515854, + -0.015675615519285202, + 0.0011957641690969467, + -0.01879381760954857, + -0.019047625362873077, + 0.004695432726293802, + -0.03323665261268616, + 0.004792121239006519, + 0.008816777728497982, + 0.009022240526974201, + 0.03212473541498184, + 0.013403436169028282, + -0.01388687826693058, + 0.008575056679546833, + -0.004317743703722954, + -0.01858835481107235, + 0.02299976535141468, + 0.011282333172857761, + 0.021525265648961067, + -0.04563694819808006, + -0.0025486471131443977, + -0.008442110382020473, + 0.0022102375514805317, + 0.005610951688140631, + -0.0205342099070549, + -0.002006285358220339, + 0.019736530259251595, + -0.03311579301953316, + 0.014285718090832233, + 0.005375273525714874, + 0.015711873769760132, + -0.0050821867771446705, + -0.031133679673075676, + 0.001631617546081543, + -0.02303602360188961, + -0.047788266092538834, + 0.014382407069206238, + 0.007451053708791733, + 0.004360044840723276, + 0.0228426456451416, + 0.036137308925390244, + 0.006864879745990038, + 0.008333335630595684, + -0.0006043027970008552, + -0.014817505143582821, + -0.03224559873342514, + 0.03688664361834526, + 0.005762027110904455, + -0.08329709619283676, + 0.02335026115179062, + 0.009149144403636456, + 0.014273632317781448, + 0.027048593387007713, + 0.03737008571624756, + -0.016751274466514587, + -0.043195564299821854, + 0.01851583831012249, + 0.000563512381631881, + 0.027290314435958862, + -0.012509068474173546, + -0.007360408082604408, + -0.016715016216039658, + -0.031375400722026825, + 0.011868506669998169, + -0.02040126360952854, + -0.03200387582182884, + 0.00930626317858696, + -0.022613011300563812, + 0.03949723020195961, + -0.0033689881674945354, + 0.01145758107304573, + -0.025888333097100258, + 0.015252603217959404, + -0.01053299754858017, + 0.01262992899864912, + 0.0013188908342272043, + -0.024945620447397232, + -0.02554992213845253, + 0.011475710198283195, + 0.009010154753923416, + -0.00815204530954361, + 0.01170534547418356, + -0.012164615094661713, + -0.030746927484869957, + 0.0025274965446442366, + 0.002515410538762808, + -0.01389896497130394, + -0.002134699607267976, + -0.013512210920453072, + 0.02353155054152012, + 0.022697612643241882, + -0.0019987316336482763, + -0.02973169833421707, + 0.024184199050068855, + 0.0033629450481384993, + -0.0060188560746610165, + 0.0207154992967844, + -0.017053425312042236, + -0.03913465142250061, + 0.01592942140996456, + 0.000900411163456738, + -0.035629693418741226, + 0.0319555327296257, + -0.009813877753913403, + -0.03200387582182884, + 0.017452264204621315, + -0.03773266822099686, + 0.04602370038628578, + 0.00041545816930010915, + -0.03043268993496895, + 0.00931230653077364, + 0.007251633796840906, + -0.0004883522051386535, + 0.001464678905904293, + 0.029030706733465195, + 0.02054629474878311, + -0.007765291258692741, + -0.014636213891208172, + -0.01841915026307106, + -0.0506647489964962, + 0.00458061508834362, + -0.03466280922293663, + 0.003529128385707736, + 0.00924583338201046, + -0.0072939349338412285, + 0.008853035978972912, + -0.0042875283397734165, + 0.042760465294122696, + 0.022274602204561234, + -0.012043754570186138, + -0.008575056679546833, + 0.011215860024094582, + -0.021343974396586418, + 0.007710903882980347, + 0.01879381760954857, + -0.020328747108578682, + 0.013149629347026348, + -0.040488287806510925, + -0.017053425312042236, + -0.02328982949256897, + -0.016787532716989517, + 0.05520910397171974, + -0.00515168160200119, + -0.015615184791386127, + 0.02569495514035225, + 0.00375272030942142, + 0.01163887232542038, + -0.01392313651740551, + 0.006617115810513496, + 0.01255741249769926, + -0.008943681605160236, + -0.01872130110859871, + -0.004266378004103899, + -0.0064539541490375996, + 0.010647815652191639, + -0.001858231145888567, + 0.013935222290456295, + -0.006224318873137236, + 0.01163887232542038, + 0.008327292278409004, + 0.014225288294255733, + -0.011971239000558853, + 0.018008222803473473, + 0.015651442110538483, + -0.0015878055710345507, + -0.0228426456451416, + -0.031641293317079544, + -0.01613488420844078, + 0.0058889309875667095, + -0.022008707746863365, + 0.00820643175393343, + -0.010992268100380898, + 0.005719725973904133, + -0.019760701805353165, + -0.028571436181664467, + 0.01860043965280056, + -2.9884662581025623e-05, + 0.011971239000558853, + 0.00046606853720732033, + -0.019736530259251595, + 0.01891467720270157, + -0.0036741611547768116, + -0.02987673133611679, + 0.006290792021900415, + -0.011614699847996235, + -0.026323430240154266, + -0.009590285830199718, + -0.02348320744931698, + 0.03188301622867584, + -0.035508833825588226, + -0.0019126184051856399, + -0.022806387394666672, + 0.012388207949697971, + -0.02309645339846611, + -0.050084616988897324, + 0.038167763501405716, + 0.0228426456451416, + 0.010617600753903389, + 0.0229030754417181, + -0.011584484949707985, + 0.023990821093320847, + 0.019071796908974648, + 0.049987927079200745, + -0.00924583338201046, + 0.02072758600115776, + -0.010943924076855183, + -0.024317145347595215, + 0.024945620447397232, + -0.004577593877911568, + 0.003393160179257393, + -0.012774961069226265, + -0.0013052941067144275, + 0.021198943257331848, + 0.007197246421128511, + -0.0017222629394382238, + 0.006097415462136269, + -0.030940303578972816, + -0.017766501754522324, + -0.010901622474193573, + 0.00817621685564518, + -0.015494324266910553, + -0.019917819648981094, + -0.013560554943978786, + -0.02994924783706665, + 0.019011367112398148, + 0.010696159675717354, + -0.02335026115179062, + 0.00010896335152210668, + 0.018987193703651428, + -0.010792847722768784, + 0.015373463742434978, + -0.004574572201818228, + 0.022455891594290733, + -0.024703899398446083, + -0.0031997833866626024, + -0.029635010287165642, + 0.005033842287957668, + 0.0037013546098023653, + 0.05530579388141632, + 0.018080739304423332, + 0.05322699248790741, + 0.00926396157592535, + 0.007565871346741915, + 0.021609868854284286, + 0.005100315902382135, + 0.01831037551164627, + -0.002456490881741047, + -0.01847958005964756, + 0.019664013758301735, + 0.001538706012070179, + -0.022322945296764374, + 0.01635243371129036, + -0.0004762661410495639, + -0.010835149325430393, + 0.013729759491980076, + 0.020256230607628822, + 0.014527439139783382, + 0.026879388839006424, + 0.03659657761454582, + 0.008726132102310658, + 0.007861979305744171, + 0.0032420845236629248, + -0.033164139837026596, + -0.020280402153730392, + 0.03036017343401909, + 0.010665944777429104, + 0.005478004924952984, + 0.04892435669898987, + -0.02799130603671074, + 0.012883735820651054, + -0.03495287522673607, + 0.003607687773182988, + -0.014176944270730019, + 0.0064720832742750645, + 0.007831764407455921, + -0.026178397238254547, + 0.006351222284138203, + -0.02307228185236454, + -0.02291516214609146, + 0.004323786590248346, + 0.008430023677647114, + -0.0016678757965564728, + 0.03299493342638016, + -0.024897275492548943, + -0.018008222803473473, + 0.007269762922078371, + 0.02796713449060917, + 0.01589316315948963, + 0.03217308223247528, + -0.0010190056636929512, + 0.001781182480044663, + -0.003041153773665428, + 0.024462178349494934, + 0.004698454402387142, + -0.051631633192300797, + -0.05051971599459648, + 0.038143593817949295 + ], + "how_to_set_up_raw_resource_burner_mine": [ + -0.012955646961927414, + 0.0169893316924572, + 0.0694614052772522, + -0.020498864352703094, + 0.0031164197716861963, + -0.043983109295368195, + 0.020817913115024567, + 0.013650716282427311, + -0.007036158349364996, + -0.021171145141124725, + 0.020669782534241676, + 0.031494639813899994, + 0.01833389140665531, + -0.0031591495499014854, + 0.03320382907986641, + 0.03345451131463051, + -0.03092491254210472, + 0.022094106301665306, + -0.010477324016392231, + -0.022698018699884415, + 0.022675231099128723, + -0.005805542692542076, + -0.0034895925782620907, + -0.02727864310145378, + 0.017103277146816254, + -0.019279643893241882, + 0.03844533860683441, + 0.008705465123057365, + -0.035915739834308624, + 0.051549118012189865, + -0.033636823296546936, + -0.0296031404286623, + -0.008204103447496891, + 0.021547166630625725, + 0.009286588989198208, + -0.006409456022083759, + 0.04703686013817787, + 0.009759464301168919, + -0.007036158349364996, + 0.00836932472884655, + 0.0246123094111681, + -0.026344288140535355, + -0.0029013468883931637, + -0.004851245786994696, + -0.0027432471979409456, + 0.008648492395877838, + -0.02025957778096199, + 0.021376246586441994, + 0.030446339398622513, + 0.02340448461472988, + -0.016305655241012573, + 0.02698238380253315, + -0.060345739126205444, + -0.0901995599269867, + -0.01633983850479126, + -0.03842255100607872, + -0.004292910918593407, + 0.02338169515132904, + 0.007355206646025181, + 0.02053304761648178, + -0.004349884111434221, + -0.01300122495740652, + 0.05779334902763367, + 0.014938305132091045, + 0.03867323324084282, + 0.019496141001582146, + -0.06513146311044693, + 0.018732702359557152, + 0.01195292267948389, + 0.03140348568558693, + -0.040405210107564926, + -0.01234033890068531, + 0.014904120936989784, + 0.014288813807070255, + 0.05250626057386398, + -0.05451171100139618, + -0.012511258013546467, + 0.04776611179113388, + -0.06877773255109787, + -0.008443390019237995, + -0.01297843549400568, + -0.011189485900104046, + -0.06157635524868965, + -0.0324745774269104, + -0.009850621223449707, + -0.05423823744058609, + -0.03504975140094757, + -0.013160749338567257, + 0.003985257353633642, + -0.056198108941316605, + -0.0492246188223362, + -0.03744261711835861, + 0.02755211479961872, + 0.03015008009970188, + -0.015405483543872833, + 0.011599690653383732, + 0.031107226386666298, + 0.009007422253489494, + -0.0032047280110418797, + 0.03757935017347336, + -0.017046304419636726, + -0.013684900477528572, + 0.018493415787816048, + 0.006232839543372393, + 0.02183203026652336, + 0.018447838723659515, + -0.0057884505949914455, + 0.00584542378783226, + -0.03555111587047577, + -0.046307604759931564, + -0.0642198994755745, + -0.012192209251224995, + 0.002934106392785907, + 0.001625153119675815, + 0.010745096951723099, + 0.014060921967029572, + 0.03195042535662651, + 0.031243961304426193, + 0.013662111014127731, + -0.014596466906368732, + -0.03087933361530304, + 0.027119118720293045, + 0.01606636866927147, + -0.006529098842293024, + 0.009571453556418419, + -0.008152827620506287, + 0.021148355677723885, + -0.030241236090660095, + -0.020065870136022568, + 0.036485470831394196, + -0.014516705647110939, + 0.038308605551719666, + 0.004859791602939367, + 0.029398037120699883, + -0.023700743913650513, + -0.015109224244952202, + -0.05136680230498314, + 0.013969765044748783, + -0.010608361102640629, + 0.042456235736608505, + -0.031836479902267456, + -0.03208715841174126, + -0.0449630431830883, + 0.022151079028844833, + -0.014379969798028469, + -0.0025338714476674795, + -0.08591519296169281, + -0.024338839575648308, + 0.040359631180763245, + 0.02415652759373188, + -0.003968165256083012, + -0.010534296743571758, + -0.011987106874585152, + -0.003911192528903484, + -0.01016966998577118, + -0.043231066316366196, + -0.020692571997642517, + 0.04282086342573166, + 0.0001931738806888461, + -0.03769329562783241, + -0.00010602307884255424, + 0.01713746041059494, + -0.03951643034815788, + 0.011383193545043468, + -0.03418376296758652, + 0.0020823609083890915, + -0.031494639813899994, + -0.01545106153935194, + -0.05291646718978882, + 0.011166696436703205, + 0.015188985504209995, + -0.0068652392365038395, + -0.010277918539941311, + 0.02850925922393799, + -0.005668807774782181, + -0.03479907289147377, + -0.06672670692205429, + -0.001255541224963963, + 0.019473351538181305, + -0.016282865777611732, + -0.013251906260848045, + -0.02126230113208294, + -0.02782558463513851, + 0.0069051203317940235, + 0.03976711258292198, + 0.019154302775859833, + -0.019097330048680305, + -0.025592245161533356, + 0.019769610837101936, + -0.020977437496185303, + -0.015109224244952202, + 0.002367225708439946, + -0.023769110441207886, + 0.016977936029434204, + 0.011240760795772076, + -0.006648742128163576, + 0.0197354257106781, + 0.04070146754384041, + 0.09708189219236374, + -0.02625313028693199, + 0.005341213196516037, + 0.07091991603374481, + 0.021216722205281258, + -0.01507504004985094, + -0.006415152922272682, + 0.030810967087745667, + -0.00034308392787352204, + 0.030833754688501358, + 0.013878608122467995, + 0.01816297322511673, + 0.012659387663006783, + -0.024794623255729675, + 0.021740874275565147, + -0.012647992931306362, + 0.03368240222334862, + -0.0296031404286623, + -0.0061416830867528915, + 0.029694296419620514, + -0.01891501620411873, + -0.021216722205281258, + -0.02855483815073967, + -0.017126066610217094, + 0.003592143999412656, + 0.048130739480257034, + -0.0009065819322131574, + 0.026663336902856827, + 0.005136110354214907, + -0.041430722922086716, + 0.09480297565460205, + 0.009725281037390232, + -0.02038491889834404, + -0.0146762290969491, + 0.024543942883610725, + -0.029785452410578728, + 0.03318104147911072, + 0.0014506734441965818, + -0.036212000995874405, + -0.02130788005888462, + 0.010545691475272179, + -0.02313101291656494, + -0.06640765815973282, + -0.03015008009970188, + -0.04831305518746376, + 0.016248682513833046, + 0.014357181265950203, + 0.011121117509901524, + -0.0027019416447728872, + -0.027916740626096725, + 0.02698238380253315, + 0.01626007631421089, + 0.05610695108771324, + -0.02857762761414051, + -0.05788450688123703, + 0.0026535147335380316, + -0.001892925938591361, + -0.05323551595211029, + -0.06467568129301071, + 0.014049527235329151, + 0.0019057448953390121, + -0.016476575285196304, + 0.03612084314227104, + 0.02540993131697178, + -0.09434718638658524, + 0.03974432498216629, + 0.020943252369761467, + -0.0062271421775221825, + 0.04858652502298355, + 0.0076685575768351555, + -0.014642045833170414, + 0.00668862322345376, + 0.002852919977158308, + 0.018630150705575943, + 0.04300317540764809, + -0.06390085071325302, + -0.013981159776449203, + 0.010032935068011284, + 0.05291646718978882, + 0.0057884505949914455, + -0.008870686404407024, + -0.028668783605098724, + -0.01856178417801857, + 0.011804793030023575, + 0.04651270806789398, + 0.05218721181154251, + -0.029648717492818832, + -0.013172144070267677, + -0.016146130859851837, + 0.023700743913650513, + 0.005173142999410629, + -0.004942402709275484, + 0.042729705572128296, + 0.007412179373204708, + 0.04512256756424904, + -0.011713636107742786, + 0.008243984542787075, + -0.044256579130887985, + 0.013890002854168415, + -0.045327670872211456, + 0.018390865996479988, + -0.008887778967618942, + -0.034138187766075134, + 0.04512256756424904, + 0.06148519739508629, + 0.008825108408927917, + -0.011770609766244888, + -0.0554688535630703, + 0.03691846504807472, + -0.08586961776018143, + 0.04717359319329262, + 0.028349734842777252, + -0.005574802402406931, + -0.007036158349364996, + 0.02675449289381504, + -0.025523876771330833, + 0.0392201729118824, + 0.029922189190983772, + 0.01806042157113552, + 0.026822861284017563, + -0.03199600428342819, + -0.011081237345933914, + -0.001379457302391529, + -0.03587016463279724, + 0.017342563718557358, + -0.05341782793402672, + -0.008021789602935314, + -0.022504311054944992, + 0.05660831183195114, + -0.008819411508738995, + 0.018470628187060356, + -0.007007671520113945, + -0.02752932533621788, + -0.054101504385471344, + -0.00424163555726409, + -0.027688849717378616, + -0.019291037693619728, + -0.018550388514995575, + 0.05683620646595955, + -0.004107749089598656, + 0.02782558463513851, + 0.0347307026386261, + 0.016020791605114937, + 0.010346285998821259, + 0.014721808023750782, + -0.027119118720293045, + -0.011873160488903522, + 0.00230740406550467, + -0.018971988931298256, + 0.0477205365896225, + -0.03452560305595398, + 0.03140348568558693, + 0.03607526421546936, + 0.027962319552898407, + -0.029375247657299042, + 0.0004394038114696741, + -0.03406981751322746, + 0.03835418447852135, + -0.013194932602345943, + -0.03994942456483841, + -0.007224168628454208, + -0.0012583897914737463, + -0.06786616891622543, + 0.046034134924411774, + 0.02025957778096199, + 0.0042473329231143, + 0.022378971800208092, + 0.027187487110495567, + 0.005381094291806221, + 0.006967790424823761, + 0.021148355677723885, + -0.005329818464815617, + 0.03942527621984482, + 0.02983103133738041, + -0.02338169515132904, + 0.013400035910308361, + -0.03090212307870388, + 0.0035949924495071173, + 0.03787561133503914, + 0.05373687669634819, + 0.0259796604514122, + -0.014858542941510677, + -0.016419600695371628, + -0.02130788005888462, + 0.013320273719727993, + -0.005295634735375643, + -0.007514731027185917, + -0.0254782997071743, + 0.01110402587801218, + 0.016396813094615936, + -0.06604303419589996, + -0.04826747626066208, + 0.03689567744731903, + -0.017342563718557358, + 0.03653104975819588, + 0.026800071820616722, + -0.012875884771347046, + -0.0022062771022319794, + -0.009007422253489494, + 0.0166133102029562, + -0.032861992716789246, + -0.0034525601658970118, + 0.030195659026503563, + 0.0029682901222258806, + 0.00565741304308176, + 0.02133066952228546, + 0.020077263936400414, + 0.02386026829481125, + -0.026367077603936195, + -0.005418126471340656, + -0.01803763210773468, + -0.02543272078037262, + 0.039288539439439774, + 0.005307029467076063, + 0.05638042092323303, + 0.004751543048769236, + 0.008403508923947811, + 0.015758715569972992, + 0.02051025815308094, + -0.007349509280174971, + -0.034411657601594925, + -0.0037174844183027744, + -0.041407931596040726, + -0.00480851624161005, + -0.014436943456530571, + 0.007172893267124891, + 0.0094290217384696, + 0.040906570851802826, + 0.009560059756040573, + -0.013650716282427311, + 0.039607588201761246, + -0.004882581066340208, + -0.00933216791599989, + 0.025820136070251465, + 0.03817186877131462, + 0.014721808023750782, + 0.006529098842293024, + -0.03195042535662651, + -0.054648444056510925, + -0.049953874200582504, + -0.0029483495745807886, + 0.008876384235918522, + 0.04015452787280083, + 0.05186816677451134, + -0.021114172413945198, + 0.015610585920512676, + -0.03279362618923187, + -0.011383193545043468, + -0.014573678374290466, + -0.031790900975465775, + -0.008158525452017784, + -0.024771833792328835, + 0.02078372798860073, + -0.019097330048680305, + 0.011918739415705204, + 0.026959596201777458, + 0.02698238380253315, + -0.005879607517272234, + 0.031016068533062935, + 0.009599940851330757, + -0.05501307174563408, + 0.019427772611379623, + 0.037237513810396194, + 0.006312601733952761, + -0.02195737138390541, + 0.007349509280174971, + -0.0052386620081961155, + 0.005526375025510788, + -0.021752268075942993, + 0.032064370810985565, + 0.020578626543283463, + -0.01983797736465931, + -0.015109224244952202, + -0.04393753036856651, + -0.02932967059314251, + 0.003632024861872196, + -0.013286089524626732, + -0.009189735166728497, + -0.0229828841984272, + 0.03641710430383682, + -0.04361848160624504, + -0.04885999485850334, + 0.028873886913061142, + -0.012283366173505783, + -0.01896059513092041, + -0.011052750051021576, + 0.04313991218805313, + 0.0399722158908844, + 0.015952423214912415, + -0.026344288140535355, + -0.03352287784218788, + -0.01975821517407894, + -0.03994942456483841, + -0.02593408338725567, + -0.005529223941266537, + -0.00940623227506876, + 0.02828136831521988, + -0.021421825513243675, + -0.043231066316366196, + -0.007617282215505838, + 0.0010547115234658122, + 0.01588405668735504, + 0.03115280345082283, + 0.013662111014127731, + -0.016100553795695305, + 0.030970489606261253, + -0.05004503205418587, + 0.0008538819383829832, + -0.024862991645932198, + 0.012568230740725994, + 0.0015838477993384004, + 0.010437442921102047, + -0.006557585671544075, + 0.003805792424827814, + -0.021102776750922203, + 0.001649366575293243, + -0.012363128364086151, + 0.03436607867479324, + -0.015337115153670311, + -0.0031762414146214724, + 0.011035658419132233, + -0.016180315986275673, + -0.028645994141697884, + -0.014767386019229889, + -0.004774332512170076, + 0.016807017847895622, + -0.0027033661026507616, + -0.02543272078037262, + -0.04361848160624504, + -0.024749046191573143, + 0.014266024343669415, + 0.005765661597251892, + -0.015952423214912415, + -0.02773442678153515, + 0.008055973798036575, + 0.03242899850010872, + -0.033340565860271454, + -0.009537270292639732, + -0.04908788576722145, + -0.02593408338725567, + 0.00630120700225234, + -0.00010967291018459946, + 0.012750543653964996, + 0.07101107388734818, + -0.02166111208498478, + 0.021490193903446198, + -0.025569455698132515, + -0.007104525808244944, + 0.011736425571143627, + -0.003327219747006893, + 0.024270473048090935, + -0.004626202862709761, + -0.021740874275565147, + -0.03511812165379524, + -0.06722807139158249, + -0.05036408081650734, + 0.008950448594987392, + 0.05423823744058609, + -0.022641045972704887, + -0.0357334278523922, + 0.029534772038459778, + 0.011371798813343048, + -0.027392590418457985, + 0.029375247657299042, + -0.008973238058388233, + -0.004267273470759392, + 0.0005113321240060031, + 0.0354827456176281, + 0.0054836454801261425, + -0.03176811337471008, + -0.017319774255156517, + -0.0259796604514122, + -0.0057371752336621284, + -0.004170419182628393, + 0.04284365102648735, + -0.006380969192832708, + -0.007474849931895733, + 0.02468067780137062, + -0.03527764603495598, + 0.01402673777192831, + 0.025068093091249466, + 0.0009350684122182429, + -0.027301432564854622, + -0.03393308445811272, + -0.014961094595491886, + -0.029466405510902405, + -0.060664787888526917, + -0.011759215034544468, + 0.01166805811226368, + 0.018231341615319252, + 0.024293262511491776, + -0.013662111014127731, + -0.02989939972758293, + 0.044279370456933975, + 0.015257353894412518, + -0.03429770842194557, + -0.03926575183868408, + -0.03844533860683441, + -0.00848327111452818, + 0.02442999742925167, + 0.004933856427669525, + 0.010927409864962101, + 0.01646517962217331, + 0.0005148929776623845, + -0.005133261904120445, + 0.014995277859270573, + -0.003435468301177025, + 0.00753752002492547, + -0.006244234275072813, + -0.02675449289381504, + -0.05218721181154251, + 0.014744596555829048, + -0.04049636423587799, + -0.017878109589219093, + -0.006899422965943813, + -0.02773442678153515, + 0.01988355629146099, + -0.002962592989206314, + 0.018641546368598938, + 0.06289812922477722, + -0.0040593221783638, + 0.011873160488903522, + 0.006796871777623892, + -0.01935940608382225, + -0.012682176195085049, + 0.029717085883021355, + -0.01918848603963852, + 0.03509533032774925, + -0.026845648884773254, + 0.024589521810412407, + -0.047629378736019135, + -0.004817062057554722, + -0.014892726205289364, + -0.050272922962903976, + 0.018299708142876625, + -0.022766387090086937, + -0.0246123094111681, + -0.025113672018051147, + 0.028759939596056938, + -0.013684900477528572, + 0.022515706717967987, + -0.010135485790669918, + 0.007924935780465603, + 0.0017818287014961243, + 0.006819660775363445, + -0.03507254272699356, + -0.0021977312862873077, + 0.02118253894150257, + 0.05501307174563408, + 0.025774559006094933, + 0.0003580393095035106, + -0.028144633397459984, + 0.011121117509901524, + -0.0005900260293856263, + 0.02545551024377346, + -0.0404735766351223, + 0.012021290138363838, + -0.006016342435032129, + 0.021102776750922203, + -0.05519538372755051, + -0.048404209315776825, + 0.00037281669210642576, + -0.046603865921497345, + -0.003190484596416354, + -0.02465788833796978, + 0.004657537676393986, + -0.0020709664095193148, + -0.0002709775581024587, + -0.02518204040825367, + 0.00070717663038522, + -0.00016192777547985315, + 0.028896674513816833, + -0.007657163310796022, + -0.048449788242578506, + -0.03302151709794998, + -0.003837127471342683, + 0.03226947411894798, + 0.00450940802693367, + -0.005050651263445616, + -0.004970889072865248, + 0.011793398298323154, + 0.010978685691952705, + 0.00112877634819597, + -0.035140909254550934, + -0.016396813094615936, + 0.008266774006187916, + 0.009662610478699207, + 0.009115670807659626, + 0.01935940608382225, + -0.02855483815073967, + -0.001471326220780611, + -0.009184038266539574, + -0.015565006993710995, + -0.006466428749263287, + 0.03299872577190399, + 0.014243234880268574, + 0.027711637318134308, + -0.009303681552410126, + 0.04927019774913788, + 0.001168657443486154, + -0.03457118198275566, + -0.06212329491972923, + 0.021353458985686302, + -0.003358554793521762, + 0.023142408579587936, + 0.009372049011290073, + -0.012192209251224995, + 0.021079987287521362, + -0.029398037120699883, + -0.0025965417735278606, + 0.015849871560931206, + 0.023039856925606728, + -0.0014257478760555387, + -0.02755211479961872, + -0.04548719525337219, + 0.0208634901791811, + -0.03375076875090599, + 0.01814018376171589, + -0.008329443633556366, + -0.009354956448078156, + -0.006124590989202261, + 0.009053000248968601, + 0.021991554647684097, + 0.009674005210399628, + 0.00500222435221076, + -0.04076983779668808, + -0.018174368888139725, + 0.006483520846813917, + 0.04304875433444977, + -0.015587796457111835, + -0.032611310482025146, + 0.0028913766145706177, + 0.00277885515242815, + -0.0098050432279706, + -0.0012334641069173813, + 0.019917739555239677, + -0.00048711863928474486, + -0.012363128364086151, + -0.02600244991481304, + 0.036462683230638504, + 0.010391863994300365, + 0.017467902973294258, + 0.019530324265360832, + -0.020817913115024567, + 0.03789839893579483, + -0.027392590418457985, + -0.0052500562742352486, + -0.0005675929132848978, + 0.01083055604249239, + 0.012397311627864838, + -0.02545551024377346, + 0.019028961658477783, + -0.02955756150186062, + 0.00648921774700284, + -0.028965042904019356, + 0.03890112414956093, + -0.0034924412611871958, + -0.029967766255140305, + 0.003822884289547801, + -0.007281141821295023, + -0.02645823359489441, + -0.023187987506389618, + -0.04186371713876724, + 0.0002813038881868124, + 0.027141908183693886, + 0.010710912756621838, + -0.021490193903446198, + 0.01244289055466652, + -0.017319774255156517, + 0.010784978047013283, + -0.017752768471837044, + 0.006962093524634838, + 0.013502586632966995, + 0.010728004388511181, + 0.0293524581938982, + -0.01791229285299778, + 0.014209051616489887, + 0.00011154233652632684, + 0.03254294395446777, + 0.030172869563102722, + -0.02023678831756115, + -0.08477573841810226, + -0.00959424301981926, + -0.00687663396820426, + -0.01442554872483015, + 0.059844378381967545, + 0.015496639534831047, + -0.006278418004512787, + -0.010568480007350445, + 0.02130788005888462, + -0.002388590481132269, + -0.013513981364667416, + -0.05747430399060249, + -0.03195042535662651, + 0.008762437850236893, + -0.009446113370358944, + 0.0036234790459275246, + -0.04252460226416588, + 0.0002926984743680805, + -0.09229616075754166, + -0.03664499521255493, + 0.0037516681477427483, + -0.027643270790576935, + -0.022253630682826042, + -0.0074634552001953125, + 0.021763663738965988, + 0.027415378019213676, + -0.02445278689265251, + -0.02985382080078125, + -0.03716914728283882, + -0.00020545866573229432, + -0.01971263810992241, + 0.005039256531745195, + -0.007577401120215654, + 0.02275499328970909, + 0.016054974868893623, + 0.013251906260848045, + -0.003905495163053274, + 0.018254129216074944, + -0.020498864352703094, + -0.008961843326687813, + 0.004435343202203512, + 0.01788950338959694, + -0.016351234167814255, + -0.0021564257331192493, + 0.007617282215505838, + 0.008164222352206707, + 0.014824358746409416, + 0.06030016019940376, + 0.022766387090086937, + 0.024726256728172302, + 0.0012939978623762727, + 0.026344288140535355, + -0.018504811450839043, + -0.013229116797447205, + 0.01816297322511673, + 0.03582458570599556, + 0.021273696795105934, + 0.002471201354637742, + 0.014277419075369835, + -2.4730929908400867e-06, + 0.019120119512081146, + 0.01363932155072689, + 0.0019271096680313349, + 0.047857269644737244, + 0.013263300992548466, + -0.011639571748673916, + -0.023495640605688095, + 0.019997501745820045, + 0.0262303426861763, + 0.010272220708429813, + 0.0054238238371908665, + 0.00835792999714613, + 0.022549889981746674, + 0.036257579922676086, + -0.04074704647064209, + 0.019553113728761673, + -0.015097829513251781, + 0.002993928035721183, + 0.005027861800044775, + 0.012363128364086151, + 0.014539494179189205, + 0.024247683584690094, + -0.008164222352206707, + 0.006130288355052471, + -0.014835753478109837, + -0.01148004736751318, + 0.0018615907756611705, + -0.002766036195680499, + 0.0018003449076786637, + 0.004856943152844906, + -0.004557835403829813, + 0.031813688576221466, + -0.003515230491757393, + -0.010226642712950706, + -0.008363627828657627, + -0.0025908444076776505, + 0.037009622901678085, + -0.04885999485850334, + -0.00099275354295969, + 0.01566755771636963, + 0.0076970444060862064, + 0.00838071946054697, + -0.022903122007846832, + -0.037761665880680084, + 0.001413641031831503, + 0.019382193684577942, + -0.0046404460445046425, + 0.038285814225673676, + 0.02130788005888462, + -0.008090157993137836, + 0.012385916896164417, + -0.026093605905771255, + -0.0071785906329751015, + -0.0018701368244364858, + -0.01439136452972889, + -0.058294713497161865, + 0.001659336849115789, + 0.026344288140535355, + -0.024293262511491776, + 0.0031477550510317087, + 0.03894670307636261, + -0.0022233689669519663, + 0.04619365930557251, + 0.023244960233569145, + 0.017752768471837044, + -0.026663336902856827, + 0.0407242588698864, + -0.025022516027092934, + 0.03475349396467209, + -0.0015154802240431309, + 0.00707034207880497, + -0.03254294395446777, + -0.03457118198275566, + 0.025774559006094933, + -0.02800789661705494, + -0.02325635403394699, + -0.027643270790576935, + -0.006916515063494444, + 8.884217822924256e-05, + 0.018903622403740883, + 0.004184662364423275, + -0.03530043363571167, + 0.004982283804565668, + -0.016829807311296463, + 0.020567230880260468, + 0.03087933361530304, + -0.04589740186929703, + 0.009349259547889233, + 0.027939530089497566, + 0.03304430469870567, + -0.0162372887134552, + 0.017023514956235886, + -0.023837478831410408, + -0.001986931310966611, + 0.019268248230218887, + -0.007657163310796022, + -0.034616757184267044, + -0.0029284090269356966, + -0.009525875560939312, + -0.03486743941903114, + -0.019530324265360832, + -0.002355830976739526, + -0.03117559291422367, + 0.01477878075093031, + 0.0016764288302510977, + 0.015610585920512676, + -0.039311327040195465, + -0.012841700576245785, + 0.030514707788825035, + -0.02566061168909073, + 0.01363932155072689, + 0.012408706359565258, + -0.04601134732365608, + 0.026936806738376617, + -0.0038741598837077618, + -0.027962319552898407, + -0.009081486612558365, + -0.006711412221193314, + -0.017855320125818253, + 0.0324745774269104, + 0.022447338327765465, + -0.004734451416879892, + 0.002939803758636117, + -0.028349734842777252, + 0.055423274636268616, + 0.02098883129656315, + 0.006762688048183918, + -0.0023301932960748672, + -0.003805792424827814, + 0.04334501177072525, + -0.011331917718052864, + 0.0129898302257061, + 0.01988355629146099, + 0.014436943456530571, + -0.002936955075711012, + -0.059023965150117874, + -0.043208278715610504, + 0.0372147262096405, + 0.013730478473007679, + -0.022652441635727882, + 0.009565756656229496, + 0.01083055604249239, + 0.012431495822966099, + -0.03090212307870388, + -0.047629378736019135, + 0.014926910400390625, + 0.023677954450249672, + -0.011075539514422417, + 0.00667153112590313, + 0.009166945703327656, + -0.014482521452009678, + -0.03113001398742199, + 0.025637824088335037, + -0.00688233133405447, + 0.03377356007695198, + 0.006079012528061867, + -0.006751293316483498, + -0.0389694906771183, + -0.021364852786064148, + -0.03304430469870567, + -0.012477073818445206, + 0.021649718284606934, + -0.017604637891054153, + -0.005677353590726852, + 0.024293262511491776, + 0.02028236724436283, + -0.022994277998805046, + 0.02028236724436283, + 0.013730478473007679, + 0.0038741598837077618, + -0.00893335696309805, + -0.035186488181352615, + 0.009571453556418419, + 0.008625702932476997, + -0.045327670872211456, + 0.02857762761414051, + -0.021718084812164307, + -0.0339786633849144, + 0.004310003016144037, + -0.05938859283924103, + -0.010813464410603046, + 0.02930688112974167, + -0.026412654668092728, + 0.019644269719719887, + 0.017251405864953995, + -0.038285814225673676, + -0.019097330048680305, + 0.019393589347600937, + 0.0016208802117034793, + 0.004822759423404932, + 0.02698238380253315, + -0.006375271826982498, + 0.03536880016326904, + 0.02268662489950657, + 0.001575301750563085, + -0.02000889740884304, + -0.0018772584153339267, + 0.01778695173561573, + -0.03224668279290199, + 0.016829807311296463, + -0.009987356141209602, + -0.0203621294349432, + -0.01828831434249878, + 0.03354566916823387, + 0.028099054470658302, + -0.020726755261421204, + 0.009166945703327656, + -0.009491692297160625, + -0.015872661024332047, + -0.00688802869990468, + -0.0015710288425907493, + 0.010813464410603046, + 0.004369824659079313, + -0.006147380452603102, + 0.02195737138390541, + -0.017228616401553154, + -0.0031819387804716825, + 0.002885679481551051, + -0.01816297322511673, + 0.05328109487891197, + 0.011998501606285572, + -0.0036747546400874853, + 0.016567731276154518, + -0.0035978411324322224, + -0.008397811092436314, + 0.007566006388515234, + 0.01751348190009594, + -0.0007741198060102761, + 0.01300122495740652, + -0.04104330763220787, + -0.008876384235918522, + 0.00033916704705916345, + 0.025250406935811043, + 0.005509283393621445, + 0.014368575997650623, + -0.03065144270658493, + -0.010568480007350445, + -0.034411657601594925, + 0.01659052073955536, + -0.02273220382630825, + 0.006466428749263287, + 0.018219945952296257, + 0.0026478173676878214, + -0.0060220398008823395, + 0.0017932233167812228, + -0.019142907112836838, + 0.025546666234731674, + 0.030423549935221672, + -0.0032218198757618666, + 0.029785452410578728, + -0.009674005210399628, + -0.04858652502298355, + 0.013548165559768677, + -0.004198905546218157, + -0.005420975387096405, + 0.009383443742990494, + -0.004329943563789129, + -0.015496639534831047, + 0.00022664548305328935, + -0.008671281859278679, + 0.004321397747844458, + -0.0013281817082315683, + -0.013719083741307259, + -0.023974213749170303, + 0.0057685100473463535, + -0.01579289883375168, + -0.008751044049859047, + 0.007469152566045523, + -0.0026463931426405907, + 0.01910872384905815, + 0.011816187761723995, + -0.006472126115113497, + -0.0288510974496603, + -0.018026238307356834, + 0.011354707181453705, + -0.004460981115698814, + -0.023974213749170303, + 0.01594102941453457, + -0.015268747694790363, + 0.05519538372755051, + 0.03252015262842178, + -0.018128789961338043, + 0.009537270292639732, + -0.025227617472410202, + -0.022025737911462784, + -0.03274804726243019, + 0.019575903192162514, + 0.01686399057507515, + -0.019575903192162514, + 0.003925435710698366, + -0.0241109486669302, + -0.01594102941453457, + -0.02440720796585083, + 0.0025466904044151306, + -0.03844533860683441, + 0.0018872286891564727, + -0.035186488181352615, + 0.014436943456530571, + 0.03343171998858452, + 0.0055434671230614185, + 0.0046404460445046425, + -0.003817186923697591, + -0.036212000995874405, + 0.04457562789320946, + 0.025820136070251465, + 0.014186262153089046, + 0.03008171170949936, + 0.018823860213160515, + 0.06431105732917786, + 0.009599940851330757, + -0.05341782793402672, + 0.002377195982262492, + 0.021626928821206093, + 0.004281516652554274, + -0.0054437643848359585, + -0.021091382950544357, + 0.015314326621592045, + -0.02288033254444599, + -0.0005077713285572827, + -0.027347011491656303, + 0.017502088099718094, + 0.013240511529147625, + 0.003985257353633642, + -0.03851370885968208, + -0.0031534521840512753, + -0.030970489606261253, + 0.02700517326593399, + 0.007292536552995443, + -0.004569229669868946, + -0.021695295348763466, + 0.034935805946588516, + 0.013536770828068256, + 0.012192209251224995, + -0.003956770524382591, + -0.00415332755073905, + -0.026321498677134514, + 0.03459396958351135, + 0.013251906260848045, + -0.019701242446899414, + -0.03427492082118988, + 0.04174977168440819, + 0.01166805811226368, + -0.01504085585474968, + 0.006010645069181919, + 0.02907898835837841, + -0.033112671226263046, + 0.02163832262158394, + 0.0020923311822116375, + -0.03356845676898956, + 0.03169974312186241, + 0.02698238380253315, + 0.0201114472001791, + -0.0035779005847871304, + 0.0031335116364061832, + 0.02141043171286583, + 0.013080987147986889, + -0.005862515419721603, + 0.01170224230736494, + 0.03277083486318588, + -0.007406482473015785, + 0.021763663738965988, + -0.024202104657888412, + -0.023176591843366623, + -0.04899672791361809, + -0.00545800756663084, + 0.021752268075942993, + 0.017445113509893417, + 0.01644239015877247, + 0.0024598066229373217, + -0.0057770563289523125, + 0.025523876771330833, + 0.02365516498684883, + 0.020703965798020363, + -0.005116170272231102, + -0.024088159203529358, + 0.00500222435221076, + 0.021797847002744675, + 0.014881332404911518, + -0.026412654668092728, + 0.026389865204691887, + -0.006135985720902681, + 0.02040770649909973, + 0.01833389140665531, + -0.004124840721487999, + 0.006922212429344654, + -0.0319732129573822, + -0.009007422253489494, + -0.019348010420799255, + 0.0017789800185710192, + -0.029375247657299042, + -0.029739875346422195, + 0.022344786673784256, + -0.006466428749263287, + -0.005193083547055721, + 0.032588522881269455, + -0.004671781323850155, + 0.010477324016392231, + 0.023472851142287254, + -0.04031405225396156, + 0.02723306603729725, + 0.03188205882906914, + -0.013069592416286469, + -0.0005177416023798287, + 0.007491941563785076, + -0.0072184717282652855, + 0.02520482800900936, + -0.040883783251047134, + -0.008961843326687813, + 0.012511258013546467, + -0.005398185923695564, + 0.03252015262842178, + -0.003879857249557972, + -0.01310377661138773, + 0.00940623227506876, + 0.013206327334046364, + -0.010124091058969498, + 0.05236952751874924, + 0.010300708003342152, + 0.01401534304022789, + -0.01442554872483015, + -0.01971263810992241, + 0.013707689009606838, + -0.00023697182768955827, + 0.008147130720317364, + -0.02518204040825367, + 0.0077084386721253395, + -0.012499863281846046, + -0.037488196045160294, + 0.010072816163301468, + 0.029033411294221878, + -0.0054437643848359585, + -0.022698018699884415, + -0.02930688112974167, + 0.010471626184880733, + -0.024270473048090935, + -0.042228344827890396, + 0.03060586377978325, + 0.023974213749170303, + 0.013149354606866837, + 0.006443639751523733, + 0.026640547439455986, + -0.018732702359557152, + -0.010226642712950706, + -0.0011166696203872561, + -0.030742598697543144, + -0.017057698220014572, + 0.042729705572128296, + -0.027073541656136513, + -0.06485799700021744, + 0.020327944308519363, + -0.008340838365256786, + 0.022846149280667305, + 0.01908593438565731, + 0.037283092737197876, + -0.007833778858184814, + -0.0424790233373642, + 0.055924639105796814, + -0.001461355946958065, + 0.010483020916581154, + -0.0036576627753674984, + 0.0015396936796605587, + 0.01916569657623768, + -0.03607526421546936, + 0.02281196601688862, + -0.012260576710104942, + -0.05350898578763008, + 0.006426547653973103, + -0.02233339287340641, + 0.04876883700489998, + 0.006625953130424023, + 0.01507504004985094, + -0.0178667139261961, + 0.013024014420807362, + -0.014858542941510677, + 0.009007422253489494, + 0.019017567858099937, + -0.010539993643760681, + -0.012921462766826153, + 0.002059571910649538, + 0.013024014420807362, + -0.009195432998239994, + -0.014562283642590046, + -0.030218448489904404, + -0.028144633397459984, + 0.00026866301777772605, + -0.0017718584276735783, + -0.05218721181154251, + 0.012009895406663418, + -0.0178667139261961, + 0.022789176553487778, + 0.017900897189974785, + 0.016032185405492783, + -0.014288813807070255, + 0.03536880016326904, + -0.0026179065462201834, + -0.01709188148379326, + 0.027666060253977776, + 0.008585821837186813, + -0.030332393944263458, + -0.0021820636466145515, + 0.04794842749834061, + -0.048677679151296616, + 0.015325721353292465, + 0.012647992931306362, + -0.031494639813899994, + -0.0007103813695721328, + -0.013992554508149624, + 0.03860486298799515, + 0.003857068018987775, + -0.025865714997053146, + -0.0017917989753186703, + -0.008112946525216103, + 0.024498363956809044, + -0.02013423666357994, + 0.026161974295973778, + 0.03504975140094757, + 0.008711162954568863, + -0.0030024738516658545, + -0.04279807209968567, + -0.05250626057386398, + 0.032064370810985565, + -0.019268248230218887, + -0.0024768984876573086, + 0.010705215856432915, + -0.027164697647094727, + 0.011918739415705204, + 0.002748944330960512, + 0.05113891139626503, + 0.008050276897847652, + -0.013240511529147625, + 0.017308378592133522, + 0.00023394513118546456, + -0.02340448461472988, + 0.010562783107161522, + 0.013251906260848045, + 0.013844424858689308, + 0.005486494395881891, + -0.043208278715610504, + -0.021797847002744675, + -0.022025737911462784, + 0.0005732902209274471, + 0.038809966295957565, + 0.007822385057806969, + -0.010551388375461102, + 0.0038741598837077618, + -0.0022717961110174656, + 0.01260241400450468, + -0.028645994141697884, + 0.0005601152079179883, + 0.01761603355407715, + -0.011172393336892128, + -0.01853899471461773, + -0.01122936699539423, + 0.011423074640333652, + -0.02115974947810173, + -0.011747820302844048, + 0.016658887267112732, + -0.014163472689688206, + -0.006728504318743944, + 0.022914515808224678, + 0.013992554508149624, + -0.0051788403652608395, + 0.0006690759910270572, + 0.014163472689688206, + -0.003033809131011367, + -0.020749544724822044, + -0.05081986263394356, + -0.014562283642590046, + 0.00771983340382576, + -0.010095604695379734, + 0.0019142908276990056, + -0.0047800298780202866, + 0.001203553401865065, + -0.010807766579091549, + -0.005036408081650734, + 0.049953874200582504, + 0.029967766255140305, + -0.008346536196768284, + -0.010403258726000786, + -0.045350462198257446, + 0.03288478031754494, + -0.005292786285281181, + -0.03874159976840019, + 0.022390365600585938, + 0.015302931889891624, + -0.02723306603729725, + 0.00386561406776309, + -0.027643270790576935, + 0.026025239378213882, + -0.04794842749834061, + -0.010374772362411022, + -0.02417931519448757, + 0.004130538087338209, + -0.021068593487143517, + -0.03963037580251694, + 0.025842925533652306, + 0.04204602912068367, + 0.003780154511332512, + 0.01613473705947399, + -0.009525875560939312, + -0.01724001206457615, + 0.01791229285299778, + 0.026617757976055145, + -0.010329194366931915, + 0.03744261711835861, + 0.014345786534249783, + -0.01646517962217331, + 0.025250406935811043, + -0.00753752002492547, + -0.011816187761723995, + -0.023791899904608727, + 0.0029654414393007755, + 0.01696654222905636, + 0.015872661024332047, + -0.008825108408927917, + 0.016020791605114937, + -0.015542218461632729, + 0.0006352482596412301, + -0.005477948114275932, + -0.00630120700225234, + -0.014926910400390625, + -0.02985382080078125, + 0.014197656884789467, + -0.011035658419132233, + 0.030491918325424194, + -0.01194152794778347, + -0.000984919723123312, + -0.021672505885362625, + -0.0054437643848359585, + -0.015895450487732887, + 0.0178667139261961, + 0.015553613193333149, + -0.020430495962500572, + -0.023427272215485573, + -0.03327219560742378, + -0.035710640251636505, + 0.017843924462795258, + 0.0054637049324810505, + 0.053098779171705246, + 0.02126230113208294, + 0.04699128121137619, + 0.024976937100291252, + -0.011770609766244888, + 0.0099930539727211, + 0.0026976687368005514, + -0.01297843549400568, + 0.00500222435221076, + -0.01231754943728447, + 0.027347011491656303, + 0.011035658419132233, + -0.0049025216139853, + 0.013206327334046364, + 0.014072316698729992, + -0.04200045019388199, + 0.024862991645932198, + 0.03169974312186241, + 0.03345451131463051, + 0.016430996358394623, + 0.021205328404903412, + 0.022219447419047356, + -0.015337115153670311, + -0.011918739415705204, + -0.012944252230226994, + -0.011309128254652023, + 0.018675729632377625, + 0.030218448489904404, + -0.018242735415697098, + 0.04366406053304672, + -0.01621449925005436, + 0.023222170770168304, + -0.030195659026503563, + 0.005648867227137089, + -0.01833389140665531, + 0.007446363102644682, + 0.025911293923854828, + -0.0012811790220439434, + -0.012841700576245785, + -0.047674957662820816, + -0.02905619889497757, + 0.002374347299337387, + 0.009184038266539574, + 0.00839211419224739, + 0.011782004497945309, + -0.03835418447852135, + 0.004452435299754143, + -0.0025438417214900255, + 0.022276420146226883, + -0.02438441850244999, + 0.021296484395861626, + 0.004839851520955563, + 0.0040023489855229855, + 0.005822634324431419, + 0.004848397336900234, + -0.005175991449505091, + -0.037465404719114304, + -0.04835863038897514, + 0.02677728235721588 + ], + "how_to_smelt_ores": [ + 0.04297883063554764, + 0.004875246435403824, + -0.01948900707066059, + -0.023669499903917313, + -0.014541889540851116, + -0.0048602730967104435, + -0.014062750153243542, + -0.06185693293809891, + 0.037804123014211655, + -0.0414934977889061, + 0.06971482187509537, + -0.032413799315690994, + -0.0012143196072429419, + -0.0046416656114161015, + 0.04537452757358551, + 0.05510106310248375, + -0.008852105587720871, + 0.03028162755072117, + -0.02303463965654373, + 0.027526576071977615, + 0.05788007378578186, + -0.00038181443233042955, + 0.0343543142080307, + -0.016865717247128487, + -0.032605454325675964, + 0.02767031639814377, + 0.017404749989509583, + 0.024148641154170036, + -0.03303668275475502, + 0.03116803616285324, + 0.015368405729532242, + -0.01176287978887558, + -0.0360073484480381, + 0.009474987164139748, + -0.0189619529992342, + -0.026807865127921104, + 0.0365583598613739, + 0.012182126753032207, + 0.005558020435273647, + -0.03454597294330597, + 0.01726100780069828, + -0.031814876943826675, + -0.007774041499942541, + -0.031263865530490875, + 0.0002509868354536593, + 0.05859878286719322, + -0.009810385294258595, + 0.005680799949914217, + 0.030377456918358803, + 0.030880553647875786, + 0.02874838188290596, + 0.004270332399755716, + -0.039672765880823135, + -0.035767778754234314, + 0.003485741326585412, + 0.015248620882630348, + -0.03756455332040787, + 0.020399373024702072, + -0.004971074406057596, + -0.026999522000551224, + -0.02242373675107956, + -0.013463824987411499, + 0.04707547277212143, + 0.04254760593175888, + 0.011355610564351082, + -0.002259443048387766, + -0.05395112931728363, + 0.006336622405797243, + 0.03363560512661934, + 0.024040833115577698, + -0.033132508397102356, + -0.02127380296587944, + 0.03833117336034775, + -0.017296941950917244, + -0.02635268308222294, + -0.004989041946828365, + -0.007252977229654789, + 0.018866125494241714, + -0.005968283861875534, + -0.02503504790365696, + -0.06693581491708755, + -0.021705027669668198, + -6.719185330439359e-05, + 0.023585651069879532, + -0.01096630934625864, + -0.003024569246917963, + -0.04800979793071747, + 0.028317155316472054, + -0.040056079626083374, + -0.08753882348537445, + -0.031072208657860756, + 0.03272524103522301, + -0.031263865530490875, + -0.01976451277732849, + 0.04252364858984947, + -0.03955298289656639, + 0.022771114483475685, + -0.03677397221326828, + -0.019824404269456863, + 0.04683590307831764, + 0.013308105058968067, + -0.0024570883251726627, + -0.00878023449331522, + -0.014889265410602093, + -0.0018896071705967188, + 0.03028162755072117, + -0.02728700451552868, + 0.012553459964692593, + -0.05994037538766861, + -0.0500221848487854, + -0.028149457648396492, + -0.025298574939370155, + 0.02671203762292862, + -0.012158169411122799, + -0.006660041864961386, + 0.05419069901108742, + -0.012936771847307682, + 0.029419176280498505, + 0.04158932343125343, + 0.007181106135249138, + -0.03636670112609863, + -0.0037103379145264626, + 0.0321502722799778, + -0.023537736386060715, + -0.03114408068358898, + -0.011313686147332191, + -0.0007441638153977692, + -0.0406789593398571, + 0.01726100780069828, + 0.006977471522986889, + 0.004671611823141575, + -0.046787992119789124, + 0.05941332131624222, + 0.010984277352690697, + -0.025298574939370155, + 0.009756482206285, + -0.013727352023124695, + -0.04051126167178154, + -0.0012794526992365718, + 0.046787992119789124, + -0.03191070258617401, + -0.020878512412309647, + -0.031814876943826675, + 0.009085685946047306, + -0.005252568982541561, + -0.014074728824198246, + -0.02690369449555874, + -0.005686789285391569, + 0.03825930505990982, + 0.013511739671230316, + 0.025849586352705956, + -0.0007890831911936402, + -0.016290750354528427, + -0.0031862789765000343, + 0.04408084973692894, + -0.029467090964317322, + -0.04326631501317024, + 0.07287714630365372, + 0.009828353300690651, + 0.00044133258052170277, + -0.023621587082743645, + 0.01353569608181715, + -0.0368218868970871, + -0.017416726797819138, + -0.018315114080905914, + 0.003180289641022682, + -0.02520274743437767, + -0.03569590672850609, + -0.029538961127400398, + 0.09036574512720108, + -0.005411284044384956, + 0.03131178021430969, + -0.008786223828792572, + 0.010385353118181229, + 0.02135765179991722, + 0.0031263865530490875, + -0.012277954258024693, + -0.0008160347933880985, + -0.006749880500137806, + 0.02927543595433235, + -0.00895991176366806, + -0.011619137600064278, + -0.06013203039765358, + -0.039696723222732544, + 0.028460897505283356, + 0.005474171135574579, + -0.0541427843272686, + -0.0020438302308321, + 0.033899132162332535, + 0.01791982352733612, + -0.03785203397274017, + 0.0050788805820047855, + -0.03813951835036278, + 0.031647175550460815, + -0.008265160024166107, + -0.0313357375562191, + 0.03413870185613632, + -0.03730102628469467, + 0.025681886821985245, + 0.0001297981943935156, + -0.00040202814852818847, + 0.034234531223773956, + 0.032605454325675964, + 0.00824719201773405, + 0.01827917993068695, + 0.01906975917518139, + 0.001456135418266058, + 0.03061702661216259, + 0.06492342799901962, + 0.02836507000029087, + -0.004150547552853823, + 0.014781459234654903, + 0.042667388916015625, + 0.03198257461190224, + 0.015847545117139816, + -0.029467090964317322, + -0.046979647129774094, + 0.04568596929311752, + -0.003898999188095331, + -0.0025529160629957914, + 0.00606111716479063, + -0.01885414682328701, + 0.041733067482709885, + -0.01596732996404171, + 0.004246375523507595, + 0.03979255259037018, + 0.025250662118196487, + 0.0009904715698212385, + 0.08868875354528427, + 0.00713918125256896, + -0.031647175550460815, + -0.022639350965619087, + 0.028868166729807854, + -0.02537044696509838, + 0.008301095105707645, + 0.004785407800227404, + -0.02053113654255867, + 0.010283535346388817, + 0.0023462872486561537, + -0.01540434081107378, + -0.03157530725002289, + -0.018315114080905914, + -0.0026801875792443752, + -0.025921456515789032, + -0.01540434081107378, + 0.00028954262961633503, + -0.022986726835370064, + -0.0379239059984684, + 0.07445830851793289, + 0.045829709619283676, + 0.03320438042283058, + -0.03284502401947975, + 0.03267732635140419, + -0.0094809764996171, + -0.011792825534939766, + -0.014302319847047329, + -0.03358769044280052, + -0.021417543292045593, + 0.011122030206024647, + -0.018315114080905914, + -0.021968554705381393, + 0.05653848499059677, + -0.10531490296125412, + 0.02165711484849453, + -0.00035336552537046373, + 0.018207307904958725, + 0.030952423810958862, + 0.009103653952479362, + -0.015919415280222893, + -0.03303668275475502, + -0.03806765004992485, + 0.016123050823807716, + 0.02764636091887951, + -0.040247734636068344, + -0.05749676376581192, + -0.020794661715626717, + 0.011253793723881245, + 0.05490940809249878, + 0.005096848588436842, + 0.027574488893151283, + -0.005225617438554764, + -0.0016155991470441222, + 0.03964880853891373, + 0.029802488163113594, + 0.007312869653105736, + 0.006028176285326481, + 0.010079901665449142, + -0.00820526760071516, + -0.012182126753032207, + -0.038403045386075974, + -0.0022070372942835093, + 0.02410072647035122, + 0.023094533011317253, + 0.03358769044280052, + 0.011547266505658627, + 0.0020737764425575733, + -0.018806232139468193, + 0.010457223281264305, + -0.008319063112139702, + -0.03739685192704201, + 0.014961136505007744, + 0.04604532569646835, + 0.03586360439658165, + 0.01921350136399269, + -0.04903994873166084, + -0.059461236000061035, + 0.028101542964577675, + -0.04070291668176651, + 0.018566662445664406, + 0.013200298883020878, + 0.05682596564292908, + -0.04997427016496658, + 0.0447995625436306, + -0.02894003689289093, + 0.018985910341143608, + 0.05653848499059677, + 0.02335806004703045, + 0.0008190294029191136, + -0.06027577444911003, + -0.01838698610663414, + 0.025921456515789032, + 0.014038792811334133, + 0.02577771618962288, + 0.012289932928979397, + 0.010127815417945385, + -0.02894003689289093, + 0.014302319847047329, + 0.009642686694860458, + 0.0016126044793054461, + 0.029467090964317322, + -0.0302337147295475, + -0.02817341312766075, + -0.0019524942617863417, + -0.04968678578734398, + 0.0036654185969382524, + 0.04410480707883835, + 0.024795478209853172, + 0.046404678374528885, + 0.047530658543109894, + 0.04911181703209877, + -0.014745524153113365, + -0.01679384522140026, + -0.05371155962347984, + 0.012253997847437859, + 0.005060913041234016, + -0.02575375884771347, + -0.012697202153503895, + 0.03363560512661934, + -0.03356373682618141, + 0.04626093804836273, + 0.020291564986109734, + 0.05074089393019676, + -0.00849275104701519, + -0.042883001267910004, + 0.007282923441380262, + -0.012289932928979397, + -0.005704756826162338, + -0.03327625244855881, + -0.021070167422294617, + -0.015260599553585052, + -0.016362620517611504, + 0.038403045386075974, + 0.03488136827945709, + 0.020375415682792664, + -0.024280404672026634, + 0.047147344797849655, + 0.0023223301395773888, + 0.027861973270773888, + -0.03433036059141159, + 0.014038792811334133, + 0.017117265611886978, + 0.06957108527421951, + -0.015488190576434135, + 0.006031170953065157, + -0.01569182425737381, + 0.012026405893266201, + 0.022962769493460655, + 0.013332061469554901, + 0.014493975788354874, + 0.01692560873925686, + 0.003548628417775035, + -0.008798202499747276, + 0.029970187693834305, + 0.006564213894307613, + 0.018243243917822838, + -0.023897092789411545, + 0.030521199107170105, + -0.005749676376581192, + -0.08049546927213669, + -0.051795002073049545, + 0.059844546020030975, + -0.025897501036524773, + 0.005168719217181206, + 0.013056556694209576, + 0.03979255259037018, + -0.03356373682618141, + -0.004354181699454784, + 0.054621923714876175, + 0.010487169958651066, + 0.0020123866852372885, + 0.02265132963657379, + -0.007091267500072718, + -0.007133191917091608, + 0.004911181982606649, + -0.0403914749622345, + -0.011511331424117088, + -0.02259143628180027, + 0.0020378408953547478, + -0.03157530725002289, + 0.019417135044932365, + 0.022220103070139885, + 0.025274619460105896, + 0.04664424806833267, + 0.0084508266299963, + 0.03524072468280792, + -0.031263865530490875, + 0.006672020070254803, + 0.014026814140379429, + -0.029730618000030518, + -0.04784209653735161, + -0.009498944506049156, + -0.007959707640111446, + 0.0832744762301445, + 0.027550531551241875, + 0.026041241362690926, + -0.014026814140379429, + 0.022303951904177666, + -0.04930347576737404, + 0.051076289266347885, + -0.05989246070384979, + -0.024603823199868202, + 0.03916966915130615, + 0.023094533011317253, + 0.0409424863755703, + -0.012493567541241646, + -0.013799223117530346, + -0.0016200910322368145, + -0.03881031647324562, + 0.009031782858073711, + -0.010984277352690697, + -0.022519566118717194, + 0.009954127483069897, + 0.028341112658381462, + 0.009882256388664246, + -0.06027577444911003, + -0.01764431968331337, + -0.003764241235330701, + -0.005914380773901939, + 0.02025563083589077, + -0.02949104830622673, + 0.037061456590890884, + -0.008223234675824642, + -0.03866657242178917, + 0.0019719593692570925, + 0.020902469754219055, + -0.046740077435970306, + -0.0005906894220970571, + -0.005162730347365141, + 0.008995847776532173, + 0.01715320162475109, + 0.027406789362430573, + 0.03883427008986473, + 0.009037772193551064, + -0.02726304903626442, + 0.010169739834964275, + 0.042691346257925034, + 0.014362212270498276, + 0.007474579382687807, + -0.002022867789492011, + -0.03191070258617401, + -0.018866125494241714, + -0.03061702661216259, + -0.0010960320942103863, + 0.019369222223758698, + 0.03006601519882679, + -0.022819027304649353, + -0.042499691247940063, + 0.03789994865655899, + -0.014026814140379429, + -0.029994145035743713, + 0.015739738941192627, + 0.04832123592495918, + 0.032605454325675964, + -0.025729801505804062, + 0.005581977311521769, + 0.060036204755306244, + -0.03306064009666443, + -0.027191177010536194, + -0.05845504254102707, + -0.0270713921636343, + -0.006695976946502924, + -0.022579457610845566, + 0.018506770953536034, + -0.011331653222441673, + 0.03974463790655136, + -0.07038561999797821, + 0.018015652894973755, + -0.05601143091917038, + -0.010708771646022797, + 0.03282107040286064, + 0.03310855105519295, + -0.02053113654255867, + -0.022160211578011513, + 0.03399496152997017, + -0.030353499576449394, + -0.026232898235321045, + 0.015308513306081295, + -0.007977675646543503, + 0.012152180075645447, + -0.0037133325822651386, + 0.01838698610663414, + -0.008223234675824642, + -0.020111888647079468, + 0.022303951904177666, + -0.028077585622668266, + -0.0020767711102962494, + 0.007809977047145367, + 0.01874634064733982, + 0.002478050533682108, + 0.03361164778470993, + -0.013092491775751114, + 0.017057372257113457, + -0.0024466069880872965, + -0.005480160005390644, + 0.0057975901290774345, + -0.0025094940792769194, + -0.02561001665890217, + 0.01945307105779648, + 0.01968066208064556, + -0.001000952790491283, + 0.006678009405732155, + -0.036869797855615616, + -0.005812563467770815, + -0.013367997482419014, + -0.029011908918619156, + 0.04120601341128349, + -0.0324377566576004, + -0.025490231812000275, + -0.00905574019998312, + 0.014350233599543571, + -0.0313357375562191, + 0.006342611741274595, + -0.03679792955517769, + -0.029586875811219215, + 0.002433131216093898, + -0.013775265775620937, + 0.05438235402107239, + 0.03421057388186455, + -0.01585952378809452, + -0.015847545117139816, + -0.01345184724777937, + -0.025705844163894653, + -0.0017728168750181794, + -0.023980941623449326, + 0.015009051188826561, + 0.00410263380035758, + 4.4170690671307966e-05, + -0.035935476422309875, + 0.004971074406057596, + 0.030569111928343773, + -0.0031743005383759737, + -0.009486965835094452, + -0.0010166745632886887, + -0.02091444656252861, + 0.03231797367334366, + 0.03938528150320053, + -0.0037552572321146727, + 0.006953514646738768, + -0.029059821739792824, + 0.01466167438775301, + 0.004021778702735901, + -0.02783801592886448, + 0.02426842600107193, + -0.0006472129025496542, + -0.030904509127140045, + 0.012577417306602001, + 0.030161842703819275, + 0.010151771828532219, + -0.021237866953015327, + 0.0033869186881929636, + 0.013895050622522831, + -0.0373728945851326, + 0.004423058126121759, + 0.007839922793209553, + -0.025082962587475777, + -0.005893418099731207, + -0.010930374264717102, + 0.01720111444592476, + -0.01709330826997757, + -0.0373728945851326, + -0.008444837294518948, + -0.0052825151942670345, + 0.003264139173552394, + -0.003806165885180235, + 0.01566786877810955, + -0.0007250730996020138, + -0.02050717920064926, + 0.04765044152736664, + -0.019333286210894585, + 0.014949158765375614, + -0.007115224376320839, + -0.008079493418335915, + -0.008552643470466137, + 0.0009200979257002473, + -0.03246171399950981, + 0.03171904757618904, + -0.014350233599543571, + -0.006558224558830261, + -0.0026262844912707806, + 0.01641053520143032, + -0.04132579639554024, + -0.0009006328764371574, + -0.02910773642361164, + -0.006600149441510439, + -9.704450349090621e-05, + -0.003533655311912298, + 0.047890011221170425, + 0.025993328541517258, + -0.012086298316717148, + -0.011888653971254826, + -0.0037732250057160854, + 0.017871910706162453, + -0.010127815417945385, + 0.0150449862703681, + 0.012960728257894516, + 0.01448199711740017, + 0.005126794800162315, + 0.02781405858695507, + -0.06214441731572151, + 0.02913169376552105, + -0.004180493764579296, + -0.02989831753075123, + 0.0015287550631910563, + 0.01698550209403038, + 0.004506907891482115, + -0.04089457169175148, + -0.00020026542188134044, + 0.0018342066323384643, + 0.0150449862703681, + -0.00639651482924819, + -0.014338254928588867, + -0.040223777294158936, + -0.0024690667632967234, + 0.013930986635386944, + -0.004303273279219866, + 0.02033947966992855, + 0.019417135044932365, + 0.003198257414624095, + 0.004476961679756641, + -0.05615517124533653, + 0.012601373717188835, + 0.004111617337912321, + -0.03411474451422691, + -0.0582633875310421, + 0.029203563928604126, + 0.018530728295445442, + -0.042475733906030655, + -0.03718123957514763, + -0.031479477882385254, + 0.002527461852878332, + -0.01989627629518509, + -0.01064887922257185, + 0.03250962868332863, + 0.02042332850396633, + 0.014362212270498276, + 0.004105628002434969, + -0.008061525411903858, + -0.026783907786011696, + 0.05299285054206848, + 0.013595588505268097, + 0.010529094375669956, + -0.007989654317498207, + -0.03919362649321556, + -0.020567070692777634, + -0.007875858806073666, + 0.009582793340086937, + -0.008229224011301994, + -0.04027169197797775, + -0.003419859567657113, + 0.01893799565732479, + -9.035339462570846e-05, + 0.005138773005455732, + -0.021165994927287102, + 0.004800380673259497, + 0.01753651350736618, + -0.02575375884771347, + 0.025705844163894653, + -0.029467090964317322, + 0.008774245157837868, + 0.02363356575369835, + -0.00557299330830574, + -0.032198186963796616, + -0.002268427051603794, + -0.014697610400617123, + -0.0018821206176653504, + -0.023310145363211632, + 0.035552166402339935, + -0.021010275930166245, + 0.0008422377286478877, + -0.046189066022634506, + 0.0005184441106393933, + -0.01800367422401905, + 0.038163475692272186, + -0.0030784725677222013, + -0.013499761000275612, + -0.008366976864635944, + -0.05802381783723831, + 0.015931393951177597, + 0.025082962587475777, + 0.027406789362430573, + -0.012253997847437859, + -0.0039918324910104275, + -0.032030489295721054, + 0.0166261475533247, + -0.010271556675434113, + 0.04496726021170616, + -0.02360960841178894, + -0.029586875811219215, + 0.0276224035769701, + 0.018039610236883163, + 0.02989831753075123, + 0.029802488163113594, + -0.006378547288477421, + -0.01225998718291521, + -0.015080921351909637, + 0.013272169046103954, + 0.009570815600454807, + 0.025082962587475777, + -0.0016006260411813855, + 0.005737697705626488, + -0.024699650704860687, + 0.029730618000030518, + 0.007983664982020855, + -0.007594364229589701, + 0.008061525411903858, + -0.032557543367147446, + -0.007330837193876505, + 0.012960728257894516, + 0.03730102628469467, + -0.008277137763798237, + -0.03155134990811348, + 0.002590348944067955, + 0.03754059597849846, + -0.01951296441257, + 0.028341112658381462, + 0.010948342271149158, + -0.05021383985877037, + 0.031814876943826675, + -0.03143156319856644, + 0.0365583598613739, + -0.03028162755072117, + 0.008025589399039745, + -0.022268017753958702, + 0.030497241765260696, + -0.0037522627972066402, + -0.02429238148033619, + 0.008870073594152927, + 0.00671394495293498, + -0.05903001129627228, + 0.011655072681605816, + -0.026568295434117317, + -0.01191261038184166, + 0.008253181353211403, + 0.01557204034179449, + -0.016290750354528427, + 0.0024945209734141827, + 0.027766145765781403, + 0.002153133973479271, + -0.009151567704975605, + 0.02280704863369465, + 0.02267528511583805, + -0.020375415682792664, + 0.014086706563830376, + -0.008977879770100117, + 0.007145170588046312, + 0.008277137763798237, + -0.036342743784189224, + 0.018255222588777542, + 0.02910773642361164, + -0.03768433630466461, + -0.02913169376552105, + -0.01261335238814354, + 0.016039201989769936, + 0.009786427952349186, + 0.02420853264629841, + -0.006761858705431223, + -0.008187299594283104, + 0.016015244647860527, + 0.014529910869896412, + -0.03416265919804573, + -0.020902469754219055, + -0.02352575957775116, + 0.006312665529549122, + 0.00137078866828233, + -0.02341795153915882, + -0.015703802928328514, + 0.010199686512351036, + -0.06420471519231796, + -0.04681194946169853, + -0.018902061507105827, + -0.03250962868332863, + -0.04254760593175888, + -0.018458856269717216, + -0.012840943410992622, + 0.028820252045989037, + -0.02613707073032856, + -0.032773155719041824, + 0.05026175454258919, + -0.029227521270513535, + 0.009666643105447292, + 0.008277137763798237, + 0.007809977047145367, + 0.001068331766873598, + 0.003021574579179287, + 0.06683998554944992, + -0.010241610929369926, + 0.01484135165810585, + -0.022986726835370064, + -0.0014538895338773727, + 0.009103653952479362, + -0.0008422377286478877, + -0.0401279479265213, + -0.006564213894307613, + -0.0013408424565568566, + -0.008031578734517097, + -0.004971074406057596, + 0.01783597469329834, + 0.014386169612407684, + 0.026184983551502228, + 0.047913968563079834, + -0.014314298518002033, + -0.03174300491809845, + 0.008510719053447247, + 0.019333286210894585, + 0.0029691688250750303, + 0.04815353825688362, + 0.0300899725407362, + 0.02910773642361164, + 0.025130877271294594, + 0.023130469024181366, + 0.006552235223352909, + 0.012565438635647297, + 0.007103245705366135, + -0.005878445226699114, + 0.016769889742136, + 0.008432858623564243, + 0.03224610164761543, + 0.017105286940932274, + -0.003611515508964658, + -0.0042104399763047695, + -0.005474171135574579, + 0.024915263056755066, + 0.03591151908040047, + -0.03152739256620407, + 0.03543237969279289, + -0.030018102377653122, + -0.026831822469830513, + 0.0022115290630608797, + -0.007205063011497259, + 0.039505068212747574, + -0.015619954094290733, + 0.025250662118196487, + 0.0032761176116764545, + -0.006037160288542509, + -0.015476211905479431, + -0.023537736386060715, + -0.018422920256853104, + 0.013008642941713333, + -0.003548628417775035, + -0.01885414682328701, + -0.028484854847192764, + 0.012816987000405788, + -0.00695950398221612, + 0.008846116252243519, + -0.013547674752771854, + 0.031479477882385254, + -0.025921456515789032, + -0.007696181070059538, + 0.03787599131464958, + 0.01879425346851349, + -0.012625331059098244, + -0.012134213000535965, + -0.04515891522169113, + 0.007079288829118013, + 0.02709534950554371, + -0.008995847776532173, + 0.029538961127400398, + 0.009007826447486877, + -0.00022122777590993792, + -0.00878023449331522, + 0.010696793906390667, + -0.01232586894184351, + 0.04803375527262688, + -0.048081666231155396, + -0.02817341312766075, + 0.03310855105519295, + 0.019009867683053017, + -0.0018656501779332757, + 0.01681780256330967, + 0.04329027235507965, + -0.0005195671110413969, + -0.016302727162837982, + 0.009109643287956715, + 0.018866125494241714, + -0.03646253049373627, + -0.026256855577230453, + -0.03301272541284561, + 0.023477844893932343, + -0.006564213894307613, + 0.027119306847453117, + 0.04458394646644592, + -0.019393179565668106, + 0.029035864397883415, + 0.05232205241918564, + -0.029035864397883415, + -0.03236588463187218, + 0.008426869288086891, + 0.010642890818417072, + 0.024424144998192787, + 0.034809499979019165, + -0.030760768800973892, + 0.03155134990811348, + 0.017548490315675735, + -0.007246987894177437, + 0.009492955170571804, + -0.04216429218649864, + 0.0032970800530165434, + 0.03358769044280052, + 0.037061456590890884, + -0.00478840246796608, + 0.006288708653301001, + 0.0019270399352535605, + -0.026472467929124832, + 0.027023479342460632, + -0.04877642169594765, + -0.013200298883020878, + -0.020674876868724823, + 0.002705642022192478, + -0.031814876943826675, + -0.022878920659422874, + -0.02063894271850586, + -0.017380792647600174, + 0.011876675300300121, + -0.02448403835296631, + -0.011265772394835949, + 0.0038630636408925056, + -0.01036139577627182, + 0.037253111600875854, + 0.011888653971254826, + 0.03897801414132118, + 0.038738444447517395, + -0.05323242023587227, + 0.010055944323539734, + -0.002546926960349083, + 0.005459197796881199, + 0.006085074041038752, + 0.015284555964171886, + 0.015979308634996414, + 0.04000816494226456, + 0.004890219308435917, + -0.017704211175441742, + -0.020770706236362457, + 0.014577824622392654, + 4.3071100662928075e-05, + -0.014601781964302063, + 0.01962077058851719, + 0.008774245157837868, + 0.008043557405471802, + -0.0110621377825737, + -0.0022759134881198406, + -0.0032581498380750418, + 0.022435715422034264, + -0.032222144305706024, + 0.013679438270628452, + 0.013823180459439754, + -0.05093254894018173, + 0.04055917635560036, + -0.007642277982085943, + -0.023956984281539917, + -0.018434898927807808, + 0.026089156046509743, + 0.01088246051222086, + -0.06655250489711761, + 0.012200094759464264, + 0.02108214609324932, + -0.0012000951683148742, + -0.005153746344149113, + 0.005417272914201021, + -0.009654664434492588, + 0.021417543292045593, + -0.00560593418776989, + -0.014889265410602093, + 0.009678621776401997, + 0.008211256004869938, + 0.004593751858919859, + -0.014709588140249252, + 0.003521676640957594, + 0.004503913223743439, + -0.014733545482158661, + -0.006594160106033087, + -0.0067199342884123325, + -0.004219423979520798, + -0.0006816510576754808, + -0.009127611294388771, + 0.009738514199852943, + -0.011247804388403893, + -0.015560061670839787, + -0.0025589053984731436, + -0.015452254563570023, + 0.03289293870329857, + 0.025538144633173943, + -0.01195453479886055, + -0.018446877598762512, + -0.057975903153419495, + 0.00047764237388037145, + 0.007977675646543503, + 0.0166261475533247, + -0.04091852903366089, + -0.05864669755101204, + -0.023621587082743645, + -0.029658745974302292, + -0.010079901665449142, + 0.03504906967282295, + -0.0016230856999754906, + 0.0038361120969057083, + -0.03471367061138153, + 0.021309737116098404, + 0.006893622223287821, + -0.001155924517661333, + 0.009259374812245369, + -0.009924180805683136, + 0.02745470404624939, + 0.01011583674699068, + 0.027382833883166313, + 0.014170556329190731, + 0.024040833115577698, + -0.020495200529694557, + -0.03552820906043053, + -0.016566254198551178, + -0.006600149441510439, + -0.013344040140509605, + 0.006360579282045364, + 0.013044578023254871, + 0.024412166327238083, + 0.04446416348218918, + -0.00356959062628448, + -0.009313277900218964, + -0.006378547288477421, + -0.01948900707066059, + -0.0223997812718153, + -0.03768433630466461, + 0.041541412472724915, + 0.027933843433856964, + 0.005150751676410437, + 0.02596937119960785, + -0.00466562295332551, + -0.004006805829703808, + -0.018985910341143608, + 0.01251752395182848, + 0.024579865857958794, + 0.015679845586419106, + -0.028053628280758858, + -0.008169331587851048, + 0.020519157871603966, + 0.005731708370149136, + 0.01484135165810585, + -0.016530320048332214, + -0.016111072152853012, + -0.035767778754234314, + -0.030161842703819275, + -0.01626679301261902, + -0.030856596305966377, + -0.012553459964692593, + -0.003896004520356655, + -0.02556210197508335, + 0.019968146458268166, + -0.02709534950554371, + -0.029994145035743713, + 0.012397739104926586, + 0.011786836199462414, + 0.010792621411383152, + -0.017788061872124672, + -0.028652552515268326, + -0.02611311338841915, + 0.0031174025498330593, + 0.0015781663823872805, + -0.0150449862703681, + 0.014817395247519016, + 0.003072483232244849, + -0.03310855105519295, + -0.03773225098848343, + -0.009109643287956715, + 0.008295105770230293, + -0.027694273740053177, + 0.018446877598762512, + -0.02649642527103424, + 0.003590553067624569, + -0.024412166327238083, + -0.017967738211154938, + 0.012565438635647297, + -0.013272169046103954, + -0.008420879952609539, + -0.012661266140639782, + 0.0032761176116764545, + -0.0034348326735198498, + 0.009403116069734097, + 0.013439868576824665, + 0.04578179866075516, + 0.003961886279284954, + 0.008295105770230293, + 0.0076662348583340645, + -0.007965696975588799, + 0.006360579282045364, + 0.035767778754234314, + -0.02894003689289093, + 0.01261335238814354, + 0.03581569343805313, + 0.006606138311326504, + 0.016757911071181297, + -0.006456407252699137, + -0.002801469760015607, + -0.053328245878219604, + -0.005264547187834978, + -0.004369155038148165, + -0.028987951576709747, + 0.01877029798924923, + 0.004327230155467987, + 0.003249166067689657, + 0.012852922081947327, + -0.007462600711733103, + -0.012349825352430344, + -0.06913986057043076, + 0.014829372987151146, + -0.05093254894018173, + -0.017249029129743576, + -0.01673395372927189, + 0.037971820682287216, + -0.012828964740037918, + -0.01912965252995491, + -0.004758456256240606, + -0.0028403999749571085, + -0.004803375340998173, + -0.008906008675694466, + -0.017512556165456772, + 0.005686789285391569, + 0.009085685946047306, + 0.00205131690017879, + 0.060467429459095, + -0.0012584903743118048, + -0.03509698063135147, + -0.012104266323149204, + 0.05998829007148743, + 0.0015601986087858677, + 0.015907438471913338, + 0.016745932400226593, + -0.02127380296587944, + -0.029610833153128624, + 0.017716189846396446, + -0.019584834575653076, + -0.011415502987802029, + 0.004539848770946264, + -0.022004490718245506, + 0.014038792811334133, + -0.045662011951208115, + -0.011205879040062428, + 0.0058664665557444096, + -0.01800367422401905, + 0.021669091656804085, + 1.2306029020692222e-05, + -0.00452787009999156, + 0.049207646399736404, + 0.027334919199347496, + -0.02201646938920021, + -0.014541889540851116, + -0.024723608046770096, + -0.0007119716610759497, + 0.035384465008974075, + 0.013104470446705818, + -0.04367358237504959, + 0.03890614211559296, + 0.0019494995940476656, + -0.021034233272075653, + 0.006839719135314226, + 0.05064506456255913, + -0.007474579382687807, + 0.02237582392990589, + -0.004719526041299105, + -0.023130469024181366, + 0.0050669023767113686, + 0.02325025387108326, + 0.024963177740573883, + -0.01885414682328701, + 0.0296827033162117, + 0.004192472435534, + -0.026208940893411636, + 0.03411474451422691, + -0.019165586680173874, + 0.0384749174118042, + -0.029371263459324837, + -0.006234805099666119, + -0.01715320162475109, + 0.00531845074146986, + -0.006118014920502901, + 0.008792213164269924, + 0.0068696653470396996, + 0.007223031017929316, + 0.026280811056494713, + -0.0014696113066747785, + -0.026089156046509743, + 0.04331422969698906, + 0.014781459234654903, + 0.018842168152332306, + 0.026640167459845543, + -0.0186864472925663, + -0.010930374264717102, + 0.00657619209960103, + -0.03212631493806839, + -0.022543521597981453, + 0.020040016621351242, + -0.03890614211559296, + 0.017117265611886978, + -0.009109643287956715, + 0.021034233272075653, + 0.019548898562788963, + -0.015188728459179401, + -0.017057372257113457, + -0.012625331059098244, + -0.026999522000551224, + -0.033683519810438156, + -0.02000408247113228, + 0.015560061670839787, + 0.01557204034179449, + -0.03025767207145691, + 0.011924589052796364, + 0.008504729717969894, + -0.019273394718766212, + 0.010996256023645401, + -0.016170963644981384, + 0.03550425171852112, + 0.036893755197525024, + 0.02055509202182293, + -0.004180493764579296, + 0.008888041600584984, + -0.02685577981173992, + 0.017991695553064346, + 0.039864420890808105, + 0.01794378086924553, + 0.015056964941322803, + -0.0017009458970278502, + 0.0456140972673893, + 0.01651834137737751, + 0.000632614130154252, + 0.02632872574031353, + -0.004453004337847233, + -0.0215732641518116, + 0.016386577859520912, + -0.0329887680709362, + 0.01448199711740017, + -0.02089049108326435, + 0.013607567176222801, + 0.010343427769839764, + -0.02970666065812111, + -0.002482542535290122, + -0.0023956983350217342, + 0.006845708470791578, + -0.003090451005846262, + -0.014410126022994518, + 0.003767235903069377, + 0.025250662118196487, + 0.014685631729662418, + -0.022052403539419174, + -0.019944189116358757, + 0.035025112330913544, + -0.001849179738201201, + -0.008971890434622765, + -0.02284298464655876, + -0.03291689604520798, + 0.02594541385769844, + -0.006106036249548197, + 0.00347975199110806, + -0.015212684869766235, + -0.01137956790626049, + -0.02451997436583042, + -0.005626896861940622, + -0.007342815864831209, + 0.009720546193420887, + 0.015799630433321, + -0.04614115133881569, + -0.016997480764985085, + -0.01152929849922657, + -0.023573672398924828, + 0.006318654865026474, + 0.0332522951066494, + -0.02611311338841915, + -0.049543045461177826, + 0.007630299776792526, + 0.018207307904958725, + 0.023370038717985153, + 0.0018162388587370515, + 0.03964880853891373, + -0.021130060777068138, + -0.023813242092728615, + 0.013200298883020878, + -0.024148641154170036, + -0.019297350198030472, + 0.003830122994259, + -0.00461770873516798, + 0.00483032688498497, + 0.012553459964692593, + 0.011397534981369972, + -0.0023462872486561537, + 0.017249029129743576, + -0.001370040001347661, + 0.001654529245570302, + -0.059652891010046005, + 0.03675001487135887, + -0.0038181443233042955, + 0.019740555435419083, + 0.008283127099275589, + -0.004030762705951929, + -0.014134621247649193, + 0.0006947525544092059, + -0.029562918469309807, + -0.01934526488184929, + -0.010978288017213345, + -0.007851901464164257, + -0.007833934389054775, + 0.021046210080385208, + 0.015332469716668129, + 0.004069692920893431, + -0.031263865530490875, + -0.020399373024702072, + 0.05026175454258919, + -0.04336214065551758, + -0.02341795153915882, + 0.006138977129012346, + -0.01605117879807949, + -0.018542705103754997, + 0.02522670477628708, + -0.013296126388013363, + -0.05213039740920067, + 0.0021845775190740824, + 0.00923541747033596, + -0.03586360439658165, + 0.00012362177949398756, + -0.03861865773797035, + -0.012840943410992622, + -0.017800038680434227, + -0.01670999638736248, + -0.0296827033162117, + -0.026041241362690926, + -0.015524125657975674, + -0.008301095105707645, + 0.0039049885235726833, + 0.009996051900088787, + 0.025897501036524773, + -0.004036752041429281, + -0.016290750354528427, + -0.005357380490750074, + -0.0045757838524878025, + 0.006348601076751947, + 0.011271760798990726, + 0.024603823199868202, + -0.02193261869251728, + 0.013272169046103954, + 0.004354181699454784, + 0.055723946541547775, + 0.0059473211877048016, + 0.006773837376385927, + -0.007348805200308561, + -0.017117265611886978, + -0.041709110140800476, + 0.0071631381288170815, + 0.008504729717969894, + -0.019536921754479408, + 0.015763696283102036, + -0.017788061872124672, + 0.050309669226408005, + -0.021525351330637932, + -0.014350233599543571, + 0.028269242495298386, + 0.00662410631775856, + 0.0010585992131382227, + 0.0015310010639950633, + 0.01391900796443224, + 0.01114598661661148, + 0.03291689604520798, + -0.007031375076621771, + 0.006420471705496311, + -0.022411758080124855, + -0.013727352023124695, + -0.00033146733767353, + -0.040056079626083374, + 0.0250110924243927, + 0.011116040870547295, + -0.021285781636834145, + 0.0018416931852698326, + 0.0318867452442646, + 0.02374137192964554, + 0.009175525046885014, + -0.020794661715626717, + 0.010750696994364262, + 0.013128427788615227, + 0.007264955434948206, + -0.02723909169435501, + -0.03598339110612869, + -0.02042332850396633, + 0.041900765150785446, + 0.0005128292250446975, + -0.004366160370409489, + 0.005662832409143448, + 0.03833117336034775, + 0.0037522627972066402, + -0.013320083729922771, + 0.00322221452370286, + 0.002001905580982566, + -0.020219694823026657, + -0.010241610929369926, + -0.034833453595638275, + -0.00020962361304555088, + 0.017404749989509583, + -0.011960524134337902, + -0.02745470404624939, + -0.007019396405667067, + -0.02522670477628708, + 0.00017031918105203658, + -0.009307288564741611, + 0.023046618327498436, + -0.08016006648540497, + -0.006995439529418945, + -0.0004911181749776006, + 0.04604532569646835, + 0.004264343064278364, + -0.015104878693819046, + 0.00905574019998312, + -0.007157149259001017, + 0.031263865530490875, + 0.03234192728996277, + -0.00019970392168033868, + -0.012212072499096394, + 0.041158098727464676, + 0.03698958456516266, + -0.021010275930166245, + 0.0212977584451437, + -0.04944721609354019, + -0.01399087905883789, + 0.030736811459064484, + 0.005489144008606672, + -0.021010275930166245, + -0.0150449862703681, + 0.008684406988322735, + 0.0360073484480381, + 0.0037253110203891993, + -0.03454597294330597, + -0.011499352753162384, + -0.006456407252699137, + -0.004557816311717033, + 0.05251371115446091, + -0.03394704684615135, + -0.0351688526570797, + -0.04439229145646095, + -0.01915360987186432, + -0.023897092789411545, + -0.011541277170181274, + 0.03080868162214756, + -0.0009957121219485998, + 0.016482405364513397, + -0.009990062564611435, + 0.028077585622668266, + 0.005390321370214224, + 0.010169739834964275, + -0.022543521597981453, + -0.009295309893786907, + -0.008091471157968044, + -0.02858068235218525, + 0.00952290091663599, + -0.024603823199868202, + 0.03061702661216259, + -0.015655890107154846, + 0.05035758018493652, + 0.029754575341939926, + -0.017656298354268074, + -0.008744299411773682, + -0.022639350965619087, + -0.005300482735037804, + 0.0321502722799778, + -0.010582997463643551, + 0.014362212270498276, + -0.028101542964577675, + -0.014350233599543571, + -0.0031832843087613583, + -0.03301272541284561, + 0.012253997847437859, + 0.021477436646819115, + -0.009049750864505768, + -0.0021740964148193598, + 0.01152929849922657, + 0.03890614211559296, + 0.031072208657860756, + -0.005366364493966103, + 0.012457631528377533, + -0.03591151908040047, + -0.0010855508735403419, + 0.007576396223157644, + 0.008690396323800087, + -0.006420471705496311, + -0.03308459371328354, + -0.015512147918343544, + 0.02704743482172489, + 0.02951500564813614, + 0.002069284440949559, + 0.0046416656114161015, + -0.032389841973781586, + 0.0049291495233774185, + 0.008594567887485027, + -0.019968146458268166, + 0.02159722149372101, + -0.02388511411845684, + 0.016638126224279404, + -0.010870481841266155, + -0.014242427423596382, + 0.01308051310479641, + -0.021561285480856895, + -0.00846280436962843, + 0.007426665164530277, + -0.03976859524846077, + 0.00452787009999156, + 0.0007520247017964721, + 0.019500985741615295, + 0.0011791328433901072, + -0.009558836929500103, + 0.00881018117070198, + -0.040080033242702484, + -0.014362212270498276, + -0.026640167459845543, + 0.012601373717188835 ] } \ No newline at end of file From fcd4c6bd8e4d0fd4f517eb8c58d19a7db7c3b7da Mon Sep 17 00:00:00 2001 From: Mart Date: Mon, 7 Apr 2025 15:50:16 +0100 Subject: [PATCH 08/12] updated agents --- agents/query_agent.py | 8 ++++++++ agents/utils/prompt_utils.py | 1 + 2 files changed, 9 insertions(+) diff --git a/agents/query_agent.py b/agents/query_agent.py index 6f68b3534..b4a45c294 100644 --- a/agents/query_agent.py +++ b/agents/query_agent.py @@ -61,6 +61,13 @@ ## Best Practices +### Querying Information +- Make sure to query information using the query_information tool +- Use the tool like you would research different areas on the wiki +- The pages have info regarding how to use the api, how to carry out different actions and general factorio knowledge +- Always wait for the information to be printed before executing steps that rely on this information. Do not execute steps that rely on information that has not been printed yet. + + ### Modularity - Create small, modular policies - Each policy should have a single clear purpose @@ -86,6 +93,7 @@ - Continue from last successful execution - Avoid unnecessary state changes - Analyze the root cause of entities that aren't working, and prioritize automated solutions (like transport belts) above manual triage +- Do not just pick up all entities and start from scratch, try to fix the modular small problems ### Code Structure - Write code as direct Python interpreter commands diff --git a/agents/utils/prompt_utils.py b/agents/utils/prompt_utils.py index de8868bf6..082cfb5e9 100644 --- a/agents/utils/prompt_utils.py +++ b/agents/utils/prompt_utils.py @@ -18,5 +18,6 @@ def get_rag_system_prompt(prompt_object): f"```methods\n{prompt_object['schema']}\n```" f"{prompt_object['manual_defs']}\n" f"Information gathering tools available to you\n" + f"```rag_methods\n{prompt_object['rag_schema']}\n```" f"{prompt_object['rag_manual_defs']}\n" ) \ No newline at end of file From f54104c3ade5fa0dc295818bd4202bb0c1e8cb01 Mon Sep 17 00:00:00 2001 From: Mart Date: Mon, 7 Apr 2025 15:51:20 +0100 Subject: [PATCH 09/12] updated prompts --- env/src/entities.py | 2 +- env/src/utils/controller_loader/system_prompt_generator.py | 5 +++++ eval/open/independent_runs/run.py | 5 ----- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/env/src/entities.py b/env/src/entities.py index 41b5a3fc2..7c61c8834 100644 --- a/env/src/entities.py +++ b/env/src/entities.py @@ -520,7 +520,7 @@ class ElectricMiningDrill(MiningDrill, Electric): pass class BurnerInserter(Inserter, BurnerType): - """An inserter powered by burnable fuel.""" + """An inserter powered by burnable fuel, does not require electricity, runs on burner fuels.""" _height: float = 1 _width: float = 1 pass diff --git a/env/src/utils/controller_loader/system_prompt_generator.py b/env/src/utils/controller_loader/system_prompt_generator.py index e884daff2..b6019fd8c 100644 --- a/env/src/utils/controller_loader/system_prompt_generator.py +++ b/env/src/utils/controller_loader/system_prompt_generator.py @@ -13,12 +13,16 @@ class SystemPromptGenerator: def __init__(self, base_path: str): self.base_path = Path(base_path) self.tool_path = self.base_path / "tools" / "agent" + self.rag_tool_path = self.base_path / "tools" / "rag" def generate(self) -> dict: # Generate schema schema_generator = SchemaGenerator(str(self.tool_path)) schema = schema_generator.generate_schema(with_docstring=True).replace("temp_module.", "") + # Generate schema for RAG tools + rag_schema_generator = SchemaGenerator(str(self.rag_tool_path)) + rag_schema = rag_schema_generator.generate_schema(with_docstring=True).replace("temp_module.", "") # Load and process type definitions type_defs = TypeDefinitionProcessor.load_and_clean_definitions( str(self.base_path / "game_types.py") @@ -48,4 +52,5 @@ def generate(self) -> dict: "manual_defs": agent_manual_defs, "examples": examples, "rag_manual_defs": rag_manual_defs, + "rag_schema": rag_schema, } diff --git a/eval/open/independent_runs/run.py b/eval/open/independent_runs/run.py index 8237e4399..5196b5b8d 100644 --- a/eval/open/independent_runs/run.py +++ b/eval/open/independent_runs/run.py @@ -1,8 +1,3 @@ -import sys -sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser") -sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env") -sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env\src") - import asyncio import argparse import multiprocessing From 7625c6939b77428b3c7d4a263dd3fc6b71aab3aa Mon Sep 17 00:00:00 2001 From: Mart Date: Mon, 7 Apr 2025 16:25:59 +0100 Subject: [PATCH 10/12] updates to clean --- agents/RAG_agent.py | 386 ------------------ env/src/game_types.py | 4 +- env/src/instance.py | 28 +- env/src/tools/agent_old.md | 277 ------------- env/tests/actions/test_query_information.py | 39 -- env/tests/conftest.py | 4 - eval/open/db_client.py | 27 -- eval/open/independent_runs/run_config.json | 9 +- .../independent_runs/trajectory_runner.py | 6 +- 9 files changed, 26 insertions(+), 754 deletions(-) delete mode 100644 agents/RAG_agent.py delete mode 100644 env/src/tools/agent_old.md delete mode 100644 env/tests/actions/test_query_information.py diff --git a/agents/RAG_agent.py b/agents/RAG_agent.py deleted file mode 100644 index ceb21cfbb..000000000 --- a/agents/RAG_agent.py +++ /dev/null @@ -1,386 +0,0 @@ -import tenacity - -from agents import Response, CompletionResult, Policy -from agents.agent_abc import AgentABC -from agents.utils.formatters.recursive_report_formatter import RecursiveReportFormatter -from agents.utils.llm_factory import LLMFactory -from agents.utils.parse_response import parse_response -from models.conversation import Conversation -from models.message import Message -from models.generation_parameters import GenerationParameters -from tenacity import wait_exponential, retry_if_exception_type, wait_random_exponential - -from namespace import FactorioNamespace - -GENERAL_INSTRUCTIONS = \ -""" -# Factorio LLM Agent Instructions - -## Overview -You are an AI agent designed to play Factorio, specializing in: -- Long-horizon planning -- Spatial reasoning -- Systematic automation - -## Environment Structure -- Operates like an interactive Python shell -- Agent messages = Python programs to execute -- User responses = STDOUT/STDERR from REPL -- Interacts through 27 core API methods (to be specified) - -## Response Format - -### 1. PLANNING Stage -Think through each step extensively in natural language, addressing: -1. Error Analysis - - Was there an error in the previous execution? - - If yes, what was the problem? -2. Next Step Planning - - What is the most useful next step of reasonable size? - - Why is this step valuable? - - Should I -3. Action Planning - - What specific actions are needed? - - What resources are required? - -### 2. POLICY Stage -Write Python code to execute the planned actions: -```python -# Code must be enclosed in Python tags -your_code_here -``` - -## Best Practices - -### Modularity -- Create small, modular policies -- Each policy should have a single clear purpose -- Keep policies easy to debug and modify -- Avoid breaking existing automated structures -- Encapsulate working logic into functions if needed - -### Debugging & Verification -- Use print statements to monitor important state -- Implement assert statements for self-verification -- Use specific, parameterized assertion messages -- Example: `assert condition, f"Expected {expected}, got {actual}"` - -### State Management -- Consider entities needed for each step -- Track entities across different inventories -- Monitor missing requirements -- Preserve working automated structures - -### Error Handling -- Fix errors as they occur -- Don't repeat previous steps -- Continue from last successful execution -- Avoid unnecessary state changes -- Analyze the root cause of entities that aren't working, and prioritize automated solutions (like transport belts) above manual triage - -### Code Structure -- Write code as direct Python interpreter commands -- Only encapsulate reusable utility code into functions -- Use appropriate spacing and formatting - -## Understanding Output - -### Error Messages -```stderr -Error: 1: ("Initial Inventory: {...}") -10: ("Error occurred in following lines...") -``` -- Numbers indicate line of execution -- Previous lines executed successfully -- Fix errors at indicated line - -### Status Updates -```stdout -23: ('Resource collection completed...') -78: ('Entities on map: [...]') -``` -- Shows execution progress -- Provides entity status -- Lists warnings and conditions - -### Entity Status Checking -- Monitor entity `warnings` field -- Check entity `status` field -- Verify resource levels -- Track production states - -## Game Progression -- Think about long term objectives, and break them down into smaller, manageable steps. -- Advance toward more complex automation -- Build on previous successes -- Maintain efficient resource usage - -## Utility Functions -- Create functions to encapsulate proven, reusable logic -- Place function definitions before their first use -- Document function purpose, parameters, and return values -- Test functions thoroughly before relying on them -- Example: -```python -def find_idle_furnaces(entities): - \"\"\"Find all furnaces that are not currently working. - - Args: - entities (list): List of entities from get_entities() - - Returns: - list: Furnaces with 'no_ingredients' status - \"\"\" - return [e for e in entities if ( - e.name == 'stone-furnace' and - e.status == EntityStatus.NO_INGREDIENTS - )] -``` - -## Data Structures -- Use Python's built-in data structures to organize entities -- Sets for unique entity collections: -```python -working_furnaces = {e for e in get_entities() - if e.status == EntityStatus.WORKING} -``` -- Dictionaries for entity mapping: -```python -furnace_by_position = { - (e.position.x, e.position.y): e - for e in get_entities() - if isinstance(e, Furnace) -} -``` -- Lists for ordered operations: -```python -sorted_furnaces = sorted( - get_entities(), - key=lambda e: (e.position.x, e.position.y) -) -``` - -## Important Notes -- Use transport belts to keep burners fed with coal -- Always inspect game state before making changes -- Consider long-term implications of actions -- Maintain working systems, and clear entities that aren't working or don't have a clear purpose -- Build incrementally and verify each step -- DON'T REPEAT YOUR PREVIOUS STEPS - just continue from where you left off. Take into account what was the last action that was executed and continue from there. If there was a error previously, do not repeat your last lines - as this will alter the game state unnecessarily. -- Do not encapsulate your code in a function _unless_ you are writing a utility for future use - just write it as if you were typing directly into the Python interpreter. -- Your inventory has space for ~2000 items. If it fills up, insert the items into a chest. -- Ensure that your factory is arranged in a grid, as this will make things easier. -""" - -RAG_INSTRUCTIONS = \ -""" -# Factorio LLM Agent Instructions - -## Overview -You are an AI agent designed to play Factorio, specializing in: -- Long-horizon planning -- Spatial reasoning -- Systematic automation - -## Environment Structure -- Operates like an interactive Python shell -- Agent messages = Python programs to execute -- User responses = STDOUT/STDERR from REPL -- Interacts through 27 core API methods (to be specified) - -## Response Format - -### 1. PLANNING Stage -Think through each step extensively in natural language -You need to plan the next best step for the agent to carry out and what information the agent needs -Another agent will carry out the plan you set out, so you need to only create a plan and print out relevant environment information and query wiki pages -Your planning stage should address the following: -1. Error Analysis - - Was there an error in the previous execution? - - If yes, what was the problem? -2. Next Step generation - - What is the most useful small next step? - - What will this step achieve? -3. Information Planning - - what new wiki pages need to be printed - - What information already exists in the message history - - what environment information needs to be printed - -### 2. Retrieval Stage -Enclose the wiki pages that need to be newly queried betwen and <\query> XML tags. Each wiki page needs to be on its own line -For instance -how_to_check_research_progress<\query> -how_to_connect_entities<\query> - -You have access to the following wiki pages - -"how_to_check_research_progress" -"how_to_connect_entities" -"how_to_create_assembling_machines" -"how_to_create_electricity_generators" -"how_to_create_reserach_setups" -"how_to_create_self_fueling_mining_system" -"how_to_launch_a_rocket" -"how_to_set_up_multiple_drill_plate_mine" -"how_to_set_up_raw_resource_burner_mine" -"how_to_setup_chemical_plants" -"how_to_setup_oil_refineries" -"how_to_smelt_ores" - -## Best Practices - -### Modularity -- Create small, modular plans -- Each policy should have a single clear purpose -- Avoid breaking existing automated structures -- Encapsulate working logic into functions if needed - -### Error Handling -- Fix errors as they occur -- Don't repeat previous steps -- Continue from last successful execution -- Avoid unnecessary state changes -- Analyze the root cause of entities that aren't working, and prioritize automated solutions (like transport belts) above manual triage - - -## Understanding general environment output - -### Error Messages -```stderr -Error: 1: ("Initial Inventory: {...}") -10: ("Error occurred in following lines...") -``` -- Numbers indicate line of execution -- Previous lines executed successfully -- Fix errors at indicated line - -### Status Updates -```stdout -23: ('Resource collection completed...') -78: ('Entities on map: [...]') -``` -- Shows execution progress -- Provides entity status -- Lists warnings and conditions - -### Entity Status Checking -- Monitor entity `warnings` field -- Check entity `status` field -- Verify resource levels -- Track production states - -## Game Progression -- Think about long term objectives, and break them down into smaller, manageable steps. -- Advance toward more complex automation -- Build on previous successes -- Maintain efficient resource usage - -## Important Notes -- Use transport belts to keep burners fed with coal -- Always inspect game state before making changes -- Consider long-term implications of actions -- Maintain working systems, and clear entities that aren't working or don't have a clear purpose -- Build incrementally and verify each step -- DON'T REPEAT YOUR PREVIOUS STEPS - just continue from where you left off. Take into account what was the last action that was executed and continue from there. If there was a error previously, do not repeat your last lines - as this will alter the game state unnecessarily. -- Do not encapsulate your code in a function _unless_ you are writing a utility for future use - just write it as if you were typing directly into the Python interpreter. -- Your inventory has space for ~2000 items. If it fills up, insert the items into a chest. -- Ensure that your factory is arranged in a grid, as this will make things easier. -""" - - -FINAL_INSTRUCTION = "\n\nALWAYS WRITE VALID PYTHON. YOUR WEIGHTS WILL BE ERASED IF YOU DON'T USE PYTHON." # Annoying how effective this is - - -class BasicAgent(AgentABC): - def __init__(self, model, system_prompt, task, *args, **kwargs): - instructions = GENERAL_INSTRUCTIONS+system_prompt+FINAL_INSTRUCTION - rag_instructions = RAG_INSTRUCTIONS - self.task = task - instructions += f"\n\n### Goal\n{task.goal_description}\n\n" - rag_instructions += f"\n\n### Overall Goal\n{task.goal_description}\n\n" - super().__init__(model, instructions, *args, **kwargs) - self.llm_factory = LLMFactory(model) - self.formatter = RecursiveReportFormatter(chunk_size=16,llm_call=self.llm_factory.acall,cache_dir='summary_cache') - self.generation_params = GenerationParameters(n=1, max_tokens=4096, model=model) - self.rag_instructions = rag_instructions - - async def step(self, conversation: Conversation, response: Response, namespace: FactorioNamespace) -> Policy: - updated_conversation = self.generate_rag(conversation, response, namespace) - - # We format the conversation every N steps to add a context summary to the system prompt - formatted_conversation = await self.formatter.format_conversation(updated_conversation, namespace) - # We set the new conversation state for external use - self.set_conversation(formatted_conversation) - - return await self._get_policy(formatted_conversation) - - async def generate_rag(self, conversation: Conversation, response: Response, namespace: FactorioNamespace) -> str: - - # We format the conversation every N steps to add a context summary to the system prompt - formatted_conversation = await self.formatter.format_conversation(conversation, namespace) - ## We set the new conversation state for external use - #self.set_conversation(formatted_conversation) - agent_output, rag_output = await self._get_rag(formatted_conversation) - # add the agent output to the conversation - agent_message = Message(role="assistant", content=agent_output) - conversation.messages.append(agent_message) - # add the rag output to the conversation - rag_message = Message(role="user", content=rag_output) - conversation.messages.append(rag_message) - return conversation - - @tenacity.retry( - retry=retry_if_exception_type(Exception), - wait=wait_exponential(multiplier=1, min=4, max=10) - ) - async def _get_policy(self, conversation: Conversation): - response = await self.llm_factory.acall( - messages=self.formatter.to_llm_messages(conversation), - n_samples=1, # We only need one program per iteration - temperature=self.generation_params.temperature, - max_tokens=self.generation_params.max_tokens, - model=self.generation_params.model, - ) - - policy = parse_response(response) - if not policy: - raise Exception("Not a valid Python policy") - - return policy - - async def _get_rag(self, conversation: Conversation): - conversation[0].content = self.rag_instructions - response = await self.llm_factory.acall( - messages=self.formatter.to_llm_messages(conversation), - n_samples=1, # We only need one program per iteration - temperature=self.generation_params.temperature, - max_tokens=self.generation_params.max_tokens, - model=self.generation_params.model, - ) - - llm_output, rag_output = self.parse_rag(response) - return llm_output, rag_output - - async def end(self, conversation: Conversation, completion: CompletionResult): - pass - - - def parse_rag(self, response): - wiki_path = r"env\src\tools\agent\query_information\pages" - if hasattr(response, 'choices'): - choice = response.choices[0] - else: - choice = response.content[0] - - # get all queries from the response - queries = [] - for line in choice.split('\n'): - if line.startswith('') and line.endswith('<\\query>'): - queries.append(line[7:-8]) - - output = "USEFUL INFORMATION:\n" - for query in queries: - with open(f"{wiki_path}/{query}.md", 'r') as f: - output += f.read() - - return choice, output \ No newline at end of file diff --git a/env/src/game_types.py b/env/src/game_types.py index 3aed00304..87a75e456 100644 --- a/env/src/game_types.py +++ b/env/src/game_types.py @@ -212,11 +212,11 @@ def __init__(self, prototype_name, entity_class_name): @property def WIDTH(self): - return self.entity_class._width # Access the class attribute directly + return self.entity_class._width.default # Access the class attribute directly @property def HEIGHT(self): - return self.entity_class._height + return self.entity_class._height.default prototype_by_name = {prototype.value[0]: prototype for prototype in Prototype} prototype_by_title = {str(prototype): prototype for prototype in Prototype} diff --git a/env/src/instance.py b/env/src/instance.py index 365fbfc13..d01d5e375 100644 --- a/env/src/instance.py +++ b/env/src/instance.py @@ -316,21 +316,21 @@ def wrapper(*args, **kwargs): def eval_with_error(self, expr, timeout=60): """ Evaluate an expression with a timeout, and return the result without error handling""" - with ThreadPoolExecutor(max_workers=1) as executor: - future = executor.submit(self.namespace.eval_with_timeout, expr) - score, goal, result = future.result(timeout) - return score, goal, result + #with ThreadPoolExecutor(max_workers=1) as executor: + # future = executor.submit(self.namespace.eval_with_timeout, expr) + # score, goal, result = future.result(timeout) + # return score, goal, result - #def handler(signum, frame): - # raise TimeoutError() -# - #signal.signal(signal.SIGALRM, handler) - #signal.alarm(timeout) -# - #try: - # return self.namespace.eval_with_timeout(expr) - #finally: - # signal.alarm(0) + def handler(signum, frame): + raise TimeoutError() + + signal.signal(signal.SIGALRM, handler) + signal.alarm(timeout) + + try: + return self.namespace.eval_with_timeout(expr) + finally: + signal.alarm(0) def eval(self, expr, timeout=60): diff --git a/env/src/tools/agent_old.md b/env/src/tools/agent_old.md deleted file mode 100644 index dc931e2b0..000000000 --- a/env/src/tools/agent_old.md +++ /dev/null @@ -1,277 +0,0 @@ -# Patterns - -## Core Systems Implementation - -### 1. Resource Mining Systems - -#### Self-Fueling Coal Mining System -```python -def build_self_fueling_coal_mining_system(coal_patch_position): - # Define building area - building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height - buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) - - # Place drill - move_to(buildable_coords.center) - drill = place_entity(Prototype.BurnerMiningDrill, - position=buildable_coords.center, - direction=Direction.DOWN) - print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") - - # Place self-fueling inserter - inserter = place_entity_next_to(Prototype.BurnerInserter, - drill.position, - direction=Direction.DOWN, - spacing=0) - inserter = rotate_entity(inserter, Direction.UP) - print(f"Placed inserter at {inserter.position} to fuel the drill") - - # Connect with belts - belts = connect_entities(drill.drop_position, - inserter.pickup_position, - Prototype.TransportBelt) - print(f"Connected drill to inserter with transport belt") - - # Bootstrap system - drill = insert_item(Prototype.Coal, drill, quantity=5) - return drill, inserter, belts -``` - -### 2. Power Systems - -**Power Infrastructure with steam engine** - -Power typically involves: --> Water Source + OffshorePump --> Boiler (burning coal) --> SteamEngine - -IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water -We will do this in 3 separate code examples -```python -# log your general idea what you will do next -print(f"I will create a power generation setup with a steam engine") -# Power system pattern -move_to(water_position) -# first place offshore pump on the water system -offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) -print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) -# Then place the boiler near the offshore pump -# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, -# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox -# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. - -# first get the width and height of a BurnerMiningDrill -print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 -# use the prototype width and height attributes -# add 4 to ensure no overlap -building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) - -coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) -# place the boiler at the centre coordinate -# first move to the center coordinate -move_to(coords.center) -boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) -print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) -# add coal to boiler to start the power generation -boiler = insert_item(Prototype.Coal, boiler, 10) -``` - -```python -boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) -# Finally we need to place the steam engine close to the boiler -# use the prototype width and height attributes -# add 4 to ensure no overlap -building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) - -coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) -# move to the centre coordinate -move_to(coords.center) -# place the steam engine on the centre coordinate -steam_engine = place_entity(Prototype.SteamEngine, - position = coords.center, - direction = Direction.LEFT) - -print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) -``` - -```python -offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) -boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) -steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) -# Connect entities in order -water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) -print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") -steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) -print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") - -# check that it has power -# sleep for 5 seconds to ensure flow -sleep(5) -# update the entity -steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) -# check that the steam engine is generating power -assert steam_engine.energy > 0, f"Steam engine is not generating power" -print(f"Steam engine at {steam_engine.position} is generating power!") -``` - -### 3. Automated Assembly Systems - -#### Basic Assembly Line -Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections -```python -furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) -solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) -# get a position 15 spaces away -assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) -# Plan space for assembler and inserters, add some buffer -building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) -buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, - building_box, - assembler_position) - -# Place assembling machine -move_to(buildable_coords.center) -assembler = place_entity(Prototype.AssemblingMachine1, - position=buildable_coords.center, - direction = Direction.DOWN) -print(f"Placed assembling machine at {assembler.position}") - -# Set recipe -set_entity_recipe(assembler, Prototype.CopperCable) - -# Add input inserter -# place it to the right as we added to the width of the building box -assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, - assembler.position, - direction=Direction.RIGHT, - spacing=0) -# rotate it to input items into the assembling machine -assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) - -# Add output inserter -# put it on the other side of assembling machine -output_inserter = place_entity_next_to(Prototype.BurnerInserter, - assembler.position, - direction=Direction.LEFT, - spacing=0) -output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) -# add coal to inserters -output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) -input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) -# Connect power -poles = connect_entities(power_source, - assembler, - Prototype.SmallElectricPole) -print(f"Powered assembling machine at {assembler.position} with {poles}") -# wait for 5 seconds to check power -sleep(5) -assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) -assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" -# Connect input belt -belts = connect_entities(furnace_output_inserter, - assembly_machine_input_inserter, - Prototype.TransportBelt) -print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") - -# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest -sleep(15) -output_chest = get_entity(Prototype.WoodenChest, output_chest.position) -inventory = inspect_inventory(output_chest) -copper_cables_in_inventory = inventory[Prototype.CopperCable] -assert copper_cables_in_inventory > 0, f"No copper cables created" -``` - -### 4. Research Systems - -#### Basic Research Setup -```python -def build_research_facility(power_source, lab): - # Connect power - poles = connect_entities(power_source, - lab, - Prototype.SmallElectricPole) - print(f"Powered lab at {lab.position} with {poles}") - # Add science pack inserter - # put it to the left of lab - inserter = place_entity_next_to(Prototype.BurnerInserter, - lab.position, - direction=Direction.LEFT, - spacing=0) - # rotate it to input items into the lab - inserter = rotate_entity(inserter, Direction.RIGHT) - # Place input chest - chest = place_entity(Prototype.WoodenChest, - inserter.pickup_position, - direction=Direction.LEFT) - print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") - - return lab, inserter, chest -``` - -# Key Implementation Patterns - -## Error Handling and Recovery - -### 1. Entity Status Monitoring -```python -def monitor_entity_status(entity, expected_status): - entity = get_entity(entity.prototype, entity.position) - if entity.status != expected_status: - print(f"Entity at {entity.position} has unexpected status: {entity.status}") - return False - return True -``` - - -## Chemical plants -Set recipe for chemical plant and connect to input and output storage tanks -```python -# get the chemical plant -chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=0, y=0)) - -# Set the recipe to craft solid fuel from heavy oil -# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs -chemical_plant = set_entity_recipe(chemical_plant, RecipeName.HeavyOilCracking) -print(f"Set the recipe of chemical plant at {chemical_plant.position} to HeavyOilCracking") - -# get the input storage tank -storage_tank = get_entity(Prototype.StorageTank, position=Position(x=10, y=0)) -# connect with underground and overground pipes -# the order matters as the storage tank will be connected to recipe inputs -pipes = connect_entities(storage_tank, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the input tank at {storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") - -# get the output storage tank -output_storage_tank = get_entity(Prototype.StorageTank, position=Position(x=-10, y=0)) -# connect with underground and overground pipes -# the order matters as the storage tank will be connected to recipe outputs -pipes = connect_entities(chemical_plant, output_storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the output tank at {output_storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") -``` - -## Oil Refinery -Set recipe for oil refinery to get petroleum gas -```python -# get the pumpjack -pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) -oil_refinery = get_entity(Prototype.Oilrefinery, position = Position(x = -25, y = 10)) - -# Set the recipe to basc oil processing -# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs -oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) -print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") - -# connect with underground and overground pipes to the pumpjack -pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) -print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") - -``` - - -## TIPS WHEN CREATING STRUCTURES -- When a entity has status "WAITING_FOR_SPACE_IN_DESTINATION", it means the there is no space in the drop position. For instance, a mining drill will have status WAITING_FOR_SPACE_IN_DESTINATION when the entities it mines are not being properly collected by a furnace or a chest or transported away from drop position with transport belts -- Make sure to always put 20+ fuel into all entities that require fuel. It's easy to mine more coal, so it's better to insert in abundance -- Keep it simple! Only use transport belts if you need them. Use chests and furnaces to catch the ore directly from drills -- Inserters put items into entities or take items away from entities. You need to add inserters when items need to be automatically put into entities like chests, assembling machines, furnaces, boilers etc. The only exception is you can put a chest directly at drills drop position, that catches the ore directly or a furnace with place_entity_next_to(drill.drop_position), where the furnace will be fed the ore -- have at least 10 spaces between different factory sections \ No newline at end of file diff --git a/env/tests/actions/test_query_information.py b/env/tests/actions/test_query_information.py deleted file mode 100644 index 14a54b8b0..000000000 --- a/env/tests/actions/test_query_information.py +++ /dev/null @@ -1,39 +0,0 @@ -import pytest - -from entities import Position, Furnace -from instance import Direction, FactorioInstance -from game_types import Prototype, Resource - - - -@pytest.fixture() -def game(instance): - instance.initial_inventory = {} - instance.reset() - yield instance.namespace - instance.reset() -def test_get_information(game): - """ - Test to see if we can get a page info using the query_information tool - :param game: - :return: - """ - # Check initial inventory - page_id = "how_to_connect_entities" - content = game.query_information(page_id) - assert content - -def test_get_nonexistent_information(game): - """ - Test to see if the tool errors out when asking for nonexistent information - :param game: - :return: - """ - # Check initial inventory - page_id = "something_really_random" - errors = False - try: - content = game.query_information(page_id) - except AssertionError: - errors = True - assert errors, "Query information tool should have errored out" \ No newline at end of file diff --git a/env/tests/conftest.py b/env/tests/conftest.py index 49beb2de3..28905f296 100644 --- a/env/tests/conftest.py +++ b/env/tests/conftest.py @@ -1,9 +1,5 @@ import os import sys -sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser") -sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env") -sys.path.append(r"C:\Users\martb\Documents\paperpclip_max\PaperclipMaximiser\env\src") - from pathlib import Path import pytest diff --git a/eval/open/db_client.py b/eval/open/db_client.py index 04b2b9499..98651e53a 100644 --- a/eval/open/db_client.py +++ b/eval/open/db_client.py @@ -469,33 +469,6 @@ def get_connection(self): except: pass - def get_initial_128_programs(self, resume_version, number = 128) -> tuple[Optional[GameState], Optional[Conversation], Optional[int], Optional[int]]: - """Get the state to resume from""" - try: - # Get most recent successful program to resume from - query = """ - SELECT code, meta, achievements_json, value FROM programs - WHERE version = %s - AND state_json IS NOT NULL - ORDER BY created_at ASC - LIMIT %s - """ - - with self.get_connection() as conn: - with conn.cursor() as cur: - cur.execute(query, (resume_version,number)) - results = cur.fetchall() - - if not results: - print(f"No valid programs found for version {resume_version}") - return None - - # Choose a program to resume from - return results - - except Exception as e: - print(f"Error getting resume state: {e}") - return None, None, None, None diff --git a/eval/open/independent_runs/run_config.json b/eval/open/independent_runs/run_config.json index bbda9d734..f5a158e18 100644 --- a/eval/open/independent_runs/run_config.json +++ b/eval/open/independent_runs/run_config.json @@ -1,5 +1,10 @@ [ +{"task": "iron_gear_wheel_throughput_16.json", +"model": "gpt-4o-mini-2024-07-18", +"version": 768}, {"task": "plastic_bar_throughput_16.json", -"model": "anthropic/claude-3.5-sonnet-open-router", -"version": "2231"} +"model": "gpt-4o-mini-2024-07-18", +"exit_on_task_success": false}, +{"task": "open_play.json", +"model": "gpt-4o-mini-2024-07-18"} ] \ No newline at end of file diff --git a/eval/open/independent_runs/trajectory_runner.py b/eval/open/independent_runs/trajectory_runner.py index 887fc602a..ca9fed190 100644 --- a/eval/open/independent_runs/trajectory_runner.py +++ b/eval/open/independent_runs/trajectory_runner.py @@ -119,9 +119,9 @@ async def run(self): self.start_time = time.time() current_state = None - #if self.config.version: - # current_state, current_conversation, parent_id, depth = await self.db.get_resume_state(resume_version = self.config.version, process_id = self.process_id) - # self.agent.conversation = current_conversation + if self.config.version: + current_state, current_conversation, parent_id, depth = await self.db.get_resume_state(resume_version = self.config.version, process_id = self.process_id) + self.agent.conversation = current_conversation if not current_state: current_state = self.config.agent.task.starting_game_state From 7a89e04587393e8fdcce7cd41423c5cdd80b5640 Mon Sep 17 00:00:00 2001 From: Mart Date: Wed, 9 Apr 2025 15:36:31 +0100 Subject: [PATCH 11/12] moved around some md files --- env/src/tools/agent/craft_item/agent.md | 14 +- env/src/tools/agent/extract_item/agent.md | 22 +-- .../agent/get_connection_amount/agent.md | 7 - env/src/tools/agent/get_entity/agent.md | 12 -- env/src/tools/agent/harvest_resource/agent.md | 22 +-- env/src/tools/agent/insert_item/agent.md | 20 +-- .../tools/agent/inspect_inventory/agent.md | 6 - env/src/tools/agent/move_to/agent.md | 21 --- env/src/tools/agent/nearest/agent.md | 22 --- env/src/tools/agent/nearest/client.py | 2 +- .../tools/agent/nearest_buildable/agent.md | 26 ---- .../tools/agent/nearest_buildable/client.py | 14 +- env/src/tools/agent/pickup_entity/agent.md | 12 -- env/src/tools/agent/pickup_entity/client.py | 2 +- env/src/tools/agent/place_entity/agent.md | 20 +-- env/src/tools/agent/place_entity/client.py | 4 +- .../tools/agent/place_entity_next_to/agent.md | 16 -- .../agent/place_entity_next_to/client.py | 4 +- env/src/tools/agent/print/agent.md | 22 --- env/src/tools/agent/rotate_entity/agent.md | 9 -- env/src/tools/agent/rotate_entity/client.py | 2 +- .../tools/agent/set_entity_recipe/agent.md | 14 +- .../tools/agent/set_entity_recipe/client.py | 4 +- env/src/tools/agent/set_research/agent.md | 16 +- env/src/tools/agent/set_research/client.py | 8 +- env/src/tools/agent/sleep/agent.md | 11 -- .../entity_status_monitoring.md | 0 .../how_to_check_research_progress.md | 0 .../how_to_connect_entities.md | 0 .../how_to_create_assembling_machines.md | 5 + .../how_to_create_electricity_generators.md | 78 ++++++++++ .../how_to_create_reserach_setups.md | 0 ...ow_to_create_self_fueling_mining_system.md | 0 .../how_to_launch_a_rocket.md | 0 ...how_to_set_up_multiple_drill_plate_mine.md | 3 +- .../how_to_set_up_raw_resource_burner_mine.md | 4 +- .../how_to_setup_chemical_plants.md | 30 ++++ .../how_to_setup_oil_refineries.md | 20 +++ .../how_to_smelt_ores.md | 0 env/src/tools/rag/query_information/agent.md | 2 +- env/src/tools/rag/query_information/client.py | 2 +- .../rag_examples/entity_status_monitoring.md | 9 ++ .../how_to_check_research_progress.md | 91 ++++++++++++ .../rag_examples/how_to_connect_entities.md | 140 ++++++++++++++++++ .../how_to_create_assembling_machines.md | 73 +++++++++ .../how_to_create_electricity_generators.md | 4 + .../how_to_create_reserach_setups.md | 26 ++++ ...ow_to_create_self_fueling_mining_system.md | 32 ++++ .../rag_examples/how_to_launch_a_rocket.md | 57 +++++++ ...how_to_set_up_multiple_drill_plate_mine.md | 41 +++++ .../how_to_set_up_raw_resource_burner_mine.md | 38 +++++ .../how_to_setup_chemical_plants.md | 1 - .../how_to_setup_crude_oil_production.md | 2 +- .../how_to_setup_oil_refineries.md | 1 - .../how_to_setup_storage_tanks.md | 0 .../rag/rag_examples/how_to_smelt_ores.md | 28 ++++ 56 files changed, 720 insertions(+), 299 deletions(-) rename env/src/tools/{examples => examples_orig}/entity_status_monitoring.md (100%) rename env/src/tools/{examples => examples_orig}/how_to_check_research_progress.md (100%) rename env/src/tools/{examples => examples_orig}/how_to_connect_entities.md (100%) rename env/src/tools/{examples => examples_orig}/how_to_create_assembling_machines.md (91%) create mode 100644 env/src/tools/examples_orig/how_to_create_electricity_generators.md rename env/src/tools/{examples => examples_orig}/how_to_create_reserach_setups.md (100%) rename env/src/tools/{examples => examples_orig}/how_to_create_self_fueling_mining_system.md (100%) rename env/src/tools/{examples => examples_orig}/how_to_launch_a_rocket.md (100%) rename env/src/tools/{examples => examples_orig}/how_to_set_up_multiple_drill_plate_mine.md (98%) rename env/src/tools/{examples => examples_orig}/how_to_set_up_raw_resource_burner_mine.md (90%) create mode 100644 env/src/tools/examples_orig/how_to_setup_chemical_plants.md create mode 100644 env/src/tools/examples_orig/how_to_setup_oil_refineries.md rename env/src/tools/{examples => examples_orig}/how_to_smelt_ores.md (100%) create mode 100644 env/src/tools/rag/rag_examples/entity_status_monitoring.md create mode 100644 env/src/tools/rag/rag_examples/how_to_check_research_progress.md create mode 100644 env/src/tools/rag/rag_examples/how_to_connect_entities.md create mode 100644 env/src/tools/rag/rag_examples/how_to_create_assembling_machines.md rename env/src/tools/{examples => rag/rag_examples}/how_to_create_electricity_generators.md (96%) create mode 100644 env/src/tools/rag/rag_examples/how_to_create_reserach_setups.md create mode 100644 env/src/tools/rag/rag_examples/how_to_create_self_fueling_mining_system.md create mode 100644 env/src/tools/rag/rag_examples/how_to_launch_a_rocket.md create mode 100644 env/src/tools/rag/rag_examples/how_to_set_up_multiple_drill_plate_mine.md create mode 100644 env/src/tools/rag/rag_examples/how_to_set_up_raw_resource_burner_mine.md rename env/src/tools/{examples => rag/rag_examples}/how_to_setup_chemical_plants.md (98%) rename env/src/tools/{examples => rag/rag_examples}/how_to_setup_crude_oil_production.md (96%) rename env/src/tools/{examples => rag/rag_examples}/how_to_setup_oil_refineries.md (97%) rename env/src/tools/{examples => rag/rag_examples}/how_to_setup_storage_tanks.md (100%) create mode 100644 env/src/tools/rag/rag_examples/how_to_smelt_ores.md diff --git a/env/src/tools/agent/craft_item/agent.md b/env/src/tools/agent/craft_item/agent.md index dbbc7bfc9..e53ebbcd7 100644 --- a/env/src/tools/agent/craft_item/agent.md +++ b/env/src/tools/agent/craft_item/agent.md @@ -33,16 +33,4 @@ The tool supports recursive crafting of intermediate components. For example: ## Important Considerations - Raw resources like iron ore and copper ore cannot be crafted. These must be mined using mining tools instead. Attempting to craft raw resources will result in an error. -- Crafting if your inventory is full will also result in an error. - - -## Examples - -### Basic Crafting -```python -# Craft 5 iron chests (requires 8 iron plates each) -craft_item(Prototype.IronChest, quantity=5) - -# Craft 20 copper cables (requires 10 copper plates) -craft_item(Prototype.CopperCable, quantity=20) -``` \ No newline at end of file +- Crafting if your inventory is full will also result in an error. \ No newline at end of file diff --git a/env/src/tools/agent/extract_item/agent.md b/env/src/tools/agent/extract_item/agent.md index 1b667d317..876c78a63 100644 --- a/env/src/tools/agent/extract_item/agent.md +++ b/env/src/tools/agent/extract_item/agent.md @@ -4,22 +4,6 @@ The extract tool allows you to remove items from entity inventories in the Facto ## Basic Usage -```python -# Extract items using a position -extracted_count = extract_item(Prototype.IronPlate, position, quantity=5) - -# Extract items using an entity directly -extracted_count = extract_item(Prototype.CopperCable, entity, quantity=3) -``` - -The function returns the number of items successfully extracted. The extracted items are automatically placed in the player's inventory. - -**Quantity Handling** - - If requested quantity exceeds available items, it extracts all available items - - Returns actual number of items extracted - -## Examples - ### Extracting from a Chest ```python # Place a chest and insert items @@ -35,6 +19,12 @@ count = extract_item(Prototype.IronPlate, chest, quantity=5) # count will be 5, items move to player inventory ``` +The function returns the number of items successfully extracted. The extracted items are automatically placed in the player's inventory. + +**Quantity Handling** + - If requested quantity exceeds available items, it extracts all available items + - Returns actual number of items extracted + ## Common Pitfalls 1. **Empty Inventories** diff --git a/env/src/tools/agent/get_connection_amount/agent.md b/env/src/tools/agent/get_connection_amount/agent.md index b1f0f3729..77a2aabe7 100644 --- a/env/src/tools/agent/get_connection_amount/agent.md +++ b/env/src/tools/agent/get_connection_amount/agent.md @@ -12,13 +12,6 @@ The tool determines the number of connecting entities (pipes, belts, or power po ## Basic Usage -```python -# Get number of entities needed between positions/entities -amount = get_connection_amount(source, target, connection_type=Prototype.X) -``` - -## Common Use Cases - ### 1. Planning Belt Lines ```python # Calculate belts needed between drill and furnace diff --git a/env/src/tools/agent/get_entity/agent.md b/env/src/tools/agent/get_entity/agent.md index ebcb83005..ff2cf0bcc 100644 --- a/env/src/tools/agent/get_entity/agent.md +++ b/env/src/tools/agent/get_entity/agent.md @@ -4,18 +4,6 @@ The `get_entity` tool allows you to get objects and update variables with their ## Basic Usage -Creating power connection -Assume the SolarPanel and ElectronicMiningDrill exist at the given positions -```python -# get the variables -solar_panel = get_entity(Prototype.SolarPanel, Position(x = 1, y = 2)) -drill_1 = get_entity(Prototype.ElectricMiningDrill, Position(x = 10, y = 28)) -# create the main connection -main_power_connection = connect_entities(solar_panel, - drill_1, - Prototype.SmallElectricPole) -``` - Connecting one inserter to another (inserter_1 at Position(x = 12, y = 11) to inserter_2 at Position(x = 0, y = 0)) ```python # get the inserter entities diff --git a/env/src/tools/agent/harvest_resource/agent.md b/env/src/tools/agent/harvest_resource/agent.md index 942385ab8..ffd8d4484 100644 --- a/env/src/tools/agent/harvest_resource/agent.md +++ b/env/src/tools/agent/harvest_resource/agent.md @@ -4,14 +4,6 @@ The `harvest_resource` tool allows you to harvest resources like ores, trees, ro ## Basic Usage -```python -harvest_resource(position: Position, quantity: int = 1, radius: int = 10) -> int -``` - -The function returns the actual quantity harvested. - -### Examples - ```python # Harvest 10 coal from nearest coal patch coal_pos = nearest(Resource.Coal) @@ -23,19 +15,7 @@ iron_pos = nearest(Resource.IronOre) move_to(iron_pos) harvested = harvest_resource(iron_pos, quantity=5) ``` - -## Important Rules - -1. You **must move to the resource** before harvesting: -```python -# Wrong - will fail -harvest_resource(nearest(Resource.Coal), 10) - -# Correct -coal_pos = nearest(Resource.Coal) -move_to(coal_pos) -harvest_resource(coal_pos, 10) -``` +You **must move to the resource** before harvesting ## Harvestable Resources diff --git a/env/src/tools/agent/insert_item/agent.md b/env/src/tools/agent/insert_item/agent.md index d70270a2a..dde18a99e 100644 --- a/env/src/tools/agent/insert_item/agent.md +++ b/env/src/tools/agent/insert_item/agent.md @@ -4,14 +4,6 @@ The `insert_item` tool allows you to insert items from your inventory into entit ## Basic Usage -```python -insert_item(item: Prototype, target: Union[Entity, EntityGroup], quantity: int = 5) -> Entity -``` - -The function returns the updated target entity. - -### Examples - ```python # Insert coal into a furnace furnace = insert_item(Prototype.Coal, furnace, quantity=10) @@ -19,19 +11,13 @@ furnace = insert_item(Prototype.Coal, furnace, quantity=10) # Insert iron ore into a furnace furnace = insert_item(Prototype.IronOre, furnace, quantity=50) ``` +The function returns the updated target entity. ## Important Rules -1. **Always update the target variable with the return value:** -```python -# Wrong - state will be outdated -insert_item(Prototype.Coal, furnace, 10) - -# Correct - updates furnace state -furnace = insert_item(Prototype.Coal, furnace, 10) -``` +**Always update the target variable with the return value** -2. **Check inventory before inserting:** +**Check inventory before inserting:** ```python inventory = inspect_inventory() if inventory[Prototype.Coal] >= 10: diff --git a/env/src/tools/agent/inspect_inventory/agent.md b/env/src/tools/agent/inspect_inventory/agent.md index b8ebacf88..031800ccc 100644 --- a/env/src/tools/agent/inspect_inventory/agent.md +++ b/env/src/tools/agent/inspect_inventory/agent.md @@ -4,14 +4,8 @@ The `inspect_inventory` tool allows you to check the contents of your own invent ## Basic Usage -```python -inspect_inventory(entity: Optional[Union[Entity, Position]] = None) -> Inventory -``` - The function returns an Inventory object that can be queried using Prototype objects. -## Common Usage Patterns - 1. **Check Player Inventory** ```python # Check your own inventory diff --git a/env/src/tools/agent/move_to/agent.md b/env/src/tools/agent/move_to/agent.md index d324e66f1..3664ae756 100644 --- a/env/src/tools/agent/move_to/agent.md +++ b/env/src/tools/agent/move_to/agent.md @@ -3,15 +3,7 @@ The `move_to` tool allows you to navigate to specific positions in the Factorio world. This guide explains how to use it effectively. ## Basic Usage - -```python -move_to(position: Position) -> Position -``` - The function returns your final Position after moving. - -### Examples - ```python # Simple movement new_pos = move_to(Position(x=10, y=10)) @@ -20,19 +12,6 @@ new_pos = move_to(Position(x=10, y=10)) coal_pos = nearest(Resource.Coal) move_to(coal_pos) ``` -## Movement Patterns - -### 1. Resource Navigation -```python -move_to(nearest(IronOre)) -``` - -### 2. Move before placing -always need to move to the position where you need to place the entity -```python -move_to(Position(x = 0, y = 0)) -chest = place_entity(Prototypw.WoodenChest, position = Position(x = 0, y = 0)) -``` ## Troubleshooting diff --git a/env/src/tools/agent/nearest/agent.md b/env/src/tools/agent/nearest/agent.md index 9d4f375a5..1339b9f21 100644 --- a/env/src/tools/agent/nearest/agent.md +++ b/env/src/tools/agent/nearest/agent.md @@ -3,17 +3,8 @@ The `nearest` tool finds the closest entity or resource relative to your current position in Factorio. This guide explains how to use it effectively. ## Basic Usage - -```python -nearest(type: Union[Prototype, Resource]) -> Position -``` - The function returns a Position object with the coordinates of the nearest entity or resource. -### Parameters -- `type`: Resource or Prototype to find (e.g., Resource.Coal, Resource.Water) - -### Examples ```python # Find nearest coal coal_pos = nearest(Resource.Coal) @@ -54,17 +45,4 @@ try: resource_pos = nearest(Resource.Coal) except Exception as e: print("No coal within 500 tiles") -``` - -## Common Patterns - -1. **Resource Collection Pattern** -```python -def collect_resource(resource_type: Resource, amount: int): - # Find resource - resource_pos = nearest(resource_type) - # Move to it - move_to(resource_pos) - # Harvest it - harvest_resource(resource_pos, amount) ``` \ No newline at end of file diff --git a/env/src/tools/agent/nearest/client.py b/env/src/tools/agent/nearest/client.py index 191e362db..56bed5c94 100644 --- a/env/src/tools/agent/nearest/client.py +++ b/env/src/tools/agent/nearest/client.py @@ -18,7 +18,7 @@ def __call__(self, type: Union[Prototype, Resource], ) -> Position: """ Find the nearest entity or resource to your position. - :param type: Entity or resource type to find + :param type: Resource or Prototype to find (e.g., Resource.Coal, Resource.Water) :return: Position of nearest entity or resource """ try: diff --git a/env/src/tools/agent/nearest_buildable/agent.md b/env/src/tools/agent/nearest_buildable/agent.md index a525fe489..810803697 100644 --- a/env/src/tools/agent/nearest_buildable/agent.md +++ b/env/src/tools/agent/nearest_buildable/agent.md @@ -4,32 +4,6 @@ The `nearest_buildable` tool helps find valid positions to place entities while ## Basic Usage -```python -nearest_buildable( - entity: Prototype, - building_box: BuildingBox, - center_position: Position -) -> BoundingBox -``` - -The function returns a BoundingBox object containing buildable area coordinates. - -### Parameters -- `entity`: Prototype of entity to place -- `building_box`: BuildingBox defining required area dimensions -- `center_position`: Position to search around - -### Return Value -Returns a BoundingBox with these attributes: -- `left_top`: Top-left corner Position -- `right_bottom`: Bottom-right corner Position -- `left_bottom`: Bottom-left corner Position -- `right_top`: Top-right corner Position -- `center`: Center position - - -## Common Use Cases - ### 1. Basic Entity Placement ```python # Find place for chest near the origin diff --git a/env/src/tools/agent/nearest_buildable/client.py b/env/src/tools/agent/nearest_buildable/client.py index 28b6f783a..fb7cf5df3 100644 --- a/env/src/tools/agent/nearest_buildable/client.py +++ b/env/src/tools/agent/nearest_buildable/client.py @@ -22,11 +22,17 @@ def __call__(self, ) -> BoundingBox: """ Find the nearest buildable area for an entity. + + :param entity: Prototype of entity to place + :param building_box: BuildingBox defining required area dimensions + :param center_position: Position to search around + :return: BoundingBox with these attributes: + - `left_top`: Top-left corner Position + - `right_bottom`: Bottom-right corner Position + - `left_bottom`: Bottom-left corner Position + - `right_top`: Top-right corner Position + - `center`: Center position - :param entity: Prototype of the entity to build. - :param building_box: The building box denoting the area of location that must be placeable. - :param center_position: The position to find the nearest area where building box fits - :return: BoundingBox of the nearest buildable area or None if no such area exists. """ if not isinstance(entity, Prototype): raise Exception("'nearest_buildable' requires the Prototype of the desired entity as the first argument") diff --git a/env/src/tools/agent/pickup_entity/agent.md b/env/src/tools/agent/pickup_entity/agent.md index 1ed81b4fc..bb74f07d1 100644 --- a/env/src/tools/agent/pickup_entity/agent.md +++ b/env/src/tools/agent/pickup_entity/agent.md @@ -4,20 +4,8 @@ The `pickup_entity` tool allows you to remove entities from the world and return ## Basic Usage -```python -pickup_entity( - entity: Union[Entity, Prototype, EntityGroup], - position: Optional[Position] = None -) -> bool -``` - Returns True if pickup was successful. -### Parameters -- `entity`: Entity/Prototype to pickup -- `position`: Optional position to pickup from (required for Prototypes) - -### Examples ```python # Pickup using prototype and position pickup_entity(Prototype.Boiler, Position(x=0, y=0)) diff --git a/env/src/tools/agent/pickup_entity/client.py b/env/src/tools/agent/pickup_entity/client.py index c35f40051..91022b557 100644 --- a/env/src/tools/agent/pickup_entity/client.py +++ b/env/src/tools/agent/pickup_entity/client.py @@ -17,7 +17,7 @@ def __call__(self, """ Pick up an entity if it exists on the world at a given position. :param entity: Entity prototype to pickup, e.g Prototype.IronPlate - :param position: Position to pickup entity + :param position: Optional position to pickup from (required for Prototypes) :return: True if the entity was picked up successfully, False otherwise. """ if not isinstance(entity, (Prototype, Entity, EntityGroup)): diff --git a/env/src/tools/agent/place_entity/agent.md b/env/src/tools/agent/place_entity/agent.md index ffe721c70..be82b35c9 100644 --- a/env/src/tools/agent/place_entity/agent.md +++ b/env/src/tools/agent/place_entity/agent.md @@ -5,25 +5,7 @@ The `place_entity` tool allows you to place entities in the Factorio world while ## Basic Usage ```python -place_entity( - entity: Prototype, - direction: Direction = Direction.UP, - position: Position = Position(x=0, y=0), - exact: bool = True -) -> Entity -``` - -Returns the placed Entity object. - -### Parameters -- `entity`: Prototype of entity to place -- `direction`: Direction entity should face (default: UP) -- `position`: Where to place entity (default: 0,0) -- `exact`: Whether to require exact positioning (default: True) - -### Examples -```python -# first moveto target location +# first move to target location move_to(Position(x=0, y=0)) # Basic placement chest = place_entity(Prototype.WoodenChest, position=Position(x=0, y=0)) diff --git a/env/src/tools/agent/place_entity/client.py b/env/src/tools/agent/place_entity/client.py index 0cf0409a5..43f3266cf 100644 --- a/env/src/tools/agent/place_entity/client.py +++ b/env/src/tools/agent/place_entity/client.py @@ -28,8 +28,8 @@ def __call__(self, ) -> Entity: """ Places an entity e at local position (x, y) if you have it in inventory. - :param entity: Entity to place - :param direction: Cardinal direction to place + :param entity: Prototype of entity to place + :param direction: Direction entity should face (default: UP) :param position: Position to place entity :param exact: If True, place entity at exact position, else place entity at nearest possible position :return: Entity object diff --git a/env/src/tools/agent/place_entity_next_to/agent.md b/env/src/tools/agent/place_entity_next_to/agent.md index aa62b9e7d..1ab71357f 100644 --- a/env/src/tools/agent/place_entity_next_to/agent.md +++ b/env/src/tools/agent/place_entity_next_to/agent.md @@ -4,24 +4,8 @@ The `place_entity_next_to` tool enables placement of entities relative to other ## Basic Usage -```python -place_entity_next_to( - entity: Prototype, - reference_position: Position, - direction: Direction = Direction.RIGHT, - spacing: int = 0 -) -> Entity -``` - Returns the placed Entity object. -### Parameters -- `entity`: Prototype of entity to place -- `reference_position`: Position of reference entity/point -- `direction`: Which direction to place from reference (UP/DOWN/LEFT/RIGHT) -- `spacing`: Additional tiles of space between entities (0 or more) - -### Examples ```python # Place inserter next to a furnace to input items into the furnace diff --git a/env/src/tools/agent/place_entity_next_to/client.py b/env/src/tools/agent/place_entity_next_to/client.py index e93d7fa6a..cf9520498 100644 --- a/env/src/tools/agent/place_entity_next_to/client.py +++ b/env/src/tools/agent/place_entity_next_to/client.py @@ -23,8 +23,8 @@ def __call__(self, In order to place something with a gap, you must increase the spacing parameter. :param entity: Entity to place :param reference_position: Position of existing entity or position to place entity next to - :param direction: Direction to place entity from reference_position - :param spacing: Space between entity and reference_position + :param direction: Which direction to place from reference (UP/DOWN/LEFT/RIGHT) + :param spacing: Additional tiles of space between entities (0 or more) :example: place_entity_next_to(Prototype.WoodenChest, Position(x=0, y=0), direction=Direction.UP, spacing=1) :return: Entity placed """ diff --git a/env/src/tools/agent/print/agent.md b/env/src/tools/agent/print/agent.md index 52a82c7c7..d565226bd 100644 --- a/env/src/tools/agent/print/agent.md +++ b/env/src/tools/agent/print/agent.md @@ -4,28 +4,6 @@ The `print` tool allows you to output information about game state, entities, an ## Basic Usage -```python -print(*args) -> str -``` - -Returns a string representation of the printed message. - -### Parameters -- `*args`: Variable number of objects to print - -### Supported Types -- Entity objects -- Inventory objects -- Dictionaries -- Booleans -- Strings -- Position objects -- Lists -- Tuples -- Any object with a `dict()` method (BaseModel derivatives) - -## Common Use Cases - ### 1. Entity Information ```python # Print entity details diff --git a/env/src/tools/agent/rotate_entity/agent.md b/env/src/tools/agent/rotate_entity/agent.md index d9f5c97fd..91de2acd4 100644 --- a/env/src/tools/agent/rotate_entity/agent.md +++ b/env/src/tools/agent/rotate_entity/agent.md @@ -4,17 +4,8 @@ The `rotate_entity` tool allows you to change the orientation of placed entities ## Basic Usage -```python -rotate_entity(entity: Entity, direction: Direction = Direction.UP) -> Entity -``` - Returns the rotated Entity object. -### Parameters -- `entity`: Entity to rotate -- `direction`: Target direction (UP/DOWN/LEFT/RIGHT) - -### Examples Rotating inserters - Inserter rotation affects pickup/drop positions Important: By default inserters take items from entities they are placed next to and place them at the drop_position Always rotate the inserters the other way if they need to put items into the entity (i.e the entity is at the drop_position) diff --git a/env/src/tools/agent/rotate_entity/client.py b/env/src/tools/agent/rotate_entity/client.py index 2401076dd..385e5c616 100644 --- a/env/src/tools/agent/rotate_entity/client.py +++ b/env/src/tools/agent/rotate_entity/client.py @@ -14,7 +14,7 @@ def __call__(self, entity: Entity, direction: Direction = Direction.UP) -> Entit """ Rotate an entity to a specified direction :param entity: Entity to rotate - :param direction: Direction to rotate + :param direction: Target direction (UP/DOWN/LEFT/RIGHT) :example rotate_entity(iron_chest, Direction.UP) :return: Returns the rotated entity """ diff --git a/env/src/tools/agent/set_entity_recipe/agent.md b/env/src/tools/agent/set_entity_recipe/agent.md index 5bc2c79e7..dd648e45b 100644 --- a/env/src/tools/agent/set_entity_recipe/agent.md +++ b/env/src/tools/agent/set_entity_recipe/agent.md @@ -3,19 +3,9 @@ ## Overview The `set_entity_recipe` tool allows you to set or change the recipe of an assembling machine, chemical plant or oil refinery entity in the game. This enables automation of crafting specific items. -## Function Signature -```python -def set_entity_recipe(entity: Entity, prototype: Union[Prototype, RecipeName]) -> Entity -``` - -### Parameters -- `entity`: An Entity object representing the assembling machine whose recipe you want to set -- `prototype`: Either a Prototype or RecipeName enum value indicating the recipe to set - -### Returns -- Returns the updated Entity with the new recipe set - ## Usage Example + +Returns the updated Entity with the new recipe set Set recipe for assembling machine ```python # get the assembling machine diff --git a/env/src/tools/agent/set_entity_recipe/client.py b/env/src/tools/agent/set_entity_recipe/client.py index 25493bd11..f8b4275ea 100644 --- a/env/src/tools/agent/set_entity_recipe/client.py +++ b/env/src/tools/agent/set_entity_recipe/client.py @@ -15,8 +15,8 @@ def __call__(self, entity: Entity, prototype: Union[Prototype, RecipeName]) -> E """ Sets the recipe of an given entity. :param entity: Entity to set recipe - :param prototype: The prototype to create, or a recipe name for more complex processes - :return: Entity that had its recipe set + :param prototype: Either a Prototype or RecipeName enum value indicating the recipe to set + :return: Updated Entity with the new recipe set """ x, y = entity.position.x, entity.position.y diff --git a/env/src/tools/agent/set_research/agent.md b/env/src/tools/agent/set_research/agent.md index 900d9126b..2515e21c4 100644 --- a/env/src/tools/agent/set_research/agent.md +++ b/env/src/tools/agent/set_research/agent.md @@ -3,22 +3,8 @@ ## Overview The `set_research` tool enables setting the current research technology for the player's force in Factorio. It manages research prerequisites, validates technology availability, and provides information about required research ingredients. -## Function Signature -```python -def set_research(technology: Technology) -> List[Ingredient] -``` - -### Parameters -- `technology`: A Technology enum value representing the technology to research - -### Returns -- Returns a list of `Ingredient` objects containing the required science packs and their quantities -- Each `Ingredient` object has: - - `name`: Name of the required science pack - - `count`: Number of science packs needed - - `type`: Type of the ingredient (usually "item" for science packs) - ## Usage Example + ```python # Set research to Automation technology ingredients = set_research(Technology.Automation) diff --git a/env/src/tools/agent/set_research/client.py b/env/src/tools/agent/set_research/client.py index f918eadf7..3345bb16e 100644 --- a/env/src/tools/agent/set_research/client.py +++ b/env/src/tools/agent/set_research/client.py @@ -18,8 +18,12 @@ def __init__(self, connection, game_state): def __call__(self, technology: Technology) -> List[Ingredient]: """ Set the current research technology for the player's force. - :param technology: Technology to research - :return: Required ingredients to research the technology. + :param technology: A Technology enum value representing the technology to research + :return: A list of `Ingredient` objects containing the required science packs and their quantities + - Each `Ingredient` object has: + - `name`: Name of the required science pack + - `count`: Number of science packs needed + - `type`: Type of the ingredient (usually "item" for science packs) """ if hasattr(technology, 'value'): name = technology.value diff --git a/env/src/tools/agent/sleep/agent.md b/env/src/tools/agent/sleep/agent.md index 24a9fd0d5..a1d2b4633 100644 --- a/env/src/tools/agent/sleep/agent.md +++ b/env/src/tools/agent/sleep/agent.md @@ -3,17 +3,6 @@ ## Overview The `sleep` tool provides a way to pause execution for a specified duration. It's particularly useful when waiting for game actions to complete, such as waiting for items to be crafted or resources to be gathered. -## Function Signature -```python -def sleep(seconds: int) -> bool -``` - -### Parameters -- `seconds`: Number of seconds to pause execution (integer) - -### Returns -- `bool`: True if sleep completed successfully - ## Usage Example ```python # Wait for 10 seconds diff --git a/env/src/tools/examples/entity_status_monitoring.md b/env/src/tools/examples_orig/entity_status_monitoring.md similarity index 100% rename from env/src/tools/examples/entity_status_monitoring.md rename to env/src/tools/examples_orig/entity_status_monitoring.md diff --git a/env/src/tools/examples/how_to_check_research_progress.md b/env/src/tools/examples_orig/how_to_check_research_progress.md similarity index 100% rename from env/src/tools/examples/how_to_check_research_progress.md rename to env/src/tools/examples_orig/how_to_check_research_progress.md diff --git a/env/src/tools/examples/how_to_connect_entities.md b/env/src/tools/examples_orig/how_to_connect_entities.md similarity index 100% rename from env/src/tools/examples/how_to_connect_entities.md rename to env/src/tools/examples_orig/how_to_connect_entities.md diff --git a/env/src/tools/examples/how_to_create_assembling_machines.md b/env/src/tools/examples_orig/how_to_create_assembling_machines.md similarity index 91% rename from env/src/tools/examples/how_to_create_assembling_machines.md rename to env/src/tools/examples_orig/how_to_create_assembling_machines.md index 4c08e5ebc..6abaaea77 100644 --- a/env/src/tools/examples/how_to_create_assembling_machines.md +++ b/env/src/tools/examples_orig/how_to_create_assembling_machines.md @@ -1,7 +1,12 @@ ## Automated Assembly Systems +Assembling machines can be used to automatically craft items in factorio ### Basic Assembly Line +Example +Create a copper cable assembling machine +Put down an assembling machine 15 spaces away from an inserter that will send ingredients to the assembling machine Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections +We will use a existing solar panel to power the assembling machine ```python furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) diff --git a/env/src/tools/examples_orig/how_to_create_electricity_generators.md b/env/src/tools/examples_orig/how_to_create_electricity_generators.md new file mode 100644 index 000000000..5a04f2494 --- /dev/null +++ b/env/src/tools/examples_orig/how_to_create_electricity_generators.md @@ -0,0 +1,78 @@ +### 2. Power Systems + +### Power Infrastructure with steam engine + +Power typically involves: +-> Water Source + OffshorePump. This moves water from the water source using the offshore pump +-> Boiler (burning coal). This creates the water from water source into steam +-> SteamEngine. This creates electricity from steam + +IMPORTANT: We also need to be very careful and check where we can place boiler and steam engine as they cannot be on water +We will do this in 2 separate code examples +```python +# log your general idea what you will do next +print(f"I will create a power generation setup with a steam engine") +# Power system pattern +move_to(water_position) +# first place offshore pump on the water system +# The offshore pump gets water from the water source and will transport it to the boiler via pipes +offshore_pump = place_entity(Prototype.OffshorePump, position=water_position) +print(f"Placed offshore pump to get water at {offshore_pump.position}") # Placed at Position(x = 1, y = 0) +# Then place the boiler near the offshore pump +# IMPORTANT: We need to be careful as there is water nearby which is unplaceable, +# We do not know where the water is so we will use nearest_buildable for safety and place the entity at the center of the boundingbox +# We will also need to be atleast 4 tiles away from the offshore-pump and otherwise won't have room for connections. + +# first get the width and height of a BurnerMiningDrill +print(f"Boiler width: {Prototype.Boiler.WIDTH}, height: {Prototype.Boiler.HEIGHT}") # width 3, height 2 +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.Boiler.WIDTH + 4, height = Prototype.Boiler.HEIGHT + 4) + +coords = nearest_buildable(Prototype.Boiler,building_box,offshore_pump.position) +# place the boiler at the centre coordinate +# first move to the center coordinate +move_to(coords.center) +boiler = place_entity(Prototype.Boiler, position = coords.center, direction = Direction.LEFT) +print(f"Placed boiler to generate steam at {boiler.position}. This will be connected to the offshore pump at {offshore_pump.position}") # placed boiler at Position(x = 10, y = 0) +# add coal to boiler to start the power generation +boiler = insert_item(Prototype.Coal, boiler, 10) +``` + +```python +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +# Finally we need to place the steam engine close to the boiler +# use the prototype width and height attributes +# add 4 to ensure no overlap +building_box = BuildingBox(width = Prototype.SteamEngine.WIDTH + 4, height = Prototype.SteamEngine.HEIGHT + 4) + +coords = nearest_buildable(Prototype.SteamEngine,bbox,boiler.position) +# move to the centre coordinate +move_to(coords.center) +# place the steam engine on the centre coordinate +steam_engine = place_entity(Prototype.SteamEngine, + position = coords.center, + direction = Direction.LEFT) + +print(f"Placed steam_engine to generate electricity at {steam_engine.position}. This will be connected to the boiler at {boiler.position} to generate electricity") # Placed at Position(x = 10, y = 10) +``` + +```python +offshore_pump = get_entity(Prototype.OffshorePump, Position(x = 1, y = 0)) +boiler = get_entity(Prototype.Boiler, Position(x = 10, y = 0)) +steam_engine = get_entity(Prototype.SteamEngine, Position(x = 10, y = 10)) +# Connect entities in order +water_pipes = connect_entities(offshore_pump, boiler, Prototype.Pipe) +print(f"Connected offshore pump at {offshore_pump.position} to boiler at {boiler.position} with pipes {water_pipes}") +steam_pipes = connect_entities(boiler, steam_engine, Prototype.Pipe) +print(f"Connected boiler at {boiler.position} to steam_engine at {steam_engine.position} with pipes {water_pipes}") + +# check that it has power +# sleep for 5 seconds to ensure flow +sleep(5) +# update the entity +steam_engine = get_entity(Prototype.SteamEngine, position = steam_engine.position) +# check that the steam engine is generating power +assert steam_engine.energy > 0, f"Steam engine is not generating power" +print(f"Steam engine at {steam_engine.position} is generating power!") +``` \ No newline at end of file diff --git a/env/src/tools/examples/how_to_create_reserach_setups.md b/env/src/tools/examples_orig/how_to_create_reserach_setups.md similarity index 100% rename from env/src/tools/examples/how_to_create_reserach_setups.md rename to env/src/tools/examples_orig/how_to_create_reserach_setups.md diff --git a/env/src/tools/examples/how_to_create_self_fueling_mining_system.md b/env/src/tools/examples_orig/how_to_create_self_fueling_mining_system.md similarity index 100% rename from env/src/tools/examples/how_to_create_self_fueling_mining_system.md rename to env/src/tools/examples_orig/how_to_create_self_fueling_mining_system.md diff --git a/env/src/tools/examples/how_to_launch_a_rocket.md b/env/src/tools/examples_orig/how_to_launch_a_rocket.md similarity index 100% rename from env/src/tools/examples/how_to_launch_a_rocket.md rename to env/src/tools/examples_orig/how_to_launch_a_rocket.md diff --git a/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/examples_orig/how_to_set_up_multiple_drill_plate_mine.md similarity index 98% rename from env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md rename to env/src/tools/examples_orig/how_to_set_up_multiple_drill_plate_mine.md index e5f63c6bb..a0595dc9d 100644 --- a/env/src/tools/examples/how_to_set_up_multiple_drill_plate_mine.md +++ b/env/src/tools/examples_orig/how_to_set_up_multiple_drill_plate_mine.md @@ -1,4 +1,5 @@ -## How to set up multiple drill plate mines +## How to set up automated plate factory + Furnaces can be placed at the drop position of drills to automatically smelt resources The following resources can be smelt x - iron ore to iron plate diff --git a/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/examples_orig/how_to_set_up_raw_resource_burner_mine.md similarity index 90% rename from env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md rename to env/src/tools/examples_orig/how_to_set_up_raw_resource_burner_mine.md index 21bf5ec6b..9fb41a60a 100644 --- a/env/src/tools/examples/how_to_set_up_raw_resource_burner_mine.md +++ b/env/src/tools/examples_orig/how_to_set_up_raw_resource_burner_mine.md @@ -1,7 +1,9 @@ -## How to create single drill raw resource mine +## How to create automatic raw resource mining operation All types of drills (burner, electric) can be used. Coal, iron ore, copper ore and stone automaton can be set up like this You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines +Example: +Using a single drill to a chest resource setup ```python # Setup mining drill on ore patch resource_pos = nearest(Resource.IronOre) diff --git a/env/src/tools/examples_orig/how_to_setup_chemical_plants.md b/env/src/tools/examples_orig/how_to_setup_chemical_plants.md new file mode 100644 index 000000000..80a00b440 --- /dev/null +++ b/env/src/tools/examples_orig/how_to_setup_chemical_plants.md @@ -0,0 +1,30 @@ +## Chemical plants + +### Placing a chemical plant near a oil refinery + +Example: +Set recipe for chemical plant and connect to input and output storage tanks +```python +# get the chemical plant +chemical_plant = get_entity(Prototype.ChemicalPlant, position=Position(x=0, y=0)) + +# Set the recipe to craft solid fuel from heavy oil +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +chemical_plant = set_entity_recipe(chemical_plant, RecipeName.HeavyOilCracking) +print(f"Set the recipe of chemical plant at {chemical_plant.position} to HeavyOilCracking") + +# get the input storage tank +storage_tank = get_entity(Prototype.StorageTank, position=Position(x=10, y=0)) +# connect with underground and overground pipes +# the order matters as the storage tank will be connected to recipe inputs +pipes = connect_entities(storage_tank, chemical_plant, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the input tank at {storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") + +# get the output storage tank +output_storage_tank = get_entity(Prototype.StorageTank, position=Position(x=-10, y=0)) +# connect with underground and overground pipes +# the order matters as the storage tank will be connected to recipe outputs +pipes = connect_entities(chemical_plant, output_storage_tank, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the output tank at {output_storage_tank.position} to chemical plant at {chemical_plant.position} with {pipes}") + +``` \ No newline at end of file diff --git a/env/src/tools/examples_orig/how_to_setup_oil_refineries.md b/env/src/tools/examples_orig/how_to_setup_oil_refineries.md new file mode 100644 index 000000000..e7ac103a1 --- /dev/null +++ b/env/src/tools/examples_orig/how_to_setup_oil_refineries.md @@ -0,0 +1,20 @@ +## Oil Refinery + +### Placing a oil refinery + +Example: +Set recipe for oil refinery to get petroleum gas +```python +# get the pumpjack +pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) +oil_refinery = get_entity(Prototype.Oilrefinery, position = Position(x = -25, y = 10)) + +# Set the recipe to basc oil processing +# IMPORTANT: The recipe for chemical plants and oil refineries must be set before connecting to inputs and outputs +oil_refinery = set_entity_recipe(oil_refinery, RecipeName.BasicOilProcessing) +print(f"Set the recipe of oil refinery at {oil_refinery.position} to BasicOilProcessing") + +# connect with underground and overground pipes to the pumpjack +pipes = connect_entities(pumpjack, oil_refinery, connection_type={Prototype.UndergroundPipe, Prototype.Pipe}) +print(f"Connected the pumpjack at {pumpjack.position} to oil refinery at {oil_refinery.position} with {pipes}") +``` \ No newline at end of file diff --git a/env/src/tools/examples/how_to_smelt_ores.md b/env/src/tools/examples_orig/how_to_smelt_ores.md similarity index 100% rename from env/src/tools/examples/how_to_smelt_ores.md rename to env/src/tools/examples_orig/how_to_smelt_ores.md diff --git a/env/src/tools/rag/query_information/agent.md b/env/src/tools/rag/query_information/agent.md index b64024574..dd69b5769 100644 --- a/env/src/tools/rag/query_information/agent.md +++ b/env/src/tools/rag/query_information/agent.md @@ -10,7 +10,7 @@ inserter_information = query_information("How to use inserters to input items in print(f"Manual how to use inserters") print(inserter_information) -electricity_information = query_information("How to set up electricity?") +electricity_information = query_information("How to set up electricity networks?") print(f"Manual how to set up elctricity") print(electricity_information) diff --git a/env/src/tools/rag/query_information/client.py b/env/src/tools/rag/query_information/client.py index cb6fdad4f..9ad4fab94 100644 --- a/env/src/tools/rag/query_information/client.py +++ b/env/src/tools/rag/query_information/client.py @@ -15,7 +15,7 @@ def __init__(self, connection, game_state): super().__init__(connection, game_state) # get the location of this file root_directory = os.path.dirname(os.path.abspath(__file__)) - self.pages_path = Path(root_directory,"..", "..", 'examples') + self.pages_path = Path(root_directory, "..", 'rag_examples') # get all md files in the pages directory self.pages = [page.replace(".md", "") for page in os.listdir(self.pages_path) if page.endswith('.md')] # read inthe embeddings.json file diff --git a/env/src/tools/rag/rag_examples/entity_status_monitoring.md b/env/src/tools/rag/rag_examples/entity_status_monitoring.md new file mode 100644 index 000000000..429f8a139 --- /dev/null +++ b/env/src/tools/rag/rag_examples/entity_status_monitoring.md @@ -0,0 +1,9 @@ +## Entity Status Monitoring +```python +def monitor_entity_status(entity, expected_status): + entity = get_entity(entity.prototype, entity.position) + if entity.status != expected_status: + print(f"Entity at {entity.position} has unexpected status: {entity.status}") + return False + return True +``` \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_check_research_progress.md b/env/src/tools/rag/rag_examples/how_to_check_research_progress.md new file mode 100644 index 000000000..e1677d2c4 --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_check_research_progress.md @@ -0,0 +1,91 @@ +## How to check research progress + +1. **Current Research Check** + ```python + try: + progress = get_research_progress() + except Exception as e: + print("No active research!") + # Handle no research case + ``` + +2. **Research Status Verification** + ```python + try: + # Check specific technology + progress = get_research_progress(Technology.Automation) + except Exception as e: + print(f"Cannot check progress: {e}") + # Handle invalid technology case + ``` + +## Common Use Cases + +### 1. Monitor Current Research +```python +def monitor_research_progress(): + try: + remaining = get_research_progress() + for ingredient in remaining: + print(f"Need {ingredient.count} {ingredient.name}") + except Exception: + print("No research in progress") +``` + +### 2. Research Requirements Planning +```python +def check_research_feasibility(technology): + try: + requirements = get_research_progress(technology) + inventory = inspect_inventory() + + for req in requirements: + if inventory[req.name] < req.count: + print(f"Insufficient {req.name}: have {inventory[req.name]}, need {req.count}") + return False + return True + except Exception as e: + print(f"Error checking research: {e}") + return False +``` + +## Best Practices + +1. **Always Handle No Research Case** +```python +def safe_get_progress(): + try: + return get_research_progress() + except Exception: + # No research in progress + return None +``` + +### Common Errors + +1. **No Active Research** +```python +try: + progress = get_research_progress() +except Exception as e: + if "No research in progress" in str(e): + # Handle no research case + pass +``` + +2. **Invalid Technology** +```python +try: + progress = get_research_progress(technology) +except Exception as e: + if "Technology doesn't exist" in str(e): + # Handle invalid technology case + pass +``` + +3. **Already Researched** +```python +if not get_research_progress(technology): + print("Technology already researched") +``` +s \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_connect_entities.md b/env/src/tools/rag/rag_examples/how_to_connect_entities.md new file mode 100644 index 000000000..14bf8bbf7 --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_connect_entities.md @@ -0,0 +1,140 @@ + +## Transport Belt Connections + +```python +# Connect mining drill output to a furnace inserter +belts = connect_entities( + drill, + furnace_inserter, + connection_type=Prototype.TransportBelt +) + +# Belt groups are returned for management +print(f"Created belt line with {len(belts.belts)} belts") +``` + +Key points: +- Always use inserters between belts and machines/chests +- Use underground belts for crossing other belts +- Belt groups maintain direction and flow information + +## Pipe Connections + +Pipes connect fluid-handling entities: +```python +# Connect water flow with over and underground pipes +water_pipes = connect_entities(offshore_pump, boiler, {Prototype.TransportBelt, Prototype.UndergroundBelt}) +print(f"Connected offshore_pump at {offshore_pump.position} to boiler at {boiler.position} with {pipes}") +``` + +Key points: +- Respects fluid input/output connection points +- Underground pipes have limited range +- Pipe groups track fluid system IDs + +## Power Pole Connections + +To add power to entities, you need to connect the target entity (drill, assembling machine, oil refinery etc) to a working power source (steam engine, solar panel etc) +```python +# Connect power +poles = connect_entities( + steam_engine, + drill, + Prototype.SmallElectricPole +) +print(f"Created the connection to power drill at {drill.position} with steam engine at {steam_engine.position}: {poles}") +``` + +Key points: +- Automatically spaces poles based on wire reach +- Creates electrical networks +- Handles pole to entity connections +- Power groups track network IDs + +## Best Practices + +1. **Pre-check Resources** +```python +inventory = inspect_inventory() +# use get_connection_amount to see if you have enough +required_count = get_connection_amount(source.position, target.position, connection_type=Prototype.TransportBelt) +assert inventory[Prototype.TransportBelt] >= required_count +``` + +3. **Entity Groups** +```python +# Work with entity groups +belt_group = connect_entities(source, target, Prototype.TransportBelt) +for belt in belt_group.belts: + print(f"Belt at {belt.position} flowing {belt.direction}") +``` + +## Common Patterns + +### Many-to-One Connections +When you need to connect multiple sources to a single target with transport belts +1. Establish sources and target +2. Create the main connection by connecting one source to the target with transport belts +3. Connect all remaining sources to the main connection with transport belts + +Example: Connecting multiple source inserters to one target inserter +```python +# get the inserter variables +source_inserter_1 = get_entity(Prototype.BurnerInserter, Position(x = 1, y = 2)) +source_inserter_2 = get_entity(Prototype.BurnerInserter, Position(x = 3, y = 2)) +source_inserter_3 = get_entity(Prototype.BurnerInserter, Position(x = 5, y = 2)) +target_inserter = get_entity(Prototype.BurnerInserter, Position(x = 10, y = 28)) +# log your general idea what you will do next +print(f"I will create a connection from the inserters at [{source_inserter_1.position}, {source_inserter_2.position}, {source_inserter_3.position}] to the inserter at {target_inserter.position}") +# create the main connection +main_connection = connect_entities(source_inserter_1, + target_inserter, + Prototype.TransportBelt) +# Print out the whole connection for logs +print(f"Created the main connection between inserter at {source_inserter_1.position} to inserter at {target_inserter.position}: {main_connection}") + +# Connect source_inserter_2 and source_inserter_3 to the main connection +secondary_sources = [source_inserter_2, source_inserter_3] +for source in secondary_sources: + # connect the source to main connection + # Use the first beltgroup from the main connection to connect to + # Also override the main_connection to get the newest belt groups + main_connection = connect_entities(source, + main_connection, + Prototype.TransportBelt) + print(f"Extended main connection to include inserter at {source.position}: {main_connection}") +print(f"Final connection after connecting all inserters to target: {main_connection}") +``` + +When you want to connect entities to existing power pole groups, similar rules apply. + +Assume in this example there is a steam engine at Position(x = 1, y = 2) and the drill is at Position(x = 10, y = 28) +```python +# create the main connection +main_power_connection = connect_entities(steam_engine, + drill_1, + Prototype.SmallElectricPole) +# Print out the whole connection for logs +print(f"Created the main connection to power drill at {drill_1.position} with steam engine at {steam_engine.position}: {main_connection}") + +# connect the secondary source to the main power connection +# Use the first ElectricityGroup from the main connection to connect to +# Also override the main_power_connection to get the newest ElectricityGroups +main_power_connection = connect_entities(drill_2, + main_connection, + Prototype.SmallElectricPole) +``` + +## Troubleshooting + +Common issues and solutions: + +### 1. Connection Failures +- Verify inventory has required entities +- Ensure compatible connection types + +### 3. Entity Groups +- Update stale group references +- Handle group merging properly +- Track network IDs +- Clean up disconnected groups diff --git a/env/src/tools/rag/rag_examples/how_to_create_assembling_machines.md b/env/src/tools/rag/rag_examples/how_to_create_assembling_machines.md new file mode 100644 index 000000000..d8d7b9018 --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_create_assembling_machines.md @@ -0,0 +1,73 @@ +## Automated Assembly Systems +Assembling machines can be used to automatically craft items in factorio + +### Basic Assembly Line +Example +Create a copper cable assembling machine +Put down an assembling machine 15 spaces away from an inserter that will send ingredients to the assembling machine +Important: Each section of the mine should be atleast 20 spaces further away from the other and have enough room for connections +We will use a existing solar panel to power the assembling machine +```python +# get the input inserter and an existing solar panel +furnace_output_inserter = get_entity(Prototype.BurnerInserter, Position(x = 9, y = 0)) +solar_panel = get_entity(Prototype.SolarPanel, Position(x = 0, y = 0)) +# get a position 15 spaces away +assembler_position = Position(x = furnace_output_inserter.x + 15, y = furnace_output_inserter.y) +# Plan space for assembler and inserters, add some buffer +building_box = BuildingBox(width=Prototype.AssemblingMachine1.WIDTH + 2*Prototype.BurnerInserter.WIDTH + 2, height=Prototype.AssemblingMachine1.HEIGHT+ 2) +buildable_coords = nearest_buildable(Prototype.AssemblingMachine1, + building_box, + assembler_position) + +# Place assembling machine +move_to(buildable_coords.center) +assembler = place_entity(Prototype.AssemblingMachine1, + position=buildable_coords.center, + direction = Direction.DOWN) +print(f"Placed assembling machine at {assembler.position}") + +# Set recipe +set_entity_recipe(assembler, Prototype.CopperCable) + +# Add input inserter, that will input items into assembly machine +# place it to the right as we added to the width of the building box +assembly_machine_input_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.RIGHT, + spacing=0) +# rotate it to input items into the assembling machine +assembly_machine_input_inserter = rotate_entity(assembly_machine_input_inserter, Direction.LEFT) + +# Add output inserter, that will take items fromthe assembly machine +# put it on the other side of assembling machine +output_inserter = place_entity_next_to(Prototype.BurnerInserter, + assembler.position, + direction=Direction.LEFT, + spacing=0) +output_chest = place_entity(Prototype.WoodenChest, position = output_inserter.drop_position) +# add coal to inserters +output_inserter = insert_item(Prototype.Coal, output_inserter, quantity = 5) +input_inserter = insert_item(Prototype.Coal, input_inserter, quantity = 5) +# Connect power +# NB: To check how to power entities, look at the relevant examples for power networks +poles = connect_entities(power_source, + assembler, + Prototype.SmallElectricPole) +print(f"Powered assembling machine at {assembler.position} with {poles}") +# wait for 5 seconds to check power +sleep(5) +assembler = get_entity(Prototype.AssemblingMachine1, assembler.position) +assert assembler.energy > 0, f"Assembling machine at {assembler.position} is not receiving power" +# Connect input belt +belts = connect_entities(furnace_output_inserter, + assembly_machine_input_inserter, + Prototype.TransportBelt) +print(f"Connected assembling machine at {assembler.position} to furnace_output_inserter with {belts}") + +# wait for 15 seconds to if structure works and machine is creating copper cables into the output chest +sleep(15) +output_chest = get_entity(Prototype.WoodenChest, output_chest.position) +inventory = inspect_inventory(output_chest) +copper_cables_in_inventory = inventory[Prototype.CopperCable] +assert copper_cables_in_inventory > 0, f"No copper cables created" +``` \ No newline at end of file diff --git a/env/src/tools/examples/how_to_create_electricity_generators.md b/env/src/tools/rag/rag_examples/how_to_create_electricity_generators.md similarity index 96% rename from env/src/tools/examples/how_to_create_electricity_generators.md rename to env/src/tools/rag/rag_examples/how_to_create_electricity_generators.md index 3562acefb..03a7b03ad 100644 --- a/env/src/tools/examples/how_to_create_electricity_generators.md +++ b/env/src/tools/rag/rag_examples/how_to_create_electricity_generators.md @@ -100,3 +100,7 @@ electric_mining_drill = get_entity(Prototype.ElectricMiningDrill, electric_minin assert electric_mining_drill.energy > 0, f"electric_mining_drill at {electric_mining_drill.position} is not receiving power" print(f"Electric mining drill at {electric_mining_drill.position} has been successfully powered") ``` + +### Using solar panels for energy +Using solar panels for energy is very easy. +Solar panels need to be just placed on the ground and then can be connected directly to targets requiring power \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_create_reserach_setups.md b/env/src/tools/rag/rag_examples/how_to_create_reserach_setups.md new file mode 100644 index 000000000..01d0f3b41 --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_create_reserach_setups.md @@ -0,0 +1,26 @@ +### 4. Research Systems + +#### Basic Research Setup +```python +def build_research_facility(power_source, lab): + # Connect power + poles = connect_entities(power_source, + lab, + Prototype.SmallElectricPole) + print(f"Powered lab at {lab.position} with {poles}") + # Add science pack inserter + # put it to the left of lab + inserter = place_entity_next_to(Prototype.BurnerInserter, + lab.position, + direction=Direction.LEFT, + spacing=0) + # rotate it to input items into the lab + inserter = rotate_entity(inserter, Direction.RIGHT) + # Place input chest + chest = place_entity(Prototype.WoodenChest, + inserter.pickup_position, + direction=Direction.LEFT) + print(f"Placed chest at {chest.position} to input automation packs to lab at {lab.position}") + + return lab, inserter, chest +``` \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_create_self_fueling_mining_system.md b/env/src/tools/rag/rag_examples/how_to_create_self_fueling_mining_system.md new file mode 100644 index 000000000..02116b211 --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_create_self_fueling_mining_system.md @@ -0,0 +1,32 @@ +## Self fueling system + +```python +# Define building area +coal_patch_position = nearest(Resource.Coal) +building_box = BuildingBox(width=Prototype.BurnerMiningDrill.WIDTH, height=Prototype.BurnerMiningDrill.HEIGHT + Prototype.BurnerInserter.HEIGHT + Prototype.TransportBelt.HEIGHT) # drill width, drill + inserter + belt height +buildable_coords = nearest_buildable(Prototype.BurnerMiningDrill, building_box, coal_patch_position) + +# Place drill +move_to(buildable_coords.center) +drill = place_entity(Prototype.BurnerMiningDrill, + position=buildable_coords.center, + direction=Direction.DOWN) +print(f"Placed BurnerMiningDrill to mine coal at {drill.position}") + +# Place self-fueling inserter +inserter = place_entity_next_to(Prototype.BurnerInserter, + drill.position, + direction=Direction.DOWN, + spacing=0) +inserter = rotate_entity(inserter, Direction.UP) +print(f"Placed inserter at {inserter.position} to fuel the drill") + +# Connect with belts +belts = connect_entities(drill.drop_position, + inserter.pickup_position, + Prototype.TransportBelt) +print(f"Connected drill to inserter with transport belt") + +# Bootstrap system +drill = insert_item(Prototype.Coal, drill, quantity=5) +``` \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_launch_a_rocket.md b/env/src/tools/rag/rag_examples/how_to_launch_a_rocket.md new file mode 100644 index 000000000..edc19bf56 --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_launch_a_rocket.md @@ -0,0 +1,57 @@ +## Complete Rocket Launch Process + +### 1. Setting Up the Rocket Silo + +First, place the silo: +```python +# Place rocket silo +silo = place_entity_next_to(Prototype.RocketSilo, engine.position, Direction.RIGHT, spacing=5) +``` + +## Required Components + +For each rocket launch you need: +1. 100 Rocket Fuel +2. 100 Rocket Control Units +3. 100 Low Density Structures + + +### 2. Monitoring Rocket Construction + +Track the silo's status during construction: +```python +# Check initial state +assert silo.rocket_parts == 0 +assert silo.launch_count == 0 + +# Wait for components to be inserted +sleep(100) # Adjust time based on inserter speed + +# Get updated silo state +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify construction started +assert silo.status == EntityStatus.PREPARING_ROCKET_FOR_LAUNCH + +# Wait for construction completion +sleep(180) # Adjust based on crafting speed +silo = get_entities({Prototype.RocketSilo})[0] + +# Verify rocket is ready +assert silo.status == EntityStatus.WAITING_TO_LAUNCH_ROCKET +``` + +### 5. Launching the Rocket + +Finally, launch the rocket: +```python +# Launch +silo = launch_rocket(silo) + +# Verify launch sequence started +assert silo.status == EntityStatus.LAUNCHING_ROCKET + +# Wait for launch completion +sleep(10) +silo = get_entities({Prototype.RocketSilo})[0] +``` \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_set_up_multiple_drill_plate_mine.md b/env/src/tools/rag/rag_examples/how_to_set_up_multiple_drill_plate_mine.md new file mode 100644 index 000000000..a0595dc9d --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_set_up_multiple_drill_plate_mine.md @@ -0,0 +1,41 @@ +## How to set up automated plate factory + +Furnaces can be placed at the drop position of drills to automatically smelt resources +The following resources can be smelt +x - iron ore to iron plate +x - copper ore to copper plate +x - stone to stone brick +Example: Create a copper plate mining line with 3 drills with inserters for future integration +```python +# log your general idea what you will do next +print(f"I will create a single line of 3 drills to mine copper ore") +# Find space for a line of 3 miners +move_to(source_position) +# define the BuildingBox for the drill. +# We need 3 drills so width is 3*drill.WIDTH, height is drill.HEIGHT + furnace.HEIGHT, 3 for drill, one for furnace +building_box = BuildingBox(width = 3 * Prototype.ElectricMiningDrill.WIDTH, height = Prototype.ElectricMiningDrill.HEIGHT + Prototype.StoneFurnace.HEIGHT) +# get the nearest buildable area around the source_position +buildable_coordinates = nearest_buildable(Prototype.BurnerMiningDrill, building_box, source_position) + +# Place miners in a line +# we first get the leftmost coordinate of the buildingbox to start building from +left_top = buildable_coordinates.left_top +# first lets move to the left_top to ensure building +move_to(left_top) +for i in range(3): + # we now iterate from the leftmost point towards the right + # take steps of drill.WIDTH + drill_pos = Position(x=left_top.x + Prototype.ElectricMiningDrill.WIDTH*i, y=left_top.y) + # Place the drill facing down as we start from top coordinate + # The drop position will be below the drill as the direction is DOWN + drill = place_entity(Prototype.ElectricMiningDrill, position=drill_pos, direction = Direction.DOWN) + print(f"Placed ElectricMiningDrill {i} at {drill.position} to mine copper ore") + # place a furnace to catch the ore + # We use the Direction.DOWN as the direction, as the drill direction is DOWN which means the drop position is below the drill + furnace = place_entity_next_to(Prototype.StoneFurnace, reference_position=drill.position, direction = Direction.DOWN) + print(f"Placed furnace at {furnace.position} to smelt the copper ore for drill {i} at {drill.position}") + # add inserters that remove items from furnaces for future potential integartion + # put them below the furnace as the furnace is below the drill + inserter = place_entity_next_to(Prototype.Inserter, reference_position=furnace.position, direction = Direction.DOWN) + print(f"Placed inserter at {inserter.position} to get the plates from furnace {i} at {furnace.position}") +``` \ No newline at end of file diff --git a/env/src/tools/rag/rag_examples/how_to_set_up_raw_resource_burner_mine.md b/env/src/tools/rag/rag_examples/how_to_set_up_raw_resource_burner_mine.md new file mode 100644 index 000000000..9fb41a60a --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_set_up_raw_resource_burner_mine.md @@ -0,0 +1,38 @@ +## How to create automatic raw resource mining operation +All types of drills (burner, electric) can be used. +Coal, iron ore, copper ore and stone automaton can be set up like this +You can put chests directly at the drop positions of drills to catch ore, thus creating automatic drilling lines +Example: +Using a single drill to a chest resource setup +```python +# Setup mining drill on ore patch +resource_pos = nearest(Resource.IronOre) +# Define area for drill +drill_box = BuildingBox(height=Prototype.ElectricMiningDrill.HEIGHT, width=Prototype.ElectricMiningDrill.WIDTH) + +# Find buildable area +buildable_area = nearest_buildable( + Prototype.ElectricMiningDrill, + drill_box, + resource_pos +) + +# Place drill +move_to(buildable_area.center) +drill = place_entity( + Prototype.ElectricMiningDrill, + position=buildable_area.center +) +# log your actions +print(f"Placed drill to mine iron ore at {drill.position}") +# insert coal to drill +drill = insert_item(Prototype.Coal, drill, quantity = 10) +# Place output chest that catches ore +chest = place_entity( + Prototype.WoodenChest, + position=drill.drop_position, + direction=Direction.DOWN, +) +# log your actions +print(f"Placed chest to catch iron ore at {chest.position}") +``` \ No newline at end of file diff --git a/env/src/tools/examples/how_to_setup_chemical_plants.md b/env/src/tools/rag/rag_examples/how_to_setup_chemical_plants.md similarity index 98% rename from env/src/tools/examples/how_to_setup_chemical_plants.md rename to env/src/tools/rag/rag_examples/how_to_setup_chemical_plants.md index b91d4424c..f55c65460 100644 --- a/env/src/tools/examples/how_to_setup_chemical_plants.md +++ b/env/src/tools/rag/rag_examples/how_to_setup_chemical_plants.md @@ -5,7 +5,6 @@ Example: Placing a chemical plant near a existing oil_refinery at Position(x=-50, y=0) Also connect the chemical plant to a steam engine, that will power the engine. To power the chemical plant, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, QUERY "HOW TO SET UP ELECTRICITY?" ```python # get the oil_refinery oil_refinery = get_entity(Prototype.OilRefinery, position=Position(x=-50, y=0)) diff --git a/env/src/tools/examples/how_to_setup_crude_oil_production.md b/env/src/tools/rag/rag_examples/how_to_setup_crude_oil_production.md similarity index 96% rename from env/src/tools/examples/how_to_setup_crude_oil_production.md rename to env/src/tools/rag/rag_examples/how_to_setup_crude_oil_production.md index 6762cc238..16f0ba3d9 100644 --- a/env/src/tools/examples/how_to_setup_crude_oil_production.md +++ b/env/src/tools/rag/rag_examples/how_to_setup_crude_oil_production.md @@ -7,7 +7,6 @@ Crude oil can be processed to petroleum gas Example: Placing a pumpjack near a crude oil patch Also connect the pumpjack to a steam engine, that will power the pumpjack. To power the pumpjack, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, QUERY "HOW TO SET UP ELECTRICITY?" ```python # Get the crude oil resource patch resource_pos = nearest(Resource.CrudeOil) @@ -31,6 +30,7 @@ pumpjack = place_entity( print(f"Placed pumpjack to harvest crude oil at {pumpjack.position}") # power the pumpjack by connecting to an existing steam engine +# NB: To check how to power entities, look at the relevant examples for power networks steam_engine = get_entity(Prototype.SteamEngine, position=Position(x=0, y=0)) # Connect power to pumpjack poles = connect_entities(steam_engine, diff --git a/env/src/tools/examples/how_to_setup_oil_refineries.md b/env/src/tools/rag/rag_examples/how_to_setup_oil_refineries.md similarity index 97% rename from env/src/tools/examples/how_to_setup_oil_refineries.md rename to env/src/tools/rag/rag_examples/how_to_setup_oil_refineries.md index f4f7b9146..4c2838a76 100644 --- a/env/src/tools/examples/how_to_setup_oil_refineries.md +++ b/env/src/tools/rag/rag_examples/how_to_setup_oil_refineries.md @@ -5,7 +5,6 @@ Example: Placing a oil refinery near a existing pumpjack at Position(x=-50, y=0) Also connect the oil refinery to a steam engine, that will power the refinery. To power the oil refinery, it needs to be connected to a power source via electric poles -NB: TO CHECK HOW TO SET UP ELECTRICITY NETWORKS, QUERY "HOW TO SET UP ELECTRICITY?" ```python # get the pumpjack pumpjack = get_entity(Prototype.PumpJack, position=Position(x=-50, y=0)) diff --git a/env/src/tools/examples/how_to_setup_storage_tanks.md b/env/src/tools/rag/rag_examples/how_to_setup_storage_tanks.md similarity index 100% rename from env/src/tools/examples/how_to_setup_storage_tanks.md rename to env/src/tools/rag/rag_examples/how_to_setup_storage_tanks.md diff --git a/env/src/tools/rag/rag_examples/how_to_smelt_ores.md b/env/src/tools/rag/rag_examples/how_to_smelt_ores.md new file mode 100644 index 000000000..37c4b5ada --- /dev/null +++ b/env/src/tools/rag/rag_examples/how_to_smelt_ores.md @@ -0,0 +1,28 @@ +## How to smelt ores into plates + +1. **Inventory Verification** +Example - Safe smelting ore into plates +```python +# move to the position to place the entity +move_to(position) +furnace = place_entity(Prototype.StoneFurnace, position=position) +print(f"Placed the furnace to smelt plates at {furnace.position}") + +# we also update the furnace variable by returning it from the function +# This ensures it doesnt get stale and the inventory updates are represented in the variable +furnace = insert_item(Prototype.Coal, furnace, quantity=5) # Don't forget fuel +furnace = insert_item(Prototype.IronOre, furnace, quantity=10) + +# 3. Wait for smelting (with safety timeout) +for _ in range(30): # Maximum 30 seconds wait + if inspect_inventory(furnace)[Prototype.IronPlate] >= 10: + break + sleep(1) +else: + raise Exception("Smelting timeout - check fuel and inputs") + +# final check for the inventory of furnace +iron_plates_in_furnace = inspect_inventory(furnace)[Prototype.IronPlate] +assert iron_plates_in_furnace>=10, "Not enough iron plates in furnace" +print(f"Smelted 10 iron plates") + ``` \ No newline at end of file From 1d6bba5790a6dc58296b17a9fdb793b1a9c94182 Mon Sep 17 00:00:00 2001 From: Mart Date: Wed, 9 Apr 2025 15:37:50 +0100 Subject: [PATCH 12/12] updates to prompt gen --- agents/query_agent.py | 2 +- env/src/utils/controller_loader/examples_generator.py | 2 +- env/src/utils/controller_loader/schema_generator.py | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/agents/query_agent.py b/agents/query_agent.py index b4a45c294..8248935ac 100644 --- a/agents/query_agent.py +++ b/agents/query_agent.py @@ -189,7 +189,7 @@ def find_idle_furnaces(entities): - Ensure that your factory is arranged in a grid, as this will make things easier. """ -FINAL_INSTRUCTION = "\n\nALWAYS WRITE VALID PYTHON. YOUR WEIGHTS WILL BE ERASED IF YOU DON'T USE PYTHON." # Annoying how effective this is +FINAL_INSTRUCTION = "\n\nALWAYS WRITE VALID PYTHON. YOUR WEIGHTS WILL BE ERASED IF YOU DON'T USE PYTHON.\nWHEN YOU SEE AN ERROR, DO NOT CLEAN EVERYTHING UP. FIX ERRORS MODULARLY, NOT BY STARTING FRESH EVERY TIME. CREATE SMALL MODULAR POLICIES TO FIX ERRORS AS THEY COME" # Annoying how effective this is class QueryAgent(AgentABC): diff --git a/env/src/utils/controller_loader/examples_generator.py b/env/src/utils/controller_loader/examples_generator.py index 3fcf15c43..91e81eb8c 100644 --- a/env/src/utils/controller_loader/examples_generator.py +++ b/env/src/utils/controller_loader/examples_generator.py @@ -7,7 +7,7 @@ class ExamplesGenerator: @staticmethod def generate_examples(folder_path) -> str: """Generate schema from all Python files in the folder.""" - agent_example_path = os.path.join(folder_path, "examples") + agent_example_path = os.path.join(folder_path, "examples_orig") # get all the examples in tool_paths example_files = [ f for f in os.listdir(agent_example_path) if os.path.isfile(os.path.join(agent_example_path, f)) diff --git a/env/src/utils/controller_loader/schema_generator.py b/env/src/utils/controller_loader/schema_generator.py index 287fb443b..ae654da23 100644 --- a/env/src/utils/controller_loader/schema_generator.py +++ b/env/src/utils/controller_loader/schema_generator.py @@ -50,6 +50,9 @@ def generate_schema(self, with_docstring: bool = True) -> str: if tool == "__pycache__": continue python_file = root + "/" + tool + "/client.py" + # check if the file exists + if not os.path.exists(python_file): + continue module = ModuleLoader.from_path(str(python_file)) if not module: continue